diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 00000000..16650e36
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,26 @@
+# Use the latest 2.1 version of CircleCI pipeline process engine.
+# See: https://circleci.com/docs/2.0/configuration-reference
+version: 2.1
+
+# Define a job to be invoked later in a workflow.
+# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
+jobs:
+ Running test:
+ # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
+ # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
+ docker:
+ - image: cimg/python3.10.2
+ # Add steps to the job
+ # See: https://circleci.com/docs/2.0/configuration-reference/#steps
+ steps:
+ - checkout
+ - run:
+ name: "Run test"
+ command: "python manage.py runserver"
+
+# Invoke jobs via workflows
+# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
+workflows:
+ say-hello-workflow:
+ jobs:
+ - Sample_app_website
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..30bc1627
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/node_modules
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 00000000..288b36b1
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Portfolio_Demo/__pycache__/settings.cpython-310.pyc b/Portfolio_Demo/__pycache__/settings.cpython-310.pyc
index d3fc74f8..0965fe54 100644
Binary files a/Portfolio_Demo/__pycache__/settings.cpython-310.pyc and b/Portfolio_Demo/__pycache__/settings.cpython-310.pyc differ
diff --git a/Portfolio_Demo/settings.py b/Portfolio_Demo/settings.py
index d0e92e31..eb017df7 100644
--- a/Portfolio_Demo/settings.py
+++ b/Portfolio_Demo/settings.py
@@ -11,6 +11,9 @@
"""
from pathlib import Path
+import django_heroku
+import dj_database_url
+import os
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
@@ -25,7 +28,7 @@
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
-ALLOWED_HOSTS = []
+ALLOWED_HOSTS = ['*']
# Application definition
@@ -117,6 +120,9 @@
# https://docs.djangoproject.com/en/4.1/howto/static-files/
STATIC_URL = 'static/'
+STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiled')
+STATICFILES_DIRS = (os.path.join(BASE_DIR, 'static'),)
+django_heroku.settings(locals())
# Default primary key field type
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
diff --git a/Procfile b/Procfile
new file mode 100644
index 00000000..52642f53
--- /dev/null
+++ b/Procfile
@@ -0,0 +1 @@
+web gunicorn Portfolio_Demo.wsgi:application --log-file -
\ No newline at end of file
diff --git a/README.md b/README.md
deleted file mode 100644
index 6e29a5ae..00000000
--- a/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-# Portfolio_website
-This is the portfolio demo website I created to show off in front of my friends.
-
-link :
-(http://sampleapp78.herokuapp.com/)
diff --git a/app/__pycache__/views.cpython-310.pyc b/app/__pycache__/views.cpython-310.pyc
index 25805c99..438d82bb 100644
Binary files a/app/__pycache__/views.cpython-310.pyc and b/app/__pycache__/views.cpython-310.pyc differ
diff --git a/app/views.py b/app/views.py
index 0ea00ec5..d64a3153 100644
--- a/app/views.py
+++ b/app/views.py
@@ -3,4 +3,4 @@
# Create your views here.
def home(request):
- return HttpResponse("This is Aarav's website.")
\ No newline at end of file
+ return HttpResponse("
Aarav's Website This is Aarav's website.")
\ No newline at end of file
diff --git a/venv/Lib/site-packages/Django-4.1.dist-info/AUTHORS b/app_env/Lib/site-packages/Django-4.1.dist-info/AUTHORS
similarity index 100%
rename from venv/Lib/site-packages/Django-4.1.dist-info/AUTHORS
rename to app_env/Lib/site-packages/Django-4.1.dist-info/AUTHORS
diff --git a/venv/Lib/site-packages/Django-4.1.dist-info/INSTALLER b/app_env/Lib/site-packages/Django-4.1.dist-info/INSTALLER
similarity index 100%
rename from venv/Lib/site-packages/Django-4.1.dist-info/INSTALLER
rename to app_env/Lib/site-packages/Django-4.1.dist-info/INSTALLER
diff --git a/venv/Lib/site-packages/Django-4.1.dist-info/LICENSE b/app_env/Lib/site-packages/Django-4.1.dist-info/LICENSE
similarity index 100%
rename from venv/Lib/site-packages/Django-4.1.dist-info/LICENSE
rename to app_env/Lib/site-packages/Django-4.1.dist-info/LICENSE
diff --git a/venv/Lib/site-packages/Django-4.1.dist-info/LICENSE.python b/app_env/Lib/site-packages/Django-4.1.dist-info/LICENSE.python
similarity index 100%
rename from venv/Lib/site-packages/Django-4.1.dist-info/LICENSE.python
rename to app_env/Lib/site-packages/Django-4.1.dist-info/LICENSE.python
diff --git a/venv/Lib/site-packages/Django-4.1.dist-info/METADATA b/app_env/Lib/site-packages/Django-4.1.dist-info/METADATA
similarity index 100%
rename from venv/Lib/site-packages/Django-4.1.dist-info/METADATA
rename to app_env/Lib/site-packages/Django-4.1.dist-info/METADATA
diff --git a/app_env/Lib/site-packages/Django-4.1.dist-info/RECORD b/app_env/Lib/site-packages/Django-4.1.dist-info/RECORD
new file mode 100644
index 00000000..209b24cd
--- /dev/null
+++ b/app_env/Lib/site-packages/Django-4.1.dist-info/RECORD
@@ -0,0 +1,4451 @@
+../../Scripts/django-admin.exe,sha256=9loZwQQhxnJ8pHSf_6ym248c1UvsBSUoL5ZeLCkiz1c,107995
+Django-4.1.dist-info/AUTHORS,sha256=b_y4N35p-aWq7Cs0Wjxcf_nqJNRfzh5dzQqWEK3GKXg,40464
+Django-4.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+Django-4.1.dist-info/LICENSE,sha256=uEZBXRtRTpwd_xSiLeuQbXlLxUbKYSn5UKGM0JHipmk,1552
+Django-4.1.dist-info/LICENSE.python,sha256=pSxfIaEVix6-28uSiusYmITnfjxeOIw41mDVk-cf7x8,14383
+Django-4.1.dist-info/METADATA,sha256=cTKTRBgEtV7Wn5DxLFA8bLAA3aLUkjLd5Bld02eV_Ao,4048
+Django-4.1.dist-info/RECORD,,
+Django-4.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+Django-4.1.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
+Django-4.1.dist-info/entry_points.txt,sha256=daYW_s0r8Z5eiRi_bNU6vodHqVUXQWzm-DHFOQHTV2Q,83
+Django-4.1.dist-info/top_level.txt,sha256=V_goijg9tfO20ox_7os6CcnPvmBavbxu46LpJiNLwjA,7
+django/__init__.py,sha256=cMhksD06ta8OgVa6iG_WgWzZe1V_8bwwrhpd-y7-acA,799
+django/__main__.py,sha256=9a5To1vQXqf2Jg_eh8nLvIc0GXmDjEXv4jE1QZEqBFk,211
+django/__pycache__/__init__.cpython-310.pyc,,
+django/__pycache__/__main__.cpython-310.pyc,,
+django/__pycache__/shortcuts.cpython-310.pyc,,
+django/apps/__init__.py,sha256=8WZTI_JnNuP4tyfuimH3_pKQYbDAy2haq-xkQT1UXkc,90
+django/apps/__pycache__/__init__.cpython-310.pyc,,
+django/apps/__pycache__/config.cpython-310.pyc,,
+django/apps/__pycache__/registry.cpython-310.pyc,,
+django/apps/config.py,sha256=1Zhxt4OrwRnOmsT_B_BurImz3oi8330TJG0rRRJ58bQ,11482
+django/apps/registry.py,sha256=6AG3X1-GUf4-omJcVxxaH8Zyts6k8HWb53BPu4Ehmk4,17661
+django/conf/__init__.py,sha256=ahM_p29M2vWmbP9a6xJNoO8B9TN0z8PMCAF04OkmQks,11366
+django/conf/__pycache__/__init__.cpython-310.pyc,,
+django/conf/__pycache__/global_settings.cpython-310.pyc,,
+django/conf/app_template/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/app_template/admin.py-tpl,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63
+django/conf/app_template/apps.py-tpl,sha256=jrRjsh9lSkUvV4NnKdlAhLDtvydwBNjite0w2J9WPtI,171
+django/conf/app_template/migrations/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/app_template/models.py-tpl,sha256=Vjc0p2XbAPgE6HyTF6vll98A4eDhA5AvaQqsc4kQ9AQ,57
+django/conf/app_template/tests.py-tpl,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
+django/conf/app_template/views.py-tpl,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
+django/conf/global_settings.py,sha256=zoiWZBad0S35BHqUW0g-kymD4B0boI1c6tW2Emfd1Nw,22936
+django/conf/locale/__init__.py,sha256=-5CQ68LtJOAC3ulhpP7OGGxyNdGqRG8QiCvgeMZP0YI,13588
+django/conf/locale/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/af/LC_MESSAGES/django.mo,sha256=GqXA00k3sKdvUz3tD5nSLrN7rfAYm9FBvGFzcaa_AFE,24077
+django/conf/locale/af/LC_MESSAGES/django.po,sha256=oVXTZ2E6Z_EnAwAhjllrb34PG773iksXziMUL5kkRxU,28110
+django/conf/locale/ar/LC_MESSAGES/django.mo,sha256=qBaEPhfJxd2mK1uPH7J06hPI3_leRPsWkVgcKtJSAvQ,35688
+django/conf/locale/ar/LC_MESSAGES/django.po,sha256=MQeB4q0H-uDLurniJP5b2SBOTETAUl9k9NHxtaw0nnU,38892
+django/conf/locale/ar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ar/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ar/formats.py,sha256=EI9DAiGt1avNY-a6luMnAqKISKGHXHiKE4QLRx7wGHU,696
+django/conf/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=QosXYYYvQjGu13pLrC9LIVwUQXVwdJpIYn7RB9QCJY8,33960
+django/conf/locale/ar_DZ/LC_MESSAGES/django.po,sha256=2iT_sY4XedSSiHagu03OgpYXWNJVaKDwKUfxgEN4k3k,37626
+django/conf/locale/ar_DZ/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ar_DZ/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ar_DZ/formats.py,sha256=T84q3oMKng-L7_xymPqYwpzs78LvvfHy2drfSRj8XjE,901
+django/conf/locale/ast/LC_MESSAGES/django.mo,sha256=XSStt50HP-49AJ8wFcnbn55SLncJCsS2lx_4UwK-h-8,15579
+django/conf/locale/ast/LC_MESSAGES/django.po,sha256=7qZUb5JjfrWLqtXPRjpNOMNycbcsEYpNO-oYmazLTk4,23675
+django/conf/locale/az/LC_MESSAGES/django.mo,sha256=DMupaHNLr95FRZeF1di-6DygIFSZ6YxYRIHrPv4Gv3E,26983
+django/conf/locale/az/LC_MESSAGES/django.po,sha256=ZF-Qz16zoirRayV4_C9AIzbQwt2thq1WeS0DpcD7SIY,29723
+django/conf/locale/az/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/az/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/az/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/az/formats.py,sha256=JQoS2AYHKJxiH6TJas1MoeYgTeUv5XcNtYUHF7ulDmw,1087
+django/conf/locale/be/LC_MESSAGES/django.mo,sha256=FZivGaKrh1M4tAxfZGF-H1koGnof248obvfA6Xw57rY,36467
+django/conf/locale/be/LC_MESSAGES/django.po,sha256=N2laJ6pArev1YBKRfqpeez0LbULVaIt7TNNlIX_5nWM,39028
+django/conf/locale/bg/LC_MESSAGES/django.mo,sha256=FqbeKBkf9BqYntobFo98EnL5NeHy6DsSIXuinIWoCHE,33758
+django/conf/locale/bg/LC_MESSAGES/django.po,sha256=3FL505XlkCzIA_peYeeb2O-eKS4hQbOKRW7OSCtAX08,36197
+django/conf/locale/bg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/bg/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/bg/formats.py,sha256=LC7P_5yjdGgsxLQ_GDtC8H2bz9NTxUze_CAtzlm37TA,705
+django/conf/locale/bn/LC_MESSAGES/django.mo,sha256=sB0RIFrGS11Z8dx5829oOFw55vuO4vty3W4oVzIEe8Q,16660
+django/conf/locale/bn/LC_MESSAGES/django.po,sha256=rF9vML3LDOqXkmK6R_VF3tQaFEoZI7besJAPx5qHNM0,26877
+django/conf/locale/bn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/bn/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/bn/formats.py,sha256=jynhZ9XNNuxTXeF7f2FrJYYZuFwlLY58fGfQ6gVs7s8,964
+django/conf/locale/br/LC_MESSAGES/django.mo,sha256=Xow2-sd55CZJsvfF8axtxXNRe27EDwxKixCGelVQ4aU,14009
+django/conf/locale/br/LC_MESSAGES/django.po,sha256=ODCUDdEDAvsOVOAr49YiWT2YQaBZmc-38brdgYWc8Bs,24293
+django/conf/locale/bs/LC_MESSAGES/django.mo,sha256=Xa5QAbsHIdLkyG4nhLCD4UHdCngrw5Oh120abCNdWlA,10824
+django/conf/locale/bs/LC_MESSAGES/django.po,sha256=IB-2VvrQKUivAMLMpQo1LGRAxw3kj-7kB6ckPai0fug,22070
+django/conf/locale/bs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/bs/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/bs/formats.py,sha256=760m-h4OHpij6p_BAD2dr3nsWaTb6oR1Y5culX9Gxqw,705
+django/conf/locale/ca/LC_MESSAGES/django.mo,sha256=v6lEJTUbXyEUBsctIdNFOg-Ck5MVFbuz-JgjqkUe32c,27707
+django/conf/locale/ca/LC_MESSAGES/django.po,sha256=16M-EtYLbfKnquh-IPRjWxTdHAqtisDc46Dzo5n-ZMc,30320
+django/conf/locale/ca/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ca/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ca/formats.py,sha256=s7N6Ns3yIqr_KDhatnUvfjbPhUbrhvemB5HtCeodGZo,940
+django/conf/locale/cs/LC_MESSAGES/django.mo,sha256=z8TcGqBp91REABKRFu2Iv6Mfn7B9Xn0RrJpds3x5gA8,29060
+django/conf/locale/cs/LC_MESSAGES/django.po,sha256=pCdIvV7JEvQTgSBexXu7hHX-57IbJjDw3Q9Ub24Q3tw,32110
+django/conf/locale/cs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/cs/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/cs/formats.py,sha256=3MA70CW0wfr0AIYvYqE0ACmX79tNOx-ZdlR6Aetp9e8,1539
+django/conf/locale/cy/LC_MESSAGES/django.mo,sha256=s7mf895rsoiqrPrXpyWg2k85rN8umYB2aTExWMTux7s,18319
+django/conf/locale/cy/LC_MESSAGES/django.po,sha256=S-1PVWWVgYmugHoYUlmTFAzKCpI81n9MIAhkETbpUoo,25758
+django/conf/locale/cy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/cy/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/cy/formats.py,sha256=NY1pYPfpu7XjLMCCuJk5ggdpLcufV1h101ojyxfPUrY,1355
+django/conf/locale/da/LC_MESSAGES/django.mo,sha256=QDsQ8EGINlIyV0gSRhq4J8bMrCcqBH31l-fpIli5DKU,27268
+django/conf/locale/da/LC_MESSAGES/django.po,sha256=AoLYUHCj8DElaIePFv9Tw86qDF76ZGqAtMETdhKuBqI,29670
+django/conf/locale/da/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/da/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/da/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/da/formats.py,sha256=-y3033Fo7COyY0NbxeJVYGFybrnLbgXtRf1yBGlouys,876
+django/conf/locale/de/LC_MESSAGES/django.mo,sha256=MULuNkFdTMFpi8PZxx3TlZ6BhJAPF19ZIhOR7FBsv8Q,28666
+django/conf/locale/de/LC_MESSAGES/django.po,sha256=dQGocjsXW4368meoAtFEq-ItWgfHZAQT0GYKH9BHoYs,31097
+django/conf/locale/de/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/de/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/de/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/de/formats.py,sha256=fysX8z5TkbPUWAngoy_sMeFGWp2iaNU6ftkBz8cqplg,996
+django/conf/locale/de_CH/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/de_CH/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/de_CH/formats.py,sha256=22UDF62ESuU0Jp_iNUqAj-Bhq4_-frpji0-ynBdHXYk,1377
+django/conf/locale/dsb/LC_MESSAGES/django.mo,sha256=GZcKy6ROHonxwDJnP5PLm_Kb1FY4u6ardH_57eBqp-A,30133
+django/conf/locale/dsb/LC_MESSAGES/django.po,sha256=AXSu3PKq07cg6NIgM7tOgxnmHWbMnCUKWTZvNkWi9lw,32625
+django/conf/locale/el/LC_MESSAGES/django.mo,sha256=P5lTOPFcl9x6_j69ZN3hM_mQbhW7Fbbx02RtTNJwfS0,33648
+django/conf/locale/el/LC_MESSAGES/django.po,sha256=rZCComPQcSSr8ZDLPgtz958uBeBZsmV_gEP-sW88kRA,37123
+django/conf/locale/el/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/el/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/el/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/el/formats.py,sha256=RON2aqQaQK3DYVF_wGlBQJDHrhANxypcUW_udYKI-ro,1241
+django/conf/locale/en/LC_MESSAGES/django.mo,sha256=mVpSj1AoAdDdW3zPZIg5ZDsDbkSUQUMACg_BbWHGFig,356
+django/conf/locale/en/LC_MESSAGES/django.po,sha256=uV2Y0_PkmipHC85Top987lITe3ECLqsMp3apbh-PB7c,29816
+django/conf/locale/en/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/en/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/en/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/en/formats.py,sha256=VTQUhaZ_WFhS5rQj0PxbnoMySK0nzUSqrd6Gx-DtXxI,2438
+django/conf/locale/en_AU/LC_MESSAGES/django.mo,sha256=SntsKx21R2zdjj0D73BkOXGTDnoN5unsLMJ3y06nONM,25633
+django/conf/locale/en_AU/LC_MESSAGES/django.po,sha256=6Qh4Z6REzhUdG5KwNPNK9xgLlgq3VbAJuoSXyd_eHdE,28270
+django/conf/locale/en_AU/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/en_AU/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/en_AU/formats.py,sha256=BoI5UviKGZ4TccqLmxpcdMf0Yk1YiEhY_iLQUddjvi0,1650
+django/conf/locale/en_GB/LC_MESSAGES/django.mo,sha256=jSIe44HYGfzQlPtUZ8tWK2vCYM9GqCKs-CxLURn4e1o,12108
+django/conf/locale/en_GB/LC_MESSAGES/django.po,sha256=PTXvOpkxgZFRoyiqftEAuMrFcYRLfLDd6w0K8crN8j4,22140
+django/conf/locale/en_GB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/en_GB/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/en_GB/formats.py,sha256=cJN8YNthkIOHCIMnwiTaSZ6RCwgSHkjWYMcfw8VFScE,1650
+django/conf/locale/eo/LC_MESSAGES/django.mo,sha256=G5VNi-7AMozkh0vK3UhPJi1tCbqJWSTeFSMoHo4jfvM,20433
+django/conf/locale/eo/LC_MESSAGES/django.po,sha256=0UwyG4ncz-dI6tkC2gLWg56EgmU1YLBspAh50Caj7-o,26212
+django/conf/locale/eo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/eo/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/eo/formats.py,sha256=zIEAk-SiLX0cvQVmRc3LpmV69jwRrejMMdC7vtVsSh0,1715
+django/conf/locale/es/LC_MESSAGES/django.mo,sha256=NE4hL7be5aoRbgXMWkD1NIOj8Jd7hcyrL0v2F0Dvtlg,28004
+django/conf/locale/es/LC_MESSAGES/django.po,sha256=xZ49QEuS196ELNFXx9jFSpiQBo2Pe0QRTDr2M9dcm8w,31666
+django/conf/locale/es/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/es/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/es/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/es/formats.py,sha256=j2k3I4e_4ePYFsJbkREtmknqlhqDPxSrvWN3lIQE0oA,953
+django/conf/locale/es_AR/LC_MESSAGES/django.mo,sha256=69pEWgzTseHSfje9YI-UrFQDAVfKm03vAs6itIzL22s,28363
+django/conf/locale/es_AR/LC_MESSAGES/django.po,sha256=i9ufMn-fE8P1kOheUXL0LitBFF850k6J-5v8aR1wqIU,30564
+django/conf/locale/es_AR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/es_AR/formats.py,sha256=4qgOJoR2K5ZE-pA2-aYRwFW7AbK-M9F9u3zVwgebr2w,935
+django/conf/locale/es_CO/LC_MESSAGES/django.mo,sha256=ehUwvqz9InObH3fGnOLuBwivRTVMJriZmJzXcJHsfjc,18079
+django/conf/locale/es_CO/LC_MESSAGES/django.po,sha256=XRgn56QENxEixlyix3v4ZSTSjo4vn8fze8smkrv_gc4,25107
+django/conf/locale/es_CO/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/es_CO/formats.py,sha256=0uAbBvOkdJZKjvhrrd0htScdO7sTgbofOkkC8A35_a8,691
+django/conf/locale/es_MX/LC_MESSAGES/django.mo,sha256=UkpQJeGOs_JQRmpRiU6kQmmYGL_tizL4JQOWb9i35M4,18501
+django/conf/locale/es_MX/LC_MESSAGES/django.po,sha256=M0O6o1f3V-EIY9meS3fXP_c7t144rXWZuERF5XeG5Uo,25870
+django/conf/locale/es_MX/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/es_MX/formats.py,sha256=fBvyAqBcAXARptSE3hxwzFYNx3lEE8QrhNrCWuuGNlA,768
+django/conf/locale/es_NI/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/es_NI/formats.py,sha256=UiOadPoMrNt0iTp8jZVq65xR_4LkOwp-fjvFb8MyNVg,711
+django/conf/locale/es_PR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/es_PR/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/es_PR/formats.py,sha256=VVTlwyekX80zCKlg1P4jhaAdKNpN5I64pW_xgrhpyVs,675
+django/conf/locale/es_VE/LC_MESSAGES/django.mo,sha256=h-h1D_Kr-LI_DyUJuIG4Zbu1HcLWTM1s5X515EYLXO8,18840
+django/conf/locale/es_VE/LC_MESSAGES/django.po,sha256=Xj38imu4Yw-Mugwge5CqAqWlcnRWnAKpVBPuL06Twjs,25494
+django/conf/locale/et/LC_MESSAGES/django.mo,sha256=AAtf-jezxKyK4-4vqKpCnbTRmXW2Qij4YA2X8ckt6Jw,26794
+django/conf/locale/et/LC_MESSAGES/django.po,sha256=6DeZWGsqrsoNbsPYa-1d7Q0F0fyWQAzqnXXn6aUcmX0,29326
+django/conf/locale/et/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/et/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/et/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/et/formats.py,sha256=DyFSZVuGSYGoImrRI2FodeM51OtvIcCkKzkI0KvYTQw,707
+django/conf/locale/eu/LC_MESSAGES/django.mo,sha256=OQAi-HVXLCx_xY8GcHYPYs5I_K1NVaPYhgqxjL_T5ds,21877
+django/conf/locale/eu/LC_MESSAGES/django.po,sha256=RKD5sVlCq-orCsMQfudiUz3Xi0Y46Z_wxMGvpY51OU0,27448
+django/conf/locale/eu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/eu/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/eu/formats.py,sha256=-PuRA6eHeXP8R3YV0aIEQRbk2LveaZk-_kjHlBT-Drg,749
+django/conf/locale/fa/LC_MESSAGES/django.mo,sha256=MgVsOtPARiZvxJWzBm4BakPSPYa8Df-X4BHEqu_T02Q,31611
+django/conf/locale/fa/LC_MESSAGES/django.po,sha256=MM5M0HKztRKGP3WAFkXRLHxSJiG7GnSVf1qTH1X-nWY,34779
+django/conf/locale/fa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/fa/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/fa/formats.py,sha256=v0dLaIh6-CWCAQHkmX0PaIlA499gTeRcJEi7lVJzw9o,722
+django/conf/locale/fi/LC_MESSAGES/django.mo,sha256=9Q4AgsDXCPtoCtqjfvvEmINGPRW0yg_OLFJC6likxFY,27747
+django/conf/locale/fi/LC_MESSAGES/django.po,sha256=fuZejrZ3-25WLM6UVxh1cOqaygSKNrWcB2WDoo6k4nQ,30042
+django/conf/locale/fi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/fi/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/fi/formats.py,sha256=CO_wD5ZBHwAVgjxArXktLCD7M-PPhtHbayX_bBKqhlA,1213
+django/conf/locale/fr/LC_MESSAGES/django.mo,sha256=8GLrPuSzlHQnBRbgPE3jh4npqgkwH8uoe05Hmne6hxk,28937
+django/conf/locale/fr/LC_MESSAGES/django.po,sha256=qQDyQPKB1Dl4mx5ZPHX_Ys5dZxgWTiL7xQ5Xwj5eACc,31380
+django/conf/locale/fr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/fr/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/fr/formats.py,sha256=Idd_fVXKJHJSOuB3jRbo_FgwQ2P6VK2AjJbadv5UxK8,1293
+django/conf/locale/fy/LC_MESSAGES/django.mo,sha256=9P7zoJtaYHfXly8d6zBoqkxLM98dO8uI6nmWtsGu-lM,2286
+django/conf/locale/fy/LC_MESSAGES/django.po,sha256=jveK-2MjopbqC9jWcrYbttIb4DUmFyW1_-0tYaD6R0I,19684
+django/conf/locale/fy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/fy/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/fy/formats.py,sha256=mJXj1dHUnO883PYWPwuI07CNbjmnfBTQVRXZMg2hmOk,658
+django/conf/locale/ga/LC_MESSAGES/django.mo,sha256=abQpDgeTUIdZzldVuZLZiBOgf1s2YVSyrvEhxwl0GK8,14025
+django/conf/locale/ga/LC_MESSAGES/django.po,sha256=rppcWQVozZdsbl7Gud6KnJo6yDB8T0xH6hvIiLFi_zA,24343
+django/conf/locale/ga/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ga/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ga/formats.py,sha256=Qh7R3UMfWzt7QIdMZqxY0o4OMpVsqlchHK7Z0QnDWds,682
+django/conf/locale/gd/LC_MESSAGES/django.mo,sha256=2VKzI7Nqd2NjABVQGdcduWHjj0h2b3UBGQub7xaTVPs,30752
+django/conf/locale/gd/LC_MESSAGES/django.po,sha256=3PfuhhmosuarfPjvM2TVf2kHhZaw5_G8oIM2VWTc3gI,33347
+django/conf/locale/gd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/gd/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/gd/formats.py,sha256=7doL7JIoCqA_o-lpCwM3jDHMpptA3BbSgeLRqdZk8Lc,715
+django/conf/locale/gl/LC_MESSAGES/django.mo,sha256=utB99vnkb5SLff8K0i3gFI8Nu_eirBxDEpFKbZ_voPY,14253
+django/conf/locale/gl/LC_MESSAGES/django.po,sha256=rvhCJsURGjM2ekm6NBjY5crVGc5lrQv2qpHj35dM3qc,23336
+django/conf/locale/gl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/gl/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/gl/formats.py,sha256=ygSFv-YTS8htG_LW0awegkkOarPRTZNPbUck5sxkAwI,757
+django/conf/locale/he/LC_MESSAGES/django.mo,sha256=46lIe8tACJ_ga70yOY5qNNDIZhvGZAqNh25zHRoBo_c,30227
+django/conf/locale/he/LC_MESSAGES/django.po,sha256=NrzjGVZoDiXeg6Uolt8m9emSNHpmOCzzIxnyipggDzo,33362
+django/conf/locale/he/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/he/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/he/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/he/formats.py,sha256=M-tu-LmTZd_oYPNH6CZEsdxJN526RUOfnLHlQxRL0N0,712
+django/conf/locale/hi/LC_MESSAGES/django.mo,sha256=8pV5j5q8VbrxdVkcS0qwhVx6DmXRRXPKfRsm3nWhI2g,19712
+django/conf/locale/hi/LC_MESSAGES/django.po,sha256=DPV-I1aXgIiZB7zHdEgAHShZFyb9zlNmMXlyjH5ug0I,29221
+django/conf/locale/hi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/hi/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/hi/formats.py,sha256=JArVM9dMluSP-cwpZydSVXHB5Vs9QKyR9c-bftI9hds,684
+django/conf/locale/hr/LC_MESSAGES/django.mo,sha256=HP4PCb-i1yYsl5eqCamg5s3qBxZpS_aXDDKZ4Hlbbcc,19457
+django/conf/locale/hr/LC_MESSAGES/django.po,sha256=qeVJgKiAv5dKR2msD2iokSOApZozB3Gp0xqzC09jnvs,26329
+django/conf/locale/hr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/hr/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/hr/formats.py,sha256=F4mIdDoaOYJ_lPmsJ_6bQo4Zj8pOSVwuldm92zRy4Fo,1723
+django/conf/locale/hsb/LC_MESSAGES/django.mo,sha256=lD79U1OLYaJKq3Q6XrPMTmkrX3qwLiGbr8c-T-Oe6mg,29491
+django/conf/locale/hsb/LC_MESSAGES/django.po,sha256=MkKgegENDgUK9urEUskxfZ__ETOR6IbXqgxyUJq47q0,31920
+django/conf/locale/hu/LC_MESSAGES/django.mo,sha256=zORP8fLsHnlY5RRY7i_mlVlx8f3erqSfPziYNAOIAe8,28217
+django/conf/locale/hu/LC_MESSAGES/django.po,sha256=6zz8Tvs_InxZDyuSKyo7f-JbNVM2JjkE_XXYbb0skMk,30680
+django/conf/locale/hu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/hu/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/hu/formats.py,sha256=xAD7mNsC5wFA2_KGRbBMPKwj884pq0jCKmXhEenGAEk,1001
+django/conf/locale/hy/LC_MESSAGES/django.mo,sha256=KfmTnB-3ZUKDHeNgLiego2Af0WZoHTuNKss3zE-_XOE,22207
+django/conf/locale/hy/LC_MESSAGES/django.po,sha256=kNKlJ5NqZmeTnnxdqhmU3kXiqT9t8MgAFgxM2V09AIc,28833
+django/conf/locale/ia/LC_MESSAGES/django.mo,sha256=JcrpersrDAoJXrD3AnPYBCQyGJ-6kUzH_Q8StbqmMeE,21428
+django/conf/locale/ia/LC_MESSAGES/django.po,sha256=LG0juYDjf3KkscDxwjY3ac6H1u5BBwGHljW3QWvr1nc,26859
+django/conf/locale/id/LC_MESSAGES/django.mo,sha256=4_75xU4TTvtl40dTB29V3SKnDp3auNve6Y8nwlXW6I4,27163
+django/conf/locale/id/LC_MESSAGES/django.po,sha256=EhUuZElmadPi8aOc20wWkbqVNlIozUDAjryvLvyrr2Q,29469
+django/conf/locale/id/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/id/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/id/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/id/formats.py,sha256=kYyOxWHN3Jyif3rFxLFyBUjTzFUwmuaLrkw5JvGbEz8,1644
+django/conf/locale/ig/LC_MESSAGES/django.mo,sha256=tAZG5GKhEbrUCJtLrUxzmrROe1RxOhep8w-RR7DaDYo,27188
+django/conf/locale/ig/LC_MESSAGES/django.po,sha256=DB_I4JXKMY4M7PdAeIsdqnLSFpq6ImkGPCuY82rNBpY,28931
+django/conf/locale/ig/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ig/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ig/formats.py,sha256=P3IsxhF5rNFZ5nCWUSyJfFLb0V1QdX_Xn-tYdrcll5Q,1119
+django/conf/locale/io/LC_MESSAGES/django.mo,sha256=uI78C7Qkytf3g1A6kVWiri_CbS55jReO2XmRfLTeNs0,14317
+django/conf/locale/io/LC_MESSAGES/django.po,sha256=FyN4ZTfNPV5TagM8NEhRts8y_FhehIPPouh_MfslnWY,23124
+django/conf/locale/is/LC_MESSAGES/django.mo,sha256=1pFU-dTPg2zs87L0ZqFFGS9q-f-XrzTOlhKujlyNL2E,24273
+django/conf/locale/is/LC_MESSAGES/django.po,sha256=76cQ_9DLg1jR53hiKSc1tLUMeKn8qTdPwpHwutEK014,28607
+django/conf/locale/is/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/is/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/is/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/is/formats.py,sha256=scsNfP4vVacxWIoN03qc2Fa3R8Uh5Izr1MqBicrAl3A,688
+django/conf/locale/it/LC_MESSAGES/django.mo,sha256=ueSC7tB6nn0-7W-d1on008avcjDiYyXaBckZH5-6OUs,27732
+django/conf/locale/it/LC_MESSAGES/django.po,sha256=7xb9UtuFoUoeQ8dMgzjtLJyXslALMsJONa_MDWjAyQ8,30660
+django/conf/locale/it/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/it/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/it/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/it/formats.py,sha256=KzkSb3KXBwfM3gk2FezyR-W8_RYKpnlFeFuIi5zl-S0,1774
+django/conf/locale/ja/LC_MESSAGES/django.mo,sha256=vEJ_s5BLfHsqhzIqba3HHk9m0-ZUeEGFXbUsGJB4g4I,29816
+django/conf/locale/ja/LC_MESSAGES/django.po,sha256=cw8bOnqjzhZ5bg5x9Kz_4FYAFaC-g1SNaCpL5Q48YWQ,32567
+django/conf/locale/ja/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ja/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ja/formats.py,sha256=MQ1KA6l1qmW07rXLYplRs-V1hR1Acbx30k2RpXnMhQg,729
+django/conf/locale/ka/LC_MESSAGES/django.mo,sha256=4e8at-KNaxYJKIJd8r6iPrYhEdnaJ1qtPw-QHPMh-Sc,24759
+django/conf/locale/ka/LC_MESSAGES/django.po,sha256=pIgaLU6hXgVQ2WJp1DTFoubI7zHOUkkKMddwV3PTdt8,32088
+django/conf/locale/ka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ka/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ka/formats.py,sha256=elTGOjS-mxuoSCAKOm8Wz2aLfh4pWvNyClUFcrYq9ng,1861
+django/conf/locale/kab/LC_MESSAGES/django.mo,sha256=x5Kyq2Uf3XNlQP06--4lT8Q1MacA096hZbyMJRrHYIc,7139
+django/conf/locale/kab/LC_MESSAGES/django.po,sha256=DsFL3IzidcAnPoAWIfIbGJ6Teop1yKPBRALeLYrdiFA,20221
+django/conf/locale/kk/LC_MESSAGES/django.mo,sha256=krjcDvA5bu591zcP76bWp2mD2FL1VUl7wutaZjgD668,13148
+django/conf/locale/kk/LC_MESSAGES/django.po,sha256=RgM4kzn46ZjkSDHMAsyOoUg7GdxGiZ-vaEOdf7k0c5A,23933
+django/conf/locale/km/LC_MESSAGES/django.mo,sha256=kEvhZlH7lkY1DUIHTHhFVQzOMAPd_-QMItXTYX0j1xY,7223
+django/conf/locale/km/LC_MESSAGES/django.po,sha256=QgRxEiJMopO14drcmeSG6XEXQpiAyfQN0Ot6eH4gca8,21999
+django/conf/locale/km/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/km/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/km/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/km/formats.py,sha256=0UMLrZz1aI2sdRPkJ0YzX99co2IV6tldP7pEvGEPdP0,750
+django/conf/locale/kn/LC_MESSAGES/django.mo,sha256=fQ7AD5tUiV_PZFBxUjNPQN79dWBJKqfoYwRdrOaQjU4,17515
+django/conf/locale/kn/LC_MESSAGES/django.po,sha256=fS4Z7L4NGVQ6ipZ7lMHAqAopTBP0KkOc-eBK0IYdbBE,28133
+django/conf/locale/kn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/kn/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/kn/formats.py,sha256=X5j9VHIW2XRdeTzDFEyS8tG05OBFzP2R7sEGUQa_INg,680
+django/conf/locale/ko/LC_MESSAGES/django.mo,sha256=1l9RjA5r-TH1KGUuL5EayxgkdY6iYJd5BDgYRmun5Ow,28101
+django/conf/locale/ko/LC_MESSAGES/django.po,sha256=dIMJhzKS8dDBHH-zCIfeP0EGVBazRWyCUJd3C9JCUyw,31179
+django/conf/locale/ko/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ko/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ko/formats.py,sha256=qn36EjiO4Bu12D_6qitjMDkBfy4M0LgFE-FhK8bPOto,2061
+django/conf/locale/ky/LC_MESSAGES/django.mo,sha256=IBVfwPwaZmaoljMRBGww_wWGMJqbF_IOHHnH2j-yJw8,31395
+django/conf/locale/ky/LC_MESSAGES/django.po,sha256=5ACTPMMbXuPJbU7Rfzs0yZHh3xy483pqo5DwSBQp4s4,33332
+django/conf/locale/ky/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ky/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ky/formats.py,sha256=QCq7vxAD5fe9VhcjRhG6C3N28jNvdzKR-c-EvDSJ1Pg,1178
+django/conf/locale/lb/LC_MESSAGES/django.mo,sha256=tQSJLQUeD5iUt-eA2EsHuyYqsCSYFtbGdryATxisZsc,8008
+django/conf/locale/lb/LC_MESSAGES/django.po,sha256=GkKPLO3zfGTNync-xoYTf0vZ2GUSAotAjfPSP01SDMU,20622
+django/conf/locale/lt/LC_MESSAGES/django.mo,sha256=cdUzK5RYW-61Upf8Sd8ydAg9wXg21pJaIRWFSKPv17c,21421
+django/conf/locale/lt/LC_MESSAGES/django.po,sha256=Lvpe_xlbxSa5vWEossxBCKryDVT7Lwz0EnuL1kSO6OY,28455
+django/conf/locale/lt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/lt/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/lt/formats.py,sha256=C9ScR3gYswT1dQXFedUUnYe6DQPVGAS_nLxs0h2E3dE,1637
+django/conf/locale/lv/LC_MESSAGES/django.mo,sha256=oHLK2lWrPkhtLmMzKbST8UG0SHt8RrPfPgihZFKNmkU,28628
+django/conf/locale/lv/LC_MESSAGES/django.po,sha256=pymIlo7VJE6bcum_xxjCoxgHdo-Tqh6APKDigT8U7og,31209
+django/conf/locale/lv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/lv/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/lv/formats.py,sha256=k8owdq0U7-x6yl8ll1W5VjRoKdp8a1G2enH04G5_nvU,1713
+django/conf/locale/mk/LC_MESSAGES/django.mo,sha256=uQKmcys0rOsRynEa812XDAaeiNTeBMkqhR4LZ_cfdAk,22737
+django/conf/locale/mk/LC_MESSAGES/django.po,sha256=4K11QRb493wD-FM6-ruCxks9_vl_jB59V1c1rx-TdKg,29863
+django/conf/locale/mk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/mk/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/mk/formats.py,sha256=xwnJsXLXGogOqpP18u6GozjehpWAwwKmXbELolYV_k4,1451
+django/conf/locale/ml/LC_MESSAGES/django.mo,sha256=MGvV0e3LGUFdVIA-h__BuY8Ckom2dAhSFvAtZ8FiAXU,30808
+django/conf/locale/ml/LC_MESSAGES/django.po,sha256=iLllS6vlCpBNZfy9Xd_2Cuwi_1-Vz9fW4G1lUNOuZ6k,37271
+django/conf/locale/ml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ml/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ml/formats.py,sha256=ZR7tMdJF0U6K1H95cTqrFH4gop6ZuSQ7vD2h0yKq6mo,1597
+django/conf/locale/mn/LC_MESSAGES/django.mo,sha256=sd860BHXfgAjDzU3CiwO3JirA8S83nSr4Vy3QUpXHyU,24783
+django/conf/locale/mn/LC_MESSAGES/django.po,sha256=VBgXVee15TTorC7zwYFwmHM4qgpYy11yclv_u7UTNwA,30004
+django/conf/locale/mn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/mn/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/mn/formats.py,sha256=fsexJU9_UTig2PS_o11hcEmrbPBS8voI4ojuAVPOd_U,676
+django/conf/locale/mr/LC_MESSAGES/django.mo,sha256=aERpEBdJtkSwBj6zOtiKDaXuFzepi8_IwvPPHi8QtGU,1591
+django/conf/locale/mr/LC_MESSAGES/django.po,sha256=GFtk4tVQVi8b7N7KEhoNubVw_PV08pyRvcGOP270s1Q,19401
+django/conf/locale/ms/LC_MESSAGES/django.mo,sha256=U4_kzfbYF7u78DesFRSReOIeVbOnq8hi_pReFfHfyUQ,27066
+django/conf/locale/ms/LC_MESSAGES/django.po,sha256=49pG3cykGjVfC9N8WPyskz-m7r6KmQiq5i8MR6eOi54,28985
+django/conf/locale/ms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ms/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ms/formats.py,sha256=YtOBs6s4j4SOmfB3cpp2ekcxVFoVGgUN8mThoSueCt0,1522
+django/conf/locale/my/LC_MESSAGES/django.mo,sha256=SjYOewwnVim3-GrANk2RNanOjo6Hy2omw0qnpkMzTlM,2589
+django/conf/locale/my/LC_MESSAGES/django.po,sha256=b_QSKXc3lS2Xzb45yVYVg307uZNaAnA0eoXX2ZmNiT0,19684
+django/conf/locale/nb/LC_MESSAGES/django.mo,sha256=XDCGV0qH1f2V-w_Hp2uqkl5w08--EGoqHKAnrBdViGo,26572
+django/conf/locale/nb/LC_MESSAGES/django.po,sha256=DGM90Bk4YsbVffQ18ECsWV4QsZcjw3sCblA_lbt2PNM,28941
+django/conf/locale/nb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/nb/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/nb/formats.py,sha256=y1QLE-SG00eHwje0lkAToHtz4t621Rz_HQRyBWCgK8c,1552
+django/conf/locale/ne/LC_MESSAGES/django.mo,sha256=BcK8z38SNWDXXWVWUmOyHEzwk2xHEeaW2t7JwrxehKM,27248
+django/conf/locale/ne/LC_MESSAGES/django.po,sha256=_Kj_i2zMb7JLU7EN7Z7JcUn89YgonJf6agSFCjXa49w,33369
+django/conf/locale/nl/LC_MESSAGES/django.mo,sha256=Kkpwz7ewcF-IgAVofSHExXzLzJA1wpmUF5bnk2r-SZQ,27641
+django/conf/locale/nl/LC_MESSAGES/django.po,sha256=ThDoNwUAe4EqEUD-VgzfyYUGbaWX4tJVvV1xOEHIMMU,30388
+django/conf/locale/nl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/nl/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/nl/formats.py,sha256=cKaaOvRdeauORjvuZ1xyVcVsl36J3Zk4FSE-lnx2Xwg,3927
+django/conf/locale/nn/LC_MESSAGES/django.mo,sha256=Ccj8kjvjTefC8H6TuDCOdSrTmtkYXkmRR2V42HBMYo4,26850
+django/conf/locale/nn/LC_MESSAGES/django.po,sha256=oaVJTl0NgZ92XJv9DHdsXVaKAc81ky_R3CA6HljTH-8,29100
+django/conf/locale/nn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/nn/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/nn/formats.py,sha256=y1QLE-SG00eHwje0lkAToHtz4t621Rz_HQRyBWCgK8c,1552
+django/conf/locale/os/LC_MESSAGES/django.mo,sha256=LBpf_dyfBnvGOvthpn5-oJuFiSNHrgiVHBzJBR-FxOw,17994
+django/conf/locale/os/LC_MESSAGES/django.po,sha256=WYlAnNYwGFnH76Elnnth6YP2TWA-fEtvV5UinnNj7AA,26278
+django/conf/locale/pa/LC_MESSAGES/django.mo,sha256=H1hCnQzcq0EiSEaayT6t9H-WgONO5V4Cf7l25H2930M,11253
+django/conf/locale/pa/LC_MESSAGES/django.po,sha256=26ifUdCX9fOiXfWvgMkOXlsvS6h6nNskZcIBoASJec4,23013
+django/conf/locale/pl/LC_MESSAGES/django.mo,sha256=qnQP87WqTze8ogwt9Vi5DPKxrXpZqitDmi8QYcovaQs,30088
+django/conf/locale/pl/LC_MESSAGES/django.po,sha256=VfWmnTl93LQbN62DAWenXLh5YbwhkCHk3KauoWJWGq4,33953
+django/conf/locale/pl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/pl/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/pl/formats.py,sha256=KREhPtHuzKS_ZsAqXs5LqYPGhn6O-jLd4WZQ-39BA8I,1032
+django/conf/locale/pt/LC_MESSAGES/django.mo,sha256=nlj_L7Z2FkXs1w6wCGGseuZ_U-IecnlfYRtG5jPkGrs,20657
+django/conf/locale/pt/LC_MESSAGES/django.po,sha256=ETTedbjU2J4FLi2QDHNN8C7zlAsvLWNUlYzkEV1WB6s,26224
+django/conf/locale/pt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/pt/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/pt/formats.py,sha256=RQ9MuIwUPhiY2u-1hFU2abs9Wqv1qZE2AUAfYVK-NU8,1520
+django/conf/locale/pt_BR/LC_MESSAGES/django.mo,sha256=bSQXQlNIcBdrntNc6OvcfwfbaTSxlgnKEdyslZo_WpA,27271
+django/conf/locale/pt_BR/LC_MESSAGES/django.po,sha256=OGtV8cTdQwBHEQ6Xck_JJaxR-tHI7THLmgD9JbGTsEM,31185
+django/conf/locale/pt_BR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/pt_BR/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/pt_BR/formats.py,sha256=J1IKV7cS2YMJ5_qlT9h1dDYUX9tLFvqA95l_GpZTLUY,1285
+django/conf/locale/ro/LC_MESSAGES/django.mo,sha256=IMUybfJat0koxf_jSv6urQQuiHlldUhjrqo3FR303WA,22141
+django/conf/locale/ro/LC_MESSAGES/django.po,sha256=mdMWVR6kXJwUSxul2bpu3IoWom6kWDiES6Iw5ziynj0,27499
+django/conf/locale/ro/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ro/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ro/formats.py,sha256=e_dp0zyfFfoydrGyn6Kk3DnQIj7RTRuvRc6rQ6tSxzA,928
+django/conf/locale/ru/LC_MESSAGES/django.mo,sha256=rTITYVXoFAoqCIKj21rjgnWXCEMwE41QeyX26PqC05M,36220
+django/conf/locale/ru/LC_MESSAGES/django.po,sha256=A98tjI-zPro3bx0zopl5maKKDedF3f2AE5yU4AAZ-mE,40123
+django/conf/locale/ru/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ru/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ru/formats.py,sha256=lTfYbecdSmHCxebog_2bd0N32iD3nEq_f5buh9il-nI,1098
+django/conf/locale/sk/LC_MESSAGES/django.mo,sha256=LLHZDII9g__AFTHCgyLy05I7DQEjZjk20LO-CkrdhS0,27800
+django/conf/locale/sk/LC_MESSAGES/django.po,sha256=iH6cKWjUfKMqVd4Q6HPEnZwOB-39SpllevZIythjk9M,31062
+django/conf/locale/sk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/sk/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/sk/formats.py,sha256=bWj0FNpYfOAgi9J-L4VuiN6C_jsgPsKNdLYd9gTnFs0,1051
+django/conf/locale/sl/LC_MESSAGES/django.mo,sha256=uaPbjsAAam_SrzenHjeHgTC3Pxn6BEecXgnDY9HOzwg,21921
+django/conf/locale/sl/LC_MESSAGES/django.po,sha256=MZ8Lz3dN5JSxw7l8bFRN0ozeW4Sue0jnRURm2zpOcuI,27860
+django/conf/locale/sl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/sl/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/sl/formats.py,sha256=Nq4IfEUnlGebMZeRvB2l9aps-5G5b4y1kQ_3MiJTfe8,1642
+django/conf/locale/sq/LC_MESSAGES/django.mo,sha256=TTrYuB6WUU3b41ExbnFbncIfsPOY07EMLCp5dCNbDlM,27849
+django/conf/locale/sq/LC_MESSAGES/django.po,sha256=wGzpVg1uPm2XL0v0RBVo4dnh73lH9AlkzG3kyYIUgM8,30400
+django/conf/locale/sq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/sq/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/sq/formats.py,sha256=SA_jCSNwI8-p79skHoLxrPLZnkyq1PVadwT6gMt7n_M,688
+django/conf/locale/sr/LC_MESSAGES/django.mo,sha256=XVnYuUQmoQy6BZnPmHnSrWVz75J4sTYKxGn4NqdJU4c,34059
+django/conf/locale/sr/LC_MESSAGES/django.po,sha256=jvlDoqR-OhFigYmrjPWm2cXMVqeYvT9qpbT-yAlp7Lg,36513
+django/conf/locale/sr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/sr/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/sr/formats.py,sha256=F3_gYopOXINcllaPFzTqZrZ2oZ1ye3xzR0NQtlqXYp0,1729
+django/conf/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=XFg0D4jJjXqpYOGoMV1r9tmibEcebm9gczrjCNeWJfw,24760
+django/conf/locale/sr_Latn/LC_MESSAGES/django.po,sha256=ZBkqSDwmnfn-tefNaWRCBmBL8Nxtzgf2f2c95_YP9jU,28890
+django/conf/locale/sr_Latn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/sr_Latn/formats.py,sha256=BDZm-ajQgCIxQ8mCcckEH32IoCN9233TvAOXkg4mc38,1728
+django/conf/locale/sv/LC_MESSAGES/django.mo,sha256=Dc0PI7-iytD6Yamr_08Bn2DHFECsBbnr2Ap3w2pj2Eg,27469
+django/conf/locale/sv/LC_MESSAGES/django.po,sha256=W9ufs2Y0Tklyd0Q3ccIouXBqX2IP92-zdtkiJy-xqNo,30235
+django/conf/locale/sv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/sv/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/sv/formats.py,sha256=9o8ZtaSq1UOa5y6Du3rQsLAAl5ZOEdVY1OVVMbj02RA,1311
+django/conf/locale/sw/LC_MESSAGES/django.mo,sha256=aUmIVLANgSCTK5Lq8QZPEKWjZWnsnBvm_-ZUcih3J6g,13534
+django/conf/locale/sw/LC_MESSAGES/django.po,sha256=GOE6greXZoLhpccsfPZjE6lR3G4vpK230EnIOdjsgPk,22698
+django/conf/locale/ta/LC_MESSAGES/django.mo,sha256=WeM8tElbcmL11P_D60y5oHKtDxUNWZM9UNgXe1CsRQ4,7094
+django/conf/locale/ta/LC_MESSAGES/django.po,sha256=kgHTFqysEMj1hqktLr-bnL1NRM715zTpiwhelqC232s,22329
+django/conf/locale/ta/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/ta/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/ta/formats.py,sha256=vmjfiM54oJJxqcdgZJUNNQN7oMS-XLVBYJ4lWBb5ctY,682
+django/conf/locale/te/LC_MESSAGES/django.mo,sha256=Sk45kPC4capgRdW5ImOKYEVxiBjHXsosNyhVIDtHLBc,13259
+django/conf/locale/te/LC_MESSAGES/django.po,sha256=IQxpGTpsKUtBGN1P-KdGwvE7ojNCqKqPXEvYD3qT5A4,25378
+django/conf/locale/te/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/te/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/te/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/te/formats.py,sha256=-HOoZgmnME4--4CuXzcnhXqNma0Wh7Ninof3RCCGZkU,680
+django/conf/locale/tg/LC_MESSAGES/django.mo,sha256=ePzS2pD84CTkHBaiaMyXBxiizxfFBjHdsGH7hCt5p_4,28497
+django/conf/locale/tg/LC_MESSAGES/django.po,sha256=oSKu3YT3griCrDLPqptZmHcuviI99wvlfX6I6nLJnDk,33351
+django/conf/locale/tg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/tg/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/tg/formats.py,sha256=TG5TGfLNy4JSjl-QAWk46gIEb0ijdBpqPrDtwfJzshw,1160
+django/conf/locale/th/LC_MESSAGES/django.mo,sha256=SJeeJWbdF-Lae5BendxlyMKqx5zdDmh3GCQa8ER5FyY,18629
+django/conf/locale/th/LC_MESSAGES/django.po,sha256=K4ITjzHLq6DyTxgMAfu3CoGxrTd3aG2J6-ZxQj2KG1U,27507
+django/conf/locale/th/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/th/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/th/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/th/formats.py,sha256=SmCUD-zVgI1QE2HwqkFtAO87rJ-FoCjw1s-2-cfl1h0,1072
+django/conf/locale/tk/LC_MESSAGES/django.mo,sha256=B80ko55qX70bXz0b7f5azf1_6Vqyp0ELIiB1T-RJMW8,25628
+django/conf/locale/tk/LC_MESSAGES/django.po,sha256=FaDJ7UkoZzRvLhy25uo2l2IQkBGFVQuW-izXHzKdNCM,28772
+django/conf/locale/tk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/tk/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/tk/formats.py,sha256=TG5TGfLNy4JSjl-QAWk46gIEb0ijdBpqPrDtwfJzshw,1160
+django/conf/locale/tr/LC_MESSAGES/django.mo,sha256=bYmigAMi7l_Us4acWtA2sA_gvafEO0M9zJ6msr0TOA4,28298
+django/conf/locale/tr/LC_MESSAGES/django.po,sha256=rgwQ9ZRR4l22a5erSPIVe-RivJlsCqQfWMtlitzsuA4,30857
+django/conf/locale/tr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/tr/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/tr/formats.py,sha256=yJg-7hmevD1gvj9iBRMCiYGgd5DxKZcL7T_C3K3ztME,1019
+django/conf/locale/tt/LC_MESSAGES/django.mo,sha256=r554DvdPjD_S8hBRjW8ehccEjEk8h7czQsp46FZZ_Do,14500
+django/conf/locale/tt/LC_MESSAGES/django.po,sha256=W8QgEAH7yXNmjWoF-UeqyVAu5jEMHZ5MXE60e5sawJc,24793
+django/conf/locale/udm/LC_MESSAGES/django.mo,sha256=cIf0i3TjY-yORRAcSev3mIsdGYT49jioTHZtTLYAEyc,12822
+django/conf/locale/udm/LC_MESSAGES/django.po,sha256=n9Az_8M8O5y16yE3iWmK20R9F9VoKBh3jR3iKwMgFlY,23113
+django/conf/locale/uk/LC_MESSAGES/django.mo,sha256=W_AqqHC1n_9RO4gSgWyC3APjhP4v2a0Xq4f3gk16oTQ,29755
+django/conf/locale/uk/LC_MESSAGES/django.po,sha256=634AZnTlE7dfetHkYrWbk4sMtRVDqRBkhx3S2xeOcFw,35793
+django/conf/locale/uk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/uk/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/uk/formats.py,sha256=ZmeYmL0eooFwQgmE054V36RQ469ZTfAv6k8SUJrDYQ8,1241
+django/conf/locale/ur/LC_MESSAGES/django.mo,sha256=M6R2DYFRBvcVRAsgVxVOLvH3e8v14b2mJs650UlUb2I,12291
+django/conf/locale/ur/LC_MESSAGES/django.po,sha256=Lr0DXaPqWtCFAxn10BQ0vlvZIMNRvCg_QJQxAC01eWk,23479
+django/conf/locale/uz/LC_MESSAGES/django.mo,sha256=c8eHLqubZqScsU8LjGK-j2uAGeWzHCSmCy-tYu9x_FA,27466
+django/conf/locale/uz/LC_MESSAGES/django.po,sha256=TxmmhZCC1zrAgo0xM0JQKywju0XBd1BujMKZ9HtOLKY,29376
+django/conf/locale/uz/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/uz/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/uz/formats.py,sha256=cdmqOUBVnPSyi2k9AkOGl27s89PymFePG2gtnYzYbiw,1176
+django/conf/locale/vi/LC_MESSAGES/django.mo,sha256=TMsBzDnf9kZndozqVUnEKtKxfH2N1ajLdrm8hJ4HkYI,17396
+django/conf/locale/vi/LC_MESSAGES/django.po,sha256=tL2rvgunvaN_yqpPSBYAKImFDaFaeqbnpEw_egI11Lo,25342
+django/conf/locale/vi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/vi/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/vi/formats.py,sha256=_xIugkqLnjN9dzIhefMpsJXaTPldr4blKSGS-c3swg0,762
+django/conf/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=rbn0fcTiKcXc6cl33-rMn1dn4cyjIN3tXLpx9fOFXkE,26430
+django/conf/locale/zh_Hans/LC_MESSAGES/django.po,sha256=s1BAFMz7gA0ejgPVKBeiv-uHrPA6VH5ws20A60eHS2A,29472
+django/conf/locale/zh_Hans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/zh_Hans/formats.py,sha256=iMb9Taj6xQQA3l_NWCC7wUlQuh4YfNUgs2mHcQ6XUEo,1598
+django/conf/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=1U3cID-BpV09p0sgYryzJCCApQYVlCtb4fJ5IPB8wtc,19560
+django/conf/locale/zh_Hant/LC_MESSAGES/django.po,sha256=buHXYy_UKFoGW8xz6PNrSwbMx-p8gwmPRgdWGBYwT2U,24939
+django/conf/locale/zh_Hant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc,,
+django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc,,
+django/conf/locale/zh_Hant/formats.py,sha256=iMb9Taj6xQQA3l_NWCC7wUlQuh4YfNUgs2mHcQ6XUEo,1598
+django/conf/project_template/manage.py-tpl,sha256=JDuGG02670bELmn3XLUSxHFZ8VFhqZTT_oN9VbT5Acc,674
+django/conf/project_template/project_name/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/conf/project_template/project_name/asgi.py-tpl,sha256=q_6Jo5tLy6ba-S7pLs3YTK7byxSBmU0oYylYJlNvwHI,428
+django/conf/project_template/project_name/settings.py-tpl,sha256=JskIPIEWPSX2p7_rlsPr60JDjmFC0bVEeMChmq--0OY,3342
+django/conf/project_template/project_name/urls.py-tpl,sha256=vrokVPIRgYajr3Osw2_D1gCndrJ-waGU3tkpnzhWync,775
+django/conf/project_template/project_name/wsgi.py-tpl,sha256=OCfjjCsdEeXPkJgFIrMml_FURt7msovNUPnjzb401fs,428
+django/conf/urls/__init__.py,sha256=qmpaRi5Gn2uaY9h3g9RNu0z3LDEpEeNL9JlfSLed9s0,292
+django/conf/urls/__pycache__/__init__.cpython-310.pyc,,
+django/conf/urls/__pycache__/i18n.cpython-310.pyc,,
+django/conf/urls/__pycache__/static.cpython-310.pyc,,
+django/conf/urls/i18n.py,sha256=Xz83EPb1MwylIF1z3NimtAD7TlJwd_0ZpZoxj2HEO1E,1184
+django/conf/urls/static.py,sha256=gZOYaiIf3SxQ75N69GyVm9C0OmQv1r1IDrUJ0E7zMe0,908
+django/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/admin/__init__.py,sha256=s4yCvpvHN4PbCIiNNZKSCaUhN_0NdkrLq-qihnJH4L4,1169
+django/contrib/admin/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/admin/__pycache__/actions.cpython-310.pyc,,
+django/contrib/admin/__pycache__/apps.cpython-310.pyc,,
+django/contrib/admin/__pycache__/checks.cpython-310.pyc,,
+django/contrib/admin/__pycache__/decorators.cpython-310.pyc,,
+django/contrib/admin/__pycache__/exceptions.cpython-310.pyc,,
+django/contrib/admin/__pycache__/filters.cpython-310.pyc,,
+django/contrib/admin/__pycache__/forms.cpython-310.pyc,,
+django/contrib/admin/__pycache__/helpers.cpython-310.pyc,,
+django/contrib/admin/__pycache__/models.cpython-310.pyc,,
+django/contrib/admin/__pycache__/options.cpython-310.pyc,,
+django/contrib/admin/__pycache__/sites.cpython-310.pyc,,
+django/contrib/admin/__pycache__/tests.cpython-310.pyc,,
+django/contrib/admin/__pycache__/utils.cpython-310.pyc,,
+django/contrib/admin/__pycache__/widgets.cpython-310.pyc,,
+django/contrib/admin/actions.py,sha256=vjwAZGMGf4rjlJSIaGOX-7SfP0XmkJT_065sGhYDyD8,3257
+django/contrib/admin/apps.py,sha256=BOiulA4tsb3wuAUtLGTGjrbywpSXX0dLo2pUCGV8URw,840
+django/contrib/admin/checks.py,sha256=bf-DZBU7hY_-7zdkpAUX6E5C5oK4UTZI71_9Sp8uu7Y,49782
+django/contrib/admin/decorators.py,sha256=dki7GLFKOPT-mB5rxsYX12rox18BywroxmrzjG_VJXM,3481
+django/contrib/admin/exceptions.py,sha256=wpzdKnp6V_aTYui_4tQZ8hFJf7W5xYkEMym0Keg1k0k,333
+django/contrib/admin/filters.py,sha256=TC5JIp0ounPi1o12t03N-CFvmZ9li78LsuSzgmnoPA0,20886
+django/contrib/admin/forms.py,sha256=0UCJstmmBfp_c_0AqlALJQYy9bxXo9fqoQQICQONGEo,1023
+django/contrib/admin/helpers.py,sha256=IXn_pbqxk_RocYbVRW2uJdXQglrJTrT4JAfsZntJhBA,18363
+django/contrib/admin/locale/af/LC_MESSAGES/django.mo,sha256=3VNfQp5JaJy4XRqxM7Uu9uKHDihJCvKXYhdWPXOofc8,16216
+django/contrib/admin/locale/af/LC_MESSAGES/django.po,sha256=R2ix5AnK5X35wnhjT38K85JgwewQkmwrYwyVx4YqikQ,17667
+django/contrib/admin/locale/af/LC_MESSAGES/djangojs.mo,sha256=dmctO7tPkPwdbpp-tVmZrR0QLZekrJ1aE3rnm6vvUQM,4477
+django/contrib/admin/locale/af/LC_MESSAGES/djangojs.po,sha256=1wwspqp0rsSupVes7zjYLyNT_wY4lFefqhpXH5wBdJM,4955
+django/contrib/admin/locale/am/LC_MESSAGES/django.mo,sha256=UOwMxYH1r5AEBpu-P9zxHazk3kwI4CtsPosGIYtl6Hs,8309
+django/contrib/admin/locale/am/LC_MESSAGES/django.po,sha256=NmsIZoBEQwyBIqbKjkwCJ2_iMHnMKB87atoT0iuNXrw,14651
+django/contrib/admin/locale/ar/LC_MESSAGES/django.mo,sha256=tzGQ8jSJc406IBBwtAErlXVqaA10glxB8krZtWp1Rq4,19890
+django/contrib/admin/locale/ar/LC_MESSAGES/django.po,sha256=RBJbiYNDy57K592OKghugZFYiHpTvxUoEQ_B26-5i8A,21339
+django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo,sha256=xoI2xNKgspuuJe1UCUB9H6Kyp3AGhj5aeo_WEg5e23A,6545
+django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po,sha256=jwehFDFk3lMIEH43AEU_JyHOm84Seo-OLd5FmGBbaxo,7281
+django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=ipELNNGQYb_nHTEQbUFED8IT26L9c2UXsELf4wk0q6k,19947
+django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.po,sha256=2mGF2NfofR8WgSJPShF5CrMjECXj0dGFcFaZ2lriulc,21378
+django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.mo,sha256=L3N1U9OFXYZ8OfrvKHLbVvXa40biIDdmon0ZV8BOIvY,6423
+django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.po,sha256=Atzp95E2dFtSHZHHna0pBCqU_2V7partODX675OBkQs,7206
+django/contrib/admin/locale/ast/LC_MESSAGES/django.mo,sha256=3uffu2zPbQ1rExUsG_ambggq854Vy8HbullkCYdazA4,2476
+django/contrib/admin/locale/ast/LC_MESSAGES/django.po,sha256=wCWFh9viYUhTGOX0mW3fpN2z0kdE6b7IaA-A5zzb3Yo,11676
+django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.mo,sha256=kiG-lzQidkXER5s_6POO1G91mcAv9VAkAXI25jdYBLE,2137
+django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.po,sha256=s4s6aHocTlzGcFi0p7cFGTi3K8AgoPvFCv7-Hji6At0,4085
+django/contrib/admin/locale/az/LC_MESSAGES/django.mo,sha256=wgOltdxxboFzjUqoaqdU_rmlVptlfIpGEWKNdKz3ORo,16008
+django/contrib/admin/locale/az/LC_MESSAGES/django.po,sha256=AK41oVjiPgrYRhnBNGgKUr7NFtxsW_ASfknO2Dj20Uw,18246
+django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo,sha256=sre90ULGTqwvLUyrrTJrj3kEPwlbP-VDg-fqT_02fsE,5225
+django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po,sha256=-o9woCOf9ikbIptd9uTej6G-TtTQPKRSuK86N0Ta0yU,5968
+django/contrib/admin/locale/be/LC_MESSAGES/django.mo,sha256=npxIePwS6kY6UScaQl13xx1MPecYJcFCATuGNZB7a5c,21347
+django/contrib/admin/locale/be/LC_MESSAGES/django.po,sha256=4gG-r4SS9yEc9riM3e0fh46FSQHhB6E4vCw9jx1AsNc,22579
+django/contrib/admin/locale/be/LC_MESSAGES/djangojs.mo,sha256=ujRhIpDAf0W8YQpXiWgVOsbjpmS6QqI9I49WkKfqDpc,6558
+django/contrib/admin/locale/be/LC_MESSAGES/djangojs.po,sha256=Gg9mu6NJp4K0Fqs7TSPbGkTyn5YkXICHTAlRqL57rMw,7190
+django/contrib/admin/locale/bg/LC_MESSAGES/django.mo,sha256=wCkAQIkSfSql0ToXDm-3Ns7s-NDcBWOUFp342L2c_fg,21549
+django/contrib/admin/locale/bg/LC_MESSAGES/django.po,sha256=j08HkzolcVnB6AHwsb6EJd6kQHbNvWQEnZ2WvJLAfh8,23006
+django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo,sha256=jg3XbDGEJcfsBegtgjkFa6i_lcm2gf64-Gimh99vKcM,6483
+django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po,sha256=aIRSQTjvzcUDcL3LnCKd8gCqsfw8GiMnT_ZwnLiw75M,7093
+django/contrib/admin/locale/bn/LC_MESSAGES/django.mo,sha256=I3KUX53ePEC-8x_bwkR5spx3WbJRR8Xf67_2Xrr7Ccg,18585
+django/contrib/admin/locale/bn/LC_MESSAGES/django.po,sha256=UvKCBSa5MuxxZ7U5pRWXH6CEQ9WCJH2cQND0jjBmgpQ,22889
+django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo,sha256=t_OiMyPMsR2IdH65qfD9qvQfpWbwFueNuY72XSed2Io,2313
+django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po,sha256=iFwEJi4k3ULklCq9eQNUhKVblivQPJIoC_6lbyEkotY,4576
+django/contrib/admin/locale/br/LC_MESSAGES/django.mo,sha256=yCuMwrrEB_H44UsnKwY0E87sLpect_AMo0GdBjMZRPs,6489
+django/contrib/admin/locale/br/LC_MESSAGES/django.po,sha256=WMU_sN0ENWgyEbKOm8uVQfTQh9sabvKihtSdMt4XQBM,13717
+django/contrib/admin/locale/br/LC_MESSAGES/djangojs.mo,sha256=n7Yx2k9sAVSNtdY-2Ao6VFsnsx4aiExZ3TF_DnnrKU0,1658
+django/contrib/admin/locale/br/LC_MESSAGES/djangojs.po,sha256=gjg-VapbI9n_827CqNYhbtIQ8W9UcMmMObCsxCzReUU,4108
+django/contrib/admin/locale/bs/LC_MESSAGES/django.mo,sha256=44D550fxiO59Pczu5HZ6gvWEClsfmMuaxQWbA4lCW2M,8845
+django/contrib/admin/locale/bs/LC_MESSAGES/django.po,sha256=FrieR1JB4ssdWwYitJVpZO-odzPBKrW4ZsGK9LA595I,14317
+django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo,sha256=SupUK-RLDcqJkpLEsOVjgZOWBRKQMALZLRXGEnA623M,1183
+django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po,sha256=TOtcfw-Spn5Y8Yugv2OlPoaZ5DRwJjRIl-YKiyU092U,3831
+django/contrib/admin/locale/ca/LC_MESSAGES/django.mo,sha256=Wj8KdBSUuUtebE45FK3kvzl155GdTv4KgecoMxFi0_g,17535
+django/contrib/admin/locale/ca/LC_MESSAGES/django.po,sha256=5s5RIsOY5uL1oQQ5IrOhsOgAWWFZ25vTcYURO2dlR8g,19130
+django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo,sha256=_c1kqrOKLefixnqinutLyjB_3At56keptkowLCVX7w8,5309
+django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po,sha256=o-S3be-tNLWkQzJE1yXnByvMKDQvnk1tjZALQ1RKLZs,5990
+django/contrib/admin/locale/cs/LC_MESSAGES/django.mo,sha256=SGPfh9-MhUiRmguk3CGa5GC-Q8LHIo5aHZa4zkpWgow,17736
+django/contrib/admin/locale/cs/LC_MESSAGES/django.po,sha256=4HVVC6Bb4MhileINcde8RmKbHKomhW4xpiyUx91cTdc,19306
+django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo,sha256=OiM40p3ioK9FD4JWLb2jYP75kcurEcn9ih_HDL7Pyus,5851
+django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po,sha256=hh7P3DpEzkCb7M6d2iFwHKp1CzbrmMgeyAGP96BxprE,6629
+django/contrib/admin/locale/cy/LC_MESSAGES/django.mo,sha256=7ifUyqraN1n0hbyTVb_UjRIG1jdn1HcwehugHBiQvHs,12521
+django/contrib/admin/locale/cy/LC_MESSAGES/django.po,sha256=bS_gUoKklZwd3Vs0YlRTt24-k5ure5ObTu-b5nB5qCA,15918
+django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo,sha256=fOCA1fXEmJw_QaXEISLkuBhaMnEmP1ssP9lhqdCCC3c,3801
+django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po,sha256=OVcS-3tlMJS_T58qnZbWLGczHwFyAjbuWr35YwuxAVM,5082
+django/contrib/admin/locale/da/LC_MESSAGES/django.mo,sha256=cVt89SPwOqy_CZa6JhS-0E9CbdOZkCxdIxCxUVIuJvU,16982
+django/contrib/admin/locale/da/LC_MESSAGES/django.po,sha256=5l36QeymZCvaMOBcu2dzNotqQIBVwOppxsAe3P5u14Y,18379
+django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo,sha256=6O8b3TROAA7i4rrbLHRPuA8ZaJTwZoi5ywJw1HGtQw4,5289
+django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po,sha256=ftLxLh9uNfSlSos_Z5a01AAcv8Y-ba5cyFO67G0kKFQ,6072
+django/contrib/admin/locale/de/LC_MESSAGES/django.mo,sha256=Rq0G7Ij06S9hvzQ6Q5LkHYmDt5ehT03C2gD4iLlLJB8,17860
+django/contrib/admin/locale/de/LC_MESSAGES/django.po,sha256=O_ML2rpctXX8zZA6UPcQdi681QPrFL6J8_lkL6etY-k,19338
+django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo,sha256=ip_E7Un1XcToobQxWHXY4-ZrptRARH36w2Meu_vmKfw,5398
+django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po,sha256=a-XOnpUUCVw7YjmLUtyTFreYfTdlAq-NWqDx4irxQQw,6077
+django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo,sha256=iqugj0SQqkyVoIeWad9G8i3vzyu9BB4zh3GuaxOsDPY,17909
+django/contrib/admin/locale/dsb/LC_MESSAGES/django.po,sha256=jukfdoKP0rHwk8S0unh28CropoJU_lnWHBG2jGUZEfA,19105
+django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo,sha256=Gqy8gtip449Bgp9ReWKj5e9T31LAUPgKDEySOlgwKLY,5808
+django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po,sha256=cBy02WOUqZFRHatnUSems1FNBT0QtQqC9AM9sGXiox0,6400
+django/contrib/admin/locale/el/LC_MESSAGES/django.mo,sha256=54kG_94nJigDgJpZM8Cy58G_AGLdS5csJFEjTTvJBfM,22968
+django/contrib/admin/locale/el/LC_MESSAGES/django.po,sha256=f2gUQtedb0sZCBxAoy3hP2rGXT9ysP5UTOlCBvu2NvI,24555
+django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo,sha256=cix1Bkj2hYO_ofRvtPDhJ9rBnTR6-cnKCFKpZrsxJ34,6509
+django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po,sha256=R05tMMuQEjVQpioy_ayQgFBlLM4WdwXthkMguW6ga24,7339
+django/contrib/admin/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/admin/locale/en/LC_MESSAGES/django.po,sha256=akScm2Ru7ERfuMkGskyGkAtUPsrQxMmv2hSfb_LkDFw,24115
+django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po,sha256=NZ5-3PHlp9O9oNHJRXTsTPXCsRzFLGhj7V1cEvJWBbo,7636
+django/contrib/admin/locale/en_AU/LC_MESSAGES/django.mo,sha256=QEvxPxDqNUmq8NxN-8c_F6KMEcWWum3YzERlc3_S_DM,16191
+django/contrib/admin/locale/en_AU/LC_MESSAGES/django.po,sha256=BoVuGaPoGdQcF3zdgGRxrNKSq2XLHTvKfINCyU8t86Y,17548
+django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.mo,sha256=s0qPS8TjODtPo4miSznQfS6M8CQK9URDeMKeQsp7DK4,5001
+django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.po,sha256=YecPU6VmUDDNNIzZVl2Wgd6lNRp3msJaW8FhdHMtEyc,5553
+django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo,sha256=pFkTMRDDj76WA91wtGPjUB7Pq2PN7IJEC54Tewobrlc,11159
+django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po,sha256=REUJMGLGRyDMkqh4kJdYXO9R0Y6CULFVumJ_P3a0nv0,15313
+django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo,sha256=hW325c2HlYIIdvNE308c935_IaDu7_qeP-NlwPnklhQ,3147
+django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po,sha256=Ol5j1-BLbtSIDgbcC0o7tg_uHImcjJQmkA4-kSmZY9o,4581
+django/contrib/admin/locale/eo/LC_MESSAGES/django.mo,sha256=rrRYsz82QIaUEuHREYIw7mPLBhUhJ4EcX8PdND7btyk,13656
+django/contrib/admin/locale/eo/LC_MESSAGES/django.po,sha256=2AacIHf1R3030J0Deo-2LR8VZhmPmG4nii6mi8q9kbY,16778
+django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo,sha256=I1Ue345qSHPmJpX4yiYgomQ8vMgshRt1S1D_ZVJWf7g,4452
+django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po,sha256=BdSRWCYCDxLxtbcPSfRdAMGoTRWOWaxRGpdCIm-3HA0,5040
+django/contrib/admin/locale/es/LC_MESSAGES/django.mo,sha256=lHBMJveopDZkJ2pUiNMNjh3WJN6tBB6VAp1ycUodsTI,17696
+django/contrib/admin/locale/es/LC_MESSAGES/django.po,sha256=9bOk-Ye-JWUdyqZzSkUE11NQgX7xnCOgSd-Uy4YspeQ,19639
+django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo,sha256=FWXwW5YUTD6HHoYV2Snc2WeNmllz9vJVy5rjSCjQlA4,5203
+django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po,sha256=v1xp_eeyFsrW9rvXk5V6pOVyzHP_ZX06_fCbQppdE-4,6035
+django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo,sha256=andQgB0m5i0gUXQQ1apigqdL8-P9Y6EHb_Y8xRA1NGo,17979
+django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po,sha256=oPc3BcEwgvjFgyB9eJxWSdaYJllx9cDA2snKRFr1rrE,19240
+django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo,sha256=wnTfaWZm_wIl_MpxHQwCLS7exNgsPxfIwLT6hydPCkg,5585
+django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po,sha256=ztJtT2YVV5f2r6vptiiTgBLJ0bapPLAIq_V5tJxAlAQ,6177
+django/contrib/admin/locale/es_CO/LC_MESSAGES/django.mo,sha256=0k8kSiwIawYCa-Lao0uetNPLUzd4m_me3tCAVBvgcSw,15156
+django/contrib/admin/locale/es_CO/LC_MESSAGES/django.po,sha256=4T_syIsVY-nyvn5gEAtfN-ejPrJSUpNT2dmzufxaBsE,17782
+django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.mo,sha256=PLS10KgX10kxyy7MUkiyLjqhMzRgkAFGPmzugx9AGfs,3895
+django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.po,sha256=Y4bkC8vkJE6kqLbN8t56dR5670B06sB2fbtVzmQygK8,5176
+django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo,sha256=O8CbY83U4fTvvPPuONtlMx6jpA-qkrYxNTkLuMrWiRQ,11517
+django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po,sha256=8MSKNxhHMp0ksr5AUUAbs_H6MtMjIqkaFwmaJlBxELs,16307
+django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo,sha256=2w3CMJFBugP8xMOmXsDU82xUm8cWGRUGZQX5XjiTCpM,3380
+django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po,sha256=OP9cBsdCf3zZAXiKBMJPvY1AHwC_WE1k2vKlzVCtUec,4761
+django/contrib/admin/locale/es_VE/LC_MESSAGES/django.mo,sha256=himCORjsM-U3QMYoURSRbVv09i0P7-cfVh26aQgGnKg,16837
+django/contrib/admin/locale/es_VE/LC_MESSAGES/django.po,sha256=mlmaSYIHpa-Vp3f3NJfdt2RXB88CVZRoPEMfl-tccr0,18144
+django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.mo,sha256=Zy-Hj_Mr2FiMiGGrZyssN7GZJrbxRj3_yKQFZKR36Ro,4635
+django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.po,sha256=RI8CIdewjL3bAivniMOl7lA9tD7caP4zEo2WK71cX7c,5151
+django/contrib/admin/locale/et/LC_MESSAGES/django.mo,sha256=kDX-u-gvkXFaOrfFbZ4bIEs838IX-t_-rj8031wvZ8Q,16736
+django/contrib/admin/locale/et/LC_MESSAGES/django.po,sha256=tJqtqniPIp0a7b4E0pp5PW1fUxrti263mvAzPtDoXac,18234
+django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo,sha256=kxz2ZDbL-1BxlF6iYTIk2tl5yefzh1NCHRdoJI4xlJ8,4965
+django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po,sha256=fEGMNYwWRUXoJcb8xi95SYOcdm4FYxwAzearlMk76yc,5694
+django/contrib/admin/locale/eu/LC_MESSAGES/django.mo,sha256=CBk_9H8S8LlK8hfGQsEB7IgSms-BsURzAFrX9Zrsw4c,15009
+django/contrib/admin/locale/eu/LC_MESSAGES/django.po,sha256=9vnPgJRPcdSa4P5rguB5zqWQC1xAt4POzDw-mSD8UHs,17489
+django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo,sha256=vKtO_mbexiW-EO-L-G0PYruvc8N7GOF94HWQCkDnJNQ,4480
+django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po,sha256=BAWU-6kH8PLBxx_d9ZeeueB_lV5KFXjbRJXgKN43nQ4,5560
+django/contrib/admin/locale/fa/LC_MESSAGES/django.mo,sha256=Og9enbwYKrRvYCgnhAxxCLPiR5a3qqi-6k7YMr9pH7E,20345
+django/contrib/admin/locale/fa/LC_MESSAGES/django.po,sha256=729GcmVyQ9tksaff4VJbvaeKdaoly5gQhad06Tn42YY,22018
+django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo,sha256=MAje4ub3vWYhiKrVR_LvxAIqkvOlFpVcXQEBz3ezlPs,6050
+django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po,sha256=1nzEmRuswDmyCCMShGH2CYdjMY7tUuedfN4kDCEnTCM,6859
+django/contrib/admin/locale/fi/LC_MESSAGES/django.mo,sha256=KkQFxmyPelc56DyeqzNcYkxmLL0qKRME7XTGFSAXr58,16940
+django/contrib/admin/locale/fi/LC_MESSAGES/django.po,sha256=yxbVs2mpWa3tTA5LJ-erc3roqZfPD1UAiOTA4nrUjks,18282
+django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo,sha256=C9Rk5eZ6B_4OF5jTb2IZOjw_58Shos4T0qwci8-unSE,5378
+django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po,sha256=3_9X1ytlRSGdoye16RQZWVA8PBzF7s_nFxLOtp1uZlI,6024
+django/contrib/admin/locale/fr/LC_MESSAGES/django.mo,sha256=ywp3CKt0VKzWkWtVGVg6PdjzTk-TDhhn_wnmX2sz1Tk,18652
+django/contrib/admin/locale/fr/LC_MESSAGES/django.po,sha256=e47hTmm733L5Oind_AdlJV-ySvOsnv3XGx9BhI77fNU,19961
+django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo,sha256=0CYD92BO8bZZH74BO9HQ-FfN-mO-mLfaAVq1jUJpxuU,5532
+django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po,sha256=VeVgLXnB9fRwQuh6mNNPvnAbs-9f0QW1efQVRSZ1SMk,6141
+django/contrib/admin/locale/fy/LC_MESSAGES/django.mo,sha256=mWnHXGJUtiewo1F0bsuJCE_YBh7-Ak9gjTpwjOAv-HI,476
+django/contrib/admin/locale/fy/LC_MESSAGES/django.po,sha256=oSKEF_DInUC42Xzhw9HiTobJjE2fLNI1VE5_p6rqnCE,10499
+django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
+django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.po,sha256=efBDCcu43j4SRxN8duO5Yfe7NlpcM88kUPzz-qOkC04,2864
+django/contrib/admin/locale/ga/LC_MESSAGES/django.mo,sha256=cIOjVge5KC37U6g-0MMaP5p8N0XJxzK6oJqWNUw9jfI,15075
+django/contrib/admin/locale/ga/LC_MESSAGES/django.po,sha256=Qx1D0cEGIIPnO10I_83IfU3faEYpp0lm-KHg48lJMxE,17687
+django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo,sha256=G-9VfhiMcooTbAI1IMvbvUwj_h_ttNyxGS89nIgrpw4,5247
+django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po,sha256=DsDMYhm5PEpFBBGepf2iRD0qCkh2r45Y4tIHzFtjJAo,5920
+django/contrib/admin/locale/gd/LC_MESSAGES/django.mo,sha256=HEqiGvjMp0NnfIS0Z-c1i8SicEtMPIg8LvNMh-SXiPg,18871
+django/contrib/admin/locale/gd/LC_MESSAGES/django.po,sha256=cZWnJyEoyGFLbk_M4-eddTJLKJ0dqTIlIj4w6YwcjJg,20139
+django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo,sha256=QA2_hxHGzt_y0U8sAGQaT27IvvyWrehLPKP2X1jAvEs,5904
+django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po,sha256=KyYGpFHq2E55dK005xzH0I2RD-C2kD6BlJi8bcMjtRA,6540
+django/contrib/admin/locale/gl/LC_MESSAGES/django.mo,sha256=rRBlaoBQzzpFHN9ZuuHvXTJnLYciMYHA8IX9K6-4fmw,10785
+django/contrib/admin/locale/gl/LC_MESSAGES/django.po,sha256=OEOpmZuXMGG_SSHX0zdw_bgy3gDzcjWz9zgb9esYHrA,15902
+django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo,sha256=YkT7l3U9ffSGqXmu6S41Ex0r7tbK-0BKH5lS6O8PAGs,3279
+django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po,sha256=EDccOpm1mpT8mVRvu5LBsq8nao50oP1V7aKEnuRmtF8,4803
+django/contrib/admin/locale/he/LC_MESSAGES/django.mo,sha256=5Ckbdd-vF0C-W6tHf2_o2SZzMiRyrv9u9W0CLsqt0XM,16297
+django/contrib/admin/locale/he/LC_MESSAGES/django.po,sha256=FoVOVR6iqKlFLhkHMLJMnQJmLLwzkVKe5wQ7IsFPX_c,18924
+django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo,sha256=sdc97pmpMSUAvoMwrWOHyGPYV4j3DDhz4DlqFeRVTT4,5791
+django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po,sha256=ZXy7lexBNYbzAriBG27Jn-mv2DFoGobsV1Ur2lDtRMQ,6573
+django/contrib/admin/locale/hi/LC_MESSAGES/django.mo,sha256=yWjTYyrVxXxwBWgPsC7IJ9IxL_85v378To4PCEEcwuI,13811
+django/contrib/admin/locale/hi/LC_MESSAGES/django.po,sha256=FpKFToDAMsgc1aG6-CVpi5wAxhMQjkZxz_89kCiKmS4,19426
+django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo,sha256=yCUHDS17dQDKcAbqCg5q8ualaUgaa9qndORgM-tLCIw,4893
+django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po,sha256=U9rb5tPMICK50bRyTl40lvn-tvh6xL_6o7xIPkzfKi0,6378
+django/contrib/admin/locale/hr/LC_MESSAGES/django.mo,sha256=3TR3uFcd0pnkDi551WaB9IyKX1aOazH7USxqc0lA0KQ,14702
+django/contrib/admin/locale/hr/LC_MESSAGES/django.po,sha256=qcW7tvZoWZIR8l-nMRexGDD8VlrOD7l5Fah6-ecilMk,17378
+django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo,sha256=KR34lviGYh1esCkPE9xcDE1pQ_q-RxK1R2LPjnG553w,3360
+django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po,sha256=w7AqbYcLtu88R3KIKKKXyRt2gwBBBnr-ulxONWbw01I,4870
+django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo,sha256=-ParKlCmKrzENtnyHqh4a0yJE18J5yi0TP-r9jQfArI,17520
+django/contrib/admin/locale/hsb/LC_MESSAGES/django.po,sha256=9e_sWbpB1UlyORWsbjOMXvA2vtsiff1saZfhOoGhX50,18700
+django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo,sha256=nx5PHpjnFVOL_64Ui3HGTgUOZWnIUy5HF0DxHi7Dyz0,5681
+django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po,sha256=XMpmL1mYKGymExY5KXl9FBBZgMrJIGNSBBvc92y8yno,6281
+django/contrib/admin/locale/hu/LC_MESSAGES/django.mo,sha256=O_QBDJcYI_rVYvXdI3go3YA2Y1u-NOuKOwshF6Ic7bs,17427
+django/contrib/admin/locale/hu/LC_MESSAGES/django.po,sha256=Gt0lw5n8KxK0ReE0HWrMjPFOXxVGZxxZ3YX4MiV9z1M,18962
+django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo,sha256=CgDVu17Y4DDNfuzUGWyfHyAMFc4ZulYcTFPcU7Yot74,5121
+django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po,sha256=U52dESIGFfZIzUTgeNUKcLjZGGFmTGU0fSxDw2LMhiQ,5816
+django/contrib/admin/locale/hy/LC_MESSAGES/django.mo,sha256=Dcx9cOsYBfbgQgoAQoLhn_cG1d2sKGV6dag4DwnUTaY,18274
+django/contrib/admin/locale/hy/LC_MESSAGES/django.po,sha256=CnQlRZ_DUILMIqVEgUTT2sufAseEKJHHjWsYr_LAqi8,20771
+django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.mo,sha256=ttfGmyEN0-3bM-WmfCge2lG8inubMPOzFXfZrfX9sfw,5636
+django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.po,sha256=jf94wzUOMQaKSBR-77aijQXfdRAqiYSeAQopiT_8Obc,6046
+django/contrib/admin/locale/ia/LC_MESSAGES/django.mo,sha256=SRKlr8RqW8FQhzMsXdA9HNqttO3hc0xf4QdQJd4Dy8c,11278
+django/contrib/admin/locale/ia/LC_MESSAGES/django.po,sha256=pBQLQsMinRNh0UzIHBy3qEW0etUWMhFALu4-h-woFyE,15337
+django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.mo,sha256=28MiqUf-0-p3PIaongqgPQp2F3D54MLAujPslVACAls,3177
+django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.po,sha256=CauoEc8Fiowa8k6K-f9N8fQDle40qsgtXdNPDHBiudQ,4567
+django/contrib/admin/locale/id/LC_MESSAGES/django.mo,sha256=u97GjdI4jRBI2YqxZFdSA-2wUlTUlExsLerRnNEQDEw,16835
+django/contrib/admin/locale/id/LC_MESSAGES/django.po,sha256=pLW14pRvriYdkpR2aIVD_Mqu4nmcUbo6ZsrZG1s1zmU,18295
+django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo,sha256=x7BZREqK1nPL5aKuVJXcVyK2aPEePDzqJv_rcQQOeB4,5206
+django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po,sha256=16gYF3igZkmfU8B_T0AlSXBNdKDKG4mMBMJ1ZTJ0fiQ,5878
+django/contrib/admin/locale/io/LC_MESSAGES/django.mo,sha256=URiYZQZpROBedC-AkpVo0q3Tz78VfkmwN1W7j6jYpMo,12624
+django/contrib/admin/locale/io/LC_MESSAGES/django.po,sha256=y0WXY7v_9ff-ZbFasj33loG-xWlFO8ttvCB6YPyF7FQ,15562
+django/contrib/admin/locale/io/LC_MESSAGES/djangojs.mo,sha256=nMu5JhIy8Fjie0g5bT8-h42YElCiS00b4h8ej_Ie-w0,464
+django/contrib/admin/locale/io/LC_MESSAGES/djangojs.po,sha256=WLh40q6yDs-8ZG1hpz6kfMQDXuUzOZa7cqtEPDywxG4,2852
+django/contrib/admin/locale/is/LC_MESSAGES/django.mo,sha256=csD3bmz3iQgLLdSqCKOmY_d893147TvDumrpRVoRTY0,16804
+django/contrib/admin/locale/is/LC_MESSAGES/django.po,sha256=tXgb3ARXP5tPa5iEYwwiHscDGfjS5JgIV2BsUX8OnjE,18222
+django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo,sha256=Z3ujWoenX5yYTAUmHUSCvHcuV65nQmYKPv6Jo9ygx_c,5174
+django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po,sha256=YPf4XqfnpvrS9irAS8O4G0jgU5PCoQ9C-w3MoDipelk,5847
+django/contrib/admin/locale/it/LC_MESSAGES/django.mo,sha256=QJfOdbdLtflGKz1CVQlpwcyLXbf1YqqedQ0KsVlu9iQ,17443
+django/contrib/admin/locale/it/LC_MESSAGES/django.po,sha256=UZkkmGJYah8D1I2nUEPdC9ZKh9g3ErCE8Qc3-8_-5fI,19190
+django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo,sha256=kfR_8xBba-a3AJYhFWw59gg_bdrRNiwIaAzxlRqOkj0,5301
+django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po,sha256=OrNlIiIOY7iJiJlI-bMkb7cg5qmw97Sfs0zcGZuJ6P0,6157
+django/contrib/admin/locale/ja/LC_MESSAGES/django.mo,sha256=XuHILa1vd1pSQAI2u-Z-tAFb2T3_JfgDT215bPiGnM4,18553
+django/contrib/admin/locale/ja/LC_MESSAGES/django.po,sha256=4MtIoWafdzn5UMzlU1pS88933VMAPUCUFn9skh9F08Y,20037
+django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo,sha256=FVs4HxrhvIXVfZMxHq5vPSx55ggb8Mmd0F4Go47JDvA,5284
+django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po,sha256=v2P8YcTDTOWKPWgw0J45V1m5Tzpz752xmaIh_CzRYQQ,5899
+django/contrib/admin/locale/ka/LC_MESSAGES/django.mo,sha256=M3FBRrXFFa87DlUi0HDD_n7a_0IYElQAOafJoIH_i60,20101
+django/contrib/admin/locale/ka/LC_MESSAGES/django.po,sha256=abkt7pw4Kc-Y74ZCpAk_VpFWIkr7trseCtQdM6IUYpQ,23527
+django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo,sha256=GlPU3qUavvU0FXPfvCl-8KboYhDOmMsKM-tv14NqOac,5516
+django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po,sha256=jDpB9c_edcLoFPHFIogOSPrFkssOjIdxtCA_lum8UCs,6762
+django/contrib/admin/locale/kab/LC_MESSAGES/django.mo,sha256=9QKEWgr8YQV17OJ14rMusgV8b79ZgOOsX4aIFMZrEto,3531
+django/contrib/admin/locale/kab/LC_MESSAGES/django.po,sha256=cSOG_HqsNE4tA5YYDd6txMFoUul8d5UKvk77ZhaqOK0,11711
+django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.mo,sha256=nqwZHJdtjHUSFDJmC0nPNyvWcAdcoRcN3f-4XPIItvs,1844
+django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.po,sha256=tF3RH22p2E236Cv6lpIWQxtuPFeWOvJ-Ery3vBUv6co,3713
+django/contrib/admin/locale/kk/LC_MESSAGES/django.mo,sha256=f2WU3e7dOz0XXHFFe0gnCm1MAPCJ9sva2OUnWYTHOJg,12845
+django/contrib/admin/locale/kk/LC_MESSAGES/django.po,sha256=D1vF3nqANT46f17Gc2D2iGCKyysHAyEmv9nBei6NRA4,17837
+django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.mo,sha256=cBxp5pFJYUF2-zXxPVBIG06UNq6XAeZ72uRLwGeLbiE,2387
+django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.po,sha256=Y30fcDpi31Fn7DU7JGqROAiZY76iumoiW9qGAgPCCbU,4459
+django/contrib/admin/locale/km/LC_MESSAGES/django.mo,sha256=eOe9EcFPzAWrTjbGUr-m6RAz2TryC-qHKbqRP337lPY,10403
+django/contrib/admin/locale/km/LC_MESSAGES/django.po,sha256=RSxy5vY2sgC43h-9sl6eomkFvxClvH_Ka4lFiwTvc2I,17103
+django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo,sha256=Ja8PIXmw6FMREHZhhBtGrr3nRKQF_rVjgLasGPnU95w,1334
+django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po,sha256=LH4h4toEgpVBb9yjw7d9JQ8sdU0WIZD-M025JNlLXAU,3846
+django/contrib/admin/locale/kn/LC_MESSAGES/django.mo,sha256=955iPq05ru6tm_iPFVMebxwvZMtEa5_7GaFG1mPt6HU,9203
+django/contrib/admin/locale/kn/LC_MESSAGES/django.po,sha256=-4YAm0MyhS-wp4RQmo0TzWvqYqmzHFNpIBtdQlg_8Dw,16059
+django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo,sha256=kJsCOGf62XOWTKcB9AF6Oc-GqHl2LFtz-qw0spjcU_w,1847
+django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po,sha256=zzl7QZ5DfdyNWrkIqYlpUcZiTdlZXx_ktahyXqM2-0Q,5022
+django/contrib/admin/locale/ko/LC_MESSAGES/django.mo,sha256=rd728pDJK-C5vwjEbvRzwca2VGGqN0PB_Jo6wwsFoJ0,18011
+django/contrib/admin/locale/ko/LC_MESSAGES/django.po,sha256=gVhVnCT-t87yjPACa2GfQjx8hWwZKl2aj6t5F0O9aUg,19875
+django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo,sha256=NQOPmHV4Z1wMqS1WobZrNb6z-f-uPgNFh5WY6W2nLNo,5092
+django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po,sha256=FUqBIciM_sVkeIMdu0_WYtIDhIINpIDp5MElLTPTsug,5824
+django/contrib/admin/locale/ky/LC_MESSAGES/django.mo,sha256=eg-TnIzJO4h3q_FS2a1LnCs7qOf5dpNJwvRD99ZZ0GQ,20129
+django/contrib/admin/locale/ky/LC_MESSAGES/django.po,sha256=dWxU3yUAKHUGKdVJbRLkS6fJEefPBk2XM0i2INcRPms,21335
+django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.mo,sha256=VuBYBwFwIHC27GFZiHY2_4AB0cME2R0Q3juczjOs3G0,5888
+django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.po,sha256=uMk9CxL1wP45goq2093lYMza7LRuO4XbVo5RRWlsbaE,6432
+django/contrib/admin/locale/lb/LC_MESSAGES/django.mo,sha256=8GGM2sYG6GQTQwQFJ7lbg7w32SvqgSzNRZIUi9dIe6M,913
+django/contrib/admin/locale/lb/LC_MESSAGES/django.po,sha256=PZ3sL-HvghnlIdrdPovNJP6wDrdDMSYp_M1ok6dodrw,11078
+django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
+django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.po,sha256=fiMelo6K0_RITx8b9k26X1R86Ck2daQXm86FLJpzt20,2862
+django/contrib/admin/locale/lt/LC_MESSAGES/django.mo,sha256=SpaNUiaGtDlX5qngVj0dWdqNLSin8EOXXyBvRM9AnKg,17033
+django/contrib/admin/locale/lt/LC_MESSAGES/django.po,sha256=tHnRrSNG2ENVduP0sOffCIYQUn69O6zIev3Bb7PjKb0,18497
+django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo,sha256=vZtnYQupzdTjVHnWrtjkC2QKNpsca5yrpb4SDuFx0_0,5183
+django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po,sha256=dMjFClA0mh5g0aNFTyHC8nbYxwmFD0-j-7gCKD8NFnw,5864
+django/contrib/admin/locale/lv/LC_MESSAGES/django.mo,sha256=kylNfAlBxZeUzD79TIGlcv9P3zpnv0hIQIlgmNGcGls,17244
+django/contrib/admin/locale/lv/LC_MESSAGES/django.po,sha256=tGt0IdggCWU_s6MUU0-wn6nMHNUIVeoJwOUnH3ZbKwU,18671
+django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo,sha256=eGwQ-uPRiAEdmPpFjOmbTA1o7S3b6pvJL0sraqGHhGc,5677
+django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po,sha256=EE4vnRBWpfLbKzuST7OJPcJM1Qv8cjoVpJBHn4biCdY,6375
+django/contrib/admin/locale/mk/LC_MESSAGES/django.mo,sha256=wy8NuOl_ojwSrY0pWjJ7XXbPl_O0kckp618zIE0a8Hk,15611
+django/contrib/admin/locale/mk/LC_MESSAGES/django.po,sha256=DYsVd2DM6QYWWLcYnOROHN_oFilWmjxIpUMyF9RtmvM,19505
+django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo,sha256=8BkWjadml2f1lDeH-IULdxsogXSK8NpVuu293GvcQc8,4719
+django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po,sha256=u9mVSzbIgA1uRgV_L8ZOZLelyknoKFvXH0HbBurezf8,6312
+django/contrib/admin/locale/ml/LC_MESSAGES/django.mo,sha256=4Y1KAip3NNsoRc9Zz3k0YFLzes3DNRFvAXWSTBivXDk,20830
+django/contrib/admin/locale/ml/LC_MESSAGES/django.po,sha256=jL9i3kmOnoKYDq2RiF90WCc55KeA8EBN9dmPHjuUfmo,24532
+django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo,sha256=COohY0mAHAOkv1eNzLkaGZy8mimXzcDK1EgRd3tTB_E,6200
+django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po,sha256=NvN0sF_w5tkc3bND4lBtCHsIDLkwqdEPo-8wi2MTQ14,7128
+django/contrib/admin/locale/mn/LC_MESSAGES/django.mo,sha256=Lu8mM_3lJuByz4xXE7shq4nuBwE71_yh4_HIuy7KK64,14812
+django/contrib/admin/locale/mn/LC_MESSAGES/django.po,sha256=yNbv9cOeXEHPiDOKPXIbq2-cBZvUXSXCfL4TPe74x0s,18851
+django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo,sha256=H7fIPdWTK3_iuC0WRBJdfXN8zO77p7-IzTviEUVQJ2U,5228
+django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po,sha256=vJIqqVG34Zd7q8-MhTgZcXTtl6gukOSb6egt70AOyAc,5757
+django/contrib/admin/locale/mr/LC_MESSAGES/django.mo,sha256=UAxGnGliid2PTx6SMgIuHVfbCcqVvcwC4FQUWtDuSTc,468
+django/contrib/admin/locale/mr/LC_MESSAGES/django.po,sha256=TNARpu8Pfmu9fGOLUP0bRwqqDdyFmlh9rWjFspboTyc,10491
+django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
+django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.po,sha256=uGe9kH2mwrab97Ue77oggJBlrpzZNckKGRUMU1vaigs,2856
+django/contrib/admin/locale/ms/LC_MESSAGES/django.mo,sha256=Xj5v1F4_m1ZFUn42Rbep9eInxIV-NE-oA_NyfQkbp00,16840
+django/contrib/admin/locale/ms/LC_MESSAGES/django.po,sha256=ykFH-mPbv2plm2NIvKgaj3WVukJ3SquU8nQIAXuOrWA,17967
+django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.mo,sha256=9VY_MrHK-dGOIkucLCyR9psy4o5p4nHd8kN_5N2E-gY,5018
+django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.po,sha256=P4GvM17rlX1Vl-7EbCyfWVasAJBEv_RvgWEvfJqcErA,5479
+django/contrib/admin/locale/my/LC_MESSAGES/django.mo,sha256=xvlgM0vdYxZuA7kPQR7LhrLzgmyVCHAvqaqvFhKX9wY,3677
+django/contrib/admin/locale/my/LC_MESSAGES/django.po,sha256=zdUCYcyq2-vKudkYvFcjk95YUtbMDDSKQHCysmQ-Pvc,12522
+django/contrib/admin/locale/my/LC_MESSAGES/djangojs.mo,sha256=1fS9FfWi8b9NJKm3DBKETmuffsrTX-_OHo9fkCCXzpg,3268
+django/contrib/admin/locale/my/LC_MESSAGES/djangojs.po,sha256=-z1j108uoswi9YZfh3vSIswLXu1iUKgDXNdZNEA0yrA,5062
+django/contrib/admin/locale/nb/LC_MESSAGES/django.mo,sha256=viQKBFH6ospYn2sE-DokVJGGYhSqosTgbNMn5sBVnmM,16244
+django/contrib/admin/locale/nb/LC_MESSAGES/django.po,sha256=x0ANRpDhe1rxxAH0qjpPxRfccCvR73_4g5TNUdJqmrc,17682
+django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo,sha256=KwrxBpvwveERK4uKTIgh-DCc9aDLumpHQYh5YroqxhQ,4939
+django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po,sha256=ygn6a5zkHkoIYMC8Hgup8Uw1tMbZcLGgwwDu3x33M-o,5555
+django/contrib/admin/locale/ne/LC_MESSAGES/django.mo,sha256=yrm85YXwXIli7eNaPyBTtV7y3TxQuH4mokKuHdAja2A,15772
+django/contrib/admin/locale/ne/LC_MESSAGES/django.po,sha256=F8vfWKvSNngkLPZUIwik_qDYu0UAnrWepbI9Z9Iz35g,20400
+django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.mo,sha256=mJdtpLT9k4vDbN9fk2fOeiy4q720B3pLD3OjLbAjmUI,5362
+django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.po,sha256=N91RciTV1m7e8-6Ihod5U2xR9K0vrLoFnyXjn2ta098,6458
+django/contrib/admin/locale/nl/LC_MESSAGES/django.mo,sha256=Sk06I7RNlzalBB7waVFyOlWxFGlkVXejmstQDjk3kZo,17426
+django/contrib/admin/locale/nl/LC_MESSAGES/django.po,sha256=ANHtLahN6G5CW8lSDs8bJNF69Qukh_67OmYbqEfcHP8,19144
+django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo,sha256=HATZkr9m09TLZqQqxvsxTfRz7U1Qw4sjnNwu7sqUTx8,5401
+django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po,sha256=chyt-p5vexp07EjxAnYA-cf8nlNaVskLdmzYuTvEW8A,6387
+django/contrib/admin/locale/nn/LC_MESSAGES/django.mo,sha256=yAdb8Yew1ARlnAnvd5gHL7-SDzpkXedBwCSSPEzGCKk,16504
+django/contrib/admin/locale/nn/LC_MESSAGES/django.po,sha256=sFxr3UYzltQRqiotm_d5Qqtf8iLXI0LgCw_V6kYffJ0,17932
+django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo,sha256=RsDri1DmCwrby8m7mLWkFdCe6HK7MD7GindOarVYPWc,4939
+django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po,sha256=koVTt2mmdku1j7SUDRbnug8EThxXuCIF2XPnGckMi7A,5543
+django/contrib/admin/locale/os/LC_MESSAGES/django.mo,sha256=c51PwfOeLU2YcVNEEPCK6kG4ZyNc79jUFLuNopmsRR8,14978
+django/contrib/admin/locale/os/LC_MESSAGES/django.po,sha256=yugDw7iziHto6s6ATNDK4yuG6FN6yJUvYKhrGxvKmcY,18188
+django/contrib/admin/locale/os/LC_MESSAGES/djangojs.mo,sha256=0gMkAyO4Zi85e9qRuMYmxm6JV98WvyRffOKbBVJ_fLQ,3806
+django/contrib/admin/locale/os/LC_MESSAGES/djangojs.po,sha256=skiTlhgUEN8uKk7ihl2z-Rxr1ZXqu5qV4wB4q9qXVq0,5208
+django/contrib/admin/locale/pa/LC_MESSAGES/django.mo,sha256=mSBJpzzGEhkKnqAhofa2vC6MPG8t--uJhF5xvRsx_1I,8556
+django/contrib/admin/locale/pa/LC_MESSAGES/django.po,sha256=tYtU9_fGdp83ea1cWiJfa6aVG-DYo_WfvXPFZB0W7Cg,15671
+django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo,sha256=Hub-6v7AfF-tWhw53abpyhnVHo76h_xBgGIhlGIcS70,1148
+django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po,sha256=7L8D4qqhq53XG83NJUZNoM8zCCScwMwzsrzzsyO4lHY,4357
+django/contrib/admin/locale/pl/LC_MESSAGES/django.mo,sha256=rxiy2hX5Qx0borg7EcI711HPhRJZe4YZa8TbVUQJpyM,18165
+django/contrib/admin/locale/pl/LC_MESSAGES/django.po,sha256=nRDqWFkHxRbb-q7De6C69Q-YZUKKuxr9dfj-Byj2axI,19993
+django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo,sha256=5FVKTSzIqCvS4Vx_g3CHFOyJLADo3-1cJo_CrHi5xbs,5848
+django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po,sha256=WXL2uo9jp0UAPec9ZIuQYVJS_PHBLbSNGSbzuZb0MRc,6834
+django/contrib/admin/locale/pt/LC_MESSAGES/django.mo,sha256=MTFRTfUKot-0r-h7qtggPe8l_q0JPAzVF9GzdtB9600,16912
+django/contrib/admin/locale/pt/LC_MESSAGES/django.po,sha256=gzRkbl35HZ-88mlA1Bdj1Y-CUJ752pZKCUIG-NNw2os,18436
+django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo,sha256=D6-8QwX6lsACkEcYXq1tK_4W2q_NMc6g5lZQJDZRFHw,4579
+django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po,sha256=__a9WBgO_o0suf2xvMhyRk_Wkg2tfqNHmJOM5YF86sk,5118
+django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo,sha256=9ECxBALjuRB_HZsZ-fL6pS0jglCHUptpyyDb851rnuQ,17350
+django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po,sha256=S8zYpQG2_Wk1lgAIy2x8yVO5eqyF3yb_F228WMEMRmM,19832
+django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo,sha256=moTW7LW6HTDEGGpzq8JxPZ8_xNWjABPK-qkIVpgcshY,5208
+django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po,sha256=FsmX0dINSguDwJUOWZqmbbV529VeA--_iU1wINdRTUE,6073
+django/contrib/admin/locale/ro/LC_MESSAGES/django.mo,sha256=vkDRRqbQXemsY69kUYonzahIeafWAoIWEJ85aS33Hk8,14387
+django/contrib/admin/locale/ro/LC_MESSAGES/django.po,sha256=fyO2ylCXWZqU3GgHnZJtZfr5tssHMv8RUfkJFKhlvt0,17365
+django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo,sha256=voEqSN3JUgJM9vumLxE_QNPV7kA0XOoTktN7E7AYV6o,4639
+django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po,sha256=SO7FAqNnuvIDfZ_tsWRiwSv91mHx5NZHyR2VnmoYBWY,5429
+django/contrib/admin/locale/ru/LC_MESSAGES/django.mo,sha256=QJ6L9257dATWvsiBLc9QLn886vKaaEIFWglBBG5zWJo,22080
+django/contrib/admin/locale/ru/LC_MESSAGES/django.po,sha256=GFDQeIY3pDT7CbKCttBkz81AzUE1ztaUUCLd62Il_vg,23779
+django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo,sha256=RiHcf9X0qZaOjCeaJKnyNpoEV52AQ4NRe3ANgAyQ5u8,7149
+django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po,sha256=RmQxQ4zn3rJgeHYvVBcQ_svbkBklIhExAw4v8jTtYhI,8161
+django/contrib/admin/locale/sk/LC_MESSAGES/django.mo,sha256=hSHmImczSCOq8Fq1zVyZD5Sn5bhqUGBHiqM7WFMIMnw,17090
+django/contrib/admin/locale/sk/LC_MESSAGES/django.po,sha256=u4mxos-LzwOoZ0KqzYlynCFGagw9y2kQhx9nHE8svJg,18791
+django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo,sha256=-9dSuiVIPqZDSkF5arXISKP3TXbHtEveZO3vXy5ZotQ,5291
+django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po,sha256=wHjVgHIHxubOaeAuf8nBmj1vlXcPeWTGf1xMrhdVL2E,6083
+django/contrib/admin/locale/sl/LC_MESSAGES/django.mo,sha256=iqcg1DYwwDVacRAKJ3QR4fTmKQhRGXU4WkwYco9ASaA,16136
+django/contrib/admin/locale/sl/LC_MESSAGES/django.po,sha256=VeIJDh1PojyUy-4AdPcVezbQ-XVWqp04vFE_u3KU2tU,17508
+django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo,sha256=0jqGv5lgcfyxh9pdnB0Nt7e0bF2G0nO-iVWJjKwyZqI,4724
+django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po,sha256=1DEs7obfCCf-hNM2nIkMizcRcq1KoLBvngMaXLlozUo,5269
+django/contrib/admin/locale/sq/LC_MESSAGES/django.mo,sha256=2IjIa4WD6rU_v9nLXzaKfuafgoR0PIwtGKgGgg-2QDM,17607
+django/contrib/admin/locale/sq/LC_MESSAGES/django.po,sha256=qdc7lIPZ1LC5qZWC08PEFRoEsPTfXP9_M8XQYG1RvB0,18940
+django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo,sha256=LJWibyMGnQnV6YFFrMiiBkVb3fV2ZQMjn6LTmFhxGEU,5370
+django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po,sha256=szwQ63QJQttX7mLTAaDLCuodZ9nVw7OePu0hN3bgKDk,6013
+django/contrib/admin/locale/sr/LC_MESSAGES/django.mo,sha256=AMEp3NrqHBcqdJb41fQowVTkx8F9-fdg2PluKKykT9w,15816
+django/contrib/admin/locale/sr/LC_MESSAGES/django.po,sha256=ifY6hofsf9PhuDNCa38Y2gkGteylhesQzKBdvIWJcVY,19622
+django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo,sha256=sUOlK4V6-Ct0VKemqbcHPMk81jEGumujgorhpUVD6yw,6125
+django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po,sha256=GGzmoBQBaFHy9QB_PkUUIxWy0Ot-GL5BfY-jWVtNmS0,6785
+django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=8wcRn4O2WYMFJal760MvjtSPBNoDgHAEYtedg8CC7Ao,12383
+django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po,sha256=N4fPEJTtUrQnc8q1MioPZ2a7E55YXrE-JvfAcWZubfA,16150
+django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo,sha256=eE2Xu7W3ggV0lo62WghIbME2jkAVZXMUWGexwz2V0fI,5136
+django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po,sha256=YuKlU4CyKwrc0yumnUH_6tetOzBwbjTCjkhcO8VcTyU,5753
+django/contrib/admin/locale/sv/LC_MESSAGES/django.mo,sha256=h0DiLogqg6Q-ufbQxcn08U6OQE-ONI0zf9x_CW8ViG4,16935
+django/contrib/admin/locale/sv/LC_MESSAGES/django.po,sha256=h18990BRW1ZupXT_266Uu2z93jO1Bt7Aq67K4ekO0gI,18594
+django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo,sha256=xaik7riKlY_kanfHZ34gGM6bu87hNmGoJLhEfy-bPg4,5304
+django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po,sha256=B1BUjK6MANg5I7GiMCwz6Y9siAj5unMzkbG7KIuQELs,6110
+django/contrib/admin/locale/sw/LC_MESSAGES/django.mo,sha256=Mtj7jvbugkVTj0qyJ_AMokWEa2btJNSG2XrhpY0U1Mc,14353
+django/contrib/admin/locale/sw/LC_MESSAGES/django.po,sha256=ElU-s0MgtNKF_aXdo-uugBnuJIDzHqMmy1ToMDQhuD0,16419
+django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.mo,sha256=p0pi6-Zg-qsDVMDjNHO4aav3GfJ3tKKhy6MK7mPtC50,3647
+django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.po,sha256=lZFP7Po4BM_QMTj-SXGlew1hqyJApZxu0lxMP-YduHI,4809
+django/contrib/admin/locale/ta/LC_MESSAGES/django.mo,sha256=ZdtNRZLRqquwMk7mE0XmTzEjTno9Zni3mV6j4DXL4nI,10179
+django/contrib/admin/locale/ta/LC_MESSAGES/django.po,sha256=D0TCLM4FFF7K9NqUGXNFE2KfoEzx5IHcJQ6-dYQi2Eg,16881
+django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo,sha256=2-37FOw9Bge0ahIRxFajzxvMkAZL2zBiQFaELmqyhhY,1379
+django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po,sha256=Qs-D7N3ZVzpZVxXtMWKOzJfSmu_Mk9pge5W15f21ihI,3930
+django/contrib/admin/locale/te/LC_MESSAGES/django.mo,sha256=aIAG0Ey4154R2wa-vNe2x8X4fz2L958zRmTpCaXZzds,10590
+django/contrib/admin/locale/te/LC_MESSAGES/django.po,sha256=-zJYrDNmIs5fp37VsG4EAOVefgbBNl75c-Pp3RGBDAM,16941
+django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo,sha256=VozLzWQwrY-USvin5XyVPtUUKEmCr0dxaWC6J14BReo,1362
+django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po,sha256=HI8IfXqJf4I6i-XZB8ELGyp5ZNr-oi5hW9h7n_8XSaQ,3919
+django/contrib/admin/locale/tg/LC_MESSAGES/django.mo,sha256=gJfgsEn9doTT0erBK77OBDi7_0O7Rb6PF9tRPacliXU,15463
+django/contrib/admin/locale/tg/LC_MESSAGES/django.po,sha256=Wkx7Hk2a9OzZymgrt9N91OL9K5HZXTbpPBXMhyE0pjI,19550
+django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.mo,sha256=SEaBcnnKupXbTKCJchkSu_dYFBBvOTAOQSZNbCYUuHE,5154
+django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.po,sha256=CfUjLtwMmz1h_MLE7c4UYv05ZTz_SOclyKKWmVEP9Jg,5978
+django/contrib/admin/locale/th/LC_MESSAGES/django.mo,sha256=EVlUISdKOvNkGMG4nbQFzSn5p7d8c9zOGpXwoHsHNlY,16394
+django/contrib/admin/locale/th/LC_MESSAGES/django.po,sha256=OqhGCZ87VX-WKdC2EQ8A8WeXdWXu9mj6k8mG9RLZMpM,20187
+django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo,sha256=ukj5tyDor9COi5BT9oRLucO2wVTI6jZWclOM-wNpXHM,6250
+django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po,sha256=3L5VU3BNcmfiqzrAWK0tvRRVOtgR8Ceg9YIxL54RGBc,6771
+django/contrib/admin/locale/tr/LC_MESSAGES/django.mo,sha256=BDQ810gSv20dUcd147upRhzCXYOhw4jYyqsWT-dOEjA,17595
+django/contrib/admin/locale/tr/LC_MESSAGES/django.po,sha256=WAYCi2mc9qDx8OIErUNzPLu1VSEcgm5aaY2bKMEzSsw,19092
+django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo,sha256=DCICOQRNaxcM3ihteo4SQSzonao3e5SIq7dGqHIqUeE,5313
+django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po,sha256=VVcx20QjHhZW_iN7bWHB-oZ51l5uqzIk8ru16Ay2LjQ,5946
+django/contrib/admin/locale/tt/LC_MESSAGES/django.mo,sha256=ObJ8zwVLhFsS6XZK_36AkNRCeznoJJwLTMh4_LLGPAA,12952
+django/contrib/admin/locale/tt/LC_MESSAGES/django.po,sha256=VDjg5nDrLqRGXpxCyQudEC_n-6kTCIYsOl3izt1Eblc,17329
+django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.mo,sha256=Sz5qnMHWfLXjaCIHxQNrwac4c0w4oeAAQubn5R7KL84,2607
+django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.po,sha256=_Uh3yH_RXVB3PP75RFztvSzVykVq0SQjy9QtTnyH3Qk,4541
+django/contrib/admin/locale/udm/LC_MESSAGES/django.mo,sha256=2Q_lfocM7OEjFKebqNR24ZBqUiIee7Lm1rmS5tPGdZA,622
+django/contrib/admin/locale/udm/LC_MESSAGES/django.po,sha256=L4TgEk2Fm2mtKqhZroE6k_gfz1VC-_dXe39CiJvaOPE,10496
+django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
+django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.po,sha256=ZLYr0yHdMYAl7Z7ipNSNjRFIMNYmzIjT7PsKNMT6XVk,2811
+django/contrib/admin/locale/uk/LC_MESSAGES/django.mo,sha256=D-0dfr47zYAHURvoZSdX9cgZ7voCeSpL-B29nItwbxA,21364
+django/contrib/admin/locale/uk/LC_MESSAGES/django.po,sha256=aXB8kh-IAEFmQVVaKFGPaxoHPY9S9wY-3ONPlXMP2aE,23366
+django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo,sha256=_YwTcBttv3DZNYkBq4Rsl6oq30o8nDvUHPI5Yx0GaA4,5787
+django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po,sha256=4lYvm_LDX5xha4Qj1dXE5tGs4BjGPUgjigvG2n6y1S4,6993
+django/contrib/admin/locale/ur/LC_MESSAGES/django.mo,sha256=HvyjnSeLhUf1JVDy759V_TI7ygZfLaMhLnoCBJxhH_s,13106
+django/contrib/admin/locale/ur/LC_MESSAGES/django.po,sha256=BFxxLbHs-UZWEmbvtWJNA7xeuvO9wDc32H2ysKZQvF4,17531
+django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo,sha256=eYN9Q9KKTV2W0UuqRc-gg7y42yFAvJP8avMeZM-W7mw,2678
+django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po,sha256=Nj-6L6axLrqA0RHUQbidNAT33sXYfVdGcX4egVua-Pk,4646
+django/contrib/admin/locale/uz/LC_MESSAGES/django.mo,sha256=bWJujZSbu9Q4u2hcVJAkHDQCjx8Uo_Bj5gcU3CbkeLw,4610
+django/contrib/admin/locale/uz/LC_MESSAGES/django.po,sha256=3fxRPvC5_1md4LrntCTLUXVINdrHxgHOav04xabwYUg,13107
+django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.mo,sha256=LpuFvNKqNRCCiV5VyRnJoZ8gY3Xieb05YV9KakNU7o8,3783
+django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.po,sha256=joswozR3I1ijRapf50FZMzQQhI_aU2XiiSTLeSxkL64,5235
+django/contrib/admin/locale/vi/LC_MESSAGES/django.mo,sha256=coCDRhju7xVvdSaounXO5cMqCmLWICZPJth6JI3Si2c,18077
+django/contrib/admin/locale/vi/LC_MESSAGES/django.po,sha256=Q1etVmaAb1f79f4uVjbNjPkn-_3m2Spz1buNAV3y9lk,19543
+django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo,sha256=45E-fCQkq-BRLzRzsGkw1-AvWlvjL1rdsRFqfsvAq98,5302
+django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po,sha256=k87QvFnt8psnwMXXrFO6TyH6xCyXIDd_rlnWDfl2FAA,5958
+django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=C3FR5Tw6rPaShwYpY9mCGMqrZtWbPwQl_xqmwOW8H-s,16130
+django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po,sha256=VfLTTW6qCZWKEW0Br8GfvdLojQ1hcaABxXeCYj3zJN8,18142
+django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo,sha256=I8ixtVG4dWB94lhhLIhiFk1KQmvBURaFuKGs2z-0ZOE,4999
+django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po,sha256=_-9VpiJ2_ll2BCKlU_kVdZG2BeGprBFU0jnvwUac4wg,5959
+django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=kEKX-cQPRFCNkiqNs1BnyzEvJQF-EzA814ASnYPFMsw,15152
+django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.po,sha256=iH3w7Xt_MelkZefKi8F0yAWN6QGdQCJBz8VaFY4maUg,16531
+django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.mo,sha256=yFwS8aTJUAG5lN4tYLCxx-FLfTsiOxXrCEhlIA-9vcs,4230
+django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.po,sha256=C4Yk5yuYcmaovVs_CS8YFYY2iS4RGi0oNaUpTm7akeU,4724
+django/contrib/admin/migrations/0001_initial.py,sha256=zFK34hmWHrMGFVyooWug9TdVRPzbq9YtlpzMUa_-wmY,2508
+django/contrib/admin/migrations/0002_logentry_remove_auto_add.py,sha256=Fjda6T9ZALOk0ApouxbPe5Ph4RCGZigpgYEZipqFtT4,554
+django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py,sha256=OYurX3-py7fLmfuwyzhED9efg74mAut92S-NEqgBINc,539
+django/contrib/admin/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/admin/migrations/__pycache__/0001_initial.cpython-310.pyc,,
+django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-310.pyc,,
+django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-310.pyc,,
+django/contrib/admin/migrations/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/admin/models.py,sha256=2eTsW0WRQbXV1GeOPLX76RMFv6GQqIGuZs10GFT7V48,6501
+django/contrib/admin/options.py,sha256=_X0bg12YA-3x2my2oSTWag-hx5CDofsv37NjDFnzKic,98003
+django/contrib/admin/sites.py,sha256=5mIXxP2lKUuUa6bbruu-FW16pjYmbNJOu2ivg48XC0c,22473
+django/contrib/admin/static/admin/css/autocomplete.css,sha256=6-fcQdqClpGf8EpH1NxgS8YL-diGXc8CFq3Sw2I9K8k,9114
+django/contrib/admin/static/admin/css/base.css,sha256=DzDMUL1A_lAl8sX7ZnfvdRo8BN2WrmjLP_6Eu8l3vU8,20344
+django/contrib/admin/static/admin/css/changelists.css,sha256=3QPljyWfSJbLbbnPC9HBttgWmdRlkpUPeZvDtXQKI3I,6395
+django/contrib/admin/static/admin/css/dark_mode.css,sha256=ENFU_VVZojFu9JwRYA0uGiy7-CZGsATBVnFtTwISkm0,796
+django/contrib/admin/static/admin/css/dashboard.css,sha256=i2OcDTa1R_bO6aBTZ66-aRlTXl0l4sjeHfasUrfzjd0,380
+django/contrib/admin/static/admin/css/fonts.css,sha256=SnBl3KjeUZqRmZw3F0iNm1YpqFhjrNC_fNN0H2TkuYc,423
+django/contrib/admin/static/admin/css/forms.css,sha256=g6GSkl90efKzg9YRIGGTPc-G--jHXpByu4C5u-ktgbE,8944
+django/contrib/admin/static/admin/css/login.css,sha256=BdAkR--cxd5HZXDNPInv2Qgs_c305sPbPCctkUkAmDU,958
+django/contrib/admin/static/admin/css/nav_sidebar.css,sha256=FxQJSTRV8xfD3zLuVKEQdaBytBfA0zBSXfpAbpu286I,2619
+django/contrib/admin/static/admin/css/responsive.css,sha256=J7vW9K77r99E3TJPDvF8IieflOMUVMy7tXRGO2T7jMw,18854
+django/contrib/admin/static/admin/css/responsive_rtl.css,sha256=iM8FIfXLuXgurjYK0JwboVuilUg1hnaZw7wa3hx8aI0,1741
+django/contrib/admin/static/admin/css/rtl.css,sha256=tdAHk_hZTCk6N0__MuOM2MRObMT1ukGGFsMJzEYVaac,3598
+django/contrib/admin/static/admin/css/vendor/select2/LICENSE-SELECT2.md,sha256=TuDLxRNwr941hlKg-XeXIFNyntV4tqQvXioDfRFPCzk,1124
+django/contrib/admin/static/admin/css/vendor/select2/select2.css,sha256=kalgQ55Pfy9YBkT-4yYYd5N8Iobe-iWeBuzP7LjVO0o,17358
+django/contrib/admin/static/admin/css/vendor/select2/select2.min.css,sha256=FdatTf20PQr_rWg-cAKfl6j4_IY3oohFAJ7gVC3M34E,14966
+django/contrib/admin/static/admin/css/widgets.css,sha256=nBYZ4hfAm5RZDW1BI-Ioeqb3YfcJpTy11S1Ye1XYD2A,11297
+django/contrib/admin/static/admin/fonts/LICENSE.txt,sha256=Pd-b5cKP4n2tFDpdx27qJSIq0d1ok0oEcGTlbtL6QMU,11560
+django/contrib/admin/static/admin/fonts/README.txt,sha256=E4rvl9Y9cvKx2wpkrgQZjhaKfRhEUG8pNLCoZoBq-rE,214
+django/contrib/admin/static/admin/fonts/Roboto-Bold-webfont.woff,sha256=sXZ6DD5d-zpQCe_uREX_FdY2LpKFRh4Xve0Ybx6UVvA,86184
+django/contrib/admin/static/admin/fonts/Roboto-Light-webfont.woff,sha256=GIJzScf-vUuNAaqQfGfqm4ARJCB4MmskcDl4RU_fNRo,85692
+django/contrib/admin/static/admin/fonts/Roboto-Regular-webfont.woff,sha256=munWVF19fYI_ipQBDbd8Gg_3Hjcei7FY3xy5g5UWJQc,85876
+django/contrib/admin/static/admin/img/LICENSE,sha256=0RT6_zSIwWwxmzI13EH5AjnT1j2YU3MwM9j3U19cAAQ,1081
+django/contrib/admin/static/admin/img/README.txt,sha256=XqN5MlT1SIi6sdnYnKJrOiJ6h9lTIejT7nLSY-Y74pk,319
+django/contrib/admin/static/admin/img/calendar-icons.svg,sha256=gbMu26nfxZphlqKFcVOXpcv5zhv5x_Qm_P4ba0Ze84I,1094
+django/contrib/admin/static/admin/img/gis/move_vertex_off.svg,sha256=ou-ppUNyy5QZCKFYlcrzGBwEEiTDX5mmJvM8rpwC5DM,1129
+django/contrib/admin/static/admin/img/gis/move_vertex_on.svg,sha256=DgmcezWDms_3VhgqgYUGn-RGFHyScBP0MeX8PwHy_nE,1129
+django/contrib/admin/static/admin/img/icon-addlink.svg,sha256=kBtPJJ3qeQPWeNftvprZiR51NYaZ2n_ZwJatY9-Zx1Q,331
+django/contrib/admin/static/admin/img/icon-alert.svg,sha256=aXtd9PA66tccls-TJfyECQrmdWrj8ROWKC0tJKa7twA,504
+django/contrib/admin/static/admin/img/icon-calendar.svg,sha256=_bcF7a_R94UpOfLf-R0plVobNUeeTto9UMiUIHBcSHY,1086
+django/contrib/admin/static/admin/img/icon-changelink.svg,sha256=clM2ew94bwVa2xQ6bvfKx8xLtk0i-u5AybNlyP8k-UM,380
+django/contrib/admin/static/admin/img/icon-clock.svg,sha256=k55Yv6R6-TyS8hlL3Kye0IMNihgORFjoJjHY21vtpEA,677
+django/contrib/admin/static/admin/img/icon-deletelink.svg,sha256=06XOHo5y59UfNBtO8jMBHQqmXt8UmohlSMloUuZ6d0A,392
+django/contrib/admin/static/admin/img/icon-no.svg,sha256=QqBaTrrp3KhYJxLYB5E-0cn_s4A_Y8PImYdWjfQSM-c,560
+django/contrib/admin/static/admin/img/icon-unknown-alt.svg,sha256=LyL9oJtR0U49kGHYKMxmmm1vAw3qsfXR7uzZH76sZ_g,655
+django/contrib/admin/static/admin/img/icon-unknown.svg,sha256=ePcXlyi7cob_IcJOpZ66uiymyFgMPHl8p9iEn_eE3fc,655
+django/contrib/admin/static/admin/img/icon-viewlink.svg,sha256=NL7fcy7mQOQ91sRzxoVRLfzWzXBRU59cFANOrGOwWM0,581
+django/contrib/admin/static/admin/img/icon-yes.svg,sha256=_H4JqLywJ-NxoPLqSqk9aGJcxEdZwtSFua1TuI9kIcM,436
+django/contrib/admin/static/admin/img/inline-delete.svg,sha256=Ni1z8eDYBOveVDqtoaGyEMWG5Mdnt9dniiuBWTlnr5Y,560
+django/contrib/admin/static/admin/img/search.svg,sha256=HgvLPNT7FfgYvmbt1Al1yhXgmzYHzMg8BuDLnU9qpMU,458
+django/contrib/admin/static/admin/img/selector-icons.svg,sha256=0RJyrulJ_UR9aYP7Wbvs5jYayBVhLoXR26zawNMZ0JQ,3291
+django/contrib/admin/static/admin/img/sorting-icons.svg,sha256=cCvcp4i3MAr-mo8LE_h8ZRu3LD7Ma9BtpK-p24O3lVA,1097
+django/contrib/admin/static/admin/img/tooltag-add.svg,sha256=fTZCouGMJC6Qq2xlqw_h9fFodVtLmDMrpmZacGVJYZQ,331
+django/contrib/admin/static/admin/img/tooltag-arrowright.svg,sha256=GIAqy_4Oor9cDMNC2fSaEGh-3gqScvqREaULnix3wHc,280
+django/contrib/admin/static/admin/js/SelectBox.js,sha256=FLFCFiaO4KziwueL83Un_WCR0-Lf66PhVqpvnbat50s,4360
+django/contrib/admin/static/admin/js/SelectFilter2.js,sha256=ec959EpEdpiKHDFQs3sBe1TxaOHrBmpXQeksRhQb1GU,11317
+django/contrib/admin/static/admin/js/actions.js,sha256=90nO6o7754a2w8bNZOrS7EoEoh_MZEnIOJzJji1zTl8,7872
+django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js,sha256=j7CCMFCuwgMWKkaSEbpAcMBOLzTrUdY4cJ5DcZWRCTk,19379
+django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js,sha256=YjerlXCeNSN5T6ilr4ViiExQze_fS6CTLGmNAvdpqFA,8919
+django/contrib/admin/static/admin/js/autocomplete.js,sha256=OAqSTiHZnTWZzJKEvOm-Z1tdAlLjPWX9jKpYkmH0Ozo,1060
+django/contrib/admin/static/admin/js/calendar.js,sha256=vsYjQ4Nv6LPpqMVMhko8mnsv6U5EXkk5hOHhmkC5m7g,8466
+django/contrib/admin/static/admin/js/cancel.js,sha256=UEZdvvWu5s4ZH16lFfxa8UPgWXJ3i8VseK5Lcw2Kreg,884
+django/contrib/admin/static/admin/js/change_form.js,sha256=kBpCeP8J0wLfYIJhQtpjq9qdelJxNHjQLHWzXQ-dtHo,1043
+django/contrib/admin/static/admin/js/collapse.js,sha256=UONBUueHwsm5SMlG0Ufp4mlqdgu7UGimU6psKzpxbuE,1803
+django/contrib/admin/static/admin/js/core.js,sha256=AVLCrqYJOnCuLJLo0jqe0pyEKxA_4tzJ_rMcDQE1szw,5698
+django/contrib/admin/static/admin/js/filters.js,sha256=4f4AXKmsyWUWZIoEbYaEFliYbFfEZODVyYTURola2nM,966
+django/contrib/admin/static/admin/js/inlines.js,sha256=yWB-KSw_aZmVZpIitKde7imygAa36LBdqoBfB7lTvJQ,15526
+django/contrib/admin/static/admin/js/jquery.init.js,sha256=uM_Kf7EOBMipcCmuQHbyubQkycleSWDCS8-c3WevFW0,347
+django/contrib/admin/static/admin/js/nav_sidebar.js,sha256=pN6AcH7ly2eNxwmC3QBAJmzuIHXWFwaO9G6d8Obz4ls,3763
+django/contrib/admin/static/admin/js/popup_response.js,sha256=H4ppG14jfrxB1XF5xZp5SS8PapYuYou5H7uwYjHd7eI,551
+django/contrib/admin/static/admin/js/prepopulate.js,sha256=UYkWrHNK1-OWp1a5IWZdg0udfo_dcR-jKSn5AlxxqgU,1531
+django/contrib/admin/static/admin/js/prepopulate_init.js,sha256=mJIPAgn8QHji_rSqO6WKNREbpkCILFrjRCCOQ1-9SoQ,586
+django/contrib/admin/static/admin/js/urlify.js,sha256=ksu4cDd9JpFsN5cLT8BpOtg0JkkrIlWR1yr3nLlWXbI,7902
+django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt,sha256=1Nuevm8p9RaOrEWtcT8FViOsXQ3NW6ktoj1lCuASAg0,1097
+django/contrib/admin/static/admin/js/vendor/jquery/jquery.js,sha256=H-K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk,288580
+django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js,sha256=_xUj-3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej_m4,89501
+django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md,sha256=TuDLxRNwr941hlKg-XeXIFNyntV4tqQvXioDfRFPCzk,1124
+django/contrib/admin/static/admin/js/vendor/select2/i18n/af.js,sha256=IpI3uo19fo77jMtN5R3peoP0OriN-nQfPY2J4fufd8g,866
+django/contrib/admin/static/admin/js/vendor/select2/i18n/ar.js,sha256=zxQ3peSnbVIfrH1Ndjx4DrHDsmbpqu6mfeylVWFM5mY,905
+django/contrib/admin/static/admin/js/vendor/select2/i18n/az.js,sha256=N_KU7ftojf2HgvJRlpP8KqG6hKIbqigYN3K0YH_ctuQ,721
+django/contrib/admin/static/admin/js/vendor/select2/i18n/bg.js,sha256=5Z6IlHmuk_6IdZdAVvdigXnlj7IOaKXtcjuI0n0FmYQ,968
+django/contrib/admin/static/admin/js/vendor/select2/i18n/bn.js,sha256=wdQbgaxZ47TyGlwvso7GOjpmTXUKaWzvVUr_oCRemEE,1291
+django/contrib/admin/static/admin/js/vendor/select2/i18n/bs.js,sha256=g56kWSu9Rxyh_rarLSDa_8nrdqL51JqZai4QQx20jwQ,965
+django/contrib/admin/static/admin/js/vendor/select2/i18n/ca.js,sha256=DSyyAXJUI0wTp_TbFhLNGrgvgRsGWeV3IafxYUGBggM,900
+django/contrib/admin/static/admin/js/vendor/select2/i18n/cs.js,sha256=t_8OWVi6Yy29Kabqs_l1sM2SSrjUAgZTwbTX_m0MCL8,1292
+django/contrib/admin/static/admin/js/vendor/select2/i18n/da.js,sha256=tF2mvzFYSWYOU3Yktl3G93pCkf-V9gonCxk7hcA5J1o,828
+django/contrib/admin/static/admin/js/vendor/select2/i18n/de.js,sha256=5bspfcihMp8yXDwfcqvC_nV3QTbtBuQDmR3c7UPQtFw,866
+django/contrib/admin/static/admin/js/vendor/select2/i18n/dsb.js,sha256=KtP2xNoP75oWnobUrS7Ep_BOFPzcMNDt0wyPnkbIF_Q,1017
+django/contrib/admin/static/admin/js/vendor/select2/i18n/el.js,sha256=IdvD8eY_KpX9fdHvld3OMvQfYsnaoJjDeVkgbIemfn8,1182
+django/contrib/admin/static/admin/js/vendor/select2/i18n/en.js,sha256=C66AO-KOXNuXEWwhwfjYBFa3gGcIzsPFHQAZ9qSh3Go,844
+django/contrib/admin/static/admin/js/vendor/select2/i18n/es.js,sha256=IhZaIy8ufTduO2-vBrivswMCjlPk7vrk4P81pD6B0SM,922
+django/contrib/admin/static/admin/js/vendor/select2/i18n/et.js,sha256=LgLgdOkKjc63svxP1Ua7A0ze1L6Wrv0X6np-8iRD5zw,801
+django/contrib/admin/static/admin/js/vendor/select2/i18n/eu.js,sha256=rLmtP7bA_atkNIj81l_riTM7fi5CXxVrFBHFyddO-Hw,868
+django/contrib/admin/static/admin/js/vendor/select2/i18n/fa.js,sha256=fqZkE9e8tt2rZ7OrDGPiOsTNdj3S2r0CjbddVUBDeMA,1023
+django/contrib/admin/static/admin/js/vendor/select2/i18n/fi.js,sha256=KVGirhGGNee_iIpMGLX5EzH_UkNe-FOPC_0484G-QQ0,803
+django/contrib/admin/static/admin/js/vendor/select2/i18n/fr.js,sha256=aj0q2rdJN47BRBc9LqvsgxkuPOcWAbZsUFUlbguwdY0,924
+django/contrib/admin/static/admin/js/vendor/select2/i18n/gl.js,sha256=HSJafI85yKp4WzjFPT5_3eZ_-XQDYPzzf4BWmu6uXHk,924
+django/contrib/admin/static/admin/js/vendor/select2/i18n/he.js,sha256=DIPRKHw0NkDuUtLNGdTnYZcoCiN3ustHY-UMmw34V_s,984
+django/contrib/admin/static/admin/js/vendor/select2/i18n/hi.js,sha256=m6ZqiKZ_jzwzVFgC8vkYiwy4lH5fJEMV-LTPVO2Wu40,1175
+django/contrib/admin/static/admin/js/vendor/select2/i18n/hr.js,sha256=NclTlDTiNFX1y0W1Llj10-ZIoXUYd7vDXqyeUJ7v3B4,852
+django/contrib/admin/static/admin/js/vendor/select2/i18n/hsb.js,sha256=FTLszcrGaelTW66WV50u_rS6HV0SZxQ6Vhpi2tngC6M,1018
+django/contrib/admin/static/admin/js/vendor/select2/i18n/hu.js,sha256=3PdUk0SpHY-H-h62womw4AyyRMujlGc6_oxW-L1WyOs,831
+django/contrib/admin/static/admin/js/vendor/select2/i18n/hy.js,sha256=BLh0fntrwtwNwlQoiwLkdQOVyNXHdmRpL28p-W5FsDg,1028
+django/contrib/admin/static/admin/js/vendor/select2/i18n/id.js,sha256=fGJ--Aw70Ppzk3EgLjF1V_QvqD2q_ufXjnQIIyZqYgc,768
+django/contrib/admin/static/admin/js/vendor/select2/i18n/is.js,sha256=gn0ddIqTnJX4wk-tWC5gFORJs1dkgIH9MOwLljBuQK0,807
+django/contrib/admin/static/admin/js/vendor/select2/i18n/it.js,sha256=kGxtapwhRFj3u_IhY_7zWZhKgR5CrZmmasT5w-aoXRM,897
+django/contrib/admin/static/admin/js/vendor/select2/i18n/ja.js,sha256=tZ4sqdx_SEcJbiW5-coHDV8FVmElJRA3Z822EFHkjLM,862
+django/contrib/admin/static/admin/js/vendor/select2/i18n/ka.js,sha256=DH6VrnVdR8SX6kso2tzqnJqs32uCpBNyvP9Kxs3ssjI,1195
+django/contrib/admin/static/admin/js/vendor/select2/i18n/km.js,sha256=x9hyjennc1i0oeYrFUHQnYHakXpv7WD7MSF-c9AaTjg,1088
+django/contrib/admin/static/admin/js/vendor/select2/i18n/ko.js,sha256=ImmB9v7g2ZKEmPFUQeXrL723VEjbiEW3YelxeqHEgHc,855
+django/contrib/admin/static/admin/js/vendor/select2/i18n/lt.js,sha256=ZT-45ibVwdWnTyo-TqsqW2NjIp9zw4xs5So78KMb_s8,944
+django/contrib/admin/static/admin/js/vendor/select2/i18n/lv.js,sha256=hHpEK4eYSoJj_fvA2wl8QSuJluNxh-Tvp6UZm-ZYaeE,900
+django/contrib/admin/static/admin/js/vendor/select2/i18n/mk.js,sha256=PSpxrnBpL4SSs9Tb0qdWD7umUIyIoR2V1fpqRQvCXcA,1038
+django/contrib/admin/static/admin/js/vendor/select2/i18n/ms.js,sha256=NCz4RntkJZf8YDDC1TFBvK-nkn-D-cGNy7wohqqaQD4,811
+django/contrib/admin/static/admin/js/vendor/select2/i18n/nb.js,sha256=eduKCG76J3iIPrUekCDCq741rnG4xD7TU3E7Lib7sPE,778
+django/contrib/admin/static/admin/js/vendor/select2/i18n/ne.js,sha256=QQjDPQE6GDKXS5cxq2JRjk3MGDvjg3Izex71Zhonbj8,1357
+django/contrib/admin/static/admin/js/vendor/select2/i18n/nl.js,sha256=JctLfTpLQ5UFXtyAmgbCvSPUtW0fy1mE7oNYcMI90bI,904
+django/contrib/admin/static/admin/js/vendor/select2/i18n/pl.js,sha256=6gEuKYnJdf8cbPERsw-mtdcgdByUJuLf1QUH0aSajMo,947
+django/contrib/admin/static/admin/js/vendor/select2/i18n/ps.js,sha256=4J4sZtSavxr1vZdxmnub2J0H0qr1S8WnNsTehfdfq4M,1049
+django/contrib/admin/static/admin/js/vendor/select2/i18n/pt-BR.js,sha256=0DFe1Hu9fEDSXgpjPOQrA6Eq0rGb15NRbsGh1U4vEr0,876
+django/contrib/admin/static/admin/js/vendor/select2/i18n/pt.js,sha256=L5jqz8zc5BF8ukrhpI2vvGrNR34X7482dckX-IUuUpA,878
+django/contrib/admin/static/admin/js/vendor/select2/i18n/ro.js,sha256=Aadb6LV0u2L2mCOgyX2cYZ6xI5sDT9OI3V7HwuueivM,938
+django/contrib/admin/static/admin/js/vendor/select2/i18n/ru.js,sha256=bV6emVCE9lY0LzbVN87WKAAAFLUT3kKqEzn641pJ29o,1171
+django/contrib/admin/static/admin/js/vendor/select2/i18n/sk.js,sha256=MnbUcP6pInuBzTW_L_wmXY8gPLGCOcKyzQHthFkImZo,1306
+django/contrib/admin/static/admin/js/vendor/select2/i18n/sl.js,sha256=LPIKwp9gp_WcUc4UaVt_cySlNL5_lmfZlt0bgtwnkFk,925
+django/contrib/admin/static/admin/js/vendor/select2/i18n/sq.js,sha256=oIxJLYLtK0vG2g3s5jsGLn4lHuDgSodxYAWL0ByHRHo,903
+django/contrib/admin/static/admin/js/vendor/select2/i18n/sr-Cyrl.js,sha256=BoT2KdiceZGgxhESRz3W2J_7CFYqWyZyov2YktUo_2w,1109
+django/contrib/admin/static/admin/js/vendor/select2/i18n/sr.js,sha256=7EELYXwb0tISsuvL6eorxzTviMK-oedSvZvEZCMloGU,980
+django/contrib/admin/static/admin/js/vendor/select2/i18n/sv.js,sha256=c6nqUmitKs4_6AlYDviCe6HqLyOHqot2IrvJRGjj1JE,786
+django/contrib/admin/static/admin/js/vendor/select2/i18n/th.js,sha256=saDPLk-2dq5ftKCvW1wddkJOg-mXA-GUoPPVOlSZrIY,1074
+django/contrib/admin/static/admin/js/vendor/select2/i18n/tk.js,sha256=mUEGlb-9nQHvzcTYI-1kjsB7JsPRGpLxWbjrJ8URthU,771
+django/contrib/admin/static/admin/js/vendor/select2/i18n/tr.js,sha256=dDz8iSp07vbx9gciIqz56wmc2TLHj5v8o6es75vzmZU,775
+django/contrib/admin/static/admin/js/vendor/select2/i18n/uk.js,sha256=MixhFDvdRda-wj-TjrN018s7R7E34aQhRjz4baxrdKw,1156
+django/contrib/admin/static/admin/js/vendor/select2/i18n/vi.js,sha256=mwTeySsUAgqu_IA6hvFzMyhcSIM1zGhNYKq8G7X_tpM,796
+django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-CN.js,sha256=olAdvPQ5qsN9IZuxAKgDVQM-blexUnWTDTXUtiorygI,768
+django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-TW.js,sha256=DnDBG9ywBOfxVb2VXg71xBR_tECPAxw7QLhZOXiJ4fo,707
+django/contrib/admin/static/admin/js/vendor/select2/select2.full.js,sha256=ugZkER5OAEGzCwwb_4MvhBKE5Gvmc0S59MKn-dooZaI,173566
+django/contrib/admin/static/admin/js/vendor/select2/select2.full.min.js,sha256=XG_auAy4aieWldzMImofrFDiySK-pwJC7aoo9St7rS0,79212
+django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt,sha256=xnYLh4GL4QG4S1G_JWwF_AR18rY9KmrwD3kxq7PTZNw,1103
+django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js,sha256=rtvcVZex5zUbQQpBDEwPXetC28nAEksnAblw2Flt9tA,232381
+django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js,sha256=e2iDfG6V1sfGUB92i5yNqQamsMCc8An0SFzoo3vbylg,125266
+django/contrib/admin/templates/admin/404.html,sha256=zyawWu1I9IxDGBRsks6-DgtLUGDDYOKHfj9YQqPl0AA,282
+django/contrib/admin/templates/admin/500.html,sha256=rZNmFXr9POnc9TdZwD06qkY8h2W5K05vCyssrIzbZGE,551
+django/contrib/admin/templates/admin/actions.html,sha256=pTlhPi66D3Lrm2RQdAWHqUVdyJECbqx1Oj86Fkv-fPk,1245
+django/contrib/admin/templates/admin/app_index.html,sha256=X-ISFsSrON8osoS93ywjM11MLGhrcx-U0o6tJfpWRqY,389
+django/contrib/admin/templates/admin/app_list.html,sha256=ihZHIZLWNwtvmeDnsdXAVEo_mHNiM6X4CHA7y0I9YdA,1716
+django/contrib/admin/templates/admin/auth/user/add_form.html,sha256=5DL3UbNWW2rTvWrpMsxy5XcVNT6_uYv8DjDZZksiVKQ,320
+django/contrib/admin/templates/admin/auth/user/change_password.html,sha256=G-V75ZioyIY4LAMn5Wroyg5-6RxlcG3_K0x1gToxxjY,2448
+django/contrib/admin/templates/admin/base.html,sha256=qEin8aodL4df2upjWdJvanKypWYpF2JE4SUcP_waOkI,4538
+django/contrib/admin/templates/admin/base_site.html,sha256=3ckWrcAdd7Pw1hk6Zwyknab_Qb-rteV9-mXhMnfo6VI,361
+django/contrib/admin/templates/admin/change_form.html,sha256=6BAfEHMArW-0HKz9vehK34tuChl4L5A1uCLKpFAD_wA,3035
+django/contrib/admin/templates/admin/change_form_object_tools.html,sha256=C0l0BJF2HuSjIvtY-Yr-ByZ9dePFRrTc-MR-OVJD-AI,403
+django/contrib/admin/templates/admin/change_list.html,sha256=BMQtuZIsUxuK_RGjAON2d0dsB-RXsSW034MQHpcy6qI,3291
+django/contrib/admin/templates/admin/change_list_object_tools.html,sha256=-AX0bYTxDsdLtEpAEK3RFpY89tdvVChMAWPYBLqPn48,378
+django/contrib/admin/templates/admin/change_list_results.html,sha256=_beAjUTnFJTVIagZuVcf7XNz_fMseMaNyk1fRtQ-AME,1543
+django/contrib/admin/templates/admin/date_hierarchy.html,sha256=I9Nj9WJb3JM_9ZBHrg4xIFku_a59U-KoqO5yuSaqVJQ,518
+django/contrib/admin/templates/admin/delete_confirmation.html,sha256=GfcMpSIo6Xy4QWX1_oNYilY7c1C8FKSbGWiWfw61VlY,2426
+django/contrib/admin/templates/admin/delete_selected_confirmation.html,sha256=i2sUDTPuSlJqOh_JMKx5VsxOpZC9W5zD94R2XpiNPBk,2341
+django/contrib/admin/templates/admin/edit_inline/stacked.html,sha256=QfR0gASIFiLMbXa1L3FDrfVhAFHfOuOvhKDCWDXs_hM,2594
+django/contrib/admin/templates/admin/edit_inline/tabular.html,sha256=p8a0r2UmS4Hs0hsl6sKjgUxiOQxNEhn-lKZ6HthyGxI,4100
+django/contrib/admin/templates/admin/filter.html,sha256=cvjazGEln3BL_0iyz8Kcsend5WhT9y-gXKRN2kHqejU,395
+django/contrib/admin/templates/admin/includes/fieldset.html,sha256=ph3cIX0dW9t3MGB53L23w_ROvl6bbnSGO7z707R3wB4,1928
+django/contrib/admin/templates/admin/includes/object_delete_summary.html,sha256=OC7VhKQiczmi01Gt_3jyemelerSNrGyDiWghUK6xKEI,192
+django/contrib/admin/templates/admin/index.html,sha256=HKMOp0hspiIOtiXZxMlx60HDIvDd08bjyitDJkpHPIs,1845
+django/contrib/admin/templates/admin/invalid_setup.html,sha256=F5FS3o7S3l4idPrX29OKlM_azYmCRKzFdYjV_jpTqhE,447
+django/contrib/admin/templates/admin/login.html,sha256=7xkw0L9e0pmRxM9BhCaHXnzdR-zbG9hn2rOMMmrb_Cg,1896
+django/contrib/admin/templates/admin/nav_sidebar.html,sha256=CRALc3xH43rRGk3hkhV_NMsrXGEXQ-XrLvyd3yF8oAs,447
+django/contrib/admin/templates/admin/object_history.html,sha256=RgeYvBah9OdXcWQ4WMvym4JdyUajySXkR4HWMW8J0jg,2137
+django/contrib/admin/templates/admin/pagination.html,sha256=OBvC2HWFaH3wIuk6gzKSyCli51NTaW8vnJFyBOpNo_8,549
+django/contrib/admin/templates/admin/popup_response.html,sha256=Lj8dfQrg1XWdA-52uNtWJ9hwBI98Wt2spSMkO4YBjEk,327
+django/contrib/admin/templates/admin/prepopulated_fields_js.html,sha256=PShGpqQWBBVwQ86r7b-SimwJS0mxNiz8AObaiDOSfvY,209
+django/contrib/admin/templates/admin/search_form.html,sha256=7RUdIeFCCgqZDKWtq1B7-JXDEbHm7p6hd9FaoDoTfVg,1267
+django/contrib/admin/templates/admin/submit_line.html,sha256=DgxKlyJ2b8o5NVWzE47yt_2X-xnbobKjdIVK2Y7jXBU,1052
+django/contrib/admin/templates/admin/widgets/clearable_file_input.html,sha256=NWjHNdkTZMAxU5HWXrOQCReeAO5A6PXBDRWO8S9gSGI,618
+django/contrib/admin/templates/admin/widgets/foreign_key_raw_id.html,sha256=Sp46OiJ5ViQMXfSaug4UkqIiXbiGdlQ8GNEhA8kVLUo,341
+django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html,sha256=w18JMKnPKrw6QyqIXBcdPs3YJlTRtHK5HGxj0lVkMlY,54
+django/contrib/admin/templates/admin/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57
+django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html,sha256=yBjMl7QILpaIigtdrIhodKPVEWOyykjt1mrVierljI0,2096
+django/contrib/admin/templates/admin/widgets/split_datetime.html,sha256=BQ9XNv3eqtvNqZZGW38VBM2Nan-5PBxokbo2Fm_wwCQ,238
+django/contrib/admin/templates/admin/widgets/url.html,sha256=Tf7PwdoKAiimfmDTVbWzRVxxUeyfhF0OlsuiOZ1tHgI,218
+django/contrib/admin/templates/registration/logged_out.html,sha256=PuviqzJh7C6SZJl9yKZXDcxxqXNCTDVfRuEpqvwJiPE,425
+django/contrib/admin/templates/registration/password_change_done.html,sha256=jiKInSGT2igaUrCxaA2DsDdD3L8UpNoS2Hq0hQpcyOk,697
+django/contrib/admin/templates/registration/password_change_form.html,sha256=mwSrzqkGc6tkqpwUDha6X8yb4z6DHC659kSQryeupLo,2275
+django/contrib/admin/templates/registration/password_reset_complete.html,sha256=_fc5bDeYBaI5fCUJZ0ZFpmOE2CUqlbk3npGk63uc_Ks,417
+django/contrib/admin/templates/registration/password_reset_confirm.html,sha256=liNee4VBImIVbKqG4llm597x925Eo2m746VnjoFe06s,1366
+django/contrib/admin/templates/registration/password_reset_done.html,sha256=SQsksjWN8vPLpvtFYPBFMMqZtLeiB4nesPq2VxpB3Y8,588
+django/contrib/admin/templates/registration/password_reset_email.html,sha256=rqaoGa900-rsUasaGYP2W9nBd6KOGZTyc1PsGTFozHo,612
+django/contrib/admin/templates/registration/password_reset_form.html,sha256=VkjUrp7hboZAAErAINl42vecYwORxOVG4SOmIJ8RF-E,869
+django/contrib/admin/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/admin/templatetags/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/admin/templatetags/__pycache__/admin_list.cpython-310.pyc,,
+django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-310.pyc,,
+django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-310.pyc,,
+django/contrib/admin/templatetags/__pycache__/base.cpython-310.pyc,,
+django/contrib/admin/templatetags/__pycache__/log.cpython-310.pyc,,
+django/contrib/admin/templatetags/admin_list.py,sha256=oKnqZgQrUlMIeSDeEKKFVtLyuTzszpFgMfPTV1M2Ggk,18492
+django/contrib/admin/templatetags/admin_modify.py,sha256=3t6rainlP3KHTb0OK1Pkr0TlB0PhZ8IC7O8HnRzijMw,4981
+django/contrib/admin/templatetags/admin_urls.py,sha256=GaDOb10w0kPIPYNvlwEaAIqhKvLKpHQDqYBVpOQhXQU,1926
+django/contrib/admin/templatetags/base.py,sha256=SyI_Dwh5OvtdP0DaPNehpvjgZknlJmrucck5tF3eUHY,1474
+django/contrib/admin/templatetags/log.py,sha256=3MT5WKsac8S5H1J2kkM-gasYc9faF91b95TEt3y8E-k,2167
+django/contrib/admin/tests.py,sha256=m4gJTq5xfHo2FTGDmTj-6HXvDLh7bI20C5Ub0i1T_bw,8525
+django/contrib/admin/utils.py,sha256=CktOSINIB7jxqT9jWvssvS5o80tYUzUc4e-iFYEMSKc,20169
+django/contrib/admin/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/admin/views/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/admin/views/__pycache__/autocomplete.cpython-310.pyc,,
+django/contrib/admin/views/__pycache__/decorators.cpython-310.pyc,,
+django/contrib/admin/views/__pycache__/main.cpython-310.pyc,,
+django/contrib/admin/views/autocomplete.py,sha256=yDp5k-zICP16x-EXY_4ntPX3HewTzcPDLQWQlaHbYEs,4316
+django/contrib/admin/views/decorators.py,sha256=4ndYdYoPLhWsdutME0Lxsmcf6UFP5Z2ou3_pMjgNbw8,639
+django/contrib/admin/views/main.py,sha256=2y45kvfecNj_NEOWtFKs4BSIQkClE65Fb2Tz1PJTsFc,23813
+django/contrib/admin/widgets.py,sha256=YiOgl5InGOJTEspprZCSvlLWPsdgn2n8YtDZMzYaJjQ,19169
+django/contrib/admindocs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/admindocs/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/admindocs/__pycache__/apps.cpython-310.pyc,,
+django/contrib/admindocs/__pycache__/middleware.cpython-310.pyc,,
+django/contrib/admindocs/__pycache__/urls.cpython-310.pyc,,
+django/contrib/admindocs/__pycache__/utils.cpython-310.pyc,,
+django/contrib/admindocs/__pycache__/views.cpython-310.pyc,,
+django/contrib/admindocs/apps.py,sha256=FgDGkvhRkMuGvHWxfnt9NNu6NkLwtkj_JGZz0WHj3FU,471
+django/contrib/admindocs/locale/af/LC_MESSAGES/django.mo,sha256=MrncgyILquCzFENxkWfJdzauVt6m3yPnQc1sDR4bCMg,2421
+django/contrib/admindocs/locale/af/LC_MESSAGES/django.po,sha256=yHYO9ZMBSGQLiSxd9PLzzNY7GT518wb7M-JAzTjSbw8,5392
+django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo,sha256=MwAJ0TMsgRN4wrwlhlw3gYCfZK5IKDzNPuvjfJS_Eug,7440
+django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po,sha256=KSmZCjSEizBx5a6yN_u0FPqG5QoXsTV9gdJkqWC8xC8,8052
+django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=lW-fKcGwnRtdpJLfVw9i1HiM25TctVK0oA0bGV7yAzU,7465
+django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.po,sha256=c8LOJTCkHd1objwj6Xqh0wF3LwkLJvWg9FIWSWWMI-I,7985
+django/contrib/admindocs/locale/ast/LC_MESSAGES/django.mo,sha256=d4u-2zZXnnueWm9CLSnt4TRWgZk2NMlrA6gaytJ2gdU,715
+django/contrib/admindocs/locale/ast/LC_MESSAGES/django.po,sha256=TUkc-Hm4h1kD0NKyndteW97jH6bWcJMFXUuw2Bd62qo,4578
+django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo,sha256=oDigGRWoeAjZ4Z2LOrRToycqKjwwV3pjGl1LmedJpwQ,1835
+django/contrib/admindocs/locale/az/LC_MESSAGES/django.po,sha256=MUqRjD4VeiTQluNvnpCbGfwdd8Lw_V_lrxeW-k9ytVQ,5100
+django/contrib/admindocs/locale/be/LC_MESSAGES/django.mo,sha256=VZl0yvgbo0jwQpf-s472jagbUj83A3twnxddQGwGW5c,8163
+django/contrib/admindocs/locale/be/LC_MESSAGES/django.po,sha256=Z8ZtS_t5Tc7iy1p4TTrsKZqiMJl94f1jiTWuv1sep3A,8728
+django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo,sha256=iLkCZ9SUrxFbVuPBiPUajfPYGL928x9NryBtoiaZqss,8236
+django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po,sha256=1OlWLLvowOMsnrZ24R_yoXWuE1RpcLHSpIFpfmIB304,8983
+django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo,sha256=NOKVcE8id9G1OctSly4C5lm64CgEF8dohX-Pdyt4kCM,3794
+django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po,sha256=6M7LjIEjvDTjyraxz70On_TIsgqJPLW7omQ0Fz_zyfQ,6266
+django/contrib/admindocs/locale/br/LC_MESSAGES/django.mo,sha256=UsPTado4ZNJM_arSMXyuBGsKN-bCHXQZdFbh0GB3dtg,1571
+django/contrib/admindocs/locale/br/LC_MESSAGES/django.po,sha256=SHOxPSgozJbOkm8u5LQJ9VmL58ZSBmlxfOVw1fAGl2s,5139
+django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo,sha256=clvhu0z3IF5Nt0tZ85hOt4M37pnGEWeIYumE20vLpsI,1730
+django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po,sha256=1-OrVWFqLpeXQFfh7JNjJtvWjVww7iB2s96dcSgLy90,5042
+django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo,sha256=nI2ctIbZVrsaMbJQGIHQCjwqJNTnH3DKxwI2dWR6G_w,6650
+django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po,sha256=hPjkw0bkoUu-yKU8XYE3ji0NG4z5cE1LGonYPJXeze4,7396
+django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo,sha256=dJ-3fDenE42f6XZFc-yrfWL1pEAmSGt2j1eWAyy-5OQ,6619
+django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po,sha256=uU4n9PsiI96O0UpJzL-inVzB1Kx7OB_SbLkjrFLuyVA,7227
+django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo,sha256=sYeCCq0CMrFWjT6rKtmFrpC09OEFpYLSI3vu9WtpVTY,5401
+django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po,sha256=GhdikiXtx8Aea459uifQtBjHuTlyUeiKu0_rR_mDKyg,6512
+django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo,sha256=vmsIZeMIVpLkSdJNS0G6alAmBBEtLDBLnOd-P3dSOAs,6446
+django/contrib/admindocs/locale/da/LC_MESSAGES/django.po,sha256=bSoTGPcE7MdRfAtBybZT9jsuww2VDH9t5CssaxSs_GU,7148
+django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo,sha256=ReSz0aH1TKT6AtP13lWoONnwNM2OGo4jK9fXJlo75Hc,6567
+django/contrib/admindocs/locale/de/LC_MESSAGES/django.po,sha256=tVkDIPF_wYb_KaJ7PF9cZyBJoYu6RpznoM9JIk3RYN4,7180
+django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.mo,sha256=K_QuInKk1HrrzQivwJcs_2lc1HreFj7_R7qQh3qMTPY,6807
+django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.po,sha256=flF1D0gfTScuC_RddC9njLe6RrnqnksiRxwODVA9Vqw,7332
+django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo,sha256=1x0sTZwWbGEURyRaSn4ONvTPXHwm7XemNlcun9Nm1QI,8581
+django/contrib/admindocs/locale/el/LC_MESSAGES/django.po,sha256=GebfJfW0QPzAQyBKz1Km9a3saCpAWT7d_Qe2nCBvGn4,9320
+django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/admindocs/locale/en/LC_MESSAGES/django.po,sha256=pEypE71l-Ude2e3XVf0tkBpGx6BSYNqBagWnSYmEbxI,10688
+django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.mo,sha256=BQ54LF9Tx88m-pG_QVz_nm_vqvoy6pVJzL8urSO4l1Q,486
+django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.po,sha256=ho7s1uKEs9FGooyZBurvSjvFz1gDSX6R4G2ZKpF1c9Q,5070
+django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo,sha256=xKGbswq1kuWCbn4zCgUQUb58fEGlICIOr00oSdCgtU4,1821
+django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po,sha256=No09XHkzYVFBgZqo7bPlJk6QD9heE0oaI3JmnrU_p24,4992
+django/contrib/admindocs/locale/eo/LC_MESSAGES/django.mo,sha256=114OOVg9hP0H0UU2aQngCm0wE7zEEAp7QFMupOuWCfQ,6071
+django/contrib/admindocs/locale/eo/LC_MESSAGES/django.po,sha256=h8P3lmvBaJ8J2xiytReJvI8iGK0gCe-LPK27kWxSNKI,6799
+django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo,sha256=wVt9I5M6DGKZFhPhYuS2yKRGVzSROthx98TFiJvJA80,6682
+django/contrib/admindocs/locale/es/LC_MESSAGES/django.po,sha256=F72OFWbIZXvopNMzy7eIibNKc5EM0jsYgbN4PobD6tc,7602
+django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo,sha256=mZ7OKAmlj2_FOabKsEiWycxiKLSLCPFldponKNxINjs,6658
+django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po,sha256=deaOq0YMCb1B1PHWYUbgUrQsyXFutn4wQ2BAXiyzugA,7257
+django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.mo,sha256=KFjQyWtSxH_kTdSJ-kNUDAFt3qVZI_3Tlpg2pdkvJfs,6476
+django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.po,sha256=dwrTVjYmueLiVPu2yiJ_fkFF8ZeRntABoVND5H2WIRI,7038
+django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo,sha256=3hZiFFVO8J9cC624LUt4lBweqmpgdksRtvt2TLq5Jqs,1853
+django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po,sha256=gNmx1QTbmyMxP3ftGXGWJH_sVGThiSe_VNKkd7M9jOY,5043
+django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.mo,sha256=sMwJ7t5GqPF496w-PvBYUneZ9uSwmi5jP-sWulhc6BM,6663
+django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.po,sha256=ZOcE0f95Q6uD9SelK6bQlKtS2c3JX9QxNYCihPdlM5o,7201
+django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo,sha256=JQHVKehV0sxNaBQRqbsN-Of22CMV70bQ9TUId3QDudY,6381
+django/contrib/admindocs/locale/et/LC_MESSAGES/django.po,sha256=qrS3cPEy16hEi1857jvqsmr9zHF9_AkkJUw4mKimg98,7096
+django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo,sha256=WHgK7vGaqjO4MwjBkWz2Y3ABPXCqfnwSGelazRhOiuo,6479
+django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po,sha256=718XgJN7UQcHgE9ku0VyFp7Frs-cvmCTO1o-xS5kpqc,7099
+django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo,sha256=Qrkrb_CHPGymnXBoBq5oeTs4W54R6nLz5hLIWH63EHM,7499
+django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po,sha256=L-rxiKqUmlQgrPTLQRaS50woZWB9JuEamJpgDpLvIXw,8251
+django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo,sha256=SzuPvgeiaBwABvkJbOoTHsbP7juAuyyMWAjENr50gYk,6397
+django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po,sha256=jn4ZMVQ_Gh6I-YLSmBhlyTn5ICP5o3oj7u0VKpV2hnI,6972
+django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo,sha256=dD92eLXIDeI-a_BrxX1G49qRwLS4Vt56bTP9cha5MeE,6755
+django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po,sha256=hiUeHTul4Z3JWmkClGZmD5Xn4a1Tj1A5OLRfKU5Zdmo,7329
+django/contrib/admindocs/locale/fy/LC_MESSAGES/django.mo,sha256=_xVO-FkPPoTla_R0CzktpRuafD9fuIP_G5N-Q08PxNg,476
+django/contrib/admindocs/locale/fy/LC_MESSAGES/django.po,sha256=b3CRH9bSUl_jjb9s51RlvFXp3bmsmuxTfN_MTmIIVNA,5060
+django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo,sha256=PkY5sLKd7gEIE2IkuuNJXP5RmjC-D4OODRv6KCCUDX8,1940
+django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po,sha256=-l6VME96KR1KKNACVu7oHzlhCrnkC1PaJQyskOUqOvk,5211
+django/contrib/admindocs/locale/gd/LC_MESSAGES/django.mo,sha256=k5-Ov9BkwYHZ_IvIxQdHKVBdOUN7kWGft1l7w5Scd5o,6941
+django/contrib/admindocs/locale/gd/LC_MESSAGES/django.po,sha256=FyvfRNkSrEZo8x1didB6nFHYD54lZfKSoAGcwJ2wLso,7478
+django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo,sha256=CYtHrSyH_Lw0YxmmmndEnMPU-cw5TMr-8NHUjz6v7JM,2265
+django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po,sha256=0S2CJju3EIiEp6kqJIn0Jl1IyRAg2-5ovYMOW0YRtVA,5188
+django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo,sha256=mJKr2rC_1OWQpRaRCecnz01YDEu5APFhJHqRHgGQxXA,6743
+django/contrib/admindocs/locale/he/LC_MESSAGES/django.po,sha256=sYlIetORzAXaKk7DAhr-6J0TGucV7RsOftT9Zilz6yE,7427
+django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo,sha256=sZhObIxqrmFu5Y-ZOQC0JGM3ly4IVFr02yqOOOHnDag,2297
+django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po,sha256=X6UfEc6q0BeaxVP_C4priFt8irhh-YGOUUzNQyVnEYY,5506
+django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo,sha256=fMsayjODNoCdbpBAk9GHtIUaGJGFz4sD9qYrguj-BQA,2550
+django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po,sha256=qi2IB-fBkGovlEz2JAQRUNE54MDdf5gjNJWXM-dIG1s,5403
+django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.mo,sha256=4CbZ95VHJUg3UNt-FdzPtUtHJLralgnhadz-evigiFA,6770
+django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.po,sha256=ty8zWmqY160ZpSbt1-_2iY2M4RIL7ksh5-ggQGc_TO8,7298
+django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo,sha256=ATEt9wE2VNQO_NMcwepgxpS7mYXdVD5OySFFPWpnBUA,6634
+django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po,sha256=3XKQrlonyLXXpU8xeS1OLXcKmmE2hiBoMJN-QZ3k82g,7270
+django/contrib/admindocs/locale/ia/LC_MESSAGES/django.mo,sha256=KklX2loobVtA6PqHOZHwF1_A9YeVGlqORinHW09iupI,1860
+django/contrib/admindocs/locale/ia/LC_MESSAGES/django.po,sha256=Z7btOCeARREgdH4CIJlVob_f89r2M9j55IDtTLtgWJU,5028
+django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo,sha256=2HZrdwFeJV4Xk2HIKsxp_rDyBrmxCuRb92HtFtW8MxE,6343
+django/contrib/admindocs/locale/id/LC_MESSAGES/django.po,sha256=O01yt7iDXvEwkebUxUlk-vCrLR26ebuqI51x64uqFl4,7041
+django/contrib/admindocs/locale/io/LC_MESSAGES/django.mo,sha256=5t9Vurrh6hGqKohwsZIoveGeYCsUvRBRMz9M7k9XYY8,464
+django/contrib/admindocs/locale/io/LC_MESSAGES/django.po,sha256=SVZZEmaS1WbXFRlLLGg5bzUe09pXR23TeJtHUbhyl0w,5048
+django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo,sha256=pEr-_MJi4D-WpNyFaQe3tVKVLq_9V-a4eIF18B3Qyko,1828
+django/contrib/admindocs/locale/is/LC_MESSAGES/django.po,sha256=-mD5fFnL6xUqeW4MITzm8Lvx6KXq4C9DGsEM9kDluZ8,5045
+django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo,sha256=AzCkkJ8x-V38XSOdOG2kMSUujcn0mD8TIvdAeNT6Qcw,6453
+django/contrib/admindocs/locale/it/LC_MESSAGES/django.po,sha256=SUsGtCKkCVoj5jaM6z_-JQR8kv8W4Wv_OE26hpOb96s,7171
+django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo,sha256=KoPwCbH9VlKoP_7zTEjOzPsHZ7jVWl2grQRckQmshw4,7358
+django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po,sha256=6ZTqM2qfBS_j5aLH52yJPYW4e4X5MqiQFdqV1fmEQGg,8047
+django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo,sha256=w2cHLI1O3pVt43H-h71cnNcjNNvDC8y9uMYxZ_XDBtg,4446
+django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po,sha256=omKVSzNA3evF5Mk_Ud6utHql-Do7s9xDzCVQGQA0pSg,6800
+django/contrib/admindocs/locale/kab/LC_MESSAGES/django.mo,sha256=XTuWnZOdXhCFXEW4Hp0zFtUtAF0wJHaFpQqoDUTWYGw,1289
+django/contrib/admindocs/locale/kab/LC_MESSAGES/django.po,sha256=lQWewMZncWUvGhpkgU_rtwWHcgAyvhIkrDfjFu1l-d8,4716
+django/contrib/admindocs/locale/kk/LC_MESSAGES/django.mo,sha256=mmhLzn9lo4ff_LmlIW3zZuhE77LoSUfpaMMMi3oyi38,1587
+django/contrib/admindocs/locale/kk/LC_MESSAGES/django.po,sha256=72sxLw-QDSFnsH8kuzeQcV5jx7Hf1xisBmxI8XqSCYw,5090
+django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo,sha256=Fff1K0qzialXE_tLiGM_iO5kh8eAmQhPZ0h-eB9iNOU,1476
+django/contrib/admindocs/locale/km/LC_MESSAGES/django.po,sha256=E_CaaYc4GqOPgPh2t7iuo0Uf4HSQQFWAoxSOCG-uEGU,4998
+django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo,sha256=lisxE1zzW-Spdm7hIzXxDAfS7bM-RdrAG_mQVwz9WMU,1656
+django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po,sha256=u6JnB-mYoYWvLl-2pzKNfeNlT1s6A2I3lRi947R_0yA,5184
+django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo,sha256=nVBVLfXUlGQCeF2foSQ2kksBmR3KbweXdbD6Kyq-PrU,6563
+django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po,sha256=y2YjuXM3p0haXrGpxRtm6I84o75TQaMeT4xbHCg7zOM,7342
+django/contrib/admindocs/locale/ky/LC_MESSAGES/django.mo,sha256=HEJo4CLoIOWpK-MPcTqLhbNMA8Mt3totYN1YbJ_SNn4,7977
+django/contrib/admindocs/locale/ky/LC_MESSAGES/django.po,sha256=VaSXjz8Qlr2EI8f12gtziN7yA7IWsaVoEzL3G6dERXs,8553
+django/contrib/admindocs/locale/lb/LC_MESSAGES/django.mo,sha256=N0hKFuAdDIq5clRKZirGh4_YDLsxi1PSX3DVe_CZe4k,474
+django/contrib/admindocs/locale/lb/LC_MESSAGES/django.po,sha256=B46-wRHMKUMcbvMCdojOCxqIVL5qVEh4Czo20Qgz6oU,5058
+django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo,sha256=KOnpaVeomKJIHcVLrkeRVnaqQHzFdYM_wXZbbqxWs4g,6741
+django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po,sha256=-uzCS8193VCZPyhO8VOi11HijtBG9CWVKStFBZSXfI4,7444
+django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo,sha256=5PAE_peuqlRcc45pm6RsSqnBpG-o8OZpfdt2aasYM2w,6449
+django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po,sha256=_mFvAQT1ZVBuDhnWgKY3bVQUWA8DoEf-HFAEsMfkGuU,7085
+django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo,sha256=8H9IpRASM7O2-Ql1doVgM9c4ybZ2KcfnJr12PpprgP4,8290
+django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po,sha256=Uew7tEljjgmslgfYJOP9JF9ELp6NbhkZG_v50CZgBg8,8929
+django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo,sha256=bm4tYwcaT8XyPcEW1PNZUqHJIds9CAq3qX_T1-iD4k4,6865
+django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po,sha256=yNINX5M7JMTbYnFqQGetKGIXqOjGJtbN2DmIW9BKQ_c,8811
+django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo,sha256=KqdcvSpqmjRfA8M4nGB9Cnu9Auj4pTu9aH07XtCep3I,7607
+django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po,sha256=PGhlnzDKyAIRzaPCbNujpxSpf_JaOG66LK_NMlnZy6I,8316
+django/contrib/admindocs/locale/mr/LC_MESSAGES/django.mo,sha256=LDGC7YRyVBU50W-iH0MuESunlRXrNfNjwjXRCBdfFVg,468
+django/contrib/admindocs/locale/mr/LC_MESSAGES/django.po,sha256=5cUgPltXyS2Z0kIKF5ER8f5DuBhwmAINJQyfHj652d0,5052
+django/contrib/admindocs/locale/ms/LC_MESSAGES/django.mo,sha256=vgoSQlIQeFWaVfJv3YK9_0FOywWwxLhWGICKBdxcqJY,6557
+django/contrib/admindocs/locale/ms/LC_MESSAGES/django.po,sha256=Qy_NjgqwEwLGk4oaHB4Np3dVbPeCK2URdI73S73IZLE,7044
+django/contrib/admindocs/locale/my/LC_MESSAGES/django.mo,sha256=AsdUmou0FjCiML3QOeXMdbHiaSt2GdGMcEKRJFonLOQ,1721
+django/contrib/admindocs/locale/my/LC_MESSAGES/django.po,sha256=c75V-PprKrWzgrHbfrZOpm00U_zZRzxAUr2U_j8MF4w,5189
+django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo,sha256=qlzN0-deW2xekojbHi2w6mYKeBe1Cf1nm8Z5FVrmYtA,6308
+django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po,sha256=a60vtwHJXhjbRAtUIlO0w3XfQcQ0ljwmwFG3WbQ7PNo,6875
+django/contrib/admindocs/locale/ne/LC_MESSAGES/django.mo,sha256=fWPAUZOX9qrDIxGhVVouJCVDWEQLybZ129wGYymuS-c,2571
+django/contrib/admindocs/locale/ne/LC_MESSAGES/django.po,sha256=wb8pCm141YfGSHVW84FnAvsKt5KnKvzNyzGcPr-Wots,5802
+django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo,sha256=nZwZekyuJi9U8WhJHasdQ05O1Qky8kJzj3i6c4lj3rw,6463
+django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po,sha256=aP59hIiCQwGCKyHnoJXYJIChzYMbNFlb2IotTX4WBwU,7188
+django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo,sha256=tIOU1WrHkAfxD6JBpdakiMi6pVzzvIg0jun6gii-D08,6299
+django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po,sha256=oekYY3xjjM2sPnHv_ZXxAti1ySPF-HxLrvLLk7Izibk,6824
+django/contrib/admindocs/locale/os/LC_MESSAGES/django.mo,sha256=zSQBgSj4jSu5Km0itNgDtbkb1SbxzRvQeZ5M9sXHI8k,2044
+django/contrib/admindocs/locale/os/LC_MESSAGES/django.po,sha256=hZlMmmqfbGmoiElGbJg7Fp791ZuOpRFrSu09xBXt6z4,5215
+django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo,sha256=yFeO0eZIksXeDhAl3CrnkL1CF7PHz1PII2kIxGA0opQ,1275
+django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po,sha256=DA5LFFLOXHIJIqrrnj9k_rqL-wr63RYX_i-IJFhBuc0,4900
+django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo,sha256=DHxRNP6YK8qocDqSd2DZg7n-wPp2hJSbjNBLFti7U8o,6633
+django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po,sha256=mRjleE2-9r9TfseHWeyjvRwzBZP_t2LMvihq8n_baU8,7575
+django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo,sha256=WcXhSlbGdJgVMvydkPYYee7iOQ9SYdrLkquzgIBhVWU,6566
+django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po,sha256=J98Hxa-ApyzRevBwcAldK9bRYbkn5DFw3Z5P7SMEwx0,7191
+django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo,sha256=L8t589rbg4vs4HArLpgburmMufZ6BTuwxxkv1QUetBA,6590
+django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po,sha256=EG4xELZ8emUIWB78cw8gFeiqTiN9UdAuEaXHyPyNtIE,7538
+django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo,sha256=9K8Sapn6sOg1wtt2mxn7u0cnqPjEHH70qjwM-XMPzNA,6755
+django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po,sha256=b4AsPjWBYHQeThAtLP_TH4pJitwidtoPNkJ7dowUuRg,7476
+django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo,sha256=9pIPv2D0rq29vrBNWZENM_SOdNpaPidxmgT20hWtBis,8434
+django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po,sha256=BTlxkS4C0DdfC9QJCegXwi5ejfG9pMsAdfy6UJzec3s,9175
+django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo,sha256=GtiqSwQxKsrC-HBexRMuV3qQhZa8vJeukTpeJdXxsz4,6639
+django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po,sha256=45J2eddF99_xWbWUoUgQ5NrawMYNreUWpeyXHF6KjsI,7339
+django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo,sha256=FMg_s9ZpeRD42OsSF9bpe8pRQ7wP7-a9WWnaVliqXpU,6508
+django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po,sha256=JWO_WZAwBpXw-4FoB7rkWXGhi9aEVq1tH2fOC69rcgg,7105
+django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo,sha256=XvNDzCc3-Hh5Pz7SHhG8zCT_3dtqGzBLkDqhim4jJpc,6551
+django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po,sha256=0GZvLpxbuYln7GrTsFyzgjIleSw6Z9IRSPgAWWdx6Eo,7165
+django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo,sha256=PyE8DXRYELzSs4RWh1jeADXOPrDEN3k-nLr8sbM1Ssw,3672
+django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po,sha256=ri7v9WHXORY-3Dl-YDKGsCFfQzH-a5y8t1vT6yziIyo,6108
+django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=au90IT43VR162L2jEsYqhRpso2dvOjpCPSCFiglokTc,1932
+django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po,sha256=tJ4tHLJj0tDaVZba3WIkI0kg95_jEYWTmqXD0rFb6T8,5140
+django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo,sha256=5i9qxo9V7TghSIpKCOw5PpITYYHMP-0NhFivwc-w0yw,6394
+django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po,sha256=WhABV5B-rhBly6ueJPOMsIBjSiw7i1yCZUQsXWE_jV4,7137
+django/contrib/admindocs/locale/sw/LC_MESSAGES/django.mo,sha256=pyJfGL7UdPrJAVlCB3YimXxTjTfEkoZQWX-CSpDkcWc,1808
+django/contrib/admindocs/locale/sw/LC_MESSAGES/django.po,sha256=SIywrLX1UGx4OiPxoxUYelmQ1YaY2LMa3dxynGQpHp8,4929
+django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo,sha256=8SjQ9eGGyaZGhkuDoZTdtYKuqcVyEtWrJuSabvNRUVM,1675
+django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po,sha256=k593yzVqpSQOsdpuF-rdsSLwKQU8S_QFMRpZXww__1A,5194
+django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo,sha256=eAzNpYRy_G1erCcKDAMnJC4809ITRHvJjO3vpyAC_mk,1684
+django/contrib/admindocs/locale/te/LC_MESSAGES/django.po,sha256=oDg_J8JxepFKIe5m6lDKVC4YWQ_gDLibgNyQ3508VOM,5204
+django/contrib/admindocs/locale/tg/LC_MESSAGES/django.mo,sha256=jSMmwS6F_ChDAZDyTZxRa3YuxkXWlO-M16osP2NLRc0,7731
+django/contrib/admindocs/locale/tg/LC_MESSAGES/django.po,sha256=mewOHgRsFydk0d5IY3jy3rOWa6uHdatlSIvFNZFONsc,8441
+django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo,sha256=bHK49r45Q1nX4qv0a0jtDja9swKbDHHJVLa3gM13Cb4,2167
+django/contrib/admindocs/locale/th/LC_MESSAGES/django.po,sha256=_GMgPrD8Zs0lPKQOMlBmVu1I59yXSV42kfkrHzeiehY,5372
+django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo,sha256=L1iBsNGqqfdNkZZmvnnBB-HxogAgngwhanY1FYefveE,6661
+django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po,sha256=D4vmznsY4icyKLXQUgAL4WZL5TOUZYVUSCJ4cvZuFg8,7311
+django/contrib/admindocs/locale/tt/LC_MESSAGES/django.mo,sha256=pQmAQOPbrBVzBqtoQ0dsFWFwC6LxA5mQZ9QPqL6pSFw,1869
+django/contrib/admindocs/locale/tt/LC_MESSAGES/django.po,sha256=NCLv7sSwvEficUOSoMJlHGqjgjYvrvm2V3j1Gkviw80,5181
+django/contrib/admindocs/locale/udm/LC_MESSAGES/django.mo,sha256=hwDLYgadsKrQEPi9HiuMWF6jiiYUSy4y-7PVNJMaNpY,618
+django/contrib/admindocs/locale/udm/LC_MESSAGES/django.po,sha256=29fpfn4p8KxxrBdg4QB0GW_l8genZVV0kYi50zO-qKs,5099
+django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo,sha256=G-3yCDj2jK7ZTu80YXGJ_ZR1E7FejbLxTFe866G4Pr0,8468
+django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po,sha256=bbWzP-gpbslzbTBc_AO7WBNmtr3CkLOwkSJHI0Z_dTA,9330
+django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo,sha256=VNg9o_7M0Z2LC0n3_-iwF3zYmncRJHaFqqpxuPmMq84,1836
+django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po,sha256=QTg85c4Z13hMN_PnhjaLX3wx6TU4SH4hPTzNBfNVaMU,5148
+django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo,sha256=F6dyo00yeyUND_w1Ocm9SL_MUdXb60QQpmAQPto53IU,1306
+django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po,sha256=JrVKjT848Y1cS4tpH-eRivFNwM-cUs886UEhY2FkTPw,4836
+django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=ngPlxN85wGOMKoo3OK3wUQeikoaxPKqAIsgw2_0ovN4,6075
+django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.po,sha256=TNdJGJCAi0OijBN6w23SwKieZqNqkgNt2qdlPfY-r20,6823
+django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=7c2QywaTzF_GX8T2PUknQ_PN5s0Cx37_cO-walIg8mk,4725
+django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.po,sha256=uX-3zu8RQdntg__qYBweKtcuBgLsXPUYApf4bQx9eSU,6153
+django/contrib/admindocs/middleware.py,sha256=owqLbigBtxKmhPQmz767KOAkN3nKRIJrwZAUuHRIAQM,1329
+django/contrib/admindocs/templates/admin_doc/bookmarklets.html,sha256=PnfojSYh6lJA03UPjWbvxci64CNPQmrhJhycdyqlT5U,1281
+django/contrib/admindocs/templates/admin_doc/index.html,sha256=o710lPn-AHBJfKSUS6x1eUjAOZYRO9dbnuq_Cg7HEiY,1369
+django/contrib/admindocs/templates/admin_doc/missing_docutils.html,sha256=f8CcVOHCgUmbG_V56rVLV1tttQYPdkcxAHY_IWiMPK4,786
+django/contrib/admindocs/templates/admin_doc/model_detail.html,sha256=0O5-Kxf8RNyZ_slYJ1kq26HmKoarGMkf0S27fqhrFYE,1880
+django/contrib/admindocs/templates/admin_doc/model_index.html,sha256=7fgybgDWYcWZaDPgf25DxFkdxtnrqnpLem7iVmPQmLk,1346
+django/contrib/admindocs/templates/admin_doc/template_detail.html,sha256=C_shsOpJiW0Rngv8ZSXi12dgoepUUCqU3dPdaq9Bmio,1049
+django/contrib/admindocs/templates/admin_doc/template_filter_index.html,sha256=U2HBVHXtgCqUp9hLuOMVqCxBbXyYMMgAORG8fziN7uc,1775
+django/contrib/admindocs/templates/admin_doc/template_tag_index.html,sha256=S4U-G05yi1YIlFEv-HG20bDiq4rhdiZCgebhVBzNzdY,1731
+django/contrib/admindocs/templates/admin_doc/view_detail.html,sha256=u2rjpM0cLlHxSY-Na7wxqnv76zaGf0P1FgdnHl9XqdQ,928
+django/contrib/admindocs/templates/admin_doc/view_index.html,sha256=ZLfmxMkVlPYETRFnjLmU3bagve4ZvY1Xzsya1Lntgkw,1734
+django/contrib/admindocs/urls.py,sha256=zUZG14KLznM6CVtoxnCsJEa7TRwKRN44XLNAp9EgUy8,1310
+django/contrib/admindocs/utils.py,sha256=jQyONR22Ep1-AaMxIYEnNNxgoUOcFRsUM1aO9Jqv4aA,8939
+django/contrib/admindocs/views.py,sha256=yt-SEZ7PqD2aNL7DkKMqAugk8Z0iGd6UKTaMx4z8y6w,18588
+django/contrib/auth/__init__.py,sha256=RfV_3QgS1JKo_ooxEC90Jik4QXP7xxkzxkx3CLje6uw,7974
+django/contrib/auth/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/auth/__pycache__/admin.cpython-310.pyc,,
+django/contrib/auth/__pycache__/apps.cpython-310.pyc,,
+django/contrib/auth/__pycache__/backends.cpython-310.pyc,,
+django/contrib/auth/__pycache__/base_user.cpython-310.pyc,,
+django/contrib/auth/__pycache__/checks.cpython-310.pyc,,
+django/contrib/auth/__pycache__/context_processors.cpython-310.pyc,,
+django/contrib/auth/__pycache__/decorators.cpython-310.pyc,,
+django/contrib/auth/__pycache__/forms.cpython-310.pyc,,
+django/contrib/auth/__pycache__/hashers.cpython-310.pyc,,
+django/contrib/auth/__pycache__/middleware.cpython-310.pyc,,
+django/contrib/auth/__pycache__/mixins.cpython-310.pyc,,
+django/contrib/auth/__pycache__/models.cpython-310.pyc,,
+django/contrib/auth/__pycache__/password_validation.cpython-310.pyc,,
+django/contrib/auth/__pycache__/signals.cpython-310.pyc,,
+django/contrib/auth/__pycache__/tokens.cpython-310.pyc,,
+django/contrib/auth/__pycache__/urls.cpython-310.pyc,,
+django/contrib/auth/__pycache__/validators.cpython-310.pyc,,
+django/contrib/auth/__pycache__/views.cpython-310.pyc,,
+django/contrib/auth/admin.py,sha256=jOLuaoiasplhn_HWMqqAo9VdQpDAVIfGPBFwpdMopVQ,9020
+django/contrib/auth/apps.py,sha256=JE5zuVw7Tx6NFULN_u8sOxs0OnHczMC9bM0N_m1xsmA,1224
+django/contrib/auth/backends.py,sha256=jyxtlgvVZ02fl-L7PbGnTbKmMiK0pq_NbPPMbGf1zRc,9268
+django/contrib/auth/base_user.py,sha256=KpR-mxMFOXQwZfaJlVUfjdxCrLAiuajwM0jF0UYEkoQ,4484
+django/contrib/auth/checks.py,sha256=q05m4ylm3r3z8t7BPKeJLlpz5qfv6HOiPNcEl6sgAfw,8442
+django/contrib/auth/common-passwords.txt.gz,sha256=CnCdMuzzpa5EVwTpCqtO7-x3CIPsy47PWWw7GUT9C5M,81355
+django/contrib/auth/context_processors.py,sha256=8BbvdbTVPl8GVgB5-2LTzx6FrGsMzev-E7JMnUgr-rM,1911
+django/contrib/auth/decorators.py,sha256=YWxmna4E6nQSgNzEpcNkW6aoawqVGDmUnRoOJqZAxhs,2901
+django/contrib/auth/forms.py,sha256=YgfDipDFlWLAtuhFeUwPpOoKa_gkSAJXVB9zxFfr8QQ,16433
+django/contrib/auth/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/auth/handlers/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/auth/handlers/__pycache__/modwsgi.cpython-310.pyc,,
+django/contrib/auth/handlers/modwsgi.py,sha256=bTXKVMezywsn1KA2MVyDWeHvTNa2KrwIxn2olH7o_5I,1248
+django/contrib/auth/hashers.py,sha256=MfhkqNrOkItdOYvqBIvRVvedHO-FXE3Qyyt2ZEpOR7Q,28161
+django/contrib/auth/locale/af/LC_MESSAGES/django.mo,sha256=UKEGdzrpTwNnuhPcejOS-682hL88yV83xh-55dMZzyg,7392
+django/contrib/auth/locale/af/LC_MESSAGES/django.po,sha256=GFM0MbuRB9axSqvFQzZXhyeZF9JTKqoMMdfNEgNQVFY,7618
+django/contrib/auth/locale/ar/LC_MESSAGES/django.mo,sha256=7LhxFfL9y6RAfZ8PU-1lKI2V02LbHxXtB1UAf_vXpuc,10040
+django/contrib/auth/locale/ar/LC_MESSAGES/django.po,sha256=2QIaioY0RedAB0CFKVZLhGoCnhLzgUh84sAR7i6QUnQ,10520
+django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=0UokSPc3WDs_0PozSalfBaq4JFYgF1Rt7b90CKvY5jE,10228
+django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.po,sha256=GDvm2m1U7NOY5l7FijKGR77DEZt6rYWoSPCxsY5BZ3Y,10574
+django/contrib/auth/locale/ast/LC_MESSAGES/django.mo,sha256=Pt3gYY3j8Eroo4lAEmf-LR6u9U56mpE3vqLhjR4Uq-o,2250
+django/contrib/auth/locale/ast/LC_MESSAGES/django.po,sha256=Kiq4s8d1HnYpo3DQGlgUl3bOkxmgGW8CvGp9AbryRk8,5440
+django/contrib/auth/locale/az/LC_MESSAGES/django.mo,sha256=kwobdDjncjpc7x7AQgAGSrAdrNlV3mJm1rxyAwweGKo,7576
+django/contrib/auth/locale/az/LC_MESSAGES/django.po,sha256=HQB__hodya8egKUqZElnuw47NYOHKpNnXYUpnl3P8LI,7932
+django/contrib/auth/locale/be/LC_MESSAGES/django.mo,sha256=PKHL5EabL4jB0bQkw6GGiWhUK56Wa6tJxzZ09ymAF-M,10033
+django/contrib/auth/locale/be/LC_MESSAGES/django.po,sha256=ncUrvZfc57_WF38MxBV_rpLJeMcIg14D6d2M8NvLogk,10355
+django/contrib/auth/locale/bg/LC_MESSAGES/django.mo,sha256=iCuCi9MbjhsOUaUh2-OR_Ox9odgtBFSwyzJhmIOH9iQ,9466
+django/contrib/auth/locale/bg/LC_MESSAGES/django.po,sha256=NGss8TqtnQ_KrEtl433W8y3dbgYoezne1w2ylqGrn7s,9994
+django/contrib/auth/locale/bn/LC_MESSAGES/django.mo,sha256=cJSawQn3rNh2I57zK9vRi0r1xc598Wr26AyHh6D50ZQ,5455
+django/contrib/auth/locale/bn/LC_MESSAGES/django.po,sha256=5Vqd4n9ab98IMev4GHLxpO7f4r9nnhC3Nfx27HQNd8s,7671
+django/contrib/auth/locale/br/LC_MESSAGES/django.mo,sha256=nxLj88BBhT3Hudev1S_BRC8P6Jv7eoR8b6CHGt5eoPo,1436
+django/contrib/auth/locale/br/LC_MESSAGES/django.po,sha256=rFo68wfXMyju633KCAhg0Jcb3GVm3rk4opFQqI89d6Y,5433
+django/contrib/auth/locale/bs/LC_MESSAGES/django.mo,sha256=jDjP1qIs02k6RixY9xy3V7Cr6zi-henR8nDnhqNG18s,3146
+django/contrib/auth/locale/bs/LC_MESSAGES/django.po,sha256=NOICHHU8eFtltH0OBlnasz9TF0uZGZd3hMibRmn158E,5975
+django/contrib/auth/locale/ca/LC_MESSAGES/django.mo,sha256=lqiOLv_LZDLeXbJZYsrWRHzcnwd1vd00tW5Jrh-HHkY,7643
+django/contrib/auth/locale/ca/LC_MESSAGES/django.po,sha256=v-3t7bDTh1835nZnjYh3_HyN4yw4a1HyHpC3-jX79Z0,8216
+django/contrib/auth/locale/cs/LC_MESSAGES/django.mo,sha256=7TuyZNQ11j4iLxxr_xch3gBDQ0cSTh0VFUa0FMzH1Uo,7836
+django/contrib/auth/locale/cs/LC_MESSAGES/django.po,sha256=qoA5lHFEwLZZakgYONzA-TxBqpBNhBytGHxS40YCf0s,8292
+django/contrib/auth/locale/cy/LC_MESSAGES/django.mo,sha256=lSfCwEVteW4PDaiGKPDxnSnlDUcGMkPfsxIluExZar0,4338
+django/contrib/auth/locale/cy/LC_MESSAGES/django.po,sha256=-LPAKGXNzB77lVHfCRmFlH3SUaLgOXk_YxfC0BomcEs,6353
+django/contrib/auth/locale/da/LC_MESSAGES/django.mo,sha256=r3_2TSpbpLSK62t8KdD2VQqAxUXzdBaox5fyjgtoS7w,7478
+django/contrib/auth/locale/da/LC_MESSAGES/django.po,sha256=3ZgzujWtZwIsdk7gtvzXOxQusiFgzLTZBhXS3jUESAg,7958
+django/contrib/auth/locale/de/LC_MESSAGES/django.mo,sha256=ewzAnUawN_euTDtXmroxkktzKAHsTkHRjZQOkuYHu7k,7529
+django/contrib/auth/locale/de/LC_MESSAGES/django.po,sha256=J8GJ8N1RvQDRACYUfeZwqFnnEwi3PtYe7QaJ_UDFp3Q,8033
+django/contrib/auth/locale/dsb/LC_MESSAGES/django.mo,sha256=QOnCzO9Nf3_JBX9WP2pGfZXISgyAHv3p62OAF6fxkG8,8135
+django/contrib/auth/locale/dsb/LC_MESSAGES/django.po,sha256=g1o_S2lb_fN7aL_YIpOI0KicRiz72gh5sz2DYuwNYNI,8434
+django/contrib/auth/locale/el/LC_MESSAGES/django.mo,sha256=KaP9RLYThwYWLBx0W90HI0zJZ09iNhZ3tk8UVF63n74,10072
+django/contrib/auth/locale/el/LC_MESSAGES/django.po,sha256=O5JsNCUNr1YcNNqMugoM5epN6nC5pgq3E6nKXDh3OY0,10795
+django/contrib/auth/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/auth/locale/en/LC_MESSAGES/django.po,sha256=VLGYW9XtfDKb1uNmH5-6q_8vh7WFfpOLV8dleeQFUkE,8219
+django/contrib/auth/locale/en_AU/LC_MESSAGES/django.mo,sha256=7cPKOZX0ZmWCYU2ZwgCp8LwXj7FAdP3lMoI2u4nzgeU,7183
+django/contrib/auth/locale/en_AU/LC_MESSAGES/django.po,sha256=92Q42wfwKhGxDkomv8JlGBHVUdFIc_wvm_LUNBc9Q1k,7467
+django/contrib/auth/locale/en_GB/LC_MESSAGES/django.mo,sha256=p57gDaYVvgEk1x80Hq4Pn2SZbsp9ly3XrJ5Ttlt2yOE,3179
+django/contrib/auth/locale/en_GB/LC_MESSAGES/django.po,sha256=-yDflw5-81VOlyqkmLJN17FRuwDrhYXItFUJwx2aqpE,5787
+django/contrib/auth/locale/eo/LC_MESSAGES/django.mo,sha256=0Z-qGFJc_j9rV2-BN4YoVTeGQd15yoHHpt0fSEMwiwg,7329
+django/contrib/auth/locale/eo/LC_MESSAGES/django.po,sha256=cghgKB3ZOFTNdjBuCpWXn1WFXJQLRCQGEzBwiLU5D-c,7731
+django/contrib/auth/locale/es/LC_MESSAGES/django.mo,sha256=9BfzdvlAsARjd4CVzSritsWzQJsP5w7sM7nLO-KXF9A,7782
+django/contrib/auth/locale/es/LC_MESSAGES/django.po,sha256=Km0bEjiIkOoNXvC4hhId3CXKqIqFHWSFEdK6OgEHx04,8571
+django/contrib/auth/locale/es_AR/LC_MESSAGES/django.mo,sha256=tPRhIvlvgn5urawLpgF-YIoO4zqc06LtHflK_G_FYFU,7943
+django/contrib/auth/locale/es_AR/LC_MESSAGES/django.po,sha256=XqPd_mBJmPG-YYZrDdfVe7nbC6B5NLcHp2aISkk23xI,8214
+django/contrib/auth/locale/es_CO/LC_MESSAGES/django.mo,sha256=K5VaKTyeV_WoKsLR1x8ZG4VQmk3azj6ZM8Phqjs81So,6529
+django/contrib/auth/locale/es_CO/LC_MESSAGES/django.po,sha256=qJywTaYi7TmeMB1sjwsiwG8GXtxAOaOX0voj7lLVZRw,7703
+django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo,sha256=dCav1yN5q3bU4PvXZd_NxHQ8cZ9KqQCiNoe4Xi8seoY,7822
+django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po,sha256=_4un21ALfFsFaqpLrkE2_I18iEfJlcAnd_X8YChfdWo,8210
+django/contrib/auth/locale/es_VE/LC_MESSAGES/django.mo,sha256=GwpZytNHtK7Y9dqQKDiVi4SfA1AtPlk824_k7awqrdI,7415
+django/contrib/auth/locale/es_VE/LC_MESSAGES/django.po,sha256=G3mSCo_XGRUfOAKUeP_UNfWVzDPpbQrVYQt8Hv3VZVM,7824
+django/contrib/auth/locale/et/LC_MESSAGES/django.mo,sha256=yilio-iPwr09MPHPgrDLQ-G5d2xNg1o75lcv5-yzcM4,7393
+django/contrib/auth/locale/et/LC_MESSAGES/django.po,sha256=OvUyjbna_KS-bI4PUUHagS-JuwtB7G0J1__MtFGxB-M,7886
+django/contrib/auth/locale/eu/LC_MESSAGES/django.mo,sha256=K0AoFJGJJSnD1IzYqCY9qB4HZHwx-F7QaDTAGehyo7w,7396
+django/contrib/auth/locale/eu/LC_MESSAGES/django.po,sha256=y9BAASQYTTYfoTKWFVQUYs5-zPlminfJ6C5ZORD6g-s,7749
+django/contrib/auth/locale/fa/LC_MESSAGES/django.mo,sha256=yeA_5LAPu7OyQssunvUNlH07bPVCyGLpnvijNenrtHQ,8979
+django/contrib/auth/locale/fa/LC_MESSAGES/django.po,sha256=NChJSgpkXrwAiTrCJzvwlm9mh-LFSD1rR1ESdRQD43o,9513
+django/contrib/auth/locale/fi/LC_MESSAGES/django.mo,sha256=fH_rcYkl9L2dK1G3MjVETXAHunCPhsXQYMTbDcNe-00,7537
+django/contrib/auth/locale/fi/LC_MESSAGES/django.po,sha256=PVwyNBaToxjyHkxy4t4L-kULjJslTe94coSxWNseyn4,7892
+django/contrib/auth/locale/fr/LC_MESSAGES/django.mo,sha256=nppbd8aA9qHRmmneAz9Ld0PtnnaWranJ0Gil2j1ZqP8,8155
+django/contrib/auth/locale/fr/LC_MESSAGES/django.po,sha256=UfsLNtSLwfWgFgHIigXUSM-atmNRoOKm2U4lCUOU2Qo,8530
+django/contrib/auth/locale/fy/LC_MESSAGES/django.mo,sha256=95N-77SHF0AzQEer5LuBKu5n5oWf3pbH6_hQGvDrlP4,476
+django/contrib/auth/locale/fy/LC_MESSAGES/django.po,sha256=8XOzOFx-WerF7whzTie03hgO-dkbUFZneyrpZtat5JY,3704
+django/contrib/auth/locale/ga/LC_MESSAGES/django.mo,sha256=Nd02Ed9ACCY6JCCSwtiWl3DTODLFFu9Mq6JVlr5YbYk,3572
+django/contrib/auth/locale/ga/LC_MESSAGES/django.po,sha256=FQJMR5DosuKqo4vvF0NAQnjfqbH54MSzqL2-4BO4-uM,6127
+django/contrib/auth/locale/gd/LC_MESSAGES/django.mo,sha256=BLBYJV9Adx1BsXZaM0qZ54mNRAF5s4dxB1TBLtIyMHQ,8743
+django/contrib/auth/locale/gd/LC_MESSAGES/django.po,sha256=rqPK26mtE_U-TG2qyjc5xCR-feI3sGXZR5H6ohNzx4s,9099
+django/contrib/auth/locale/gl/LC_MESSAGES/django.mo,sha256=ZqVb1YCn_0_HyVtb_rnxmn0BSYAuKTVTFNHf2gftt5c,4022
+django/contrib/auth/locale/gl/LC_MESSAGES/django.po,sha256=YN_7iJTGc1Kh5llxHnwqq1kZmdQVMUMv1bkti30fMCI,6371
+django/contrib/auth/locale/he/LC_MESSAGES/django.mo,sha256=MeI7B43KSAIZL7_qxceKnnFKnyoUVYeZDRkGWabrclw,8606
+django/contrib/auth/locale/he/LC_MESSAGES/django.po,sha256=aDJlOsxyGpm-t6BydtqPMDB9lPcBCie8a1IfW_Ennvc,9012
+django/contrib/auth/locale/hi/LC_MESSAGES/django.mo,sha256=7CxV1H37hMbgKIhnAWx-aJmipLRosJe1qg8BH2CABfw,5364
+django/contrib/auth/locale/hi/LC_MESSAGES/django.po,sha256=DU5YM6r1kd5fo40yqFXzEaNh42ezFQFQ-0dmVqkaKQ0,7769
+django/contrib/auth/locale/hr/LC_MESSAGES/django.mo,sha256=GEap3QClwCkuwQZKJE7qOZl93RRxmyyvTTnOTYaAWUo,5894
+django/contrib/auth/locale/hr/LC_MESSAGES/django.po,sha256=ALftoYSaI1U90RNDEvnaFATbw1SL0m8fNXAyl6DkSvo,7355
+django/contrib/auth/locale/hsb/LC_MESSAGES/django.mo,sha256=J28d-As2avF34TlqEkhOzy91URZAXF47SY27qCPysPg,7974
+django/contrib/auth/locale/hsb/LC_MESSAGES/django.po,sha256=P3onPBZkAYofZpYnTsJ0ILbRFRhHtZorsHZ4-DVuu8w,8264
+django/contrib/auth/locale/hu/LC_MESSAGES/django.mo,sha256=TLGY7EaLD12NHYM1hQlqb4D4BM0T68jv8yhECOHIgcA,7655
+django/contrib/auth/locale/hu/LC_MESSAGES/django.po,sha256=E51MM5qqplgrOSrh60bfz-EvyL91Ik3kL3YJOK-dqzk,8040
+django/contrib/auth/locale/hy/LC_MESSAGES/django.mo,sha256=zoLe0EqIH8HQYC5XAWd8b8mA2DpbmDSEBsF-WIKX_OQ,8001
+django/contrib/auth/locale/hy/LC_MESSAGES/django.po,sha256=wIWLbz6f0n44ZcjEbZZsgoWTpzXRGND15hudr_DQ3l0,8787
+django/contrib/auth/locale/ia/LC_MESSAGES/django.mo,sha256=OTxh6u0QmsytMrp8IKWBwMnhrYCpyS6qVnF7YBCAWe0,7626
+django/contrib/auth/locale/ia/LC_MESSAGES/django.po,sha256=ue4RXEXweO1-9sZOKkLZsyZe8yxnPWB3JZyyh3qzmlA,7895
+django/contrib/auth/locale/id/LC_MESSAGES/django.mo,sha256=Shn7YL4gYpKmw3tkL3upWpehmSMkLs6ODIFpIhmHSeM,7243
+django/contrib/auth/locale/id/LC_MESSAGES/django.po,sha256=7bCK44c-CqLcgcltuOfoTsDJ-tYNW0Fdfq6KaSHLKd4,7638
+django/contrib/auth/locale/io/LC_MESSAGES/django.mo,sha256=YwAS3aWljAGXWcBhGU_GLVuGJbHJnGY8kUCE89CPdks,464
+django/contrib/auth/locale/io/LC_MESSAGES/django.po,sha256=W36JXuA1HQ72LspixRxeuvxogVxtk7ZBbT0VWI38_oM,3692
+django/contrib/auth/locale/is/LC_MESSAGES/django.mo,sha256=0PBYGqQKJaAG9m2jmJUzcqRVPc16hCe2euECMCrNGgI,7509
+django/contrib/auth/locale/is/LC_MESSAGES/django.po,sha256=o6dQ8WMuPCw4brSzKUU3j8PYhkLBO7XQ3M7RlsIw-VY,7905
+django/contrib/auth/locale/it/LC_MESSAGES/django.mo,sha256=cKZiZxBLLKL3HqbBWCtMxkP_Y5o9tgo5J-dMLPPthk0,7608
+django/contrib/auth/locale/it/LC_MESSAGES/django.po,sha256=VTurpVr2_2HRZpw1bUqjehWaypfGfI6ySGjoYA_MFFM,8178
+django/contrib/auth/locale/ja/LC_MESSAGES/django.mo,sha256=MB36xS89-mlWuDRood1NGARfcWmqj7dp2JMCXuA16fA,8085
+django/contrib/auth/locale/ja/LC_MESSAGES/django.po,sha256=aAVHTduL9eq_BuCvjLjBxOmU7_Oq3MnrsZ4JqutCSFM,8436
+django/contrib/auth/locale/ka/LC_MESSAGES/django.mo,sha256=0QWYd58Dz5Az3OfZo7wV3o-QCre2oc5dgEPu0rnLVJI,10625
+django/contrib/auth/locale/ka/LC_MESSAGES/django.po,sha256=oCtz7gS4--mhv7biS1rIh43I4v1UpZX4DKdrB-xZ2RA,11217
+django/contrib/auth/locale/kab/LC_MESSAGES/django.mo,sha256=9qKeQ-gDByoOdSxDpSbLaM4uSP5sIi7qlTn8tJidVDs,2982
+django/contrib/auth/locale/kab/LC_MESSAGES/django.po,sha256=8cq5_rjRXPzTvn1jPo6H_Jcrv6IXkWr8n9fTPvghsS8,5670
+django/contrib/auth/locale/kk/LC_MESSAGES/django.mo,sha256=RJablrXpRba6YVB_8ACSt2q_BjmxrHQZzX6RxMJImlA,3542
+django/contrib/auth/locale/kk/LC_MESSAGES/django.po,sha256=OebwPN9iWBvjDu0P2gQyBbShvIFxFIqCw8DpKuti3xk,6360
+django/contrib/auth/locale/km/LC_MESSAGES/django.mo,sha256=FahcwnCgzEamtWcDEPOiJ4KpXCIHbnSowfSRdRQ2F9U,2609
+django/contrib/auth/locale/km/LC_MESSAGES/django.po,sha256=lvRHHIkClbt_8-9Yn0xY57dMxcS72z4sUkxLb4cohP0,5973
+django/contrib/auth/locale/kn/LC_MESSAGES/django.mo,sha256=u0YygqGJYljBZwI9rm0rRk_DdgaBEMA1etL-Lk-7Mls,4024
+django/contrib/auth/locale/kn/LC_MESSAGES/django.po,sha256=J67MIAas5egVq_FJBNsug3Y7rZ8KakhQt6isyF23HAA,6957
+django/contrib/auth/locale/ko/LC_MESSAGES/django.mo,sha256=vwD0-GW2g4uAPCQbvsr2CyZ1Y-9VHcF4xlN3qaJbolU,7607
+django/contrib/auth/locale/ko/LC_MESSAGES/django.po,sha256=6PX6SMXjv_bYolpgHfcFpzaKPdkwJSVg95GU5EpjdeM,8350
+django/contrib/auth/locale/ky/LC_MESSAGES/django.mo,sha256=mnBXtpInYxaSNIURJTmx8uBg_PH-NuPN9r54pkQY3q4,8924
+django/contrib/auth/locale/ky/LC_MESSAGES/django.po,sha256=7FeO_Kb2er0S84KnFeXVHO3TgAmEJ0gTQEDHImoxiZ4,9170
+django/contrib/auth/locale/lb/LC_MESSAGES/django.mo,sha256=OFhpMA1ZXhrs5fwZPO5IjubvWDiju4wfwWiV94SFkiA,474
+django/contrib/auth/locale/lb/LC_MESSAGES/django.po,sha256=dOfY9HjTfMQ0nkRYumw_3ZaywbUrTgT-oTXAnrRyfxo,3702
+django/contrib/auth/locale/lt/LC_MESSAGES/django.mo,sha256=-nlZHl7w__TsFUmBb5pQV_XJtKGsi9kzP6CBZXkfM8M,8146
+django/contrib/auth/locale/lt/LC_MESSAGES/django.po,sha256=-rdhB6eroSSemsdZkG1Jl4CruNZc_7dj4m5IVoyRBUQ,8620
+django/contrib/auth/locale/lv/LC_MESSAGES/django.mo,sha256=Og4Jnkv3BAYSMx1-JipnUaLqwnefk7XDrR7dxbydI5o,7656
+django/contrib/auth/locale/lv/LC_MESSAGES/django.po,sha256=Jmkz7K1_W387FSobu-L8dzbsm_-uj0OCMqa4xx-XBC4,8070
+django/contrib/auth/locale/mk/LC_MESSAGES/django.mo,sha256=XS9dslnD_YBeD07P8WQkss1gT7GIV-qLiCx4i5_Vd_k,9235
+django/contrib/auth/locale/mk/LC_MESSAGES/django.po,sha256=QOLgcwHub9Uo318P2z6sp69MI8syIIWCcr4VOom9vfs,9799
+django/contrib/auth/locale/ml/LC_MESSAGES/django.mo,sha256=UEaqq7nnGvcZ8vqFicLiuqsuEUhEjd2FpWfyzy2HqdU,12611
+django/contrib/auth/locale/ml/LC_MESSAGES/django.po,sha256=xBROIwJb5h2LmyBLAafZ2tUlPVTAOcMgt-olq5XnPT8,13107
+django/contrib/auth/locale/mn/LC_MESSAGES/django.mo,sha256=hBYT0p3LcvIKKPtIn2NzPk_2di9L8jYrUt9j3TcVvaY,9403
+django/contrib/auth/locale/mn/LC_MESSAGES/django.po,sha256=R3wAEwnefEHZsma8J-XOn4XlLtuWYKDPLwJ99DUYmvE,9913
+django/contrib/auth/locale/mr/LC_MESSAGES/django.mo,sha256=zGuqUTqcWZZn8lZY56lf5tB0_lELn7Dd0Gj78wwO5T4,468
+django/contrib/auth/locale/mr/LC_MESSAGES/django.po,sha256=yLW9WuaBHqdp9PXoDEw7c05Vt0oOtlks5TS8oxYPAO8,3696
+django/contrib/auth/locale/ms/LC_MESSAGES/django.mo,sha256=eCAZrzQxsM_pAxr_XQo2fIOsCbj5LjGKpLNCzob2l-I,7654
+django/contrib/auth/locale/ms/LC_MESSAGES/django.po,sha256=FAtyzSGcD1mIhRIg8O_1SHLdisTPGYZK-QUjzgw-wCY,7847
+django/contrib/auth/locale/my/LC_MESSAGES/django.mo,sha256=gYzFJKi15RbphgG1IHbJF3yGz3P2D9vaPoHZpA7LoH8,1026
+django/contrib/auth/locale/my/LC_MESSAGES/django.po,sha256=lH5mrq-MyY8gvrNkH2_20rkjFnbviq23wIUqIjPIgFI,5130
+django/contrib/auth/locale/nb/LC_MESSAGES/django.mo,sha256=T6aK_x_t3c0uoALxmraqrK4--Ln5vTUMPb2m7iuR9bM,7191
+django/contrib/auth/locale/nb/LC_MESSAGES/django.po,sha256=jwECmnO6m_sk9O3PXnmEnh3FC9LJKVdSliRZ8nNPNLY,7585
+django/contrib/auth/locale/ne/LC_MESSAGES/django.mo,sha256=pq8dEr1ugF5ldwkCDHOq5sXaXV31InbLHYyXU56U_Ao,7722
+django/contrib/auth/locale/ne/LC_MESSAGES/django.po,sha256=bV-uWvT1ViEejrbRbVTtwC2cZVD2yX-KaESxKBnxeRI,8902
+django/contrib/auth/locale/nl/LC_MESSAGES/django.mo,sha256=rC50p1YuxjzC0qIsV139uhrFkJhPi5sFERoNdD7XYIY,7509
+django/contrib/auth/locale/nl/LC_MESSAGES/django.po,sha256=B1K9ZLH0fvz5jY85bIZI8NUDTOqaufezfTUgEObb-fk,8301
+django/contrib/auth/locale/nn/LC_MESSAGES/django.mo,sha256=83HdNOuNQVgJXBZMytPz1jx3wWDy8-e6t_JNEUu6W8w,7147
+django/contrib/auth/locale/nn/LC_MESSAGES/django.po,sha256=4ciwQsZFYSV6CjFqzxxcESAm16huv9XyXvU-nchD-Fs,7363
+django/contrib/auth/locale/os/LC_MESSAGES/django.mo,sha256=DVsYGz-31nofEjZla4YhM5L7qoBnQaYnZ4TBki03AI4,4434
+django/contrib/auth/locale/os/LC_MESSAGES/django.po,sha256=Akc1qelQWRA1DE6xseoK_zsY7SFI8SpiVflsSTUhQLw,6715
+django/contrib/auth/locale/pa/LC_MESSAGES/django.mo,sha256=PeOLukzQ_CZjWBa5FGVyBEysat4Gwv40xGMS29UKRww,3666
+django/contrib/auth/locale/pa/LC_MESSAGES/django.po,sha256=7ts9PUSuvfXGRLpfyVirJLDtsQcsVWFXDepVKUVlmtc,6476
+django/contrib/auth/locale/pl/LC_MESSAGES/django.mo,sha256=-Ie-Wmu6bIpQFabfX9apO1uYvjnK-lPj-99jTOhtH44,7950
+django/contrib/auth/locale/pl/LC_MESSAGES/django.po,sha256=9dyBmCqSvGEZ4BALTTzokZNx46NTJ04RHOYnrMfNCnU,8704
+django/contrib/auth/locale/pt/LC_MESSAGES/django.mo,sha256=oyKCSXRo55UiO3-JKcodMUnK7fuOuQxQrXcU7XkWidA,7756
+django/contrib/auth/locale/pt/LC_MESSAGES/django.po,sha256=tEazw0kctJ3BaP21IblsMhno6qooOGW54zwende522Q,8128
+django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.mo,sha256=VMLdFwEk6QYtA-73C4EnwJY_1wwWuGv3nAn6yHiXark,7795
+django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.po,sha256=eAum_H4BToVsEkZo7kFBMHTshlduJYzShvbFlQAg6Ic,8607
+django/contrib/auth/locale/ro/LC_MESSAGES/django.mo,sha256=GD04tb5R6nEeD6ZMAcZghVhXwr8en1omw0c6BxnyHas,7777
+django/contrib/auth/locale/ro/LC_MESSAGES/django.po,sha256=YfkFuPrMwAR50k6lfOYeBbMosEbvXGWwMBD8B7p_2ZA,8298
+django/contrib/auth/locale/ru/LC_MESSAGES/django.mo,sha256=4MRl7yEBk9G9R_GewxkBxHK5ic4ww_WopNQymluwbYs,10347
+django/contrib/auth/locale/ru/LC_MESSAGES/django.po,sha256=y9e6hrsZO4GwIOWedYNuU2h7PX9Sa0uomKTyOlKGPw0,10963
+django/contrib/auth/locale/sk/LC_MESSAGES/django.mo,sha256=1xmFLKSKxwWOoW7MLQ6oLhOi5fRs_YEqYQ6VlQ0f7ag,7853
+django/contrib/auth/locale/sk/LC_MESSAGES/django.po,sha256=sNAtYJYT-QLmTRaYpoyAeC9j3adeQwvQqtxjKuDFkn0,8292
+django/contrib/auth/locale/sl/LC_MESSAGES/django.mo,sha256=UAzD5UAqHBdiCMIPjZdouGt14xoHuo5EXDctNSDTEJk,7552
+django/contrib/auth/locale/sl/LC_MESSAGES/django.po,sha256=tUqZLZJegGLteWOQiDwFRUGayBB2j9qATmL6SMgEhb8,7943
+django/contrib/auth/locale/sq/LC_MESSAGES/django.mo,sha256=3bm81rsRuQmV_1mD9JrAwSjRIDUlsb3lPmBxRNHfz8w,7813
+django/contrib/auth/locale/sq/LC_MESSAGES/django.po,sha256=BWfyT4qg1jMoDGwmpLq4uPHJ1hJXLHI7gyo4BnzVHZI,8128
+django/contrib/auth/locale/sr/LC_MESSAGES/django.mo,sha256=3dRNH8jjE8I2vQwyTZ5J6tGLeBr3_XhlAjdPqcMea0M,9761
+django/contrib/auth/locale/sr/LC_MESSAGES/django.po,sha256=33D4YxtMpY3s0cDsK0L2-bCvfZHlbfxR4XX9oMjCQXM,10081
+django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=SXl_MvkY_idYMT3sF7nIuh8z2qMdMC1lJ69Y6FcJMaA,3191
+django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.po,sha256=hlU8JVlqIKv-Wx9urJDnFxvyT_m8mLz0vTl8Tcat4lw,5958
+django/contrib/auth/locale/sv/LC_MESSAGES/django.mo,sha256=hdFeVy7UXyyHylfvuWrzcLE9eIDBTGWy91ReCvFgXAg,7484
+django/contrib/auth/locale/sv/LC_MESSAGES/django.po,sha256=Ia6YyrYr3hOKBojOfMVQBlY1LvcX0hi3LRvMmf9mOIw,8130
+django/contrib/auth/locale/sw/LC_MESSAGES/django.mo,sha256=I_lEsKuMGm07X1vM3-ReGDx2j09PGLkWcG0onC8q1uQ,5029
+django/contrib/auth/locale/sw/LC_MESSAGES/django.po,sha256=TiZS5mh0oN0e6dFEdh-FK81Vk-tdv35ngJ-EbM1yX80,6455
+django/contrib/auth/locale/ta/LC_MESSAGES/django.mo,sha256=T1t5CKEb8hIumvbOtai-z4LKj2et8sX-PgBMd0B3zuA,2679
+django/contrib/auth/locale/ta/LC_MESSAGES/django.po,sha256=X8UDNmk02X9q1leNV1qWWwPNakhvNd45mCKkQ8EpZQQ,6069
+django/contrib/auth/locale/te/LC_MESSAGES/django.mo,sha256=i9hG4thA0P-Hc-S2oX7GufWFDO4Y_LF4RcdQ22cbLyE,2955
+django/contrib/auth/locale/te/LC_MESSAGES/django.po,sha256=txND8Izv2oEjSlcsx3q6l5fEUqsS-zv-sjVVILB1Bmc,6267
+django/contrib/auth/locale/tg/LC_MESSAGES/django.mo,sha256=MwdyYwC4ILX4MFsqCy46NNfPKLbW1GzRhFxMV0uIbLI,7932
+django/contrib/auth/locale/tg/LC_MESSAGES/django.po,sha256=miOPNThjHZODwjXMbON8PTMQhaCGJ0Gy6FZr6Jcj4J8,8938
+django/contrib/auth/locale/th/LC_MESSAGES/django.mo,sha256=zRpZ2xM5JEQoHtfXm2_XYdhe2FtaqH-hULJadLJ1MHU,6013
+django/contrib/auth/locale/th/LC_MESSAGES/django.po,sha256=Yhh_AQS_aM_9f_yHNNSu_3THbrU-gOoMpfiDKhkaSHo,7914
+django/contrib/auth/locale/tk/LC_MESSAGES/django.mo,sha256=AqCIDe-6QrLMN3CNbMZsfrL0KxnQ3zuZwN8KvFmwRhE,7343
+django/contrib/auth/locale/tk/LC_MESSAGES/django.po,sha256=LpVXh4T0ZS3EzbIpJud8Dlms0Bu1vWf6c0JqkpoD8q8,7605
+django/contrib/auth/locale/tr/LC_MESSAGES/django.mo,sha256=jQyJ55Sr_xkHTgcfvl3smdWjum0tGCzp4NY0U1w9aig,7506
+django/contrib/auth/locale/tr/LC_MESSAGES/django.po,sha256=5DXWBmUc3fAwVHwcCTeu7M2y8X9VqrI_Ex3ZFKqzCgA,8090
+django/contrib/auth/locale/tt/LC_MESSAGES/django.mo,sha256=g4pTk8QLQFCOkU29RZvR1wOd1hkOZe_o5GV9Cg5u8N4,1371
+django/contrib/auth/locale/tt/LC_MESSAGES/django.po,sha256=owkJ7iPT-zJYkuKLykfWsw8j7O8hbgzVTOD0DVv956E,5222
+django/contrib/auth/locale/udm/LC_MESSAGES/django.mo,sha256=zey19UQmS79AJFxHGrOziExPDDpJ1AbUegbCRm0x0hM,462
+django/contrib/auth/locale/udm/LC_MESSAGES/django.po,sha256=gLVgaMGg0GA3Tey1_nWIjV1lnM7czLC0XR9NFBgL2Zk,3690
+django/contrib/auth/locale/uk/LC_MESSAGES/django.mo,sha256=1CE7KRwdtP3D0UmEQcgydqXLGWVNZRUs4hpkoQJGMlo,10077
+django/contrib/auth/locale/uk/LC_MESSAGES/django.po,sha256=7KbG2N4XhLlgjtaO20ZXCPIIotoWO7fr_nFUlWxzv6s,10776
+django/contrib/auth/locale/ur/LC_MESSAGES/django.mo,sha256=rippTNHoh49W19c4HDUF8G5Yo3SknL3C87Afu8YXxzA,698
+django/contrib/auth/locale/ur/LC_MESSAGES/django.po,sha256=gwSd8noEwbcvDE1Q4ZsrftvoWMwhw1J15gvdtK6E9ns,4925
+django/contrib/auth/locale/uz/LC_MESSAGES/django.mo,sha256=bDkhpvduocjekq6eZiuEfWJqnIt5hQmxxoIMhLQWzqM,2549
+django/contrib/auth/locale/uz/LC_MESSAGES/django.po,sha256=tPp8tRZwSMQCQ9AyAeUDtnRfmOk54UQMwok3HH8VNSQ,5742
+django/contrib/auth/locale/vi/LC_MESSAGES/django.mo,sha256=eBMTwnpRWRj8SZVZ1tN592Re_8CPyJzuF4Vtg9IMmFw,7892
+django/contrib/auth/locale/vi/LC_MESSAGES/django.po,sha256=mOr5WgFpwztdW-pEZ4O80MGlltYQyL2cAMhz6-Esfo0,8246
+django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=xV9wTiaL7hMCKmUOHuEs5XtxEibXWLnywDYTjeXoVCA,6907
+django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po,sha256=CUdR2ch2mOf5v3GTOTIQg2IOj-7M1mS6Dw9yvz891Yw,7638
+django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=yQ5Gllu4hXzuBpBNAgtJaBMVivJeXUUlpfDS4CT1wg4,6728
+django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po,sha256=Rw18_ZEtobUhmj2oF544zdQ6Vrac0T9UI9RJO4plOdc,7145
+django/contrib/auth/management/__init__.py,sha256=uKE77RX6iQSDb0B6ZP-QTt-kjSelmBY6FQSqxXv3zvI,5327
+django/contrib/auth/management/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/auth/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/auth/management/commands/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/auth/management/commands/__pycache__/changepassword.cpython-310.pyc,,
+django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-310.pyc,,
+django/contrib/auth/management/commands/changepassword.py,sha256=uMA0bm8Xy2JovP9M4WrVdZF4qxgRLMaebx3sET2BKSY,2633
+django/contrib/auth/management/commands/createsuperuser.py,sha256=373N6FpNGrAGdQb6ui4iT3uoMPQcSEX-HL_R7oBsBls,13262
+django/contrib/auth/middleware.py,sha256=_Y3pB-F4WhZdAZZMHL4iQ-TSBQrivkz2flALIjodXiM,5431
+django/contrib/auth/migrations/0001_initial.py,sha256=gos3cWdK6busgmjH4dUBR-S9_7m-LIYF7AtTIlGRFq4,7282
+django/contrib/auth/migrations/0002_alter_permission_name_max_length.py,sha256=Ofj3HGISrF35pqmD-VBr1rlbLTszxaePWXrULRDc0gM,347
+django/contrib/auth/migrations/0003_alter_user_email_max_length.py,sha256=7sFie4LLqpe74dZB6gjymc2PJ6Fm8R1i-_L_1Otr204,419
+django/contrib/auth/migrations/0004_alter_user_username_opts.py,sha256=8Yebbje2LQMo8RlvLhiuNxXT_Fjo60zEMSGwWTctD2A,881
+django/contrib/auth/migrations/0005_alter_user_last_login_null.py,sha256=NvFKl9IxcAEz2Oi21u3XSvkK1DI6ZYg0emW_7PQMqe8,411
+django/contrib/auth/migrations/0006_require_contenttypes_0002.py,sha256=EBEPNuSJtXBj58m2x-rr3WWCSc30ssHWI0Ni6_g9gtk,370
+django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py,sha256=2mOgZgr3in1UU8JAROculPKm_8hqSTbPPFV3XgFc_Ko,803
+django/contrib/auth/migrations/0008_alter_user_username_max_length.py,sha256=vKKsmPu5_6EqyIDrSRByKn9jhrd-_OGgSwQ-4-x_ZRQ,815
+django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py,sha256=T5-y4RVYe5R9dhrP2VvFrmruuNs-UJ8bHL45FIfQtjM,416
+django/contrib/auth/migrations/0010_alter_group_name_max_length.py,sha256=j7YCblkuVz50X1pZdMzRWXJSdwBrHEOt1kyVAe3AsqY,379
+django/contrib/auth/migrations/0011_update_proxy_permissions.py,sha256=Do06UrWbcE6d_tmqkhRfU8TspxSXi-TIMPcT1dGU57k,2879
+django/contrib/auth/migrations/0012_alter_user_first_name_max_length.py,sha256=9AvEG8YCXFe4mm_bjxjp6-5IvIeou6b_QP7Kr5FTD-U,412
+django/contrib/auth/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/auth/migrations/__pycache__/0001_initial.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-310.pyc,,
+django/contrib/auth/migrations/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/auth/mixins.py,sha256=rHq9HsX4W8lKtfXsazxM3chhTFLqd3eKI-OVKpbeLjQ,4652
+django/contrib/auth/models.py,sha256=7DKhZJdEgTkm1j38W_BSfMQ3qh1y-AhqmElQ8kHKhAY,16500
+django/contrib/auth/password_validation.py,sha256=JIZvQAwkQZOGH1iO__jZJzo-jhYtfvpr3dN_3uN4k1c,9376
+django/contrib/auth/signals.py,sha256=BFks70O0Y8s6p1fr8SCD4-yk2kjucv7HwTcdRUzVDFM,118
+django/contrib/auth/templates/auth/widgets/read_only_password_hash.html,sha256=cMrG-iMsrVQ6Qd6T_Xz21b6WIWhXxaIwgNDW2NpDpuM,185
+django/contrib/auth/templates/registration/password_reset_subject.txt,sha256=-TZcy_r0vArBgdPK7feeUY6mr9EkYwy7esQ62_onbBk,132
+django/contrib/auth/tokens.py,sha256=ljqQWO0dAkd45-bBJ6W85oZZU9pEjzNh3VbZfeANwxQ,4328
+django/contrib/auth/urls.py,sha256=Uh8DrSqpJXDA5a17Br9fMmIbEcgLkxdN9FvCRg-vxyg,1185
+django/contrib/auth/validators.py,sha256=N67vd_FgRCMKk9MXsXulprJPKA4UGPgSLWZcGb13yLw,687
+django/contrib/auth/views.py,sha256=8CbrdLoy6NnCdxmzm4BETTHIZvVzS654Fnbu3g61JKw,14446
+django/contrib/contenttypes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/contenttypes/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/contenttypes/__pycache__/admin.cpython-310.pyc,,
+django/contrib/contenttypes/__pycache__/apps.cpython-310.pyc,,
+django/contrib/contenttypes/__pycache__/checks.cpython-310.pyc,,
+django/contrib/contenttypes/__pycache__/fields.cpython-310.pyc,,
+django/contrib/contenttypes/__pycache__/forms.cpython-310.pyc,,
+django/contrib/contenttypes/__pycache__/models.cpython-310.pyc,,
+django/contrib/contenttypes/__pycache__/views.cpython-310.pyc,,
+django/contrib/contenttypes/admin.py,sha256=a0KrlT8k2aPIKn54fNwCDTaAVdVr1fLY1BDz_FrE3ts,5200
+django/contrib/contenttypes/apps.py,sha256=1Q1mWjPvfYU7EaO50JvsWuDg_3uK8DoCwpvdIdT7iKY,846
+django/contrib/contenttypes/checks.py,sha256=KKB-4FOfPO60TM-uxqK8m9sIXzB3CRx7Imr-jaauM_U,1268
+django/contrib/contenttypes/fields.py,sha256=Jy8ucnQY4C67YishiQjSlUVtJ1QVvbmvbRuQyXC3oG8,28663
+django/contrib/contenttypes/forms.py,sha256=T6fZZkJjPrD6R3h5Wos2a9aDM3mZJLerHSh6NXHJp4I,3956
+django/contrib/contenttypes/locale/af/LC_MESSAGES/django.mo,sha256=93nlniPFfVcxfBCs_PsLtMKrJ2BqpcofPRNYYTTlels,1070
+django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po,sha256=SY04sW55-xpO_qBjv8pHoN7eqB2C5q_9CxQguMz7Q94,1244
+django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.mo,sha256=2t3y_6wxi0khsYi6s9ZyJwjRB8bnRT1PKvazWOKhJcQ,1271
+django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po,sha256=t6M3XYQLotNMFCjzB8aWFXnlRI8fU744YZvAoFdScQY,1634
+django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=upFxoSvOvdmqCvC5irRV_8yYpFidanHfRk6i3tPrFAc,1233
+django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.po,sha256=jUg-4BVi0arx5v-osaUDAfM6cQgaBh7mE8Mr8aVTp5A,1447
+django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.mo,sha256=y88CPGGbwTVRmZYIipCNIWkn4OuzuxEk2QCYsBhc7RY,643
+django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po,sha256=H-qMo5ikva84ycnlmBT4XXEWhzMIw-r7J_zuqxo3wu4,1088
+django/contrib/contenttypes/locale/az/LC_MESSAGES/django.mo,sha256=VTQ2qQ7aoZYUVl2yht2DbYzj2acs71Szqz7iZyySAqI,1065
+django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po,sha256=9NcmP1jMQPfjPraoXui6iqJn3z3f3uG1RYN7K5-_-dU,1359
+django/contrib/contenttypes/locale/be/LC_MESSAGES/django.mo,sha256=Kp1TpXX1v0IgGp9HZxleXJ6y5ZvMZ6AqJrSIVcDs7xA,1353
+django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po,sha256=Oy5QXZBmBM_OYLT5OeXJQzTBCHXBp8NVMYuKmr_TUm0,1615
+django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.mo,sha256=IFghXuYj0yxP5j-LfRsNJXlyS2b2dUNJXD01uhUqxLg,1225
+django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po,sha256=y-OpKdDHxHDYATSmi8DAUXuhpIwgujKZUe48G8So8AU,1613
+django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.mo,sha256=2Z1GL6c1ukKQCMcls7R0_n4eNdH3YOXZSR8nCct7SLI,1201
+django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po,sha256=PLjnppx0FxfGBQMuWVjo0N4sW2QYc2DAEMK6ziGWUc8,1491
+django/contrib/contenttypes/locale/br/LC_MESSAGES/django.mo,sha256=kAlOemlwBvCdktgYoV-4NpC7XFDaIue_XN7GJYzDu88,1419
+django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po,sha256=BQmHVQqOc6xJWJLeAo49rl_Ogfv-lFtx18mj82jT_to,1613
+django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.mo,sha256=klj9n7AKBkTf7pIa9m9b-itsy4UlbYPnHiuvSLcFZXY,700
+django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po,sha256=pmJaMBLWbYtYFFXYBvPEvwXkTPdjQDv2WkFI5jNGmTI,1151
+django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.mo,sha256=uYq1BXdw1AXjnLusUQfN7ox1ld6siiy41C8yKVTry7Q,1095
+django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po,sha256=-dsOzvzVzEPVvA9lYsIP-782BbtJxGRo-OHtS3fIjmU,1403
+django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.mo,sha256=QexBQDuGdMFhVBtA9XWUs2geFBROcxyzdU_IBUGQ7x4,1108
+django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po,sha256=8pdPwZmpGOeSZjILGLZEAzqvmmV69ogpkh0c3tukT2g,1410
+django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.mo,sha256=2QyCWeXFyymoFu0Jz1iVFgOIdLtt4N1rCZATZAwiH-8,1159
+django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po,sha256=ZWDxQTHJcw1UYav1C3MX08wCFrSeJNNI2mKjzRVd6H0,1385
+django/contrib/contenttypes/locale/da/LC_MESSAGES/django.mo,sha256=EyancRrTWxM6KTpLq65gIQB0sO_PLtVr1ESN2v1pSNU,1038
+django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po,sha256=J09u3IjLgv4g77Kea_WQAhevHb8DskGU-nVxyucYf_0,1349
+django/contrib/contenttypes/locale/de/LC_MESSAGES/django.mo,sha256=MGUZ4Gw8rSFjBO2OfFX9ooGGpJYwAapgNkc-GdBMXa0,1055
+django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po,sha256=T5ucSqa6VyfUcoN6nFWBtjUkrSrz7wxr8t0NGTBrWow,1308
+django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.mo,sha256=QpdSZObmfb-DQZb3Oh6I1bFRnaPorXMznNZMyVIM7Hc,1132
+django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po,sha256=_tNajamEnnf9FEjI-XBRraKjJVilwvpv2TBf9PAzPxw,1355
+django/contrib/contenttypes/locale/el/LC_MESSAGES/django.mo,sha256=1ySEbSEzhH1lDjHQK9Kv59PMA3ZPdqY8EJe6xEQejIM,1286
+django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po,sha256=8rlMKE5SCLTtm1myjLFBtbEIFyuRmSrL9HS2PA7gneQ,1643
+django/contrib/contenttypes/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po,sha256=BRgOISCCJb4TU0dNxG4eeQJFe-aIe7U3GKLPip03d_Q,1110
+django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTndJxA-F1IE_nMUOtf1sRr7Kq2s_8yjgKk6mkWkVu4,486
+django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po,sha256=wmxyIJtz628AbsxgkB-MjdImcIJWhcW7NV3tWbDpedg,1001
+django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.mo,sha256=_uM-jg43W7Pz8RQhMcR_o15wRkDaYD8aRcl2_NFGoNs,1053
+django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po,sha256=SyzwSvqAgKF8BEhXYh4598GYP583OK2GUXH1lc4iDMk,1298
+django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.mo,sha256=MFC-mQeWLeFry7d2EXeAf2G47YRLLKFhenGLCwo5O9A,1087
+django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po,sha256=BgQ7lRtsjD-XHaNvlHMu9AxCCqx38XdOCG4zYpKgDn4,1279
+django/contrib/contenttypes/locale/es/LC_MESSAGES/django.mo,sha256=KzgypFDwIlVzr_h9Dq2X8dXu3XnsbdSaHwJKJWZ6qc8,1096
+django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po,sha256=Dpn9dTvdy87bVf3It8pZFOdEEKnO91bDeYyY1YujkIA,1456
+django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.mo,sha256=WkHABVDmtKidPyo6zaYGVGrgXpe6tZ69EkxaIBu6mtg,1084
+django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po,sha256=yVSu_fJSKwS4zTlRud9iDochIaY0zOPILF59biVfkeY,1337
+django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.mo,sha256=aACo1rOrgs_BYK3AWzXEljCdAc4bC3BXpyXrwE4lzAs,1158
+django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po,sha256=vemhoL-sESessGmIlHoRvtWICqF2aO05WvcGesUZBRM,1338
+django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.mo,sha256=vD9rSUAZC_rgkwiOOsrrra07Gnx7yEpNHI96tr8xD3U,840
+django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po,sha256=tLgjAi9Z1kZloJFVQuUdAvyiJy1J-5QHfoWmxbqQZCc,1237
+django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.mo,sha256=TVGDydYVg_jGfnYghk_cUFjCCtpGchuoTB4Vf0XJPYk,1152
+django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po,sha256=vJW37vuKYb_KpXBPmoNSqtNstFgCDlKmw-8iOoSCenU,1342
+django/contrib/contenttypes/locale/et/LC_MESSAGES/django.mo,sha256=TE84lZl6EP54-pgmv275jiTOW0vIsnsGU97qmtxMEVg,1028
+django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po,sha256=KO9fhmRCx25VeHNDGXVNhoFx3VFH-6PSLVXZJ6ohOSA,1368
+django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.mo,sha256=K0f1cXEhfg_djPzgCL9wC0iHGWF_JGIhWGFL0Y970g0,1077
+django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po,sha256=sSuVV0o8MeWN6BxlaeKcjKA3h4H29fCo1kKEtkczEp4,1344
+django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.mo,sha256=hW3A3_9b-NlLS4u6qDnPS1dmNdn1UJCt-nihXvnXywI,1130
+django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po,sha256=TPiYsGGN-j-VD--Rentx1p-IcrNJYoYxrxDO_5xeZHI,1471
+django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.mo,sha256=dWar3g1rJAkUG1xRLlmGkH63Fy_h2YqzhMVv0Z25aWc,1036
+django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po,sha256=yALWMFU8-gFD2G0NdWqIDIenrAMUY4VCW1oi8TJXFAc,1325
+django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.mo,sha256=CTOu_JOAQeC72VX5z9cg8Bn3HtZsdgbtjA7XKcy681o,1078
+django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po,sha256=6LArEWoBpdaJa7UPcyv4HJKD3YoKUxrwGQGd16bi9DM,1379
+django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
+django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po,sha256=SB07aEGG7n4oX_5rqHB6OnjpK_K0KwFM7YxaWYNpB_4,991
+django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.mo,sha256=GYQYfYWbgwL3nQJR5d7XGjc5KeYYXsB0yRQJz7zxd_k,1097
+django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po,sha256=byvw9sQ9VLVjS7Au81LcNpxOzwA29_4Al9nB1ZyV2b4,1408
+django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.mo,sha256=dQz7j45qlY3M1rL2fCVdPnuHMUdUcJ0K6cKgRD7Js2w,1154
+django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po,sha256=_hwx9XqeX5QYRFtDpEYkChswn8WMdYTQlbzL1LjREbY,1368
+django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.mo,sha256=gMDLuxVazSNvwLmi5AqJEsxugmDVLk8DlxseHRRoQoc,1072
+django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po,sha256=hFPL2GH-o6XN0SKu5kqgiEaGT8lKnbi_zmlUNCn3Obg,1364
+django/contrib/contenttypes/locale/he/LC_MESSAGES/django.mo,sha256=oaxWykyc3N63WpxyHPI5CyhCTBqhM5-2Sasp_DNm1xc,1219
+django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po,sha256=wCm08UMCiCa6y1-5E-7bEz-8Kd0oMRMwgzoEJjMwFyw,1486
+django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.mo,sha256=KAZuQMKOvIPj3a7GrNJE3yhT70O2abCEF2GOsbwTE5A,1321
+django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po,sha256=PcsNgu2YmT0biklhwOF_nSvoGTvWVKw2IsBxIwSVAtI,1577
+django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.mo,sha256=DbOUA8ks3phsEwQvethkwZ9-ymrd36aQ6mP7OnGdpjU,1167
+django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po,sha256=722KxvayO6YXByAmO4gfsfzyVbT-HqqrLYQsr02KDc8,1445
+django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.mo,sha256=tPtv_lIzCPIUjGkAYalnNIUxVUQFE3MShhVXTnfVx3Q,1106
+django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po,sha256=rbI3G8ARG7DF7uEe82SYCfotBnKTRJJ641bGhjdptTQ,1329
+django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.mo,sha256=2nsylOwBIDOnkUjE2GYU-JRvgs_zxent7q3_PuscdXk,1102
+django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po,sha256=Dzcf94ZSvJtyNW9EUKpmyNJ1uZbXPvc7dIxCccZrDYc,1427
+django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.mo,sha256=hKOErB5dzj44ThQ1_nZHak2-aXZlwMoxYcDWmPb3Xo8,1290
+django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po,sha256=UeGzaghsEt9Lt5DsEzRb9KCbuphWUQwLayt4AN194ao,1421
+django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.mo,sha256=9B0XhxH0v3FvkEvS5MOHHqVbgV6KQITPrjzx1Sn76GA,1105
+django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po,sha256=NX8jpTaIhtVbVlwEsOl5aufZ80ljHZZwqtsVVozQb4M,1318
+django/contrib/contenttypes/locale/id/LC_MESSAGES/django.mo,sha256=4-6RBAvrtA1PY3LNxMrgwzBLZE0ZKwWaXa7SmtmAIyk,1031
+django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po,sha256=xdxEOgfta1kaXyQAngmmbL8wDQzJU6boC9HdbmoM1iI,1424
+django/contrib/contenttypes/locale/io/LC_MESSAGES/django.mo,sha256=3SSRXx4tYiMUc00LZ9kGHuvTgaWpsICEf5G208CEqgg,1051
+django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po,sha256=1ku9WPcenn47DOF05HL2eRqghZeRYfklo2huYUrkeJ0,1266
+django/contrib/contenttypes/locale/is/LC_MESSAGES/django.mo,sha256=ZYWbT4qeaco8h_J9SGF2Bs7Rdu3auZ969xZ0RQ_03go,1049
+django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po,sha256=iNdghSbBVPZmfrHu52hRG8vHMgGUfOjLqie09fYcuso,1360
+django/contrib/contenttypes/locale/it/LC_MESSAGES/django.mo,sha256=GSP0BJc3bGLoNS0tnhiz_5dtSh5NXCrBiZbnwEhWbpk,1075
+django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po,sha256=njEgvhDwWOc-CsGBDz1_mtEsXx2aTU6cP3jZzcLkkYk,1457
+django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.mo,sha256=tVH6RvZ5tXz56lEM3aoJtFp5PKsSR-XXpi8ZNCHjiFw,1211
+django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po,sha256=5_-Uo7Ia3X9gAWm2f72ezQnNr_pQzf6Ax4AUutULuZU,1534
+django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.mo,sha256=1_yGL68sK0QG_mhwFAVdksiDlB57_1W5QkL7NGGE5L0,1429
+django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po,sha256=6iUBbKjXsIgrq7Dj_xhxzoxItSSSKwQjIZsDayefGr8,1654
+django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.mo,sha256=SNY0vydwLyR2ExofAHjmg1A2ykoLI7vU5Ryq-QFu5Gs,627
+django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po,sha256=PU-NAl6xUEeGV0jvJx9siVBTZIzHywL7oKc4DgUjNkc,1130
+django/contrib/contenttypes/locale/km/LC_MESSAGES/django.mo,sha256=BXifukxf48Lr0t0V3Y0GJUMhD1KiHN1wwbueoK0MW1A,678
+django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po,sha256=fTPlBbnaNbLZxjzJutGvqe33t6dWsEKiHQYaw27m7KQ,1123
+django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.mo,sha256=a4sDGaiyiWn-1jFozYI4vdAvuHXrs8gbZErP_SAUk9Y,714
+django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po,sha256=A6Vss8JruQcPUKQvY-zaubVZDTLEPwHsnd_rXcyzQUs,1168
+django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.mo,sha256=myRfFxf2oKcbpmCboongTsL72RTM95nEmAC938M-ckE,1089
+django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po,sha256=uui_LhgGTrW0uo4p-oKr4JUzhjvkLbFCqRVLNMrptzY,1383
+django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.mo,sha256=ULoIe36zGKPZZs113CenA6J9HviYcBOKagXrPGxyBUI,1182
+django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.po,sha256=FnW5uO8OrTYqbvoRuZ6gnCD6CHnuLjN00s2Jo1HX1NE,1465
+django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
+django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po,sha256=dwVKpCRYmXTD9h69v5ivkZe-yFtvdZNZ3VfuyIl4olY,989
+django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.mo,sha256=HucsRl-eqfxw6ESTuXvl7IGjPGYSI9dxM5lMly_P1sc,1215
+django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po,sha256=odzYqHprxKFIrR8TzdxA4WeeMK0W0Nvn2gAVuzAsEqI,1488
+django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.mo,sha256=nWfy7jv2VSsKYT6yhk_xqxjk1TlppJfsQcurC40CeTs,1065
+django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po,sha256=pHlbzgRpIJumDMp2rh1EKrxFBg_DRcvLLgkQ3mi_L0s,1356
+django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.mo,sha256=KTFZWm0F4S6lmi1FX76YKOyJqIZN5cTsiTBI_D4ADHs,1258
+django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po,sha256=mQZosS90S-Bil6-EoGjs9BDWYlvOF6mtUDZ8h9NxEdE,1534
+django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.mo,sha256=rtmLWfuxJED-1KuqkUT8F5CU1KGJP0Of718n2Gl_gI0,1378
+django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po,sha256=Z-kL9X9CD7rYfa4Uoykye2UgCNQlgyql0HTv1eUXAf4,1634
+django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.mo,sha256=J6kKYjUOsQxptNXDcCaY4d3dHJio4HRibRk3qfwO6Xc,1225
+django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po,sha256=x8aRJH2WQvMBBWlQt3T3vpV4yHeZXLmRTT1U0at4ZIk,1525
+django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
+django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po,sha256=FgZKD9E-By0NztUnBM4llpR59K0MJSIMZIrJYGKDqpc,983
+django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.mo,sha256=EIwbOZ0QahW9AFFWRmRdKGKBtYYY_eTcfU4eqDVSVxw,1035
+django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.po,sha256=t7nKsOMxycn_CsXw2nIfU-owJRge3FAixgbTsDhffvo,1225
+django/contrib/contenttypes/locale/my/LC_MESSAGES/django.mo,sha256=YYa2PFe9iJygqL-LZclfpgR6rBmIvx61JRpBkKS6Hrs,1554
+django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po,sha256=6F3nXd9mBc-msMchkC8OwAHME1x1O90xrsZp7xmynpU,1732
+django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.mo,sha256=EHU9Lm49U7WilR5u-Lq0Fg8ChR_OzOce4UyPlkZ6Zs4,1031
+django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po,sha256=lbktPYsJudrhe4vxnauzpzN9eNwyoVs0ZmZSdkwjkOk,1403
+django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.mo,sha256=-zZAn5cex4PkScoZVqS74PUMThJJuovZSk3WUKZ8hnw,1344
+django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po,sha256=1ZCUkulQ9Gxb50yMKFKWaTJli2SinBeNj0KpXkKpsNE,1519
+django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.mo,sha256=aXDHgg891TyTiMWNcbNaahfZQ2hqtl5yTkx5gNRocMU,1040
+django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po,sha256=zDJ_vyQxhP0mP06U-e4p6Uj6v1g863s8oaxc0JIAMjg,1396
+django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.mo,sha256=a_X8e2lMieWwUtENJueBr8wMvkw6at0QSaWXd5AM6yQ,1040
+django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po,sha256=xFSirHUAKv78fWUpik6xv-6WQSEoUgN5jjPbTOy58C4,1317
+django/contrib/contenttypes/locale/os/LC_MESSAGES/django.mo,sha256=QV533Wu-UpjV3XiCe83jlz7XGuwgRviV0ggoeMaIOIY,1116
+django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po,sha256=UZahnxo8z6oWJfEz4JNHGng0EAifXYtJupB6lx0JB60,1334
+django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.mo,sha256=qacd7eywof8rvJpstNfEmbHgvDiQ9gmkcyG7gfato8s,697
+django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po,sha256=Kq2NTzdbgq8Q9jLLgV-ZJaSRj43D1dDHcRIgNnJXu-s,1145
+django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.mo,sha256=J5sC36QwKLvrMB4adsojhuw2kYuEckHz6eoTrZwYcnI,1208
+django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po,sha256=gxP59PjlIHKSiYZcbgIY4PUZSoKYx4YKCpm4W4Gj22g,1577
+django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.mo,sha256=MjyyKlA75YtEG9m6hm0GxKhU-cF3m1PA_j63BuIPPlE,1125
+django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.po,sha256=X2Rec6LXIqPa9AVqF4J2mzYrwfls1BdUfN8XOe0zkdQ,1379
+django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.mo,sha256=qjl-3fBqNcAuoviGejjILC7Z8XmrRd7gHwOgwu1x1zw,1117
+django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.po,sha256=Xp0iBhseS8v13zjDcNQv4BDaroMtDJVs4-BzNc0UOpU,1494
+django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.mo,sha256=sCthDD10v7GY2cui9Jj9HK8cofVEg2WERCm6aktOM-4,1142
+django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.po,sha256=n-BPEfua0Gd6FN0rsP7qAlTGbQEZ14NnDMA8jI2844Y,1407
+django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.mo,sha256=OSf206SFmVLULHmwVhTaRhWTQtyDKsxe03gIzuvAUnY,1345
+django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.po,sha256=xHyJYD66r8We3iN5Hqo69syWkjhz4zM7X9BWPIiI6mU,1718
+django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.mo,sha256=xf95XGPB9Tyz7p8JH1aqiY4BYMkug2cnN5gNNlHV7xU,1082
+django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.po,sha256=wqbW-x6NEJU7nIAmYnKw9ncgmrcD3TKW7aPg7rIiX_M,1395
+django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.mo,sha256=sMML-ubI_9YdKptzeri1du8FOdKcEzJbe4Tt0J4ePFI,1147
+django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.po,sha256=0zxiyzRWWDNVpNNLlcwl-OLh5sLukma1vm-kYrGHYrE,1392
+django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.mo,sha256=jYDQH3OpY4Vx9hp6ISFMI88uxBa2GDQK0BkLGm8Qulk,1066
+django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.po,sha256=JIvguXVOFpQ3MRqRXHpxlg8_YhEzCsZBBMdpekYTxlk,1322
+django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo,sha256=GUXj97VN15HdY7XMy5jmMLEu13juD3To5NsztcoyPGs,1204
+django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po,sha256=T1w_EeB6yT-PXr7mrwzqu270linf_KY3_ZCgl4wfLAQ,1535
+django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=m2plistrI8O-ztAs5HmDYXG8N_wChaDfXFev0GYWVys,1102
+django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.po,sha256=lJrhLPDbJAcXgBPco-_lfUXqs31imj_vGwE5p1EXZjk,1390
+django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.mo,sha256=J5ha8X6jnQ4yuafk-JCqPM5eIGNwKpDOpTwIVCrnGNE,1055
+django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.po,sha256=HeKnQJaRNflAbKxTiC_2EFAg2Sx-e3nDXrReJyVoNTQ,1400
+django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.mo,sha256=XLPle0JYPPkmm5xpJRmWztMTF1_3a2ZubWE4ur2sav8,563
+django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.po,sha256=jRc8Eh6VuWgqc4kM-rxjbVE3yV9uip6mOJLdD6yxGLM,1009
+django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.mo,sha256=L3eF4z9QSmIPqzEWrNk8-2uLteQUMsuxiD9VZyRuSfo,678
+django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.po,sha256=iDb9lRU_-YPmO5tEQeXEZeGeFe-wVZy4k444sp_vTgw,1123
+django/contrib/contenttypes/locale/te/LC_MESSAGES/django.mo,sha256=S_UF_mZbYfScD6Z36aB-kwtTflTeX3Wt4k7z_pEcOV8,690
+django/contrib/contenttypes/locale/te/LC_MESSAGES/django.po,sha256=aAGMMoJPg_pF9_rCNZmda5A_TvDCvQfYEL64Xdoa4jo,1135
+django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.mo,sha256=dkLic6fD2EMzrB7m7MQazaGLoJ_pBw55O4nYZc5UYEs,864
+django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.po,sha256=1nv1cVJewfr44gbQh1Szzy3DT4Y9Dy7rUgAZ81otJQs,1232
+django/contrib/contenttypes/locale/th/LC_MESSAGES/django.mo,sha256=qilt-uZMvt0uw-zFz7-eCmkGEx3XYz7NNo9Xbq3s7uI,1186
+django/contrib/contenttypes/locale/th/LC_MESSAGES/django.po,sha256=42F34fNEn_3yQKBBJnCLttNeyktuLVpilhMyepOd6dg,1444
+django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.mo,sha256=0fuA3E487-pceoGpX9vMCwSnCItN_pbLUIUzzcrAGOE,1068
+django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.po,sha256=pS8wX9dzxys3q8Vvz3PyoVJYqplXhNuAqfq7Dsb07fw,1283
+django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.mo,sha256=gKg2FCxs2fHpDB1U6gh9xrP7mOpYG65pB4CNmdPYiDg,1057
+django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.po,sha256=gmI3RDhq39IlDuvNohT_FTPY5QG8JD0gFxG5CTsvVZs,1345
+django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.mo,sha256=_LQ1N04FgosdDLUYXJOEqpCB2Mg92q95cBRgYPi1MyY,659
+django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.po,sha256=L7wMMpxGnpQiKd_mjv2bJpE2iqCJ8XwiXK0IN4EHSbM,1110
+django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
+django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.po,sha256=YVyej0nAhhEf7knk4vCeRQhmSQeGZLhMPPXyIyWObnM,977
+django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.mo,sha256=GgAuuLexfhYl1fRKPfZI5uMTkt2H42Ogil6MQHcejkU,1404
+django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.po,sha256=1HzO_Wmxqk0Kd5gtACKZODiH8ZEpOf5Eh8Mkrg3IMf8,1779
+django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.mo,sha256=OJs_EmDBps-9a_KjFJnrS8IqtJfd25LaSWeyG8u8UfI,671
+django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.po,sha256=f0FnsaAM_qrBuCXzLnkBrW5uFfVc6pUh7S-qp4918Ng,1122
+django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.mo,sha256=kGYgEI1gHkyU4y_73mBJN1hlKC2JujVXMg6iCdWncDg,1155
+django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.po,sha256=RIDUgsElfRF8bvBdUKtshizuMnupdMGAM896s7qZKD4,1439
+django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=RviK0bqLZzPrZ46xUpc0f8IKkw3JLtsrt0gNA74Ypj0,1015
+django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.po,sha256=vSKJDEQ_ANTj3-W8BFJd9u_QGdTMF12iS15rVgeujOs,1380
+django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=NMumOJ9dPX-7YjQH5Obm4Yj0-lnGXJmCMN5DGbsLQG4,1046
+django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.po,sha256=7WIqYRpcs986MjUsegqIido5k6HG8d3FVvkrOQCRVCI,1338
+django/contrib/contenttypes/management/__init__.py,sha256=ZVHVJAYi_jCIXxWUZSkxq0IDECe6bvbFsWayrqbutfc,4937
+django/contrib/contenttypes/management/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/contenttypes/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-310.pyc,,
+django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py,sha256=t2IpqEgqW7bmS6o59arCGWA7G95fg1r7oVGUny6syao,4533
+django/contrib/contenttypes/migrations/0001_initial.py,sha256=6-NKdPKCI-2eJnQkspHtLV4pwFLxt8CC0oRPzCjaa6k,1435
+django/contrib/contenttypes/migrations/0002_remove_content_type_name.py,sha256=I-nWyZcwqZTCmhMydWM86t0wtdxoS2sPggc4brhh2SM,1200
+django/contrib/contenttypes/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-310.pyc,,
+django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-310.pyc,,
+django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/contenttypes/models.py,sha256=6TDDAS8C6tmsp4S5M8xM2oblm49uPGVVkLdPy5oxSTU,6821
+django/contrib/contenttypes/views.py,sha256=HBoIbNpgHTQN5pH8mul77UMEMZHbbkEH_Qdln-XFgd0,3549
+django/contrib/flatpages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/flatpages/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/flatpages/__pycache__/admin.cpython-310.pyc,,
+django/contrib/flatpages/__pycache__/apps.cpython-310.pyc,,
+django/contrib/flatpages/__pycache__/forms.cpython-310.pyc,,
+django/contrib/flatpages/__pycache__/middleware.cpython-310.pyc,,
+django/contrib/flatpages/__pycache__/models.cpython-310.pyc,,
+django/contrib/flatpages/__pycache__/sitemaps.cpython-310.pyc,,
+django/contrib/flatpages/__pycache__/urls.cpython-310.pyc,,
+django/contrib/flatpages/__pycache__/views.cpython-310.pyc,,
+django/contrib/flatpages/admin.py,sha256=ynemOSDgvKoCfRFLXZrPwj27U0mPUXmxdrue7SOZeqQ,701
+django/contrib/flatpages/apps.py,sha256=_OlaDxWbMrUmFNCS4u-RnBsg67rCWs8Qzh_c58wvtXA,252
+django/contrib/flatpages/forms.py,sha256=MyuENmsP1Wn01frdVSug7JnabiwoHf8nm-PthAlcoQw,2493
+django/contrib/flatpages/locale/af/LC_MESSAGES/django.mo,sha256=c0XEKXJYgpy2snfmWFPQqeYeVla1F5s_wXIBaioiyPc,2297
+django/contrib/flatpages/locale/af/LC_MESSAGES/django.po,sha256=_psp14JfICDxrKx_mKF0uLnItkJPkCNMvrNOyE35nFw,2428
+django/contrib/flatpages/locale/ar/LC_MESSAGES/django.mo,sha256=dBHaqsaKH9QOIZ0h2lIDph8l9Bv2UAcD-Hr9TAxj8Ac,2636
+django/contrib/flatpages/locale/ar/LC_MESSAGES/django.po,sha256=-0ZdfA-sDU8fOucgT2Ow1iM3QnRMuQeslMOSwYhAH9M,2958
+django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=jp6sS05alESJ4-SbEIf574UPVcbllAd_J-FW802lGyk,2637
+django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.po,sha256=yezpjWcROwloS08TEMo9oPXDKS1mfFE9NYI66FUuLaA,2799
+django/contrib/flatpages/locale/ast/LC_MESSAGES/django.mo,sha256=4SEsEE2hIZJwQUNs8jDgN6qVynnUYJUIE4w-usHKA6M,924
+django/contrib/flatpages/locale/ast/LC_MESSAGES/django.po,sha256=5UlyS59bVo1lccM6ZgdYSgHe9NLt_WeOdXX-swLKubU,1746
+django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo,sha256=6ID6KejChxQzsUT4wevUAjd9u7Ly21mfJ22dgbitNN4,2373
+django/contrib/flatpages/locale/az/LC_MESSAGES/django.po,sha256=v7tkbuUUqkbUzXoOOWxS75TpvuMESqoZAEXDXisfbiA,2679
+django/contrib/flatpages/locale/be/LC_MESSAGES/django.mo,sha256=mOQlbfwwIZiwWCrFStwag2irCwsGYsXIn6wZDsPRvyA,2978
+django/contrib/flatpages/locale/be/LC_MESSAGES/django.po,sha256=wlIfhun5Jd6gxbkmmYPSIy_tzPVmSu4CjMwPzBNnvpo,3161
+django/contrib/flatpages/locale/bg/LC_MESSAGES/django.mo,sha256=9Un5mKtsAuNeYWFQKFkIyCpQquE6qVD3zIrFoq8sCDI,2802
+django/contrib/flatpages/locale/bg/LC_MESSAGES/django.po,sha256=Vr6d-9XjgK4_eXdWY3FEpdTlCEGgbCv93bLGyMTE9hs,3104
+django/contrib/flatpages/locale/bn/LC_MESSAGES/django.mo,sha256=2oK2Rm0UtAI7QFRwpUR5aE3-fOltE6kTilsTbah737Y,2988
+django/contrib/flatpages/locale/bn/LC_MESSAGES/django.po,sha256=QrbX69iqXOD6oByLcgPkD1QzAkfthpfTjezIFQ-6kVg,3172
+django/contrib/flatpages/locale/br/LC_MESSAGES/django.mo,sha256=SKbykdilX_NcpkVi_lHF8LouB2G49ZAzdF09xw49ERc,2433
+django/contrib/flatpages/locale/br/LC_MESSAGES/django.po,sha256=O_mwrHIiEwV4oB1gZ7Yua4nVKRgyIf3j5UtedZWAtwk,2783
+django/contrib/flatpages/locale/bs/LC_MESSAGES/django.mo,sha256=bd7ID7OsEhp57JRw_TXoTwsVQNkFYiR_sxSkgi4WvZU,1782
+django/contrib/flatpages/locale/bs/LC_MESSAGES/django.po,sha256=IyFvI5mL_qesEjf6NO1nNQbRHhCAZQm0UhIpmGjrSwQ,2233
+django/contrib/flatpages/locale/ca/LC_MESSAGES/django.mo,sha256=GcMVbg4i5zKCd2Su7oN30WVJN7Q9K7FsFifgTB8jDPI,2237
+django/contrib/flatpages/locale/ca/LC_MESSAGES/django.po,sha256=-aJHSbWPVyNha_uF6R35Q6yn4-Hse3jTInr9jtaxKOI,2631
+django/contrib/flatpages/locale/cs/LC_MESSAGES/django.mo,sha256=8nwep22P86bMCbW7sj4n0BMGl_XaJIJV0fjnVp-_dqY,2340
+django/contrib/flatpages/locale/cs/LC_MESSAGES/django.po,sha256=1agUeRthwpam1UvZY4vRnZtLLbiop75IEXb6ul_e3mg,2611
+django/contrib/flatpages/locale/cy/LC_MESSAGES/django.mo,sha256=zr_2vsDZsrby3U8AmvlJMU3q1U_4IrrTmz6oS29OWtQ,2163
+django/contrib/flatpages/locale/cy/LC_MESSAGES/django.po,sha256=E_NC_wtuhWKYKB3YvYGB9ccJgKI3AfIZlB2HpXSyOsk,2370
+django/contrib/flatpages/locale/da/LC_MESSAGES/django.mo,sha256=nALoI50EvFPa4f3HTuaHUHATF1zHMjo4v5zcHj4n6sA,2277
+django/contrib/flatpages/locale/da/LC_MESSAGES/django.po,sha256=j4dpnreB7LWdZO7Drj7E9zBwFx_Leuj7ZLyEPi-ccAQ,2583
+django/contrib/flatpages/locale/de/LC_MESSAGES/django.mo,sha256=I4CHFzjYM_Wd-vuIYOMf8E58ntOgkLmgOAg35Chdz3s,2373
+django/contrib/flatpages/locale/de/LC_MESSAGES/django.po,sha256=P6tPVPumP9JwBIv-XXi1QQYJyj1PY3OWoM4yOAmgTRE,2592
+django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.mo,sha256=oTILSe5teHa9XTYWoamstpyPu02yb_xo8S0AtkP7WP8,2391
+django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.po,sha256=1xD2aH5alerranvee6QLZqgxDVXxHThXCHR4kOJAV48,2576
+django/contrib/flatpages/locale/el/LC_MESSAGES/django.mo,sha256=LQ8qIGwzoKwewtLz_1NhnhEeR4dPx2rrQ_hAN4BF6Og,2864
+django/contrib/flatpages/locale/el/LC_MESSAGES/django.po,sha256=gbLO52fcZK7LoG5Rget2Aq5PTFoz467ackXpSsR81kY,3221
+django/contrib/flatpages/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/flatpages/locale/en/LC_MESSAGES/django.po,sha256=0bNWKiu-1MkHFJ_UWrCLhp9ENr-pHzBz1lkhBkkrhJM,2169
+django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTt7KtwiEyMEKYVzkPSqs6VS0CiUfK7ISz2c6rV2erA,2210
+django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po,sha256=_V4RTf0JtmyU7DRQv7jIwtPJs05KA2THPid5nKQ0ego,2418
+django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.mo,sha256=7zyXYOsqFkUGxclW-VPPxrQTZKDuiYQ7MQJy4m8FClo,1989
+django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.po,sha256=oHrBd6lVnO7-SdnO-Taa7iIyiqp_q2mQZjkuuU3Qa_s,2232
+django/contrib/flatpages/locale/eo/LC_MESSAGES/django.mo,sha256=QsmIOjVlQGcgeAFTa8ND9Uuuihyl63OIJnFwh4MkvZ0,2032
+django/contrib/flatpages/locale/eo/LC_MESSAGES/django.po,sha256=uVTSEAswL_siMnbhOsqWyMGziQr9byUQPiltEEZpS7I,2530
+django/contrib/flatpages/locale/es/LC_MESSAGES/django.mo,sha256=9Q7Qf1eSPvAfPTZSGWq7QMWrROY-CnpUkeRpiH8rpJw,2258
+django/contrib/flatpages/locale/es/LC_MESSAGES/django.po,sha256=3vGZ3uVCyWnIkDSUt6DMMOqyphv3EQteTPLx7e9J_sU,2663
+django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.mo,sha256=bUnFDa5vpxl27kn2ojTbNaCmwRkBCH-z9zKXAvXe3Z0,2275
+django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.po,sha256=vEg3wjL_7Ee-PK4FZTaGRCXFscthkoH9szJ7H01K8w8,2487
+django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.mo,sha256=jt8wzeYky5AEnoNuAv8W4nGgd45XsMbpEdRuLnptr3U,2140
+django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.po,sha256=xrbAayPoxT7yksXOGPb-0Nc-4g14UmWANaKTD4ItAFA,2366
+django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.mo,sha256=Y5IOKRzooJHIhJzD9q4PKOe39Z4Rrdz8dBKuvmGkqWU,2062
+django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.po,sha256=Y-EXhw-jISttA9FGMz7gY_kB-hQ3wEyKEaOc2gu2hKQ,2246
+django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.mo,sha256=EI6WskepXUmbwCPBNFKqLGNcWFVZIbvXayOHxOCLZKo,2187
+django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.po,sha256=ipG6a0A2d0Pyum8GcknA-aNExVLjSyuUqbgHM9VdRQo,2393
+django/contrib/flatpages/locale/et/LC_MESSAGES/django.mo,sha256=zriqETEWD-DDPiNzXgAzgEhjvPAaTo7KBosyvBebyc0,2233
+django/contrib/flatpages/locale/et/LC_MESSAGES/django.po,sha256=tMuITUlzy6LKJh3X3CxssFpTQogg8OaGHlKExzjwyOI,2525
+django/contrib/flatpages/locale/eu/LC_MESSAGES/django.mo,sha256=FoKazUkuPpDgsEEI6Gm-xnZYVHtxILiy6Yzvnu8y-L0,2244
+django/contrib/flatpages/locale/eu/LC_MESSAGES/django.po,sha256=POPFB5Jd8sE9Z_ivYSdnet14u-aaXneTUNDMuOrJy00,2478
+django/contrib/flatpages/locale/fa/LC_MESSAGES/django.mo,sha256=2rA7-OR8lQbl_ZhlAC4cmHEmQ9mwxnA8q5M-gx3NmVQ,2612
+django/contrib/flatpages/locale/fa/LC_MESSAGES/django.po,sha256=_-yKW2xIN9XSXEwZTdkhEpRHJoacN8f56D3AkCvlFs0,3006
+django/contrib/flatpages/locale/fi/LC_MESSAGES/django.mo,sha256=VsQdof8hE_AKQGS-Qp82o8PTN_7NxxEdxelGenIAE-8,2256
+django/contrib/flatpages/locale/fi/LC_MESSAGES/django.po,sha256=RL7eruNkgDjr1b3cF2yCqeM8eDKHwAqF6h8hYuxl6R4,2552
+django/contrib/flatpages/locale/fr/LC_MESSAGES/django.mo,sha256=ZqD4O3_Ny8p5i6_RVHlANCnPiowMd19Qi_LOPfTHav4,2430
+django/contrib/flatpages/locale/fr/LC_MESSAGES/django.po,sha256=liAoOgT2CfpANL_rYzyzsET1MhsM19o7wA2GBnoDvMA,2745
+django/contrib/flatpages/locale/fy/LC_MESSAGES/django.mo,sha256=DRsFoZKo36F34XaiQg_0KUOr3NS_MG3UHptzOI4uEAU,476
+django/contrib/flatpages/locale/fy/LC_MESSAGES/django.po,sha256=9JIrRVsPL1m0NPN6uHiaAYxJXHp5IghZmQhVSkGo5g8,1523
+django/contrib/flatpages/locale/ga/LC_MESSAGES/django.mo,sha256=KKvDhZULHQ4JQ_31ltLkk88H2BKUbBXDQFSvdKFqjn8,2191
+django/contrib/flatpages/locale/ga/LC_MESSAGES/django.po,sha256=Yat7oU2XPQFQ8vhNq1nJFAlX2rqfxz4mjpU5TcnaYO8,2400
+django/contrib/flatpages/locale/gd/LC_MESSAGES/django.mo,sha256=KbaTL8kF9AxDBLDQWlxcP5hZ4zWnbkvY0l2xRKZ9Dg0,2469
+django/contrib/flatpages/locale/gd/LC_MESSAGES/django.po,sha256=DVY_1R0AhIaI1qXIeRej3XSHMtlimeKNUwzFjc4OmwA,2664
+django/contrib/flatpages/locale/gl/LC_MESSAGES/django.mo,sha256=VXyPsc6cXB97dJJFGfD8Oh2lYpn8TFYjIOeFUQeYpVU,2039
+django/contrib/flatpages/locale/gl/LC_MESSAGES/django.po,sha256=MzE7lepmRu60wy9gn6Wxx-LtKIO9JwScSdJ3SyLRU9s,2366
+django/contrib/flatpages/locale/he/LC_MESSAGES/django.mo,sha256=PbypHBhT3W_rp37u8wvaCJdtYB4IP-UeE02VUvSHPf0,2517
+django/contrib/flatpages/locale/he/LC_MESSAGES/django.po,sha256=f7phCRqJPFL7CsuSE1xg9xlaBoOpdd-0zoTYotff29M,2827
+django/contrib/flatpages/locale/hi/LC_MESSAGES/django.mo,sha256=w29ukoF48C7iJ6nE045YoWi7Zcrgu_oXoxT-r6gcQy8,2770
+django/contrib/flatpages/locale/hi/LC_MESSAGES/django.po,sha256=nXq5y1FqMGVhpXpQVdV3uU5JcUtBc2BIrf-n__C2q30,3055
+django/contrib/flatpages/locale/hr/LC_MESSAGES/django.mo,sha256=Mt4gpBuUXvcBl8K714ls4PimHQqee82jFxY1BEAYQOE,2188
+django/contrib/flatpages/locale/hr/LC_MESSAGES/django.po,sha256=ZbUMJY6a-os-xDmcDCJNrN4-YqRe9b_zJ4V5gt2wlGI,2421
+django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.mo,sha256=Pk44puT-3LxzNdGYxMALWpFdw6j6W0G-dWwAfv8sopI,2361
+django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.po,sha256=mhnBXgZSK19E4JU8p2qzqyZqozSzltK-3iY5glr9WG8,2538
+django/contrib/flatpages/locale/hu/LC_MESSAGES/django.mo,sha256=rZxICk460iWBubNq53g9j2JfKIw2W7OqyPG5ylGE92s,2363
+django/contrib/flatpages/locale/hu/LC_MESSAGES/django.po,sha256=DDP7OLBkNbWXr-wiulmQgG461qAubJ8VrfCCXbyPk2g,2700
+django/contrib/flatpages/locale/hy/LC_MESSAGES/django.mo,sha256=qocNtyLcQpjmGqQ130VGjJo-ruaOCtfmZehS9If_hWk,2536
+django/contrib/flatpages/locale/hy/LC_MESSAGES/django.po,sha256=WD8ohMnsaUGQItyqQmS46d76tKgzhQ17X_tGevqULO0,2619
+django/contrib/flatpages/locale/ia/LC_MESSAGES/django.mo,sha256=bochtCPlc268n0WLF0bJtUUT-XveZLPOZPQUetnOWfU,500
+django/contrib/flatpages/locale/ia/LC_MESSAGES/django.po,sha256=gOJ850e8sFcjR2G79zGn3_0-9-KSy591i7ketBRFjyw,1543
+django/contrib/flatpages/locale/id/LC_MESSAGES/django.mo,sha256=2kRHbcmfo09pIEuBb8q5AOkgC0sISJrAG37Rb5F0vts,2222
+django/contrib/flatpages/locale/id/LC_MESSAGES/django.po,sha256=1avfX88CkKMh2AjzN7dxRwj9pgohIBgKE0aXB_shZfc,2496
+django/contrib/flatpages/locale/io/LC_MESSAGES/django.mo,sha256=N8R9dXw_cnBSbZtwRbX6Tzw5XMr_ZdRkn0UmsQFDTi4,464
+django/contrib/flatpages/locale/io/LC_MESSAGES/django.po,sha256=_pJveonUOmMu3T6WS-tV1OFh-8egW0o7vU3i5YqgChA,1511
+django/contrib/flatpages/locale/is/LC_MESSAGES/django.mo,sha256=lFtP1N5CN-x2aMtBNpB6j5HsZYZIZYRm6Y-22gNe1Ek,2229
+django/contrib/flatpages/locale/is/LC_MESSAGES/django.po,sha256=9e132zDa-n6IZxB8jO5H8I0Wr7ubYxrFEMBYj2W49vI,2490
+django/contrib/flatpages/locale/it/LC_MESSAGES/django.mo,sha256=oOEG327VGpi0K5P2UOQgQa39ln15t0lAz2Z36MIQQAc,2209
+django/contrib/flatpages/locale/it/LC_MESSAGES/django.po,sha256=ar8i-bTtAKhiXLULCsKMddpmYBjKyg2paYxBI6ImY1s,2526
+django/contrib/flatpages/locale/ja/LC_MESSAGES/django.mo,sha256=Qax3t7FFRonMrszVEeiyQNMtYyWQB3dmOeeIklEmhAg,2469
+django/contrib/flatpages/locale/ja/LC_MESSAGES/django.po,sha256=N6PBvnXLEWELKTx8nHm5KwydDuFFKq5pn6AIHsBSM5M,2848
+django/contrib/flatpages/locale/ka/LC_MESSAGES/django.mo,sha256=R4OSbZ-lGxMdeJYsaXVXpo6-KSZWeKPuErKmEsUvEQE,3022
+django/contrib/flatpages/locale/ka/LC_MESSAGES/django.po,sha256=TWKtkRamM6YD-4WMoqfZ7KY-ZPs5ny7G82Wst6vQRko,3306
+django/contrib/flatpages/locale/kk/LC_MESSAGES/django.mo,sha256=lMPryzUQr21Uy-NAGQhuIZjHz-4LfBHE_zxEc2_UPaw,2438
+django/contrib/flatpages/locale/kk/LC_MESSAGES/django.po,sha256=3y9PbPw-Q8wM7tCq6u3KeYUT6pfTqcQwlNlSxpAXMxQ,2763
+django/contrib/flatpages/locale/km/LC_MESSAGES/django.mo,sha256=FYRfhNSqBtavYb10sHZNfB-xwLwdZEfVEzX116nBs-k,1942
+django/contrib/flatpages/locale/km/LC_MESSAGES/django.po,sha256=d2AfbR78U0rJqbFmJQvwiBl_QvYIeSwsPKEnfYM4JZA,2471
+django/contrib/flatpages/locale/kn/LC_MESSAGES/django.mo,sha256=n5HCZEPYN_YIVCXrgA1qhxvfhZtDbhfiannJy5EkHkI,1902
+django/contrib/flatpages/locale/kn/LC_MESSAGES/django.po,sha256=-CHwu13UuE2-Qg6poG949I_dw3YiPI9ZhMh5h2vP4xw,2443
+django/contrib/flatpages/locale/ko/LC_MESSAGES/django.mo,sha256=M-IInVdIH24ORarb-KgY60tEorJZgrThDfJQOxW-S0c,2304
+django/contrib/flatpages/locale/ko/LC_MESSAGES/django.po,sha256=DjAtWVAN_fwOvZb-7CUSLtO8WN0Sr08z3jQLNqZ98wY,2746
+django/contrib/flatpages/locale/ky/LC_MESSAGES/django.mo,sha256=WmdWR6dRgmJ-nqSzFDUETypf373fj62igDVHC4ww7hQ,2667
+django/contrib/flatpages/locale/ky/LC_MESSAGES/django.po,sha256=0XDF6CjQTGkuaHADytG95lpFRVndlf_136q0lrQiU1U,2907
+django/contrib/flatpages/locale/lb/LC_MESSAGES/django.mo,sha256=Wkvlh5L_7CopayfNM5Z_xahmyVje1nYOBfQJyqucI_0,502
+django/contrib/flatpages/locale/lb/LC_MESSAGES/django.po,sha256=gGeTuniu3ZZ835t9HR-UtwCcd2s_Yr7ihIUm3jgQ7Y0,1545
+django/contrib/flatpages/locale/lt/LC_MESSAGES/django.mo,sha256=es6xV6X1twtqhIMkV-MByA7KZ5SoVsrx5Qh8BuzJS0Q,2506
+django/contrib/flatpages/locale/lt/LC_MESSAGES/django.po,sha256=T__44veTC_u4hpPvkLekDOWfntXYAMzCd5bffRtGxWA,2779
+django/contrib/flatpages/locale/lv/LC_MESSAGES/django.mo,sha256=RJbVUR8qS8iLL3dD5x1TOau4hcdscHUJBfxge3p3dsM,2359
+django/contrib/flatpages/locale/lv/LC_MESSAGES/django.po,sha256=M6GT6S-5-7__RtSbJ9oqkIlxfU3FIWMlGAQ03NEfcKo,2610
+django/contrib/flatpages/locale/mk/LC_MESSAGES/django.mo,sha256=55H8w6fB-B-RYlKKkGw3fg2m-djxUoEp_XpupK-ZL70,2699
+django/contrib/flatpages/locale/mk/LC_MESSAGES/django.po,sha256=OhHJ5OVWb0jvNaOB3wip9tSIZ1yaPPLkfQR--uUEyUI,2989
+django/contrib/flatpages/locale/ml/LC_MESSAGES/django.mo,sha256=VMMeOujp5fiLzrrbDeH24O2qKBPUkvI_YTSPH-LQjZc,3549
+django/contrib/flatpages/locale/ml/LC_MESSAGES/django.po,sha256=KR2CGnZ1sVuRzSGaPj5IlspoAkVuVEdf48XsAzt1se0,3851
+django/contrib/flatpages/locale/mn/LC_MESSAGES/django.mo,sha256=tqwROY6D-bJ4gbDQIowKXfuLIIdCWksGwecL2sj_wco,2776
+django/contrib/flatpages/locale/mn/LC_MESSAGES/django.po,sha256=jqiBpFLXlptDyU4F8ZWbP61S4APSPh0-nuTpNOejA6c,3003
+django/contrib/flatpages/locale/mr/LC_MESSAGES/django.mo,sha256=GvSfsp0Op7st6Ifd8zp8Cj4tTHoFMltQb4p64pebrqI,468
+django/contrib/flatpages/locale/mr/LC_MESSAGES/django.po,sha256=sayU0AfVaSFpBj0dT32Ri55LRafQFUHLi03K06kI7gc,1515
+django/contrib/flatpages/locale/ms/LC_MESSAGES/django.mo,sha256=5t_67bMQhux6v6SSWqHfzzCgc6hm3olxgHAsKOMGGZU,2184
+django/contrib/flatpages/locale/ms/LC_MESSAGES/django.po,sha256=-ZzZ8lfAglGkO_BRYz1lRlywxaF1zZ28-Xv74O2nT04,2336
+django/contrib/flatpages/locale/my/LC_MESSAGES/django.mo,sha256=OcbiA7tJPkyt_WNrqyvoFjHt7WL7tMGHV06AZSxzkho,507
+django/contrib/flatpages/locale/my/LC_MESSAGES/django.po,sha256=EPWE566Vn7tax0PYUKq93vtydvmt-A4ooIau9Cwcdfc,1550
+django/contrib/flatpages/locale/nb/LC_MESSAGES/django.mo,sha256=L_XICESZ0nywkk1dn6RqzdUbFTcR92ju-zHCT1g3iEg,2208
+django/contrib/flatpages/locale/nb/LC_MESSAGES/django.po,sha256=ZtcBVD0UqIcsU8iLu5a2wnHLqu5WRLLboVFye2IuQew,2576
+django/contrib/flatpages/locale/ne/LC_MESSAGES/django.mo,sha256=gDZKhcku1NVlSs5ZPPupc7RI8HOF7ex0R4Rs8tMmrYE,1500
+django/contrib/flatpages/locale/ne/LC_MESSAGES/django.po,sha256=GWlzsDaMsJkOvw2TidJOEf1Fvxx9WxGdGAtfZIHkHwk,2178
+django/contrib/flatpages/locale/nl/LC_MESSAGES/django.mo,sha256=_yV_-SYYjpbo-rOHp8NlRzVHFPOSrfS-ndHOEJ9JP3Y,2231
+django/contrib/flatpages/locale/nl/LC_MESSAGES/django.po,sha256=xUuxx2b4ZTCA-1RIdoMqykLgjLLkmpO4ur1Vh93IITU,2669
+django/contrib/flatpages/locale/nn/LC_MESSAGES/django.mo,sha256=sHkuZneEWo1TItSlarlnOUR7ERjc76bJfHUcuFgd9mQ,2256
+django/contrib/flatpages/locale/nn/LC_MESSAGES/django.po,sha256=MpI9qkWqj4rud__xetuqCP-eFHUgMYJpfBhDnWRKPK4,2487
+django/contrib/flatpages/locale/os/LC_MESSAGES/django.mo,sha256=cXGTA5M229UFsgc7hEiI9vI9SEBrNQ8d3A0XrtazO6w,2329
+django/contrib/flatpages/locale/os/LC_MESSAGES/django.po,sha256=m-qoTiKePeFviKGH1rJRjZRH-doJ2Fe4DcZ6W52rG8s,2546
+django/contrib/flatpages/locale/pa/LC_MESSAGES/django.mo,sha256=69_ZsZ4nWlQ0krS6Mx3oL6c4sP5W9mx-yAmOhZOnjPU,903
+django/contrib/flatpages/locale/pa/LC_MESSAGES/django.po,sha256=N6gkoRXP5MefEnjywzRiE3aeU6kHQ0TUG6IGdLV7uww,1780
+django/contrib/flatpages/locale/pl/LC_MESSAGES/django.mo,sha256=5M5-d-TOx2WHlD6BCw9BYIU6bYrSR0Wlem89ih5k3Pc,2448
+django/contrib/flatpages/locale/pl/LC_MESSAGES/django.po,sha256=oKeeo-vNfPaCYVUbufrJZGk0vsgzAE0kLQOTF5qHAK4,2793
+django/contrib/flatpages/locale/pt/LC_MESSAGES/django.mo,sha256=xD2pWdS3XMg7gAqBrUBmCEXFsOzEs0Npe8AJnlpueRY,2115
+django/contrib/flatpages/locale/pt/LC_MESSAGES/django.po,sha256=-K2jipPUWjXpfSPq3upnC_bvtaRAeOw0OLRFv03HWFY,2326
+django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.mo,sha256=YGyagSFIc-ssFN8bnqVRce1_PsybvLmI8RVCygjow8E,2291
+django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.po,sha256=pFA8RPNefZpuhbxBHLt9KrI2RiHxct5V-DnZA-XqBv0,2942
+django/contrib/flatpages/locale/ro/LC_MESSAGES/django.mo,sha256=oS3MXuRh2USyLOMrMH0WfMSFpgBcZWfrbCrovYgbONo,2337
+django/contrib/flatpages/locale/ro/LC_MESSAGES/django.po,sha256=UNKGNSZKS92pJDjxKDLqVUW87DKCWP4_Q51xS16IZl0,2632
+django/contrib/flatpages/locale/ru/LC_MESSAGES/django.mo,sha256=AACtHEQuytEohUZVgk-o33O7rJTFAluq22VJOw5JqII,2934
+django/contrib/flatpages/locale/ru/LC_MESSAGES/django.po,sha256=H6JOPAXNxji1oni9kfga_hNZevodStpEl0O6cDnZ148,3312
+django/contrib/flatpages/locale/sk/LC_MESSAGES/django.mo,sha256=8_NZkzRd3Bcewp4GiczCAjQshq5rl29TPEj1RbBPipo,2321
+django/contrib/flatpages/locale/sk/LC_MESSAGES/django.po,sha256=qo9Xvr2whYmwtc1n39T_9ADcI3nP-t-jtVh2S51KkFQ,2601
+django/contrib/flatpages/locale/sl/LC_MESSAGES/django.mo,sha256=MBjwhw6wppQUl0Lb_rShXZj_Sq-JLSkdYU5Xhi0OtYY,2173
+django/contrib/flatpages/locale/sl/LC_MESSAGES/django.po,sha256=6zbOXzkLTsdWRKAhuLzBVBc53n6MQKpvOeHw4cRrAlc,2400
+django/contrib/flatpages/locale/sq/LC_MESSAGES/django.mo,sha256=Jv2sebdAM6CfiLzgi1b7rHo5hp-6_BFeeMQ4_BwYpjk,2328
+django/contrib/flatpages/locale/sq/LC_MESSAGES/django.po,sha256=Xm87FbWaQ1JGhhGx8uvtqwUltkTkwk5Oysagu8qIPUA,2548
+django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo,sha256=p--v7bpD8Pp6zeP3cdh8fnfC8g2nuhbzGJTdN9eoE58,2770
+django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po,sha256=jxcyMN2Qh_osmo4Jf_6QUC2vW3KVKt1BupDWMMZyAXA,3071
+django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=3N4mGacnZj0tI5tFniLqC2LQCPSopDEM1SGaw5N1bsw,2328
+django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.po,sha256=od7r3dPbZ7tRAJUW80Oe-nm_tHcmIiG6b2OZMsFg53s,2589
+django/contrib/flatpages/locale/sv/LC_MESSAGES/django.mo,sha256=1pFmNWiExWo5owNijZHZb8-Tbd0nYPqqvTmIitcFPbY,2252
+django/contrib/flatpages/locale/sv/LC_MESSAGES/django.po,sha256=l3anvdgLQJzYehCalwr1AAh8e-hRKrL_bSNwmkfgbbc,2613
+django/contrib/flatpages/locale/sw/LC_MESSAGES/django.mo,sha256=Lhf99AGmazKJHzWk2tkGrMInoYOq0mtdCd8SGblnVCQ,1537
+django/contrib/flatpages/locale/sw/LC_MESSAGES/django.po,sha256=cos3eahuznpTfTdl1Vj_07fCOSYE8C9CRYHCBLYZrVw,1991
+django/contrib/flatpages/locale/ta/LC_MESSAGES/django.mo,sha256=nNuoOX-FPAmTvM79o7colM4C7TtBroTFxYtETPPatcQ,1945
+django/contrib/flatpages/locale/ta/LC_MESSAGES/django.po,sha256=XE4SndPZPLf1yXGl5xQSb0uor4OE8CKJ0EIXBRDA3qU,2474
+django/contrib/flatpages/locale/te/LC_MESSAGES/django.mo,sha256=bMxhDMTQc_WseqoeqJMCSNy71o4U5tJZYgD2G0p-jD0,1238
+django/contrib/flatpages/locale/te/LC_MESSAGES/django.po,sha256=tmUWOrAZ98B9T6Cai8AgLCfb_rLeoPVGjDTgdsMOY1Y,2000
+django/contrib/flatpages/locale/tg/LC_MESSAGES/django.mo,sha256=gpzjf_LxwWX6yUrcUfNepK1LGez6yvnuYhmfULDPZ6E,2064
+django/contrib/flatpages/locale/tg/LC_MESSAGES/django.po,sha256=lZFLes8BWdJ-VbczHFDWCSKhKg0qmmk10hTjKcBNr5o,2572
+django/contrib/flatpages/locale/th/LC_MESSAGES/django.mo,sha256=mct17_099pUn0aGuHu8AlZG6UqdKDpYLojqGYDLRXRg,2698
+django/contrib/flatpages/locale/th/LC_MESSAGES/django.po,sha256=PEcRx5AtXrDZvlNGWFH-0arroD8nZbutdJBe8_I02ag,2941
+django/contrib/flatpages/locale/tk/LC_MESSAGES/django.mo,sha256=5iVSzjcnJLfdAnrI1yOKua_OfHmgUu6ydixKkvayrzQ,753
+django/contrib/flatpages/locale/tk/LC_MESSAGES/django.po,sha256=0VK0Ju55wTvmYXqS9hPKLJXyTtTz9Z8mv_qw66ck5gg,1824
+django/contrib/flatpages/locale/tr/LC_MESSAGES/django.mo,sha256=pPNGylfG8S0iBI4ONZbky3V2Q5AG-M1njp27tFrhhZc,2290
+django/contrib/flatpages/locale/tr/LC_MESSAGES/django.po,sha256=0ULZu3Plp8H9zdirHy3MSduJ_QRdpoaaivf3bL9MCwA,2588
+django/contrib/flatpages/locale/tt/LC_MESSAGES/django.mo,sha256=9RfCKyn0ZNYsqLvFNmY18xVMl7wnmDq5uXscrsFfupk,2007
+django/contrib/flatpages/locale/tt/LC_MESSAGES/django.po,sha256=SUwalSl8JWI9tuDswmnGT8SjuWR3DQGND9roNxJtH1o,2402
+django/contrib/flatpages/locale/udm/LC_MESSAGES/django.mo,sha256=7KhzWgskBlHmi-v61Ax9fjc3NBwHB17WppdNMuz-rEc,490
+django/contrib/flatpages/locale/udm/LC_MESSAGES/django.po,sha256=zidjP05Hx1OpXGqWEmF2cg9SFxASM4loOV85uW7zV5U,1533
+django/contrib/flatpages/locale/uk/LC_MESSAGES/django.mo,sha256=r2RZT8xQ1Gi9Yp0nnoNALqQ4zrEJ0JC7m26E5gSeq4g,3002
+django/contrib/flatpages/locale/uk/LC_MESSAGES/django.po,sha256=qcVizoTiKYc1c9KwSTwSALHgjjSGVY2oito_bBRLVTE,3405
+django/contrib/flatpages/locale/ur/LC_MESSAGES/django.mo,sha256=Li4gVdFoNOskGKAKiNuse6B2sz6ePGqGvZu7aGXMNy0,1976
+django/contrib/flatpages/locale/ur/LC_MESSAGES/django.po,sha256=hDasKiKrYov9YaNIHIpoooJo0Bzba___IuN2Hl6ofSc,2371
+django/contrib/flatpages/locale/vi/LC_MESSAGES/django.mo,sha256=FsFUi96oGTWGlZwM4qSMpuL1M2TAxsW51qO70TrybSM,1035
+django/contrib/flatpages/locale/vi/LC_MESSAGES/django.po,sha256=ITX3MWd7nlWPxTCoNPl22_OMLTt0rfvajGvTVwo0QC8,1900
+django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=UTCQr9t2wSj6dYLK1ftpF8-pZ25dAMYLRE2wEUQva-o,2124
+django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.po,sha256=loi9RvOnrgFs4qp8FW4RGis7wgDzBBXuwha5pFfLRxY,2533
+django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=Y5nDMQ3prLJ6OHuQEeEqjDLBC9_L-4XHDGJSLNoCgqg,2200
+django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.po,sha256=6dKCSJpw_8gnunfTY86_apXdH5Pqe0kKYSVaqRtOIh0,2475
+django/contrib/flatpages/middleware.py,sha256=aXeOeOkUmpdkGOyqZnkR-l1VrDQ161RWIWa3WPBhGac,784
+django/contrib/flatpages/migrations/0001_initial.py,sha256=hTnlVa-FRA-H5lNuNkT2CKhxDViGJ3xyeZaPR7qpWR0,2409
+django/contrib/flatpages/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-310.pyc,,
+django/contrib/flatpages/migrations/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/flatpages/models.py,sha256=3ugRRsDwB5C3GHOWvtOzjJl-y0yqqjYZBSOMt24QYuw,1764
+django/contrib/flatpages/sitemaps.py,sha256=CEhZOsLwv3qIJ1hs4eHlE_0AAtYjicb_yRzsstY19eg,584
+django/contrib/flatpages/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-310.pyc,,
+django/contrib/flatpages/templatetags/flatpages.py,sha256=QH-suzsoPIMSrgyHR9O8uOdmfIkBv_w3LM-hGfQvnU8,3552
+django/contrib/flatpages/urls.py,sha256=Rs37Ij192SOtSBjd4Lx9YtpINfEMg7XRY01dEOY8Rgg,179
+django/contrib/flatpages/views.py,sha256=H4LG7Janb6Dcn-zINLmp358hR60JigAKGzh4A4PMPaM,2724
+django/contrib/gis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/__pycache__/apps.cpython-310.pyc,,
+django/contrib/gis/__pycache__/feeds.cpython-310.pyc,,
+django/contrib/gis/__pycache__/geometry.cpython-310.pyc,,
+django/contrib/gis/__pycache__/measure.cpython-310.pyc,,
+django/contrib/gis/__pycache__/ptr.cpython-310.pyc,,
+django/contrib/gis/__pycache__/shortcuts.cpython-310.pyc,,
+django/contrib/gis/__pycache__/views.cpython-310.pyc,,
+django/contrib/gis/admin/__init__.py,sha256=fPyCk9pBLWojuzrhZ6-dWQIvD3kpYg_HwsFzSxhawg8,672
+django/contrib/gis/admin/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/admin/__pycache__/options.cpython-310.pyc,,
+django/contrib/gis/admin/__pycache__/widgets.cpython-310.pyc,,
+django/contrib/gis/admin/options.py,sha256=7dR6t_kD3yma_pcz8gwrudWiKbaIkIh6cFX7T5lqoWU,6390
+django/contrib/gis/admin/widgets.py,sha256=ASQOB1n1Lv2ovioyNwFi6ikXYh3Kf7-1jtWIjvxD0oM,5096
+django/contrib/gis/apps.py,sha256=dbAFKx9jj9_QdhdNfL5KCC47puH_ZTw098jsJFwDO9Y,417
+django/contrib/gis/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/db/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/db/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/db/backends/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/db/backends/__pycache__/utils.cpython-310.pyc,,
+django/contrib/gis/db/backends/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-310.pyc,,
+django/contrib/gis/db/backends/base/__pycache__/features.cpython-310.pyc,,
+django/contrib/gis/db/backends/base/__pycache__/models.cpython-310.pyc,,
+django/contrib/gis/db/backends/base/__pycache__/operations.cpython-310.pyc,,
+django/contrib/gis/db/backends/base/adapter.py,sha256=qbLG-sLB6EZ_sA6-E_uIClyp5E5hz9UQ-CsR3BWx8W8,592
+django/contrib/gis/db/backends/base/features.py,sha256=fF-AKB6__RjkxVRadNkOP7Av4wMaRGkXKybYV6ES2Gk,3718
+django/contrib/gis/db/backends/base/models.py,sha256=WqpmVLqK21m9J6k_N-SGPXq1VZMuNHafyB9xqxUwR4k,4009
+django/contrib/gis/db/backends/base/operations.py,sha256=SHW9YHjDexxhUN_BMQ85lGND5mLQwNQOJ6UQUXdNDOs,6778
+django/contrib/gis/db/backends/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-310.pyc,,
+django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-310.pyc,,
+django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-310.pyc,,
+django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-310.pyc,,
+django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-310.pyc,,
+django/contrib/gis/db/backends/mysql/base.py,sha256=z75wKhm-e9JfRLCvgDq-iv9OqOjBBAS238JTTrWfHRQ,498
+django/contrib/gis/db/backends/mysql/features.py,sha256=AtlQM3bi4kTxYA-PIg2RGedGFTNeBDvF6_MNhaymWTc,1529
+django/contrib/gis/db/backends/mysql/introspection.py,sha256=ERHtD2ah6e7kwSk5gnUftLgx7tkQoVJilLV7_mE30wo,1793
+django/contrib/gis/db/backends/mysql/operations.py,sha256=pEVvx2k4o8YWpZtXXUZ2PtyJfm-GYHWBN_wjLo26I1o,4226
+django/contrib/gis/db/backends/mysql/schema.py,sha256=aRsCej6zX-6TgrSnSBZzvXK7c9mXQlZZQPeunzyGovo,3238
+django/contrib/gis/db/backends/oracle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-310.pyc,,
+django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-310.pyc,,
+django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-310.pyc,,
+django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-310.pyc,,
+django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-310.pyc,,
+django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-310.pyc,,
+django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-310.pyc,,
+django/contrib/gis/db/backends/oracle/adapter.py,sha256=IB5C_zBe_yvbZ-w71kuh_A77sGESuJOUbxGTFKEHDw4,2025
+django/contrib/gis/db/backends/oracle/base.py,sha256=_7qhvEdbnrJQEKL51sg8YYu8kRYmQNAlBgNb2OUbBkw,507
+django/contrib/gis/db/backends/oracle/features.py,sha256=3yCDutKz4iX01eOjLf0CLe_cemMaRjDmH8ZKNy_Sbyk,1021
+django/contrib/gis/db/backends/oracle/introspection.py,sha256=51_nz8_OKGP1TCw44no20Vt6EV1B9MTKu8irSnkqZBo,1890
+django/contrib/gis/db/backends/oracle/models.py,sha256=7mij7owmmwqAl-4rPJmEU_zW3hZZI0hix7HyFOwJkms,2084
+django/contrib/gis/db/backends/oracle/operations.py,sha256=x6zraAyoMZa8rdcLAc2k35rprJxBAoqzDSdFYMcm52k,8652
+django/contrib/gis/db/backends/oracle/schema.py,sha256=4bjssdtSl2_n3CWX67k4yLOCLzevU5CYg-yx8s4A39Y,4469
+django/contrib/gis/db/backends/postgis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-310.pyc,,
+django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-310.pyc,,
+django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-310.pyc,,
+django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-310.pyc,,
+django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-310.pyc,,
+django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-310.pyc,,
+django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-310.pyc,,
+django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-310.pyc,,
+django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-310.pyc,,
+django/contrib/gis/db/backends/postgis/adapter.py,sha256=BGkZyVqSQ0VJ1lL-St1uqQZZbSS_9Qddb9BIS-6-AvA,2232
+django/contrib/gis/db/backends/postgis/base.py,sha256=Ai3kvz6JqH1HqJG_XqjfnZOX26Uo7qmwbUPavudCcTI,937
+django/contrib/gis/db/backends/postgis/const.py,sha256=_ODq71ixhGpojzbO1DAWs5O4REFgzruIpQkNhPw9O-E,2007
+django/contrib/gis/db/backends/postgis/features.py,sha256=GuBG7N5_zUuyf49ZIOLMI0AxQciUMav5A1VxAmWlCuk,457
+django/contrib/gis/db/backends/postgis/introspection.py,sha256=ihrNd_qHQ64DRjoaPj9-1a0y3H8Ko4gWbK2N5fDA3_g,3164
+django/contrib/gis/db/backends/postgis/models.py,sha256=nFFshpCS4Az4js853MuZxdsp_SOOIlghjuu2XZEeB-Y,2002
+django/contrib/gis/db/backends/postgis/operations.py,sha256=UgGtQbBIEjSi44DUTUM1Z7OmyNb1nAZLOE0gS5xY6sA,16103
+django/contrib/gis/db/backends/postgis/pgraster.py,sha256=_cxT4yPT4123YdIs5M8_gV4ela-YdGd-B3fGISSD-5M,4658
+django/contrib/gis/db/backends/postgis/schema.py,sha256=gA5w4fEwKqP-S52OEYDLXSFD8MWCBKnAAXD6-ySMfE8,2879
+django/contrib/gis/db/backends/spatialite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-310.pyc,,
+django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-310.pyc,,
+django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-310.pyc,,
+django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-310.pyc,,
+django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-310.pyc,,
+django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-310.pyc,,
+django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-310.pyc,,
+django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-310.pyc,,
+django/contrib/gis/db/backends/spatialite/adapter.py,sha256=qTiA5BBGUFND3D7xGK_85oo__HSexTH32XF4uin3ZV0,318
+django/contrib/gis/db/backends/spatialite/base.py,sha256=wU1fgp68CLyKELsMfO6zYM85ox4g_GloWESEK8EPrfM,3218
+django/contrib/gis/db/backends/spatialite/client.py,sha256=dNM7mqDyTzFlgQR1XhqZIftnR9VRH7AfcSvvy4vucEs,138
+django/contrib/gis/db/backends/spatialite/features.py,sha256=zkmJPExFtRqjRj608ZTlsSpxkYaPbV3A3SEfX3PcaFY,876
+django/contrib/gis/db/backends/spatialite/introspection.py,sha256=V_iwkz0zyF1U-AKq-UlxvyDImqQCsitcmvxk2cUw81A,3118
+django/contrib/gis/db/backends/spatialite/models.py,sha256=Of5O1At0W9wQ5PPLVpO0LWth2KDCOJt6Cfz5_OwaYR0,1930
+django/contrib/gis/db/backends/spatialite/operations.py,sha256=me6dv6Ejt5VQ2-lkiQC3TkiT-DABB92YqY9z7AcEra0,8308
+django/contrib/gis/db/backends/spatialite/schema.py,sha256=Uqo4Zp3q_HlmdjTWXvMAVn4_p5piK35iJ7UGXzqQ0Hc,7204
+django/contrib/gis/db/backends/utils.py,sha256=rLwSv79tKJPxvDHACY8rhPDLFZC79mEIlIySTyl_qqc,785
+django/contrib/gis/db/models/__init__.py,sha256=TrCS27JdVa-Q7Hok-YaJxb4eLrPdyvRmasJGIu05fvA,865
+django/contrib/gis/db/models/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/db/models/__pycache__/aggregates.cpython-310.pyc,,
+django/contrib/gis/db/models/__pycache__/fields.cpython-310.pyc,,
+django/contrib/gis/db/models/__pycache__/functions.cpython-310.pyc,,
+django/contrib/gis/db/models/__pycache__/lookups.cpython-310.pyc,,
+django/contrib/gis/db/models/__pycache__/proxy.cpython-310.pyc,,
+django/contrib/gis/db/models/aggregates.py,sha256=kM-GKfjwurd7D3P6sDbkEpZXBaocqobcSarQ89OEJko,2969
+django/contrib/gis/db/models/fields.py,sha256=n40s9HYbqVpFKIW9b4X4IQ8INWUus7QZi5QdiWVPsTI,14312
+django/contrib/gis/db/models/functions.py,sha256=v-DSLE-QfBCghNn-M2ZzXbKEoyMDulS581CIeSBICvg,18259
+django/contrib/gis/db/models/lookups.py,sha256=1raEdKM1m7e2rdMRZ4g30UKzLieJ1QCXcAdeAyuH1LA,11798
+django/contrib/gis/db/models/proxy.py,sha256=o2wXW3sFIWhjhkSrzrwFaCdatvZLF8Z5Zs3s1ugmriA,3173
+django/contrib/gis/db/models/sql/__init__.py,sha256=-rzcC3izMJi2bnvyQUCMzIOrigBnY6N_5EQIim4wCSY,134
+django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-310.pyc,,
+django/contrib/gis/db/models/sql/conversion.py,sha256=AZLJCMSw_svSLQPB5LTvA-YRFnMZSXYdHdvPSTFmK4Y,2432
+django/contrib/gis/feeds.py,sha256=0vNVVScIww13bOxvlQfXAOCItIOGWSXroKKl6QXGB58,5995
+django/contrib/gis/forms/__init__.py,sha256=Zyid_YlZzHUcMYkfGX1GewmPPDNc0ni7HyXKDTeIkjo,318
+django/contrib/gis/forms/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/forms/__pycache__/fields.cpython-310.pyc,,
+django/contrib/gis/forms/__pycache__/widgets.cpython-310.pyc,,
+django/contrib/gis/forms/fields.py,sha256=FrZaZWXFUdWK1QEu8wlda3u6EtqaVHjQRYrSKKu66PA,4608
+django/contrib/gis/forms/widgets.py,sha256=JYsXnfglVDttWxUbpd6GcoliXDwYUenVB2NfCfQo6iw,4000
+django/contrib/gis/gdal/LICENSE,sha256=VwoEWoNyts1qAOMOuv6OPo38Cn_j1O8sxfFtQZ62Ous,1526
+django/contrib/gis/gdal/__init__.py,sha256=m5cRj_qvD3jbLDjMk0ggDxW_hifeZ-CbtRtHZUIsRiQ,1827
+django/contrib/gis/gdal/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/base.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/datasource.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/driver.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/envelope.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/error.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/feature.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/field.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/geometries.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/geomtype.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/layer.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/libgdal.cpython-310.pyc,,
+django/contrib/gis/gdal/__pycache__/srs.cpython-310.pyc,,
+django/contrib/gis/gdal/base.py,sha256=yymyL0vZRMBfiFUzrehvaeaunIxMH5ucGjPRfKj-rAo,181
+django/contrib/gis/gdal/datasource.py,sha256=78S8Z5H61PCJS1_-CCJbiJAOP12X-IWo79PwCfyiVXI,4611
+django/contrib/gis/gdal/driver.py,sha256=eCzrqEVOwyTlcRItrUirmEdNaSrsAIvw9jP_Z669xds,3351
+django/contrib/gis/gdal/envelope.py,sha256=Aj3Qn33QWjDYrwX1je2AZOmokffzs-s4kD96HL1easQ,7323
+django/contrib/gis/gdal/error.py,sha256=Vt-Uis9z786UGE3tD7fjiH8_0P5HSTO81n4fad4l6kw,1578
+django/contrib/gis/gdal/feature.py,sha256=HPWoCZjwzsUnhc7QmKh-BBMRqJCjj07RcFI6vjbdnp4,4017
+django/contrib/gis/gdal/field.py,sha256=EKE-Ioj5L79vo93Oixz_JE4TIZbDTRy0YVGvZH-I1z4,6886
+django/contrib/gis/gdal/geometries.py,sha256=tYXqoHD0kY8LWN1SVcabj15kfeXy2WTQW9zKIeR8-iQ,24346
+django/contrib/gis/gdal/geomtype.py,sha256=VD_w5GymdaKJwgBW1cq2Xjtl3EVXCvJh26LIlKgW_PM,3071
+django/contrib/gis/gdal/layer.py,sha256=PygAgsRZzWekp6kq6NEAZ6vhQTSo1Nk4c1Yi_pOdK58,8825
+django/contrib/gis/gdal/libgdal.py,sha256=81WzGM6MUjycMhbQM6n_QcFCzn_Y_vnOi2hd_9WDYDw,3538
+django/contrib/gis/gdal/prototypes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-310.pyc,,
+django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-310.pyc,,
+django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-310.pyc,,
+django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-310.pyc,,
+django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-310.pyc,,
+django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-310.pyc,,
+django/contrib/gis/gdal/prototypes/ds.py,sha256=aWeItuRLGr9N3qcnB7vuooNbeGerkixnDRUjtaX7zk0,4525
+django/contrib/gis/gdal/prototypes/errcheck.py,sha256=wlRqrVnozMingrYIBH_9oMMzY9DMrX00BYzP_n54iu0,4173
+django/contrib/gis/gdal/prototypes/generation.py,sha256=c4m3x0QkDhDDaYxavGcvMLs3RNNb9EzfKTzHudWF1f8,4889
+django/contrib/gis/gdal/prototypes/geom.py,sha256=LjygKS-WbNMXj4Y8kaYGSn0OU5-UlQpjCmpmj3aPjhY,5046
+django/contrib/gis/gdal/prototypes/raster.py,sha256=HPLc2gAsGRhNwkjTgtZzHdjWG8LKbcSdwRl1A3qjQDk,5994
+django/contrib/gis/gdal/prototypes/srs.py,sha256=uJ7XgnrX7TuvpgJu8uwes7CWidC7-C6PSSqNeEpJur8,3731
+django/contrib/gis/gdal/raster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/gdal/raster/__pycache__/band.cpython-310.pyc,,
+django/contrib/gis/gdal/raster/__pycache__/base.cpython-310.pyc,,
+django/contrib/gis/gdal/raster/__pycache__/const.cpython-310.pyc,,
+django/contrib/gis/gdal/raster/__pycache__/source.cpython-310.pyc,,
+django/contrib/gis/gdal/raster/band.py,sha256=RPdut6BeQ9vW71rrPMwb2CnXrbCys8YAt1BA8Aholy0,8343
+django/contrib/gis/gdal/raster/base.py,sha256=2GGlL919lPr7YVGFtdIynLPIH-QKYhzrUpoXwVRlM1k,2882
+django/contrib/gis/gdal/raster/const.py,sha256=xBoMW6PeykWg3_IfVIEaGdrKTahxCMENCtDVzHOB8V8,2981
+django/contrib/gis/gdal/raster/source.py,sha256=yUh6gpu04EyynuDubIhPXAVSCqcb-5g9kk3mmez6z9c,18324
+django/contrib/gis/gdal/srs.py,sha256=uIF9WL5FGThhV_rspN79DATEJ41Xtcco3H-Zg7RyuNc,12675
+django/contrib/gis/geoip2/__init__.py,sha256=YY9IoFvLImeagLMqouHeY62qKfo0qXl3AFQh63-_Ego,824
+django/contrib/gis/geoip2/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/geoip2/__pycache__/base.cpython-310.pyc,,
+django/contrib/gis/geoip2/__pycache__/resources.cpython-310.pyc,,
+django/contrib/gis/geoip2/base.py,sha256=XyX4Qklk05iC245aNtKzEW2oC3wuotipR2FLDLtS9O0,8865
+django/contrib/gis/geoip2/resources.py,sha256=Lzz-Ok677UBmMZQdHsPv1-qPBeJ8bc4HKTk7_UzmY0I,819
+django/contrib/gis/geometry.py,sha256=0INgLWg4LeRjoO3fUm7f68vXXWmaJGBZGbt-GJovTlc,666
+django/contrib/gis/geos/LICENSE,sha256=CL8kt1USOK4yUpUkVCWxyuua0PQvni0wPHs1NQJjIEU,1530
+django/contrib/gis/geos/__init__.py,sha256=LCGbpFFWXYm6SunsMzV9LoPLNRtDKEWaQ7P4VUtsk84,660
+django/contrib/gis/geos/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/base.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/collections.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/coordseq.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/error.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/factory.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/geometry.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/io.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/libgeos.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/linestring.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/mutable_list.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/point.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/polygon.cpython-310.pyc,,
+django/contrib/gis/geos/__pycache__/prepared.cpython-310.pyc,,
+django/contrib/gis/geos/base.py,sha256=NdlFg5l9akvDp87aqzh9dk0A3ZH2TI3cOq10mmmuHBk,181
+django/contrib/gis/geos/collections.py,sha256=p3-m7yjqxsKPhLZxvLoQUtNKElM3tQjbs860LTCSnYM,3940
+django/contrib/gis/geos/coordseq.py,sha256=zK2p4lzNHzgw6HgYT1vXwEgQg_ad3BdUIMSDHSS2H-U,7284
+django/contrib/gis/geos/error.py,sha256=r3SNTnwDBI6HtuyL3mQ_iEEeKlOqqqdkHnhNoUkMohw,104
+django/contrib/gis/geos/factory.py,sha256=KQF6lqAh5KRlFSDgN-BSXWojmWFabbEUFgz2IGYX_vk,961
+django/contrib/gis/geos/geometry.py,sha256=y7T5PMD4pR_XA3WbKnTzHVjZyVXnm-WawMMykl40GTU,26400
+django/contrib/gis/geos/io.py,sha256=P3bfg3AIWv99lrqmzFZyP-i6e5YiCuC32fql_IXPgUo,799
+django/contrib/gis/geos/libgeos.py,sha256=rEoKvo3cJ9yqIUyVCeQSIxxuHdVAmburE1cqFQFbtZM,4987
+django/contrib/gis/geos/linestring.py,sha256=BJAoWfHW08EX1UpNFVB09iSKXdTS6pZsTIBc6DcZcfc,6372
+django/contrib/gis/geos/mutable_list.py,sha256=nthCtQ0FsJrDGd29cSERwXb-tJkpK35Vc0T_ywCnXgc,10121
+django/contrib/gis/geos/point.py,sha256=bvatsdXTb1XYy1EaSZvp4Rnr2LwXZU12zILefLu6sRw,4781
+django/contrib/gis/geos/polygon.py,sha256=xjXuXiHJnxiJwP2b30BnDN93kyxOKQotwpT0W_GOqzE,6734
+django/contrib/gis/geos/prepared.py,sha256=J5Dj6e3u3gEfVPNOM1E_rvcmcXR2-CdwtbAcoiDU5a0,1577
+django/contrib/gis/geos/prototypes/__init__.py,sha256=YEg8BbMqHRMxqy9aQWxItqfa80hzrGpu9GaH6D3fgog,1412
+django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-310.pyc,,
+django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-310.pyc,,
+django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-310.pyc,,
+django/contrib/gis/geos/prototypes/__pycache__/io.cpython-310.pyc,,
+django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-310.pyc,,
+django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-310.pyc,,
+django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-310.pyc,,
+django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-310.pyc,,
+django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-310.pyc,,
+django/contrib/gis/geos/prototypes/coordseq.py,sha256=fIcSIzmyCbazQSR-XdvCwtP2YZItQur1Y27vfAKXNfw,3122
+django/contrib/gis/geos/prototypes/errcheck.py,sha256=aW4kLew3tdXZ4NmJhOF2NFY837ACid6Vm-_a10ET5Q8,2788
+django/contrib/gis/geos/prototypes/geom.py,sha256=NlR-rUFCj_V3lppSmYSI2bapLim_VUJXABwElTldZM0,3398
+django/contrib/gis/geos/prototypes/io.py,sha256=gyiOOrXxY3r7J9DWN2pVvM6-gK2TL997q_koEaBmrWA,11360
+django/contrib/gis/geos/prototypes/misc.py,sha256=3Ek1DTeDo4BBsS7LloseeSHPBz70Vu-4mF-dxSjyXLU,1168
+django/contrib/gis/geos/prototypes/predicates.py,sha256=67HWiwf5NWFWNjiDJ8GvdlS5rCw0BcO7brqcDMwv_5s,1599
+django/contrib/gis/geos/prototypes/prepared.py,sha256=4I9pS75Q5MZ1z8A1v0mKkmdCly33Kj_0sDcrqxOppzM,1175
+django/contrib/gis/geos/prototypes/threadsafe.py,sha256=n1yCYvQCtc7piFrhjeZCWH8Pf0-AiOGBH33VZusTgWI,2302
+django/contrib/gis/geos/prototypes/topology.py,sha256=7TNgvTU8L3cyoU0VMXbox3RA3qmUePDXejJiHMntXlU,2327
+django/contrib/gis/locale/af/LC_MESSAGES/django.mo,sha256=TN3GddZjlqXnhK8UKLlMoMIXNw2szzj7BeRjoKjsR5c,470
+django/contrib/gis/locale/af/LC_MESSAGES/django.po,sha256=XPdXaQsZ6yDPxF3jVMEI4bli_5jrEawoO-8DHMk8Q_A,1478
+django/contrib/gis/locale/ar/LC_MESSAGES/django.mo,sha256=5LCO903yJTtRVaaujBrmwMx8f8iLa3ihasgmj8te9eg,2301
+django/contrib/gis/locale/ar/LC_MESSAGES/django.po,sha256=pfUyK0VYgY0VC2_LvWZvG_EEIWa0OqIUfhiPT2Uov3Q,2569
+django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=1e2lutVEjsa5vErMdjS6gaBbOLPTVIpDv15rax-wvKg,2403
+django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.po,sha256=dizXM36w-rUtI7Dv2mSoJDR5ouVR6Ar7zqjywX3xKr0,2555
+django/contrib/gis/locale/ast/LC_MESSAGES/django.mo,sha256=8o0Us4wR14bdv1M5oBeczYC4oW5uKnycWrj1-lMIqV4,850
+django/contrib/gis/locale/ast/LC_MESSAGES/django.po,sha256=0beyFcBkBOUNvPP45iqewTNv2ExvCPvDYwpafCJY5QM,1684
+django/contrib/gis/locale/az/LC_MESSAGES/django.mo,sha256=liiZOQ712WIdLolC8_uIHY6G4QPJ_sYhp5CfwxTXEv0,1976
+django/contrib/gis/locale/az/LC_MESSAGES/django.po,sha256=kUxBJdYhLZNnAO3IWKy4R3ijTZBiG-OFMg2wrZ7Jh28,2172
+django/contrib/gis/locale/be/LC_MESSAGES/django.mo,sha256=4B6F3HmhZmk1eLi42Bw90aipUHF4mT-Zlmsi0aKojHg,2445
+django/contrib/gis/locale/be/LC_MESSAGES/django.po,sha256=4QgQvhlM_O4N_8uikD7RASkS898vov-qT_FkQMhg4cE,2654
+django/contrib/gis/locale/bg/LC_MESSAGES/django.mo,sha256=qZKt6jmYT9ecax0Z1H8nCKWwL5qLoUiZB2MfYMu-SQs,2389
+django/contrib/gis/locale/bg/LC_MESSAGES/django.po,sha256=4MDPVwks5pLvqsXQVA2M9m_3nMFEWMsivkLEWkYm1LA,2654
+django/contrib/gis/locale/bn/LC_MESSAGES/django.mo,sha256=7oNsr_vHQfsanyP-o1FG8jZTSBK8jB3eK2fA9AqNOx4,1070
+django/contrib/gis/locale/bn/LC_MESSAGES/django.po,sha256=PTa9EFZdqfznUH7si3Rq3zp1kNkTOnn2HRTEYXQSOdM,1929
+django/contrib/gis/locale/br/LC_MESSAGES/django.mo,sha256=xN8hOvJi_gDlpdC5_lghXuX6yCBYDPfD_SQLjcvq8gU,1614
+django/contrib/gis/locale/br/LC_MESSAGES/django.po,sha256=LQw3Tp_ymJ_x7mJ6g4SOr6aP00bejkjuaxfFFRZnmaQ,2220
+django/contrib/gis/locale/bs/LC_MESSAGES/django.mo,sha256=9EdKtZkY0FX2NlX_q0tIxXD-Di0SNQJZk3jo7cend0A,1308
+django/contrib/gis/locale/bs/LC_MESSAGES/django.po,sha256=eu_qF8dbmlDiRKGNIz80XtIunrF8QIOcy8O28X02GvQ,1905
+django/contrib/gis/locale/ca/LC_MESSAGES/django.mo,sha256=nPWtfc4Fbm2uaY-gCASaye9CxzOYIfjG8mDTQGvn2As,2007
+django/contrib/gis/locale/ca/LC_MESSAGES/django.po,sha256=pPMDNc3hAWsbC_BM4UNmziX2Bq7vs6bHbNqVkEvCSic,2359
+django/contrib/gis/locale/cs/LC_MESSAGES/django.mo,sha256=V7MNXNsOaZ3x1G6LqYu6KJn6zeiFQCZKvF7Xk4J0fkg,2071
+django/contrib/gis/locale/cs/LC_MESSAGES/django.po,sha256=mPkcIWtWRILisD6jOlBpPV7CKYJjhTaBcRLf7OqifdM,2321
+django/contrib/gis/locale/cy/LC_MESSAGES/django.mo,sha256=vUG_wzZaMumPwIlKwuN7GFcS9gnE5rpflxoA_MPM_po,1430
+django/contrib/gis/locale/cy/LC_MESSAGES/django.po,sha256=_QjXT6cySUXrjtHaJ3046z-5PoXkCqtOhvA7MCZsXxk,1900
+django/contrib/gis/locale/da/LC_MESSAGES/django.mo,sha256=kH8GcLFe-XvmznQbiY5Ce2-Iz4uKJUfF4Be0yY13AEs,1894
+django/contrib/gis/locale/da/LC_MESSAGES/django.po,sha256=JOVTWeTnSUASbupCd2Fo0IY_veJb6XKDhyKFu6M2J_8,2179
+django/contrib/gis/locale/de/LC_MESSAGES/django.mo,sha256=1PBxHsFHDrbkCslumxKVD_kD2eIElGWOq2chQopcorY,1965
+django/contrib/gis/locale/de/LC_MESSAGES/django.po,sha256=0XnbUsy9yZHhFsGGhcSnXUqJpDlMVqmrRl-0c-kdcYk,2163
+django/contrib/gis/locale/dsb/LC_MESSAGES/django.mo,sha256=NzmmexcIC525FHQ5XvsKdzCZtkkb5wnrSd12fdAkZ-0,2071
+django/contrib/gis/locale/dsb/LC_MESSAGES/django.po,sha256=aTBfL_NB8uIDt2bWBxKCdKi-EUNo9lQ9JZ0ekWeI4Yk,2234
+django/contrib/gis/locale/el/LC_MESSAGES/django.mo,sha256=OBxHnlLrT4tY0bW5TuaRqBCKtchnz_53RtrEc0fZ3V4,2484
+django/contrib/gis/locale/el/LC_MESSAGES/django.po,sha256=q0YzrFC5seve2ralJJDSmMG2uukAAALhoRflYOPFudg,2937
+django/contrib/gis/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/gis/locale/en/LC_MESSAGES/django.po,sha256=8yvqHG1Mawkhx9RqD5tDXX8U0-a7RWr-wCQPGHWAqG0,2225
+django/contrib/gis/locale/en_AU/LC_MESSAGES/django.mo,sha256=IPn5kRqOvv5S7jpbIUw8PEUkHlyjEL-4GuOANd1iAzI,486
+django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po,sha256=x_58HmrHRia2LoYhmmN_NLb1J3f7oTDvwumgTo0LowI,1494
+django/contrib/gis/locale/en_GB/LC_MESSAGES/django.mo,sha256=WkORQDOsFuV2bI7hwVsJr_JTWnDQ8ZaK-VYugqnLv3w,1369
+django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po,sha256=KWPMoX-X-gQhb47zoVsa79-16-SiCGpO0s4xkcGv9z0,1910
+django/contrib/gis/locale/eo/LC_MESSAGES/django.mo,sha256=qls9V1jybymGCdsutcjP6fT5oMaI-GXnt_oNfwq-Yhs,1960
+django/contrib/gis/locale/eo/LC_MESSAGES/django.po,sha256=WPSkCxwq3ZnR-_L-W-CnS0_Qne3ekX7ZAZVaubiWw5s,2155
+django/contrib/gis/locale/es/LC_MESSAGES/django.mo,sha256=oMQQrOdtyzvfCE844C5vM7wUuqtjMQ_HsG0TkKmfhr4,2025
+django/contrib/gis/locale/es/LC_MESSAGES/django.po,sha256=Tqmpl0-dMQELpOc7o-ig9pf6W4p8X-7Hn1EhLTnBN4Q,2476
+django/contrib/gis/locale/es_AR/LC_MESSAGES/django.mo,sha256=J-A7H9J3DjwlJ-8KvO5MC-sq4hUsJhmioAE-wiwOA8E,2012
+django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po,sha256=uWqoO-Tw7lOyPnOKC2SeSFD0MgPIQHWqTfroAws24aQ,2208
+django/contrib/gis/locale/es_CO/LC_MESSAGES/django.mo,sha256=P79E99bXjthakFYr1BMobTKqJN9S1aj3vfzMTbGRhCY,1865
+django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po,sha256=tyu8_dFA9JKeQ2VCpCUy_6yX97SPJcDwVqqAuf_xgks,2347
+django/contrib/gis/locale/es_MX/LC_MESSAGES/django.mo,sha256=bC-uMgJXdbKHQ-w7ez-6vh9E_2YSgCF_LkOQlvb60BU,1441
+django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po,sha256=MYO9fGclp_VvLG5tXDjXY3J_1FXI4lDv23rGElXAyjA,1928
+django/contrib/gis/locale/es_VE/LC_MESSAGES/django.mo,sha256=5YVIO9AOtmjky90DAXVyU0YltfQ4NLEpVYRTTk7SZ5o,486
+django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po,sha256=R8suLsdDnSUEKNlXzow3O6WIT5NcboZoCjir9GfSTSQ,1494
+django/contrib/gis/locale/et/LC_MESSAGES/django.mo,sha256=xrNWaGCM9t14hygJ7a2g3KmhnFIAxVPrfKdJmP9ysrg,1921
+django/contrib/gis/locale/et/LC_MESSAGES/django.po,sha256=ejWpn0QAyxGCsfY1VpsJhUcY4ngNXG5vcwt_qOF5jbA,2282
+django/contrib/gis/locale/eu/LC_MESSAGES/django.mo,sha256=VCs3BT_AwXUHmLnAftVWs9C9rZl1FYB33u4kkQyoedY,1936
+django/contrib/gis/locale/eu/LC_MESSAGES/django.po,sha256=IrFIeK0oZNh3y3RodKxqG_1c84DdPHYqdfufY5a9C6g,2197
+django/contrib/gis/locale/fa/LC_MESSAGES/django.mo,sha256=5S15sLEZkbyZJ_GaWfysYbSo49X2U15ZFqfRHf-q0ZY,2242
+django/contrib/gis/locale/fa/LC_MESSAGES/django.po,sha256=SBQDQA2E3e1e2XniZtEu4dr6-MwNh-q_uJ022xHO_34,2596
+django/contrib/gis/locale/fi/LC_MESSAGES/django.mo,sha256=wbBTW0tVHJZbyVYDLdHourHKw5m6joaX1X_eP9uD6vY,1887
+django/contrib/gis/locale/fi/LC_MESSAGES/django.po,sha256=FYB9ZYdGMBtxt-7ZkxjtsgxVYFLDLOlscqaeSnNUa4s,2114
+django/contrib/gis/locale/fr/LC_MESSAGES/django.mo,sha256=BpmQ_09rbzFR-dRjX0_SbFAHQJs7bZekLTGwsN96j8A,2052
+django/contrib/gis/locale/fr/LC_MESSAGES/django.po,sha256=Nqsu2ILMuPVFGhHo7vYdQH7lwNupJRjl1SsMmFEo_Dw,2306
+django/contrib/gis/locale/fy/LC_MESSAGES/django.mo,sha256=2kCnWU_giddm3bAHMgDy0QqNwOb9qOiEyCEaYo1WdqQ,476
+django/contrib/gis/locale/fy/LC_MESSAGES/django.po,sha256=7ncWhxC5OLhXslQYv5unWurhyyu_vRsi4bGflZ6T2oQ,1484
+django/contrib/gis/locale/ga/LC_MESSAGES/django.mo,sha256=m6Owcr-5pln54TXcZFAkYEYDjYiAkT8bGFyw4nowNHA,1420
+django/contrib/gis/locale/ga/LC_MESSAGES/django.po,sha256=I0kyTnYBPSdYr8RontzhGPShJhylVAdRLBGWRQr2E7g,1968
+django/contrib/gis/locale/gd/LC_MESSAGES/django.mo,sha256=8TAogB3fzblx48Lv6V94mOlR6MKAW6NjZOkKmAhncRY,2082
+django/contrib/gis/locale/gd/LC_MESSAGES/django.po,sha256=vBafKOhKlhMXU2Qzgbiy7GhEGy-RBdHJi5ey5sHx5_I,2259
+django/contrib/gis/locale/gl/LC_MESSAGES/django.mo,sha256=4OUuNpkYRWjKz_EoY1zDzKOK8YptrwUutQqFvSKsLUs,1421
+django/contrib/gis/locale/gl/LC_MESSAGES/django.po,sha256=s9tiYQLnv1_uzyLpi3qqV_zwJNic1AGFsUGc3FhJbMo,2006
+django/contrib/gis/locale/he/LC_MESSAGES/django.mo,sha256=ngfIMxGYVgNCVs_bfNI2PwjSyj03DF3FmSugZuVti60,2190
+django/contrib/gis/locale/he/LC_MESSAGES/django.po,sha256=N-FTLS0TL8AW5Owtfuqt7mlmqszgfXLUZ_4MQo23F2w,2393
+django/contrib/gis/locale/hi/LC_MESSAGES/django.mo,sha256=3nsy5mxKTPtx0EpqBNA_TJXmLmVZ4BPUZG72ZEe8OPM,1818
+django/contrib/gis/locale/hi/LC_MESSAGES/django.po,sha256=jTFG2gqqYAQct9-to0xL2kUFQu-ebR4j7RGfxn4sBAg,2372
+django/contrib/gis/locale/hr/LC_MESSAGES/django.mo,sha256=0XrRj2oriNZxNhEwTryo2zdMf-85-4X7fy7OJhB5ub4,1549
+django/contrib/gis/locale/hr/LC_MESSAGES/django.po,sha256=iijzoBoD_EJ1n-a5ys5CKnjzZzG299zPoCN-REFkeqE,2132
+django/contrib/gis/locale/hsb/LC_MESSAGES/django.mo,sha256=hA9IBuEZ6JHsTIVjGZdlvD8NcFy6v56pTy1fmA_lWwo,2045
+django/contrib/gis/locale/hsb/LC_MESSAGES/django.po,sha256=LAGSJIa6wd3Dh4IRG5DLigL-mjQzmYwn0o2RmSAdBdw,2211
+django/contrib/gis/locale/hu/LC_MESSAGES/django.mo,sha256=9P8L1-RxODT4NCMBUQnWQJaydNs9FwcAZeuoVmaQUDY,1940
+django/contrib/gis/locale/hu/LC_MESSAGES/django.po,sha256=qTC31EofFBS4HZ5SvxRKDIt2afAV4OS52_LYFnX2OB8,2261
+django/contrib/gis/locale/hy/LC_MESSAGES/django.mo,sha256=4D6em091yzO4s3U_DIdocdlvxtAbXdMt6Ig1ATxRGrQ,2535
+django/contrib/gis/locale/hy/LC_MESSAGES/django.po,sha256=0nkAba1H7qrC5JSakzJuAqsldWPG7lsjH7H8jVfG1SU,2603
+django/contrib/gis/locale/ia/LC_MESSAGES/django.mo,sha256=9MZnSXkQUIfbYB2f4XEtYo_FzuVi5OlsYcX9K_REz3c,1899
+django/contrib/gis/locale/ia/LC_MESSAGES/django.po,sha256=f7OuqSzGHQNldBHp62VIWjqP0BB0bvo8qEx9_wzH090,2116
+django/contrib/gis/locale/id/LC_MESSAGES/django.mo,sha256=FPjGhjf4wy-Wi6f3GnsBhmpBJBFnAPOw5jUPbufHISM,1938
+django/contrib/gis/locale/id/LC_MESSAGES/django.po,sha256=ap7GLVlZO6mmAs6PHgchU5xrChWF-YbwtJU7t0tqz0k,2353
+django/contrib/gis/locale/io/LC_MESSAGES/django.mo,sha256=_yUgF2fBUxVAZAPNw2ROyWly5-Bq0niGdNEzo2qbp8k,464
+django/contrib/gis/locale/io/LC_MESSAGES/django.po,sha256=fgGJ1xzliMK0MlVoV9CQn_BuuS3Kl71Kh5YEybGFS0Y,1472
+django/contrib/gis/locale/is/LC_MESSAGES/django.mo,sha256=UQb3H5F1nUxJSrADpLiYe12TgRhYKCFQE5Xy13MzEqU,1350
+django/contrib/gis/locale/is/LC_MESSAGES/django.po,sha256=8QWtgdEZR7OUVXur0mBCeEjbXTBjJmE-DOiKe55FvMo,1934
+django/contrib/gis/locale/it/LC_MESSAGES/django.mo,sha256=8VddOMr-JMs5D-J5mq-UgNnhf98uutpoJYJKTr8E224,1976
+django/contrib/gis/locale/it/LC_MESSAGES/django.po,sha256=Vp1G-GChjjTsODwABsg5LbmR6_Z-KpslwkNUipuOqk4,2365
+django/contrib/gis/locale/ja/LC_MESSAGES/django.mo,sha256=Ro8-P0647LU_963TJT1uOWTohB77YaGGci_2sMLJwEo,2096
+django/contrib/gis/locale/ja/LC_MESSAGES/django.po,sha256=shMi1KrURuWbFGc3PpSrpatfEQJlW--QTDH6HwHbtv4,2352
+django/contrib/gis/locale/ka/LC_MESSAGES/django.mo,sha256=iqWQ9j8yanPjDhwi9cNSktYgfLVnofIsdICnAg2Y_to,1991
+django/contrib/gis/locale/ka/LC_MESSAGES/django.po,sha256=rkM7RG0zxDN8vqyAudmk5nocajhOYP6CTkdJKu21Pf4,2571
+django/contrib/gis/locale/kk/LC_MESSAGES/django.mo,sha256=NtgQONp0UncUNvrh0W2R7u7Ja8H33R-a-tsQShWq-QI,1349
+django/contrib/gis/locale/kk/LC_MESSAGES/django.po,sha256=78OMHuerBJZJZVo9GjGJ1h5fwdLuSc_X03ZhSRibtf4,1979
+django/contrib/gis/locale/km/LC_MESSAGES/django.mo,sha256=T0aZIZ_gHqHpQyejnBeX40jdcfhrCOjgKjNm2hLrpNE,459
+django/contrib/gis/locale/km/LC_MESSAGES/django.po,sha256=7ARjFcuPQJG0OGLJu9pVfSiAwc2Q-1tT6xcLeKeom1c,1467
+django/contrib/gis/locale/kn/LC_MESSAGES/django.mo,sha256=EkJRlJJSHZJvNZJuOLpO4IIUEoyi_fpKwNWe0OGFcy4,461
+django/contrib/gis/locale/kn/LC_MESSAGES/django.po,sha256=MnsSftGvmgJgGfgayQUVDMj755z8ItkM9vBehORfYbk,1475
+django/contrib/gis/locale/ko/LC_MESSAGES/django.mo,sha256=3cvrvesJ_JU-XWI5oaYSAANVjwFxn3SLd3UrdRSMAfA,1939
+django/contrib/gis/locale/ko/LC_MESSAGES/django.po,sha256=Gg9s__57BxLIYJx5O0c-UJ8cAzsU3TcLuKGE7abn1rE,2349
+django/contrib/gis/locale/ky/LC_MESSAGES/django.mo,sha256=1z_LnGCxvS3_6OBr9dBxsyHrDs7mR3Fzm76sdgNGJrU,2221
+django/contrib/gis/locale/ky/LC_MESSAGES/django.po,sha256=NyWhlb3zgb0iAa6C0hOqxYxA7zaR_XgyjJHffoCIw1g,2438
+django/contrib/gis/locale/lb/LC_MESSAGES/django.mo,sha256=XAyZQUi8jDr47VpSAHp_8nQb0KvSMJHo5THojsToFdk,474
+django/contrib/gis/locale/lb/LC_MESSAGES/django.po,sha256=5rfudPpH4snSq2iVm9E81EBwM0S2vbkY2WBGhpuga1Q,1482
+django/contrib/gis/locale/lt/LC_MESSAGES/django.mo,sha256=9I8bq0gbDGv7wBe60z3QtWZ5x_NgALjCTvR6rBtPPBY,2113
+django/contrib/gis/locale/lt/LC_MESSAGES/django.po,sha256=jD2vv47dySaH1nVzzf7mZYKM5vmofhmaKXFp4GvX1Iw,2350
+django/contrib/gis/locale/lv/LC_MESSAGES/django.mo,sha256=KkVqgndzTA8WAagHB4hg65PUvQKXl_O79fb2r04foXw,2025
+django/contrib/gis/locale/lv/LC_MESSAGES/django.po,sha256=21VWQDPMF27yZ-ctKO-f0sohyvVkIaTXk9MKF-WGmbo,2253
+django/contrib/gis/locale/mk/LC_MESSAGES/django.mo,sha256=PVw73LWWNvaNd95zQbAIA7LA7JNmpf61YIoyuOca2_s,2620
+django/contrib/gis/locale/mk/LC_MESSAGES/django.po,sha256=eusHVHXHRfdw1_JyuBW7H7WPCHFR_z1NBqr79AVqAk0,2927
+django/contrib/gis/locale/ml/LC_MESSAGES/django.mo,sha256=Kl9okrE3AzTPa5WQ-IGxYVNSRo2y_VEdgDcOyJ_Je78,2049
+django/contrib/gis/locale/ml/LC_MESSAGES/django.po,sha256=PWg8atPKfOsnVxg_uro8zYO9KCE1UVhfy_zmCWG0Bdk,2603
+django/contrib/gis/locale/mn/LC_MESSAGES/django.mo,sha256=-Nn70s2On94C-jmSZwTppW2q7_W5xgMpzPXYmxZSKXs,2433
+django/contrib/gis/locale/mn/LC_MESSAGES/django.po,sha256=I0ZHocPlRYrogJtzEGVPsWWHpoVEa7e2KYP9Ystlj60,2770
+django/contrib/gis/locale/mr/LC_MESSAGES/django.mo,sha256=sO2E__g61S0p5I6aEwnoAsA3epxv7_Jn55TyF0PZCUA,468
+django/contrib/gis/locale/mr/LC_MESSAGES/django.po,sha256=McWaLXfWmYTDeeDbIOrV80gwnv07KCtNIt0OXW_v7vw,1476
+django/contrib/gis/locale/ms/LC_MESSAGES/django.mo,sha256=Ws6mtfdx1yajz4NUl1aqrWYc0XNPm2prqAAE8yCNyT0,1887
+django/contrib/gis/locale/ms/LC_MESSAGES/django.po,sha256=wglQEOZ8SF4_d7tZBCoOOSTbRG1U5IM4lIZA1H5MaDg,2017
+django/contrib/gis/locale/my/LC_MESSAGES/django.mo,sha256=e6G8VbCCthUjV6tV6PRCy_ZzsXyZ-1OYjbYZIEShbXI,525
+django/contrib/gis/locale/my/LC_MESSAGES/django.po,sha256=R3v1S-904f8FWSVGHe822sWrOJI6cNJIk93-K7_E_1c,1580
+django/contrib/gis/locale/nb/LC_MESSAGES/django.mo,sha256=a89qhy9BBE_S-MYlOMLaYMdnOvUEJxh8V80jYJqFEj0,1879
+django/contrib/gis/locale/nb/LC_MESSAGES/django.po,sha256=UIk8oXTFdxTn22tTtIXowTl3Nxn2qvpQO72GoQDUmaw,2166
+django/contrib/gis/locale/ne/LC_MESSAGES/django.mo,sha256=nB-Ta8w57S6hIAhAdWZjDT0Dg6JYGbAt5FofIhJT7k8,982
+django/contrib/gis/locale/ne/LC_MESSAGES/django.po,sha256=eMH6uKZZZYn-P3kmHumiO4z9M4923s9tWGhHuJ0eWuI,1825
+django/contrib/gis/locale/nl/LC_MESSAGES/django.mo,sha256=d22j68OCI1Bevtl2WgXHSQHFCiDgkPXmrFHca_uUm14,1947
+django/contrib/gis/locale/nl/LC_MESSAGES/django.po,sha256=ffytg6K7pTQoIRfxY35i1FpolJeox-fpSsG1JQzvb-0,2381
+django/contrib/gis/locale/nn/LC_MESSAGES/django.mo,sha256=Rp1zi-gbaGBPk9MVR4sw1MS4MhCRs6u9v7Aa8IxrkQQ,1888
+django/contrib/gis/locale/nn/LC_MESSAGES/django.po,sha256=ApoLxcaZ3UzO8owOqfDgDMCJuemnGAfrKH_qJVR47eM,2087
+django/contrib/gis/locale/os/LC_MESSAGES/django.mo,sha256=02NpGC8WPjxmPqQkfv9Kj2JbtECdQCtgecf_Tjk1CZc,1594
+django/contrib/gis/locale/os/LC_MESSAGES/django.po,sha256=JBIsv5nJg3Wof7Xy7odCI_xKRBLN_Hlbb__kNqNW4Xw,2161
+django/contrib/gis/locale/pa/LC_MESSAGES/django.mo,sha256=JR1NxG5_h_dFE_7p6trBWWIx-QqWYIgfGomnjaCsWAA,1265
+django/contrib/gis/locale/pa/LC_MESSAGES/django.po,sha256=Ejd_8dq_M0E9XFijk0qj4oC-8_oe48GWWHXhvOrFlnY,1993
+django/contrib/gis/locale/pl/LC_MESSAGES/django.mo,sha256=BkGcSOdz9VE7OYEeFzC9OLANJsTB3pFU1Xs8-CWFgb4,2095
+django/contrib/gis/locale/pl/LC_MESSAGES/django.po,sha256=IIy2N8M_UFanmHB6Ajne9g5NQ7tJCF5JvgrzasFUJDY,2531
+django/contrib/gis/locale/pt/LC_MESSAGES/django.mo,sha256=sE5PPOHzfT8QQXuV5w0m2pnBTRhKYs_vFhk8p_A4Jg0,2036
+django/contrib/gis/locale/pt/LC_MESSAGES/django.po,sha256=TFt6Oj1NlCM3pgs2dIgFZR3S3y_g7oR7S-XRBlM4924,2443
+django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.mo,sha256=5HGIao480s3B6kXtSmdy1AYjGUZqbYuZ9Eapho_jkTk,1976
+django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.po,sha256=4-2WPZT15YZPyYbH7xnBRc7A8675875kVFjM9tr1o5U,2333
+django/contrib/gis/locale/ro/LC_MESSAGES/django.mo,sha256=brEMR8zmBMK6otF_kmR2IVuwM9UImo24vwSVUdRysAY,1829
+django/contrib/gis/locale/ro/LC_MESSAGES/django.po,sha256=EDdumoPfwMHckneEl4OROll5KwYL0ljdY-yJTUkK2JA,2242
+django/contrib/gis/locale/ru/LC_MESSAGES/django.mo,sha256=Beo_YLNtenVNPIyWB-KKMlbxeK0z4DIxhLNkAE8p9Ko,2542
+django/contrib/gis/locale/ru/LC_MESSAGES/django.po,sha256=GKPf50Wm3evmbOdok022P2YZxh-6ROKgDRLyxewPy1g,2898
+django/contrib/gis/locale/sk/LC_MESSAGES/django.mo,sha256=bws9O1h9u-ia1FraYJNIsRCf78_cSo9PNVo802hCMMQ,2043
+django/contrib/gis/locale/sk/LC_MESSAGES/django.po,sha256=DAAMn59_3-aTD8qimDetbY6GFqC311lTD3VOxz80xNQ,2375
+django/contrib/gis/locale/sl/LC_MESSAGES/django.mo,sha256=9-efMT2MoEMa5-SApGWTRiyfvI6vmZzLeMg7qGAr7_A,2067
+django/contrib/gis/locale/sl/LC_MESSAGES/django.po,sha256=foZY7N5QkuAQS7nc3CdnJerCPk-lhSb1xZqU11pNGNo,2303
+django/contrib/gis/locale/sq/LC_MESSAGES/django.mo,sha256=WEq6Bdd9fM_aRhWUBpl_qTc417U9708u9sXNgyB8o1k,1708
+django/contrib/gis/locale/sq/LC_MESSAGES/django.po,sha256=mAOImw7HYWDO2VuoHU-VAp08u5DM-BUC633Lhkc3vRk,2075
+django/contrib/gis/locale/sr/LC_MESSAGES/django.mo,sha256=cQzh-8YOz0FSIE0-BkeQHiqG6Tl4ArHvSN3yMXiaoec,2454
+django/contrib/gis/locale/sr/LC_MESSAGES/django.po,sha256=PQ3FYEidoV200w8WQBFsid7ULKZyGLzCjfCVUUPKWrk,2719
+django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=SASOtA8mOnMPxh1Lr_AC0yR82SqyTiPrlD8QmvYgG58,2044
+django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.po,sha256=BPkwFmsLHVN8jwjf1pqmrTXhxO0fgDzE0-C7QvaBeVg,2271
+django/contrib/gis/locale/sv/LC_MESSAGES/django.mo,sha256=qz5WD6-SV6IYc36G52EccYa6AdGq3_MO35vJjPj5tgA,1944
+django/contrib/gis/locale/sv/LC_MESSAGES/django.po,sha256=VHHxr5TBEBClbH_WosRk8J4vTvkQ0Fa0pbRdflVQlH4,2312
+django/contrib/gis/locale/sw/LC_MESSAGES/django.mo,sha256=uBhpGHluGwYpODTE-xhdJD2e6PHleN07wLE-kjrXr_M,1426
+django/contrib/gis/locale/sw/LC_MESSAGES/django.po,sha256=nHXQQMYYXT1ec3lIBxQIDIAwLtXucX47M4Cozy08kko,1889
+django/contrib/gis/locale/ta/LC_MESSAGES/django.mo,sha256=Rboo36cGKwTebe_MiW4bOiMsRO2isB0EAyJJcoy_F6s,466
+django/contrib/gis/locale/ta/LC_MESSAGES/django.po,sha256=sLYW8_5BSVoSLWUr13BbKRe0hNJ_cBMEtmjCPBdTlAk,1474
+django/contrib/gis/locale/te/LC_MESSAGES/django.mo,sha256=xDkaSztnzQ33Oc-GxHoSuutSIwK9A5Bg3qXEdEvo4h4,824
+django/contrib/gis/locale/te/LC_MESSAGES/django.po,sha256=nYryhktJumcwtZDGZ43xBxWljvdd-cUeBrAYFZOryVg,1772
+django/contrib/gis/locale/tg/LC_MESSAGES/django.mo,sha256=6Jyeaq1ORsnE7Ceh_rrhbfslFskGe12Ar-dQl6NFyt0,611
+django/contrib/gis/locale/tg/LC_MESSAGES/django.po,sha256=9c1zPt7kz1OaRJPPLdqjQqO8MT99KtS9prUvoPa9qJk,1635
+django/contrib/gis/locale/th/LC_MESSAGES/django.mo,sha256=0kekAr7eXc_papwPAxEZ3TxHOBg6EPzdR3q4hmAxOjg,1835
+django/contrib/gis/locale/th/LC_MESSAGES/django.po,sha256=WJPdoZjLfvepGGMhfBB1EHCpxtxxfv80lRjPG9kGErM,2433
+django/contrib/gis/locale/tr/LC_MESSAGES/django.mo,sha256=_bNVyXHbuyM42-fAsL99wW7_Hwu5hF_WD7FzY-yfS8k,1961
+django/contrib/gis/locale/tr/LC_MESSAGES/django.po,sha256=W0pxShIqMePnQvn_7zcY_q4_C1PCnWwFMastDo_gHd0,2242
+django/contrib/gis/locale/tt/LC_MESSAGES/django.mo,sha256=cGVPrWCe4WquVV77CacaJwgLSnJN0oEAepTzNMD-OWk,1470
+django/contrib/gis/locale/tt/LC_MESSAGES/django.po,sha256=98yeRs-JcMGTyizOpEuQenlnWJMYTR1-rG3HGhKCykk,2072
+django/contrib/gis/locale/udm/LC_MESSAGES/django.mo,sha256=I6bfLvRfMn79DO6bVIGfYSVeZY54N6c8BNO7OyyOOsw,462
+django/contrib/gis/locale/udm/LC_MESSAGES/django.po,sha256=B1PCuPYtNOrrhu4fKKJgkqxUrcEyifS2Y3kw-iTmSIk,1470
+django/contrib/gis/locale/uk/LC_MESSAGES/django.mo,sha256=Pnot1RDsNa4HYvy_6ZsFFMGhJ4JyEn6qWbDPPFUXDzg,2586
+django/contrib/gis/locale/uk/LC_MESSAGES/django.po,sha256=uJfVys_Tzi99yJ7F5IEbIDJTcM1MzCz2vpiVv_fVRmc,3090
+django/contrib/gis/locale/ur/LC_MESSAGES/django.mo,sha256=tB5tz7EscuE9IksBofNuyFjk89-h5X7sJhCKlIho5SY,1410
+django/contrib/gis/locale/ur/LC_MESSAGES/django.po,sha256=16m0t10Syv76UcI7y-EXfQHETePmrWX4QMVfyeuX1fQ,2007
+django/contrib/gis/locale/vi/LC_MESSAGES/django.mo,sha256=NT5T0FRCC2XINdtaCFCVUxb5VRv8ta62nE8wwSHGTrc,1384
+django/contrib/gis/locale/vi/LC_MESSAGES/django.po,sha256=y77GtqH5bv1wR78xN5JLHusmQzoENTH9kLf9Y3xz5xk,1957
+django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=g_8mpfbj-6HJ-g1PrFU2qTTfvCbztNcjDym_SegaI8Q,1812
+django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.po,sha256=MBJpb5IJxUaI2k0Hq8Q1GLXHJPFAA-S1w6NRjsmrpBw,2286
+django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=jEgcPJy_WzZa65-5rXb64tN_ehUku_yIj2d7tXwweP8,1975
+django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.po,sha256=iVnQKpbsQ4nJi65PHAO8uGRO6jhHWs22gTOUKPpb64s,2283
+django/contrib/gis/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/management/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/management/commands/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-310.pyc,,
+django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-310.pyc,,
+django/contrib/gis/management/commands/inspectdb.py,sha256=8WhDOBICFAbLFu7kwAAS4I5pNs_p1BrCv8GJYI3S49k,760
+django/contrib/gis/management/commands/ogrinspect.py,sha256=XnWAbLxRxTSvbKSvjgePN7D1o_Ep4qWkvMwVrG1TpYY,6071
+django/contrib/gis/measure.py,sha256=KieLLeQFsV23gnPzj1WoJvN5unOIK5v8QThgX0Rk4Sg,12557
+django/contrib/gis/ptr.py,sha256=NeIBB-plwO61wGOOxGg7fFyVXI4a5vbAGUdaJ_Fmjqo,1312
+django/contrib/gis/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/gis/serializers/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/serializers/__pycache__/geojson.cpython-310.pyc,,
+django/contrib/gis/serializers/geojson.py,sha256=XuElN-Sznbu8QvGrUq01DBrH0yNXpvN9o0y8donUb2g,2853
+django/contrib/gis/shortcuts.py,sha256=aa9zFjVU38qaEvRc0vAH_j2AgAERlI01rphYLHbc7Tg,1027
+django/contrib/gis/sitemaps/__init__.py,sha256=Tjj057omOVcoC5Fb8ITEYVhLm0HcVjrZ1Mbz_tKoD1A,138
+django/contrib/gis/sitemaps/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/sitemaps/__pycache__/kml.cpython-310.pyc,,
+django/contrib/gis/sitemaps/__pycache__/views.cpython-310.pyc,,
+django/contrib/gis/sitemaps/kml.py,sha256=CUn_KKVrwGg2ZmmDcWosBc0QFuJp8hHpeNRCcloVk1U,2573
+django/contrib/gis/sitemaps/views.py,sha256=AFV1ay-oFftFC-IszzeKz3JAGzE0TOCH8pN1cwtg7yI,2353
+django/contrib/gis/static/gis/css/ol3.css,sha256=pJADzfx4_NL2C1onFpU-muconAA5NThN4sEqSNyY_So,657
+django/contrib/gis/static/gis/img/draw_line_off.svg,sha256=6XW83xsR5-Guh27UH3y5UFn9y9FB9T_Zc4kSPA-xSOI,918
+django/contrib/gis/static/gis/img/draw_line_on.svg,sha256=Hx-pXu4ped11esG6YjXP1GfZC5q84zrFQDPUo1C7FGA,892
+django/contrib/gis/static/gis/img/draw_point_off.svg,sha256=PICrywZPwuBkaQAKxR9nBJ0AlfTzPHtVn_up_rSiHH4,803
+django/contrib/gis/static/gis/img/draw_point_on.svg,sha256=raGk3oc8w87rJfLdtZ4nIXJyU3OChCcTd4oH-XAMmmM,803
+django/contrib/gis/static/gis/img/draw_polygon_off.svg,sha256=gnVmjeZE2jOvjfyx7mhazMDBXJ6KtSDrV9f0nSzkv3A,981
+django/contrib/gis/static/gis/img/draw_polygon_on.svg,sha256=ybJ9Ww7-bsojKQJtjErLd2cCOgrIzyqgIR9QNhH_ZfA,982
+django/contrib/gis/static/gis/js/OLMapWidget.js,sha256=JN1naT0I9oXp5RL1oTCdAqoQYj61HFrRsU1gdkwJsV8,9127
+django/contrib/gis/templates/gis/admin/openlayers.html,sha256=41MtWKVz6IR-_-c0zIQi1hvA9wXpD-g5VDJdojkcMgE,1441
+django/contrib/gis/templates/gis/admin/openlayers.js,sha256=KoT3VUMAez9-5QoT5U6OJXzt3MLxlTrJMMwINjQ_k7M,8975
+django/contrib/gis/templates/gis/admin/osm.html,sha256=yvYyZPmgP64r1JT3eZCDun5ENJaaN3d3wbTdCxIOvSo,111
+django/contrib/gis/templates/gis/admin/osm.js,sha256=0wFRJXKZ2plp7tb0F9fgkMzp4NrKZXcHiMkKDJeHMRw,128
+django/contrib/gis/templates/gis/kml/base.kml,sha256=VYnJaGgFVHRzDjiFjbcgI-jxlUos4B4Z1hx_JeI2ZXU,219
+django/contrib/gis/templates/gis/kml/placemarks.kml,sha256=TEC81sDL9RK2FVeH0aFJTwIzs6_YWcMeGnHkACJV1Uc,360
+django/contrib/gis/templates/gis/openlayers-osm.html,sha256=TeiUqCjt73W8Hgrp_6zAtk_ZMBxskNN6KHSmnJ1-GD4,378
+django/contrib/gis/templates/gis/openlayers.html,sha256=-3V4Kgq6dGOAxEvcGfVS-MRKpbGdInJWDmJMJE30Fck,1753
+django/contrib/gis/utils/__init__.py,sha256=om0rPPBwSmvN4_BZpEkvpZqT44S0b7RCJpLAS2nI9-o,604
+django/contrib/gis/utils/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/gis/utils/__pycache__/layermapping.cpython-310.pyc,,
+django/contrib/gis/utils/__pycache__/ogrinfo.cpython-310.pyc,,
+django/contrib/gis/utils/__pycache__/ogrinspect.cpython-310.pyc,,
+django/contrib/gis/utils/__pycache__/srs.cpython-310.pyc,,
+django/contrib/gis/utils/layermapping.py,sha256=hSQ-sBvqD0Qy3_xhnOTYXa6puJDc7p20xn9LpHQGsew,28914
+django/contrib/gis/utils/ogrinfo.py,sha256=6m3KaRzLoZtQ0OSrpRkaFIQXi9YOXTkQcYeqYb0S0nw,1956
+django/contrib/gis/utils/ogrinspect.py,sha256=nxKd1cufjbP86uJcsaNb1c3n9IA-uy4ltQjLGgPjB1E,9169
+django/contrib/gis/utils/srs.py,sha256=UXsbxW0cQzdnPKO0d9E5K2HPdekdab5NaLZWNOUq-zk,2962
+django/contrib/gis/views.py,sha256=zdCV8QfUVfxEFGxESsUtCicsbSVtZNI_IXybdmsHKiM,714
+django/contrib/humanize/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/humanize/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/humanize/__pycache__/apps.cpython-310.pyc,,
+django/contrib/humanize/apps.py,sha256=LH3PTbB4V1gbBc8nmCw3BsSuA8La0fNOb4cSISvJAwI,194
+django/contrib/humanize/locale/af/LC_MESSAGES/django.mo,sha256=bNLjjeZ3H-KD_pm-wa1_5eLCDOmG2FXgDHVOg5vgL7o,5097
+django/contrib/humanize/locale/af/LC_MESSAGES/django.po,sha256=p3OduzjtTGkwlgDJhPgSm9aXI2sWzORspsPf7_RnWjs,8923
+django/contrib/humanize/locale/ar/LC_MESSAGES/django.mo,sha256=PokPfBR8w4AbRtNNabl5vO8r5E8_egHvFBjKp4CCvO4,7510
+django/contrib/humanize/locale/ar/LC_MESSAGES/django.po,sha256=QGW-kx-87DlPMGr5l_Eb6Ge-x4tkz2PuwHDe3EIkIQg,12326
+django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=NwCrL5FX_xdxYdqkW_S8tmU8ktDM8LqimmUvkt8me74,9155
+django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.po,sha256=tt0AxhohGX79OQ_lX1S5soIo-iSCC07SdAhPpy0O7Q4,15234
+django/contrib/humanize/locale/ast/LC_MESSAGES/django.mo,sha256=WvBk8V6g1vgzGqZ_rR-4p7SMh43PFnDnRhIS9HSwdoQ,3468
+django/contrib/humanize/locale/ast/LC_MESSAGES/django.po,sha256=S9lcUf2y5wR8Ufa-Rlz-M73Z3bMo7zji_63cXwtDK2I,5762
+django/contrib/humanize/locale/az/LC_MESSAGES/django.mo,sha256=h7H_-Y-3YiP_98cdIz953QFmQJq86bHfN-U5pXjQLg8,4345
+django/contrib/humanize/locale/az/LC_MESSAGES/django.po,sha256=prn_LypmpP3By-EYF3_DMXtjrn4o60fpMi-SC9uD8fE,7770
+django/contrib/humanize/locale/be/LC_MESSAGES/django.mo,sha256=7KyJKhNqMqv32CPdJi01RPLBefOVCQW-Gx6-Vf9JVrs,6653
+django/contrib/humanize/locale/be/LC_MESSAGES/django.po,sha256=2mbReEHyXhmZysqhSmaT6A2XCHn8mYb2R_O16TMGCAo,10666
+django/contrib/humanize/locale/bg/LC_MESSAGES/django.mo,sha256=jCdDIbqWlhOs-4gML44wSRIXJQxypfak6ByRG_reMsk,4823
+django/contrib/humanize/locale/bg/LC_MESSAGES/django.po,sha256=v2ih4-pL1cdDXaa3uXm9FxRjRKyULLGyz78Q91eKEG8,8267
+django/contrib/humanize/locale/bn/LC_MESSAGES/django.mo,sha256=jbL4ucZxxtexI10jgldtgnDie3I23XR3u-PrMMMqP6U,4026
+django/contrib/humanize/locale/bn/LC_MESSAGES/django.po,sha256=0l4yyy7q3OIWyFk_PW0y883Vw2Pmu48UcnLM9OBxB68,6545
+django/contrib/humanize/locale/br/LC_MESSAGES/django.mo,sha256=V_tPVAyQzVdDwWPNlVGWmlVJjmVZfbh35alkwsFlCNU,5850
+django/contrib/humanize/locale/br/LC_MESSAGES/django.po,sha256=BcAqEV2JpF0hiCQDttIMblp9xbB7zoHsmj7fJFV632k,12245
+django/contrib/humanize/locale/bs/LC_MESSAGES/django.mo,sha256=1-RNRHPgZR_9UyiEn9Djp4mggP3fywKZho45E1nGMjM,1416
+django/contrib/humanize/locale/bs/LC_MESSAGES/django.po,sha256=M017Iu3hyXmINZkhCmn2he-FB8rQ7rXN0KRkWgrp7LI,5498
+django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo,sha256=WDvXis2Y1ivSq6NdJgddO_WKbz8w5MpVpkT4sq-pWXI,4270
+django/contrib/humanize/locale/ca/LC_MESSAGES/django.po,sha256=AD3h2guGADdp1f9EcbP1vc1lmfDOL8-1qQfwvXa6I04,7731
+django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo,sha256=VFyZcn19aQUXhVyh2zo2g3PAuzOO38Kx9fMFOCCxzMc,5479
+django/contrib/humanize/locale/cs/LC_MESSAGES/django.po,sha256=mq3LagwA9hyWOGy76M9n_rD4p3wuVk6oQsneB9CF99w,9527
+django/contrib/humanize/locale/cy/LC_MESSAGES/django.mo,sha256=VjJiaUUhvX9tjOEe6x2Bdp7scvZirVcUsA4-iE2-ElQ,5241
+django/contrib/humanize/locale/cy/LC_MESSAGES/django.po,sha256=sylmceSq-NPvtr_FjklQXoBAfueKu7hrjEpMAsVbQC4,7813
+django/contrib/humanize/locale/da/LC_MESSAGES/django.mo,sha256=vfDHopmWFAomwqmmCX3wfmX870-zzVbgUFC6I77n9tE,4316
+django/contrib/humanize/locale/da/LC_MESSAGES/django.po,sha256=v7Al6UOkbYB1p7m8kOe-pPRIAoyWemoyg_Pm9bD5Ldc,7762
+django/contrib/humanize/locale/de/LC_MESSAGES/django.mo,sha256=aOUax9csInbXnjAJc3jq4dcW_9H-6ueVI-TtKz2b9q0,4364
+django/contrib/humanize/locale/de/LC_MESSAGES/django.po,sha256=gW3OfOfoVMvpVudwghKCYztkLrCIPbbcriZjBNnRyGo,7753
+django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo,sha256=OVKcuW9ZXosNvP_3A98WsIIk_Jl6U_kv3zOx4pvwh-g,5588
+django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po,sha256=VimcsmobK3VXTbbTasg6osWDPOIZ555uimbUoUfNco4,9557
+django/contrib/humanize/locale/el/LC_MESSAGES/django.mo,sha256=o-yjhpzyGRbbdMzwUcG_dBP_FMEMZevm7Wz1p4Wd-pg,6740
+django/contrib/humanize/locale/el/LC_MESSAGES/django.po,sha256=UbD5QEw_-JNoNETaOyDfSReirkRsHnlHeSsZF5hOSkI,10658
+django/contrib/humanize/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/humanize/locale/en/LC_MESSAGES/django.po,sha256=7CzW7XKCntUjZon7-mQU_Z2UX9XReoQ8IsjojNowG1w,9050
+django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.mo,sha256=QFf4EgAsGprbFetnwogmj8vDV7SfGq1E3vhL9D8xTTM,918
+django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.po,sha256=Bnfesr1_T9sa31qkKOMunwKKXbnFzZJhzV8rYC_pdSE,6532
+django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.mo,sha256=mkx192XQM3tt1xYG8EOacMfa-BvgzYCbSsJQsWZGeAo,3461
+django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.po,sha256=MArKzXxY1104jxaq3kvDZs2WzOGYxicfJxFKsLzFavw,5801
+django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo,sha256=b47HphXBi0cax_reCZiD3xIedavRHcH2iRG8pcwqb54,5386
+django/contrib/humanize/locale/eo/LC_MESSAGES/django.po,sha256=oN1YqOZgxKY3L1a1liluhM6X5YA5bawg91mHF_Vfqx8,9095
+django/contrib/humanize/locale/es/LC_MESSAGES/django.mo,sha256=F9UaraI_lUDFSv9etjKWY39bA53FZql4n9qlpXCq4pw,4409
+django/contrib/humanize/locale/es/LC_MESSAGES/django.po,sha256=IwonvoL51Wk6UyzqzDlyS3pq3I9aZA31FjfS7alKT9o,8015
+django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo,sha256=-btiXH3B5M1qkAsW9D5I742Gt9GcJs5VC8ZhJ_DKkGY,4425
+django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po,sha256=UsiuRj-eq-Vl41wNZGw9XijCMEmcXhcGrMTPWgZn4LA,7858
+django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.mo,sha256=2GhQNtNOjK5mTov5RvnuJFTYbdoGBkDGLxzvJ8Vsrfs,4203
+django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.po,sha256=JBf2fHO8jWi6dFdgZhstKXwyot_qT3iJBixQZc3l330,6326
+django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.mo,sha256=82DL2ztdq10X5RIceshK1nO99DW5628ZIjaN8Xzp9ok,3939
+django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.po,sha256=-O7AQluA5Kce9-bd04GN4tfQKoCxb8Sa7EZR6TZBCdM,6032
+django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.mo,sha256=cJECzKpD99RRIpVFKQW65x0Nvpzrm5Fuhfi-nxOWmkM,942
+django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.po,sha256=tDdYtvRILgeDMgZqKHSebe7Z5ZgI1bZhDdvGVtj_anM,4832
+django/contrib/humanize/locale/et/LC_MESSAGES/django.mo,sha256=_vLDxD-e-pBY7vs6gNkhFZNGYu_dAeETVMKGsjjWOHg,4406
+django/contrib/humanize/locale/et/LC_MESSAGES/django.po,sha256=u0tSkVYckwXUv1tVfe1ODdZ8tJ2wUkS0Vv8pakJ8eBM,7915
+django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo,sha256=k_3NJUSo2JS5OZeQmGuCx0PEa_Xy1DvKIknoSv5EhWo,4312
+django/contrib/humanize/locale/eu/LC_MESSAGES/django.po,sha256=YuD0UCpc-tE1l1MS4gLLgDXhWGoEH6b2JYkgCZyAPds,7733
+django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo,sha256=N32l1DsPALoSGe9GtJ5baIo0XUDm8U09JhcHr0lXtw4,4656
+django/contrib/humanize/locale/fa/LC_MESSAGES/django.po,sha256=YsYRnmvABepSAOgEj6dRvdY_jYZqJb0_dbQ_6daiJAQ,8228
+django/contrib/humanize/locale/fi/LC_MESSAGES/django.mo,sha256=FJfyLFkz-oAz9e15e1aQUct7CJ2EJqSkZKh_ztDxtic,4425
+django/contrib/humanize/locale/fi/LC_MESSAGES/django.po,sha256=j5Z5t9zX1kePdM_Es1hu9AKOpOrijVWTsS2t19CIiaE,7807
+django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo,sha256=dZ3JfZyUIqicd2hsit9QOW_2CA2XgpKQgJQ5G3MbrC4,4484
+django/contrib/humanize/locale/fr/LC_MESSAGES/django.po,sha256=z-rfIbTRVEiYaD_kssNLvMFiINveBAq070-YanuL_hw,7872
+django/contrib/humanize/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
+django/contrib/humanize/locale/fy/LC_MESSAGES/django.po,sha256=pPvcGgBWiZwQ5yh30OlYs-YZUd_XsFro71T9wErVv0M,4732
+django/contrib/humanize/locale/ga/LC_MESSAGES/django.mo,sha256=AOEiBNOak_KQkBeGyUpTNO12zyg3CiK66h4kMoS15_0,5112
+django/contrib/humanize/locale/ga/LC_MESSAGES/django.po,sha256=jTXihbd-ysAUs0TEKkOBmXJJj69V0cFNOHM6VbcPCWw,11639
+django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo,sha256=wHsBVluXm4DW7iWxGHMHexqG9ovXEvgcaXvsmvkNHSE,5838
+django/contrib/humanize/locale/gd/LC_MESSAGES/django.po,sha256=CmmpKK7me-Ujitgx2IVkOcJyZOvie6XEBS7wCY4xZQ0,9802
+django/contrib/humanize/locale/gl/LC_MESSAGES/django.mo,sha256=ChoVHsJ_bVIaHtHxhxuUK99Zu1tvRu0iY5vhtB1LDMg,3474
+django/contrib/humanize/locale/gl/LC_MESSAGES/django.po,sha256=U5D505aBKEdg80BGWddcwWuzmYdoNHx1WEPzVHQfbTE,5903
+django/contrib/humanize/locale/he/LC_MESSAGES/django.mo,sha256=phFZMDohKT86DUtiAlnZslPFwSmpcpxTgZaXb8pGohc,5875
+django/contrib/humanize/locale/he/LC_MESSAGES/django.po,sha256=xhEZYcK-fg_mHMyGCEZXEwbd6FvutaGvkDyHTET-sic,9970
+django/contrib/humanize/locale/hi/LC_MESSAGES/django.mo,sha256=qrzm-6vXIUsxA7nOxa-210-6iO-3BPBj67vKfhTOPrY,4131
+django/contrib/humanize/locale/hi/LC_MESSAGES/django.po,sha256=BrypbKaQGOyY_Gl1-aHXiBVlRqrbSjGfZ2OK8omj_9M,6527
+django/contrib/humanize/locale/hr/LC_MESSAGES/django.mo,sha256=29XTvFJHex31hbu2qsOfl5kOusz-zls9eqlxtvw_H0s,1274
+django/contrib/humanize/locale/hr/LC_MESSAGES/django.po,sha256=OuEH4fJE6Fk-s0BMqoxxdlUAtndvvKK7N8Iy-9BP3qA,5424
+django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo,sha256=a1DqdiuRfFSfSrD8IvzQmZdzE0dhkxDChFddrmt3fjA,5679
+django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po,sha256=V5aRblcqKii4RXSQO87lyoQwwvxL59T3m4-KOBTx4bc,9648
+django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo,sha256=8tEqiZHEc6YmfWjf7hO0Fb3Xd-HSleKaR1gT_XFTQ8g,5307
+django/contrib/humanize/locale/hu/LC_MESSAGES/django.po,sha256=KDVYBAGSuMrtwqO98-oGOOAp7Unfm7ode1sv8lfe81c,9124
+django/contrib/humanize/locale/hy/LC_MESSAGES/django.mo,sha256=C1yx1DrYTrZ7WkOzZ5hvunphWABvGX-DqXbChNQ5_yg,1488
+django/contrib/humanize/locale/hy/LC_MESSAGES/django.po,sha256=MGbuYylBt1C5hvSlktydD4oMLZ1Sjzj7DL_nl7uluTg,7823
+django/contrib/humanize/locale/ia/LC_MESSAGES/django.mo,sha256=d0m-FddFnKp08fQYQSC9Wr6M4THVU7ibt3zkIpx_Y_A,4167
+django/contrib/humanize/locale/ia/LC_MESSAGES/django.po,sha256=qX6fAZyn54hmtTU62oJcHF8p4QcYnoO2ZNczVjvjOeE,6067
+django/contrib/humanize/locale/id/LC_MESSAGES/django.mo,sha256=AdUmhfkQOV9Le4jXQyQSyd5f2GqwNt-oqnJV-WVELVw,3885
+django/contrib/humanize/locale/id/LC_MESSAGES/django.po,sha256=lMnTtM27j1EWg1i9d7NzAeueo7mRztGVfNOXtXdZVjw,7021
+django/contrib/humanize/locale/io/LC_MESSAGES/django.mo,sha256=nMu5JhIy8Fjie0g5bT8-h42YElCiS00b4h8ej_Ie-w0,464
+django/contrib/humanize/locale/io/LC_MESSAGES/django.po,sha256=RUs8JkpT0toKOLwdv1oCbcBP298EOk02dkdNSJiC-_A,4720
+django/contrib/humanize/locale/is/LC_MESSAGES/django.mo,sha256=D6ElUYj8rODRsZwlJlH0QyBSM44sVmuBCNoEkwPVxko,3805
+django/contrib/humanize/locale/is/LC_MESSAGES/django.po,sha256=1VddvtkhsK_5wmpYIqEFqFOo-NxIBnL9wwW74Tw9pbw,8863
+django/contrib/humanize/locale/it/LC_MESSAGES/django.mo,sha256=oFaOtzqH0RFuybF1bPI_IZ23YaPVYAvaW-SbNuS4DPU,4653
+django/contrib/humanize/locale/it/LC_MESSAGES/django.po,sha256=nBU8lS9dAIPJuY3vfKkY_Jgkt7ZawnOtor8IZvEIkYU,8342
+django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo,sha256=x8AvfUPBBJkGtE0jvAP4tLeZEByuyo2H4V_UuLoCEmw,3907
+django/contrib/humanize/locale/ja/LC_MESSAGES/django.po,sha256=G2yTPZq6DxgzPV5uJ6zvMK4o3aiuLWbl4vXPH7ylUhc,6919
+django/contrib/humanize/locale/ka/LC_MESSAGES/django.mo,sha256=UeUbonYTkv1d2ljC0Qj8ZHw-59zHu83fuMvnME9Fkmw,4878
+django/contrib/humanize/locale/ka/LC_MESSAGES/django.po,sha256=-eAMexwjm8nSB4ARJU3f811UZnuatHKIFf8FevpJEpo,9875
+django/contrib/humanize/locale/kk/LC_MESSAGES/django.mo,sha256=jujbUM0jOpt3Mw8zN4LSIIkxCJ0ihk_24vR0bXoux78,2113
+django/contrib/humanize/locale/kk/LC_MESSAGES/django.po,sha256=hjZg_NRE9xMA5uEa2mVSv1Hr4rv8inG9es1Yq7uy9Zc,8283
+django/contrib/humanize/locale/km/LC_MESSAGES/django.mo,sha256=mfXs9p8VokORs6JqIfaSSnQshZEhS90rRFhOIHjW7CI,459
+django/contrib/humanize/locale/km/LC_MESSAGES/django.po,sha256=JQBEHtcy-hrV_GVWIjvUJyOf3dZ5jUzzN8DUTAbHKUg,4351
+django/contrib/humanize/locale/kn/LC_MESSAGES/django.mo,sha256=Oq3DIPjgCqkn8VZMb6ael7T8fQ7LnWobPPAZKQSFHl4,461
+django/contrib/humanize/locale/kn/LC_MESSAGES/django.po,sha256=CAJ0etMlQF3voPYrxIRr5ChAwUYO7wI42n5kjpIEVjA,4359
+django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo,sha256=mWmQEoe0MNVn3sNqsz6CBc826x3KIpOL53ziv6Ekf7c,3891
+django/contrib/humanize/locale/ko/LC_MESSAGES/django.po,sha256=UUxIUYM332DOZinJrqOUtQvHfCCHkodFhENDVWj3dpk,7003
+django/contrib/humanize/locale/ky/LC_MESSAGES/django.mo,sha256=jDu1bVgJMDpaZ0tw9-wdkorvZxDdRzcuzdeC_Ot7rUs,4177
+django/contrib/humanize/locale/ky/LC_MESSAGES/django.po,sha256=MEHbKMLIiFEG7BlxsNVF60viXSnlk5iqlFCH3hgamH0,7157
+django/contrib/humanize/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
+django/contrib/humanize/locale/lb/LC_MESSAGES/django.po,sha256=_y0QFS5Kzx6uhwOnzmoHtCrbufMrhaTLsHD0LfMqtcM,4730
+django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo,sha256=O0C-tPhxWNW5J4tCMlB7c7shVjNO6dmTURtIpTVO9uc,7333
+django/contrib/humanize/locale/lt/LC_MESSAGES/django.po,sha256=M5LlRxC1KWh1-3fwS93UqTijFuyRENmQJXfpxySSKik,12086
+django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo,sha256=3gEzmKBtYsFz9wvLw0ltiir91CDLxhK3IG2j55-uM7Y,5033
+django/contrib/humanize/locale/lv/LC_MESSAGES/django.po,sha256=yfeBxpH2J49xHDzZUZI3cK5ms4QbWq0gtTmhj8ejAjE,8836
+django/contrib/humanize/locale/mk/LC_MESSAGES/django.mo,sha256=htUgd6rcaeRPDf6UrEb18onz-Ayltw9LTvWRgEkXm08,4761
+django/contrib/humanize/locale/mk/LC_MESSAGES/django.po,sha256=Wl9Rt8j8WA_0jyxKCswIovSiCQD-ZWFYXbhFsCUKIWo,6665
+django/contrib/humanize/locale/ml/LC_MESSAGES/django.mo,sha256=5As-FXkEJIYetmV9dMtzLtsRPTOm1oUgyx-oeTH_guY,4655
+django/contrib/humanize/locale/ml/LC_MESSAGES/django.po,sha256=I9_Ln0C1nSj188_Zdq9Vy6lC8aLzg_YdNc5gy9hNGjE,10065
+django/contrib/humanize/locale/mn/LC_MESSAGES/django.mo,sha256=gi-b-GRPhg2s2O9wP2ENx4bVlgHBo0mSqoi58d_QpCw,6020
+django/contrib/humanize/locale/mn/LC_MESSAGES/django.po,sha256=0zV7fYPu6xs_DVOCUQ6li36JWOnpc-RQa0HXwo7FrWc,9797
+django/contrib/humanize/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
+django/contrib/humanize/locale/mr/LC_MESSAGES/django.po,sha256=M44sYiBJ7woVZZlDO8rPDQmS_Lz6pDTCajdheyxtdaI,4724
+django/contrib/humanize/locale/ms/LC_MESSAGES/django.mo,sha256=Bcictup-1bGKm0FIa3CeGNvrHg8VyxsqUHzWI7UMscs,3839
+django/contrib/humanize/locale/ms/LC_MESSAGES/django.po,sha256=UQEUC2iZxhtrWim96GaEK1VAKxAC0fTQIghg4Zx4R3Q,6774
+django/contrib/humanize/locale/my/LC_MESSAGES/django.mo,sha256=55CWHz34sy9k6TfOeVI9GYvE9GRa3pjSRE6DSPk9uQ8,3479
+django/contrib/humanize/locale/my/LC_MESSAGES/django.po,sha256=jCiDhSqARfqKcMLEHJd-Xe6zo3Uc9QpiCh3BbAAA5UE,5433
+django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo,sha256=ZQ8RSlS3DXBHmpjZrZza9FPSxb1vDBN87g87dRbGMkQ,5317
+django/contrib/humanize/locale/nb/LC_MESSAGES/django.po,sha256=fpfJStyZSHz0A6fVoRSOs_NKcUGo9fFKmXme4yll62s,9134
+django/contrib/humanize/locale/ne/LC_MESSAGES/django.mo,sha256=YFT2D-yEkUdJBO2GfuUowau1OZQA5mS86CZvMzH38Rk,3590
+django/contrib/humanize/locale/ne/LC_MESSAGES/django.po,sha256=SN7yH65hthOHohnyEmQUjXusRTDRjxWJG_kuv5g2Enk,9038
+django/contrib/humanize/locale/nl/LC_MESSAGES/django.mo,sha256=RxwgVgdHvfFirimjPrpDhzqmI1Z9soDC--raoAzgBkw,4311
+django/contrib/humanize/locale/nl/LC_MESSAGES/django.po,sha256=M7dVQho17p71Ud6imsQLGMiBisLrVNEZNP4ufpkEJnM,7872
+django/contrib/humanize/locale/nn/LC_MESSAGES/django.mo,sha256=wyJDAGJWgvyBYZ_-UQnBQ84-Jelk5forKfk7hMFDGpQ,4336
+django/contrib/humanize/locale/nn/LC_MESSAGES/django.po,sha256=zuKg53XCX-C6Asc9M04BKZVVw1X6u5p5hvOXxc0AXnM,7651
+django/contrib/humanize/locale/os/LC_MESSAGES/django.mo,sha256=BwS3Mj7z_Fg5s7Qm-bGLVhzYLZ8nPgXoB0gXLnrMGWc,3902
+django/contrib/humanize/locale/os/LC_MESSAGES/django.po,sha256=CGrxyL5l-5HexruOc7QDyRbum7piADf-nY8zjDP9wVM,6212
+django/contrib/humanize/locale/pa/LC_MESSAGES/django.mo,sha256=TH1GkAhaVVLk2jrcqAmdxZprWyikAX6qMP0eIlr2tWM,1569
+django/contrib/humanize/locale/pa/LC_MESSAGES/django.po,sha256=_7oP0Hn-IU7IPLv_Qxg_wstLEdhgWNBBTCWYwSycMb0,5200
+django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo,sha256=0QheMbF3Y0Q_sxZlN2wAYJRQyK3K_uq6ttVr7wCc33w,5596
+django/contrib/humanize/locale/pl/LC_MESSAGES/django.po,sha256=6wX50O68aIyKiP6CcyLMXZ3xuUnAzasFPIg_8deJQBY,9807
+django/contrib/humanize/locale/pt/LC_MESSAGES/django.mo,sha256=El9Sdr3kXS-yTol_sCg1dquxf0ThDdWyrWGjjim9Dj4,5408
+django/contrib/humanize/locale/pt/LC_MESSAGES/django.po,sha256=XudOc67ybF_fminrTR2XOCKEKwqB5FX14pl3clCNXGE,9281
+django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo,sha256=QSVNqVd8kUwoX5EO_BBMHyaQZxp9PlrMk1HE7A6qxxs,4436
+django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po,sha256=85lZE7uCCyDXZ_yQYeslIWgVG-ErNWQPWnE-eX60mH8,7985
+django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo,sha256=vP6o72bsgKPsbKGwH0PU8Xyz9BnQ_sPWT3EANLT2wRk,6188
+django/contrib/humanize/locale/ro/LC_MESSAGES/django.po,sha256=JZiW6Y9P5JdQe4vgCvcFg35kFa8bSX0lU_2zdeudQP0,10575
+django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo,sha256=tkKePMXIA1h_TXxXmB2m-QbelTteNKEc5-SEzs7u6FM,8569
+django/contrib/humanize/locale/ru/LC_MESSAGES/django.po,sha256=fXkT7XpiU2_wmnR1__QCxIdndI2M3ssNus8rMM-TSOw,13609
+django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo,sha256=uUeDN0iYDq_3vT3NcTOTpKCGcv2ner5WtkIk6GVIsu0,6931
+django/contrib/humanize/locale/sk/LC_MESSAGES/django.po,sha256=cwmpA5EbD4ZE8aK0I1enRE_4RVbtfp1HQy0g1n_IYAE,11708
+django/contrib/humanize/locale/sl/LC_MESSAGES/django.mo,sha256=f_07etc_G4OdYiUBKPkPqKm2iINqXoNsHUi3alUBgeo,5430
+django/contrib/humanize/locale/sl/LC_MESSAGES/django.po,sha256=mleF0fvn0oEfszhGLoaQkWofTwZJurKrJlIH8o-6kAI,8166
+django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo,sha256=1XXRe0nurGUUxI7r7gbSIuluRuza7VOeNdkIVX3LIFU,5280
+django/contrib/humanize/locale/sq/LC_MESSAGES/django.po,sha256=BS-5o3aG8Im9dWTkx4E_IbbeTRFcjjohinz1823ZepI,9127
+django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo,sha256=kBcoXTmJJlXEOk2M3l-k0PisT2jN_jXXhcOdPLBAiUY,5415
+django/contrib/humanize/locale/sr/LC_MESSAGES/django.po,sha256=u9ECn0qC8OPkHC9n10rljZc1vxed10eI0OOG7iPyA2w,9055
+django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=Z4hRzn0ks-vAj2ia4ovbsv00pOoZ973jRThbtlLKe5U,1017
+django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.po,sha256=T9CYAx-KhtXwrlY4ol3hFv8dzxyJ1FTqeMBgtjYMEj8,6875
+django/contrib/humanize/locale/sv/LC_MESSAGES/django.mo,sha256=7OABdxvdZvKB9j1o99UiecoTXaVGn3XmXnU5xCNov8s,4333
+django/contrib/humanize/locale/sv/LC_MESSAGES/django.po,sha256=71tFrQzwtwzYfeC2BG0v8dZNkSEMbM-tAC5_z2AElLM,7876
+django/contrib/humanize/locale/sw/LC_MESSAGES/django.mo,sha256=cxjSUqegq1JX08xIAUgqq9ByP-HuqaXuxWM8Y2gHdB4,4146
+django/contrib/humanize/locale/sw/LC_MESSAGES/django.po,sha256=bPYrLJ2yY_lZ3y1K-RguNi-qrxq2r-GLlsz1gZcm2A8,6031
+django/contrib/humanize/locale/ta/LC_MESSAGES/django.mo,sha256=1X2vH0iZOwM0uYX9BccJUXqK-rOuhcu5isRzMpnjh2o,466
+django/contrib/humanize/locale/ta/LC_MESSAGES/django.po,sha256=8x1lMzq2KOJveX92ADSuqNmXGIEYf7fZ1JfIJPysS04,4722
+django/contrib/humanize/locale/te/LC_MESSAGES/django.mo,sha256=iKd4dW9tan8xPxgaSoenIGp1qQpvSHHXUw45Tj2ATKQ,1327
+django/contrib/humanize/locale/te/LC_MESSAGES/django.po,sha256=FQdjWKMsiv-qehYZ4AtN9iKRf8Rifzcm5TZzMkQVfQI,5103
+django/contrib/humanize/locale/tg/LC_MESSAGES/django.mo,sha256=1Fiqat0CZSyExRXRjRCBS0AFzwy0q1Iba-2RVnrXoZQ,1580
+django/contrib/humanize/locale/tg/LC_MESSAGES/django.po,sha256=j2iczgQDbqzpthKAAlMt1Jk7gprYLqZ1Ya0ASr2SgD0,7852
+django/contrib/humanize/locale/th/LC_MESSAGES/django.mo,sha256=jT7wGhYWP9HHwOvtr2rNPStiOgZW-rGMcO36w1U8Y4c,3709
+django/contrib/humanize/locale/th/LC_MESSAGES/django.po,sha256=ZO3_wU7z0VASS5E8RSLEtmTveMDjJ0O8QTynb2-jjt0,8318
+django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo,sha256=D4ChMLE1Uz921NIF_Oe1vNkYAGfRpQuC8xANFwtlygE,4319
+django/contrib/humanize/locale/tr/LC_MESSAGES/django.po,sha256=4PjW65seHF9SsWnLv47JhgYPt0Gvzr-7_Ejech3d3ak,7754
+django/contrib/humanize/locale/tt/LC_MESSAGES/django.mo,sha256=z8VgtMhlfyDo7bERDfrDmcYV5aqOeBY7LDgqa5DRxDM,3243
+django/contrib/humanize/locale/tt/LC_MESSAGES/django.po,sha256=j_tRbg1hzLBFAmPQt0HoN-_WzWFtA07PloCkqhvNkcY,5201
+django/contrib/humanize/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
+django/contrib/humanize/locale/udm/LC_MESSAGES/django.po,sha256=AR55jQHmMrbA6RyHGOtqdvUtTFlxWnqvfMy8vZK25Bo,4354
+django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo,sha256=wQOJu-zKyuCazul-elFLZc-iKw2Zea7TGb90OVGZYkQ,6991
+django/contrib/humanize/locale/uk/LC_MESSAGES/django.po,sha256=hxEufGt-NOgSFc5T9OzxCibcfqkhWD7zxhQljoUQssQ,11249
+django/contrib/humanize/locale/ur/LC_MESSAGES/django.mo,sha256=MF9uX26-4FFIz-QpDUbUHUNLQ1APaMLQmISMIaPsOBE,1347
+django/contrib/humanize/locale/ur/LC_MESSAGES/django.po,sha256=D5UhcPEcQ16fsBEdkk_zmpjIF6f0gEv0P86z_pK_1eA,5015
+django/contrib/humanize/locale/uz/LC_MESSAGES/django.mo,sha256=HDah_1qqUz5m_ABBVIEML3WMR2xyomFckX82i6b3n4k,1915
+django/contrib/humanize/locale/uz/LC_MESSAGES/django.po,sha256=Ql3GZOhuoVgS0xHEzxjyYkOWQUyi_jiizfAXBp2Y4uw,7296
+django/contrib/humanize/locale/vi/LC_MESSAGES/django.mo,sha256=ZUK_Na0vnfdhjo0MgnBWnGFU34sxcMf_h0MeyuysKG8,3646
+django/contrib/humanize/locale/vi/LC_MESSAGES/django.po,sha256=DzRpXObt9yP5RK_slWruaIhnVI0-JXux2hn_uGsVZiE,5235
+django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=YgeAjXHMV1rXNNIrlDu_haxnKB0hxU5twJ86LMR10k8,3844
+django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.po,sha256=JGfRVW_5UqwyI2mK_WRK8xDPzwBAO2q_mGsGzf89a88,7122
+django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=qYO9_rWuIMxnlL9Q8V9HfhUu7Ebv1HGOlvsnh7MvZkE,4520
+django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.po,sha256=AijEfvIlJK9oVaLJ7lplmbvhGRKIbYcLh8WxoBYoQkA,7929
+django/contrib/humanize/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/humanize/templatetags/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/humanize/templatetags/__pycache__/humanize.cpython-310.pyc,,
+django/contrib/humanize/templatetags/humanize.py,sha256=FuOhGLO0OS2KT0DgMgnOwllCwVSpwIvrOiCmku-W_fg,12085
+django/contrib/messages/__init__.py,sha256=6myQIwIFgc3SAyH5P1soIjwELREVgbxgxP85fJcge04,106
+django/contrib/messages/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/messages/__pycache__/api.cpython-310.pyc,,
+django/contrib/messages/__pycache__/apps.cpython-310.pyc,,
+django/contrib/messages/__pycache__/constants.cpython-310.pyc,,
+django/contrib/messages/__pycache__/context_processors.cpython-310.pyc,,
+django/contrib/messages/__pycache__/middleware.cpython-310.pyc,,
+django/contrib/messages/__pycache__/utils.cpython-310.pyc,,
+django/contrib/messages/__pycache__/views.cpython-310.pyc,,
+django/contrib/messages/api.py,sha256=3DbnVG5oOBdg499clMU8l2hxCXMXB6S03-HCKVuBXjA,3250
+django/contrib/messages/apps.py,sha256=mepKl1mUA44s4aiIlQ20SnO5YYFTRYcKC432NKnL8jI,542
+django/contrib/messages/constants.py,sha256=JD4TpaR4C5G0oxIh4BmrWiVmCACv7rnVgZSpJ8Rmzeg,312
+django/contrib/messages/context_processors.py,sha256=xMrgYeX6AcT_WwS9AYKNDDstbvAwE7_u1ssDVLN_bbg,354
+django/contrib/messages/middleware.py,sha256=2mxncCpJVUgLtjouUGSVl39mTF-QskQpWo2jCOOqV8A,986
+django/contrib/messages/storage/__init__.py,sha256=gXDHbQ9KgQdfhYOla9Qj59_SlE9WURQiKzIA0cFH0DQ,392
+django/contrib/messages/storage/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/messages/storage/__pycache__/base.cpython-310.pyc,,
+django/contrib/messages/storage/__pycache__/cookie.cpython-310.pyc,,
+django/contrib/messages/storage/__pycache__/fallback.cpython-310.pyc,,
+django/contrib/messages/storage/__pycache__/session.cpython-310.pyc,,
+django/contrib/messages/storage/base.py,sha256=sVkSITZRsdYDvyaS5tqjcw8-fylvcbZpR4ctlpWI5bM,5820
+django/contrib/messages/storage/cookie.py,sha256=wxGdxUbklpS6J3HXW_o-VC9cTyxbptyIxTlrxZObkIM,6344
+django/contrib/messages/storage/fallback.py,sha256=K5CrVJfUDakMjIcqSRt1WZd_1Xco1Bc2AQM3O3ld9aA,2093
+django/contrib/messages/storage/session.py,sha256=kvdVosbBAvI3XBA0G4AFKf0vxLleyzlwbGEgl60DfMQ,1764
+django/contrib/messages/utils.py,sha256=_oItQILchdwdXH08SIyZ-DBdYi7q_uobHQajWwmAeUw,256
+django/contrib/messages/views.py,sha256=I_7C4yr-YLkhTEWx3iuhixG7NrKuyuSDG_CVg-EYRD8,524
+django/contrib/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/postgres/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/apps.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/constraints.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/expressions.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/functions.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/indexes.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/lookups.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/operations.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/search.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/serializers.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/signals.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/utils.cpython-310.pyc,,
+django/contrib/postgres/__pycache__/validators.cpython-310.pyc,,
+django/contrib/postgres/aggregates/__init__.py,sha256=QCznqMKqPbpraxSi1Y8-B7_MYlL42F1kEWZ1HeLgTKs,65
+django/contrib/postgres/aggregates/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/postgres/aggregates/__pycache__/general.cpython-310.pyc,,
+django/contrib/postgres/aggregates/__pycache__/mixins.cpython-310.pyc,,
+django/contrib/postgres/aggregates/__pycache__/statistics.cpython-310.pyc,,
+django/contrib/postgres/aggregates/general.py,sha256=pkp1uyn2JryyHhYq6cvMffjBwmkMtn99fotA8Fg85fY,3380
+django/contrib/postgres/aggregates/mixins.py,sha256=mZqUnHRbI37ls8FWn9KPaL65J3viOHViRUhQ5hooGz0,1033
+django/contrib/postgres/aggregates/statistics.py,sha256=xSWk5Z5ZVpM2LSaMgP97pxcijOnPHiPATe3X45poXCI,1511
+django/contrib/postgres/apps.py,sha256=QaWNrPxKquKapjfmSOWxe7NhaohSJrcRYiUQlFH7OlY,3487
+django/contrib/postgres/constraints.py,sha256=B0gpGn2e4UgVVwn3NIb7wLRUwSrWuMM7xcCUSHlPh1M,10479
+django/contrib/postgres/expressions.py,sha256=fo5YASHJtIjexadqskuhYYk4WutofxzymYsivWWJS84,405
+django/contrib/postgres/fields/__init__.py,sha256=Xo8wuWPwVNOkKY-EwV9U1zusQ2DjMXXtL7_8R_xAi5s,148
+django/contrib/postgres/fields/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/postgres/fields/__pycache__/array.cpython-310.pyc,,
+django/contrib/postgres/fields/__pycache__/citext.cpython-310.pyc,,
+django/contrib/postgres/fields/__pycache__/hstore.cpython-310.pyc,,
+django/contrib/postgres/fields/__pycache__/jsonb.cpython-310.pyc,,
+django/contrib/postgres/fields/__pycache__/ranges.cpython-310.pyc,,
+django/contrib/postgres/fields/__pycache__/utils.cpython-310.pyc,,
+django/contrib/postgres/fields/array.py,sha256=M6oR4upd4OgIaUqge7TJtZbL5eoGxXlVUBUKlOJpZjA,10778
+django/contrib/postgres/fields/citext.py,sha256=_c0QYlKJa5CS2_XFbv1KB0HwG3wJHeQ8PxGVxRrKQrk,438
+django/contrib/postgres/fields/hstore.py,sha256=WWWEoBfMtAjd226vvjFtGqbHMHFCjSly-BEhm9UN1qQ,3276
+django/contrib/postgres/fields/jsonb.py,sha256=ncMGT6WY70lCbcmhwtu2bjRmfDMUIvCr76foUv7tqv0,406
+django/contrib/postgres/fields/ranges.py,sha256=5ktJ1drscwmep4fnfRGnQI-81Cr4F0NkoubhSIZOG4Y,10979
+django/contrib/postgres/fields/utils.py,sha256=TV-Aj9VpBb13I2iuziSDURttZtz355XakxXnFwvtGio,95
+django/contrib/postgres/forms/__init__.py,sha256=NjENn2-C6BcXH4T8YeC0K2AbDk8MVT8tparL3Q4OF6g,89
+django/contrib/postgres/forms/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/postgres/forms/__pycache__/array.cpython-310.pyc,,
+django/contrib/postgres/forms/__pycache__/hstore.cpython-310.pyc,,
+django/contrib/postgres/forms/__pycache__/ranges.cpython-310.pyc,,
+django/contrib/postgres/forms/array.py,sha256=LRUU3fxXePptMh3lolxhX4sbMjNSvnzMvNgcJolKfZc,8401
+django/contrib/postgres/forms/hstore.py,sha256=XN5xOrI-jCeTsWFEjPXf6XMaLzJdXiqA6pTdGSjWdOw,1767
+django/contrib/postgres/forms/ranges.py,sha256=frrqI55xWdvVoZwRGaVTssRGC8ufk_lFvyi-hihlVLQ,3610
+django/contrib/postgres/functions.py,sha256=7v6J01QQvX70KFyg9hDc322PgvT62xZqWlzp_vrl8bA,252
+django/contrib/postgres/indexes.py,sha256=T9qsgSINgv3gFzLEqUl5FPc1mPXzepgT4YYg6-M6yZY,8389
+django/contrib/postgres/jinja2/postgres/widgets/split_array.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
+django/contrib/postgres/locale/af/LC_MESSAGES/django.mo,sha256=kDeL_SZezO8DRNMRh2oXz94YtAK1ZzPiK5dftqAonKI,2841
+django/contrib/postgres/locale/af/LC_MESSAGES/django.po,sha256=ALKUHbZ8DE6IH80STMJhGOoyHB8HSSxI4PlX_SfxJWc,3209
+django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo,sha256=UTBknYC-W7nclTrBCEiCpTglZxZQY80UqGki8I6j3EM,4294
+django/contrib/postgres/locale/ar/LC_MESSAGES/django.po,sha256=_PgF2T3ylO4vnixVoKRsgmpPDHO-Qhj3mShHtHeSna0,4821
+django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=fND1NtGTmEl7Rukt_VlqJeExdJjphBygmI-qJmE83P0,4352
+django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.po,sha256=Z9y3h6lDnbwD4JOn7OACLjEZqNY8OpEwuzoUD8FSdwA,4868
+django/contrib/postgres/locale/az/LC_MESSAGES/django.mo,sha256=K-2weZNapdDjP5-ecOfQhhhWmVR53JneJ2n4amA_zTk,2855
+django/contrib/postgres/locale/az/LC_MESSAGES/django.po,sha256=Pn47g_NvMgSBjguFLT_AE1QzxOGXOYjA-g_heXAT_tU,3214
+django/contrib/postgres/locale/be/LC_MESSAGES/django.mo,sha256=0Y6S-XR45rgw0zEZgjpRJyNm7szHxr9XOUyolo_5cN0,4134
+django/contrib/postgres/locale/be/LC_MESSAGES/django.po,sha256=KIkbhabWDYo4iDaQ8Dt0kxH_VB2wTFsS0rGs9zzKoKU,4635
+django/contrib/postgres/locale/bg/LC_MESSAGES/django.mo,sha256=dkM1WSo5SgBglvJXNVvcIhKHU0ZjUJxmy4cX6_cJgZs,3515
+django/contrib/postgres/locale/bg/LC_MESSAGES/django.po,sha256=jalX0o2VjTVhXJIBKkyEk3aMjqYyNywmSGmyve9cu5M,3974
+django/contrib/postgres/locale/ca/LC_MESSAGES/django.mo,sha256=XR1UEZV9AXKFz7XrchjRkd-tEdjnlmccW_I7XANyMns,2904
+django/contrib/postgres/locale/ca/LC_MESSAGES/django.po,sha256=5wPLvkODU_501cHPZ7v0n89rmFrsuctt7T8dUBMfQ0Q,3430
+django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo,sha256=_EmT9NnoX3xeRU-AI5sPlAszjzC0XwryWOmj8d07ox8,3388
+django/contrib/postgres/locale/cs/LC_MESSAGES/django.po,sha256=dkWVucs3-avEVtk_Xh5p-C8Tvw_oKDASdgab_-ByP-w,3884
+django/contrib/postgres/locale/da/LC_MESSAGES/django.mo,sha256=Pi841HD7j9mPiKNTaBvQP2aa5cF9MtwqbY6zfiouwu4,2916
+django/contrib/postgres/locale/da/LC_MESSAGES/django.po,sha256=3D8kRTXX2nbuvRoDlTf5tHB2S_k2d571L678wa3nBA8,3339
+django/contrib/postgres/locale/de/LC_MESSAGES/django.mo,sha256=B3HwniAOjSHmhuuqpLVa3nqYD5HPzZ7vwtQ_oPKiByE,2993
+django/contrib/postgres/locale/de/LC_MESSAGES/django.po,sha256=dZu8_1FIFKw67QnhXsGibfWT2W3d07Ro9CU8Y_HolvE,3468
+django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo,sha256=4Ymt58bCjpZlmNDZbFO8TtI6agusGvTwlDCjip_q8nQ,3573
+django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po,sha256=m1PlbIRBIkTnbe2jLzcR0_Oi9MujrsS82apXd8GDkcs,4033
+django/contrib/postgres/locale/el/LC_MESSAGES/django.mo,sha256=NmzROkTfSbioGv8exM3UdMDnRAxR65YMteGv9Nhury4,3583
+django/contrib/postgres/locale/el/LC_MESSAGES/django.po,sha256=4WuswUwrInAh-OPX9k7gDdLb-oMKp1vQFUGvfm0ej00,4144
+django/contrib/postgres/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/postgres/locale/en/LC_MESSAGES/django.po,sha256=FtuWLiTQcIvK-kpbZujmawA0yQeRERhzfoJeEiOAyJw,2865
+django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.mo,sha256=WA0RSssD8ljI16g6DynQZQLQhd_0XR8ilrnJnepsIFg,2839
+django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.po,sha256=4JASYUpYlQlSPREPvMxFBqDpDhprlkI1GpAqTJrmb10,3215
+django/contrib/postgres/locale/eo/LC_MESSAGES/django.mo,sha256=1wqM_IVO8Dl9AefzvWYuoS4eNTrBg7LDH6XUMovKi9A,2742
+django/contrib/postgres/locale/eo/LC_MESSAGES/django.po,sha256=r2tpOblfLAAHMacDWU-OVXTQus_vvAPMjUzVfrV_T7U,3217
+django/contrib/postgres/locale/es/LC_MESSAGES/django.mo,sha256=GoDmVupnksF_ypFyzFSjsGYb6EKA--HwvJfByZtSlTA,2917
+django/contrib/postgres/locale/es/LC_MESSAGES/django.po,sha256=kPsH3ohAmLLkEI5xKqge39SDF8FrNTx1emhPPeReYUg,3518
+django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo,sha256=f_gM-9Y0FK-y67lU2b4yYiFt0hz4ps9gH0NhCZScwaE,2917
+django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po,sha256=0qNlBk5v2QhZsb90xX3xHp8gw6jXevERbkOLBjwtJOc,3278
+django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.mo,sha256=Q2eOegYKQFY3fAKZCX7VvZAN6lT304W51aGl0lzkbLU,2484
+django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.po,sha256=bbgOn34B7CSq1Kf2IrJh6oRJWPur_Smc4ebljIxAFGE,3233
+django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.mo,sha256=l6WdS59mDfjsV9EMULjKP2DhXR7x3bYax1iokL-AXcU,689
+django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.po,sha256=_-jzhIT71zV539_4SUbwvOXfDHkxRy1FDGdx23iB7B4,2283
+django/contrib/postgres/locale/et/LC_MESSAGES/django.mo,sha256=oPGqGUQhU9xE7j6hQZSVdC-be2WV-_BNrSAaN4csFR4,2886
+django/contrib/postgres/locale/et/LC_MESSAGES/django.po,sha256=xKkb-0CQCAn37xe0G2jfQmjg2kuYBmXB5yBpTA5lYNI,3404
+django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo,sha256=UG7x642-n3U7mamXuNHD66a_mR0agX72xSwBD3PpyJU,2883
+django/contrib/postgres/locale/eu/LC_MESSAGES/django.po,sha256=dAx6nlRd4FF_8i7Xeylwvj4HkEDKi3swFenkdJkDawU,3321
+django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo,sha256=uLh9fJtCSKg5eaj9uGP2muN_71aFxpZwOjRHtnZhPik,3308
+django/contrib/postgres/locale/fa/LC_MESSAGES/django.po,sha256=adN7bh9Q_R0Wzlf2fWaQnTtvxo0NslyoHH5t5V0eeMM,3845
+django/contrib/postgres/locale/fi/LC_MESSAGES/django.mo,sha256=gB2z3nI8Bz-km3DngYfJulwelHSlWgZeBXlj5yWyA08,2943
+django/contrib/postgres/locale/fi/LC_MESSAGES/django.po,sha256=LNVTHv4-FWT5KOre5qTwLEpKIQbaSIusFH2uUmbwYBg,3315
+django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo,sha256=wmlIBo9os5o1u04uSvk9-VBCCfK47MWj6kIirqMvHMA,3081
+django/contrib/postgres/locale/fr/LC_MESSAGES/django.po,sha256=sLwnf7qCGv5buhPp6kEJhsjx_BqFTxT5k5o3gQQ8fEI,3463
+django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo,sha256=okWU_Ke95EG2pm8rZ4PT5ScO-8f0Hqg65lYZgSid8tM,3541
+django/contrib/postgres/locale/gd/LC_MESSAGES/django.po,sha256=tjt5kfkUGryU3hFzPuAly2DBDLuLQTTD5p-XrxryFEI,4013
+django/contrib/postgres/locale/gl/LC_MESSAGES/django.mo,sha256=MjJ8iObaHWyy2vFg_pDepfkiVH8LlTVHdy5tSqt8Wbw,539
+django/contrib/postgres/locale/gl/LC_MESSAGES/django.po,sha256=uI-7M-VYa4rqbEZcNwfQHUYDGRsz5mmksdigRywKDQc,2222
+django/contrib/postgres/locale/he/LC_MESSAGES/django.mo,sha256=UDu--EyjTrPOqf-XI9rH_Z9z7mhBGnXvrpHrfdGBlKk,3713
+django/contrib/postgres/locale/he/LC_MESSAGES/django.po,sha256=ekkwIceJdQKqL9VlCYwipnrsckSLhGi5OwBKEloZWlU,4188
+django/contrib/postgres/locale/hr/LC_MESSAGES/django.mo,sha256=vdm5GxgpKuVdGoVl3VreD8IB1Mq5HGWuq-2YDeDrNnU,929
+django/contrib/postgres/locale/hr/LC_MESSAGES/django.po,sha256=8TxEnVH2yIQWbmbmDOpR7kksNFSaUGVhimRPQgSgDkM,2501
+django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo,sha256=fnzghbobisOaQTMu6Fm7FMAv7r6afzc8_hFHwlrHU0Y,3482
+django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po,sha256=V35au4H4RIMcVq_T-KEfnQ2oUqxJqyXP--YFHWt_DNw,3933
+django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo,sha256=6-9w_URPmVzSCcFea7eThbIE5Q-QSr5Q-i0zvKhpBBI,2872
+django/contrib/postgres/locale/hu/LC_MESSAGES/django.po,sha256=fx4w4FgjfP0dlik7zGCJsZEHmmwQUSA-GRzg4KeVd_s,3394
+django/contrib/postgres/locale/hy/LC_MESSAGES/django.mo,sha256=2QFIJdmh47IGPqI-8rvuHR0HdH2LOAmaYqEeCwUpRuw,3234
+django/contrib/postgres/locale/hy/LC_MESSAGES/django.po,sha256=MLHMbdwdo1txzFOG-fVK4VUvAoDtrLA8CdpQThybSCQ,3825
+django/contrib/postgres/locale/ia/LC_MESSAGES/django.mo,sha256=gn8lf-gOP4vv-iiqnkcxvjzhJ8pTdetBhHyjl4TapXo,582
+django/contrib/postgres/locale/ia/LC_MESSAGES/django.po,sha256=FsqhPQf0j4g06rGuWSTn8A1kJ7E5U9rX16mtB8CAiIE,2251
+django/contrib/postgres/locale/id/LC_MESSAGES/django.mo,sha256=KKI5fjmuD7jqiGe7SgGkWmF6unHNe8JMVoOSDVemB8o,2733
+django/contrib/postgres/locale/id/LC_MESSAGES/django.po,sha256=Me13R5Oi89IZ0T3CtY0MZ34YK3T-HIZ7GbtFiXl2h50,3300
+django/contrib/postgres/locale/is/LC_MESSAGES/django.mo,sha256=rNL5Un5K_iRAZDtpHo4egcySaaBnNEirYDuWw0eI7gk,2931
+django/contrib/postgres/locale/is/LC_MESSAGES/django.po,sha256=UO53ciyI0jCVtBOXWkaip2AbPE2Hd2YhzK1RAlcxyQ8,3313
+django/contrib/postgres/locale/it/LC_MESSAGES/django.mo,sha256=m7bI5A6ER8TNWQH7m5-vU4xbFeqDlw-Tslv02oLLWJs,2978
+django/contrib/postgres/locale/it/LC_MESSAGES/django.po,sha256=FgyUi-A3zHv-UC21oqQ8NuHKSccRaH5_UqSuOpJFlKk,3600
+django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo,sha256=Up-87OUoJEieJkp8QecimVE-9q2krKt0pdHw1CcSxXs,3027
+django/contrib/postgres/locale/ja/LC_MESSAGES/django.po,sha256=mq2YnEbj6R6EEic2Gyhc56o-BbyJFv4PoJjXzz1CauI,3416
+django/contrib/postgres/locale/ka/LC_MESSAGES/django.mo,sha256=A_VhLUZbocGNF5_5mMoYfB3l654MrPIW4dL1ywd3Tw8,713
+django/contrib/postgres/locale/ka/LC_MESSAGES/django.po,sha256=kRIwQ1Nrzdf5arHHxOPzQcB-XwPNK5lUFKU0L3QHfC8,2356
+django/contrib/postgres/locale/kk/LC_MESSAGES/django.mo,sha256=xMc-UwyP1_jBHcGIAGWmDAjvSL50jJaiZbcT5TmzDOg,665
+django/contrib/postgres/locale/kk/LC_MESSAGES/django.po,sha256=f6Z3VUFRJ3FgSReC0JItjA0RaYbblqDb31lbJ3RRExQ,2327
+django/contrib/postgres/locale/ko/LC_MESSAGES/django.mo,sha256=vK52cwamFt1mrvpSaoVcf2RAmQghw_EbPVrx_EA9onI,2897
+django/contrib/postgres/locale/ko/LC_MESSAGES/django.po,sha256=N_HTD-HK_xI27gZJRm_sEX4qM_Wtgdy5Pwqb8A6h9C8,3445
+django/contrib/postgres/locale/ky/LC_MESSAGES/django.mo,sha256=F0Ws34MbE7zJa8FNxA-9rFm5sNLL22D24LyiBb927lE,3101
+django/contrib/postgres/locale/ky/LC_MESSAGES/django.po,sha256=yAzSeT2jBm7R2ZXiuYBQFSKQ_uWIUfNTAobE1UYnlPs,3504
+django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo,sha256=kJ3ih8HrHt2M_hFW0H9BZg7zcj6sXy6H_fD1ReIzngM,3452
+django/contrib/postgres/locale/lt/LC_MESSAGES/django.po,sha256=PNADIV8hdpLoqwW4zpIhxtWnQN8cPkdcoXYngyjFeFw,3972
+django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo,sha256=zSCp3i4tUkXh-o0uCnOntFhohUId8ctOQIooEgPbrtw,3099
+django/contrib/postgres/locale/lv/LC_MESSAGES/django.po,sha256=HaGoMy-idXgYHqxczydnQSZdzRv-YaShFU2ns4yuPAY,3626
+django/contrib/postgres/locale/mk/LC_MESSAGES/django.mo,sha256=WE4nRJKWAZvXuyU2qT2_FGqGlKYsP1KSACCtT10gQQY,3048
+django/contrib/postgres/locale/mk/LC_MESSAGES/django.po,sha256=CQX91LP1Gbkazpt4hTownJtSqZGR1OJfoD-1MCo6C1Y,3783
+django/contrib/postgres/locale/ml/LC_MESSAGES/django.mo,sha256=N47idWIsmtghZ_D5325TRsDFeoUa0MIvMFtdx7ozAHc,1581
+django/contrib/postgres/locale/ml/LC_MESSAGES/django.po,sha256=lt_7fGZV7BCB2XqFWIQQtH4niU4oMBfGzQQuN5sD0fo,2947
+django/contrib/postgres/locale/mn/LC_MESSAGES/django.mo,sha256=VWeXaMvdqhW0GHs1Irb1ikTceH7jMKH_xMzKLH0vKZg,3310
+django/contrib/postgres/locale/mn/LC_MESSAGES/django.po,sha256=p3141FJiYrkV8rocgqdxnV05FReQYZmosv9LI46FlfE,3867
+django/contrib/postgres/locale/ms/LC_MESSAGES/django.mo,sha256=m3JZm1IIMZwmpvIs3oV0roYCeR_UlswHyCpZjjE6-A8,2712
+django/contrib/postgres/locale/ms/LC_MESSAGES/django.po,sha256=HCMBA1fxKLJct14ywap0PYVBi2bDp2F97Ms5_-G_Pwg,3025
+django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo,sha256=3h8DqEFG39i6uHY0vpXuGFmoJnAxTtRFy1RazcYIXfg,2849
+django/contrib/postgres/locale/nb/LC_MESSAGES/django.po,sha256=gDUg-HDg3LiYMKzb2QaDrYopqaJmbvnw2Fo-qhUHFuI,3252
+django/contrib/postgres/locale/ne/LC_MESSAGES/django.mo,sha256=5XdBLGMkn20qeya3MgTCpsIDxLEa7PV-i2BmK993iRc,875
+django/contrib/postgres/locale/ne/LC_MESSAGES/django.po,sha256=1QLLfbrHneJmxM_5UTpNIYalP-qX7Bn7bmj4AfDLIzE,2421
+django/contrib/postgres/locale/nl/LC_MESSAGES/django.mo,sha256=ttUzGWvxJYw71fVbcXCwzetyTWERBsURTe_nsf_axq0,2951
+django/contrib/postgres/locale/nl/LC_MESSAGES/django.po,sha256=ENw-dI6FHFqxclQKdefthCIVgp41HoIYj0IBmRCz0Vw,3515
+django/contrib/postgres/locale/nn/LC_MESSAGES/django.mo,sha256=RdMFozwxYIckBY40mJhN-jjkghztKn0-ytCtqxFHBMY,2836
+django/contrib/postgres/locale/nn/LC_MESSAGES/django.po,sha256=vl8NkY342eonqbrj89eCR_8PsJpeQuaRjxems-OPIBk,3184
+django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo,sha256=HZOPQ8tC_vWEqsCAtDquwnyhEiECyKSmVHuoklAj6hA,3444
+django/contrib/postgres/locale/pl/LC_MESSAGES/django.po,sha256=gKrgT2Mpuxhs6ym_D4yJQVC0tVr9KSaZBP7Fc4yW-wY,4150
+django/contrib/postgres/locale/pt/LC_MESSAGES/django.mo,sha256=KZvJXjrIdtxbffckcrRV3nJ5GnID6PvqAb7vpOiWpHE,2745
+django/contrib/postgres/locale/pt/LC_MESSAGES/django.po,sha256=2gIDOjnFo6Iom-oTkQek4IX6FYPI9rNp9V-6sJ55aL8,3281
+django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo,sha256=y4D_g5Er3BpERdgloYcjvrhd2b_H77HzLkNUPiQY7d4,2903
+django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po,sha256=NTn26DdAGB90QPXwiWmhuB6un6sL2Rff5DJddtjLid4,3648
+django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo,sha256=w4tyByrZlba_Ju_F2OzD52ut5JSD6UGJfjt3A7CG_uc,3188
+django/contrib/postgres/locale/ro/LC_MESSAGES/django.po,sha256=hnotgrr-zeEmE4lgpqDDiJ051GoGbL_2GVs4O9dVLXI,3700
+django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo,sha256=TQ7EuEipMb-vduqTGhQY8PhjmDrCgujKGRX7Im0BymQ,4721
+django/contrib/postgres/locale/ru/LC_MESSAGES/django.po,sha256=Me728Qfq_PXRZDxjGQbs3lLMueG3bNaqGZuZPgqsZQA,5495
+django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo,sha256=0LY5Axf2dGDPCe0d2eQgEJY6OI3VORrIU9IiXPF2MD8,3358
+django/contrib/postgres/locale/sk/LC_MESSAGES/django.po,sha256=jtXuD3iUdd0_COtBzW57sNgWZ9jgXhNNiWKTj8M2X1A,3846
+django/contrib/postgres/locale/sl/LC_MESSAGES/django.mo,sha256=rBO3S_wTGtqYq3PPasYZ9fMIxbNsCevNwNlj-csP53Y,3026
+django/contrib/postgres/locale/sl/LC_MESSAGES/django.po,sha256=-hQIB9eapgVP-jrewMbtlwZfiNn8N9w03BF9OkP73xE,3642
+django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo,sha256=Pm-uXjVgLGsPwPueqLL4bLJooVzeRFwqk-gpIlxXRDE,2899
+django/contrib/postgres/locale/sq/LC_MESSAGES/django.po,sha256=hQq8PofZztjMCuvv4vZuWYIwHYErygvCz2zAsplfgWs,3281
+django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo,sha256=xNuocml3ql2Cz5cp74N525eaJ7erKcEwLbFc6IZqYBk,3753
+django/contrib/postgres/locale/sr/LC_MESSAGES/django.po,sha256=jQJQzmmrdVOEQRFSmzPPW_rUOeCS6T-1u5_pRDXWRLI,4190
+django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=RsF_fhesv3GZ0cLY3sLrLjNWxy--tUnU3jj8zEDWu2g,3092
+django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.po,sha256=6DwzkQTrhF-hhDd6GfyOZsthi84HKVy7mszvGYJXFpk,3488
+django/contrib/postgres/locale/sv/LC_MESSAGES/django.mo,sha256=5YOk3xT3NJL_G_c32i3id5U-LDgO2fRsiHoUgrRfwRA,2937
+django/contrib/postgres/locale/sv/LC_MESSAGES/django.po,sha256=yGOhPAGticohSts6S3yF9Z159RRgPUUOSYBsW6VLvlw,3461
+django/contrib/postgres/locale/tg/LC_MESSAGES/django.mo,sha256=3yW5NKKsa2f2qDGZ4NGlSn4DHatLOYEv5SEwB9voraA,2688
+django/contrib/postgres/locale/tg/LC_MESSAGES/django.po,sha256=Zuix5sJH5Fz9-joe_ivMRpNz2Fbzefsxz3OOoDV0o1c,3511
+django/contrib/postgres/locale/tk/LC_MESSAGES/django.mo,sha256=ytivs6cnECDuyVKToFQMRnH_RPr4PlVepg8xFHnr0W4,2789
+django/contrib/postgres/locale/tk/LC_MESSAGES/django.po,sha256=bfXIyKNOFRC3U34AEKCsYQn3XMBGtgqHsXpboHvRQq0,3268
+django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo,sha256=2wed5sCHeOFoykqShgnZ1aJ2dF6b6RbygraHUBhcysU,2898
+django/contrib/postgres/locale/tr/LC_MESSAGES/django.po,sha256=9xd_-n_JNSZ8GeYI0NeegzLLsTvREWsD0xbBx6otQQ4,3267
+django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo,sha256=8Hd-F7RZgoSrBlWYHSUw6uhXHdVFiEcWHWuXxJhYrU8,4418
+django/contrib/postgres/locale/uk/LC_MESSAGES/django.po,sha256=jFuGp_wSpAEZ91at1WUhS-S6k5JGv10kbVu4YoDsoDo,5116
+django/contrib/postgres/locale/uz/LC_MESSAGES/django.mo,sha256=PcmhhVC1spz3EFrQ2qdhfPFcA1ELHtBhHGWk9Z868Ss,703
+django/contrib/postgres/locale/uz/LC_MESSAGES/django.po,sha256=lbQxX2cmueGCT8sl6hsNWcrf9H-XEUbioP4L7JHGqiU,2291
+django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=jUqnfwS-XMNKVytVLEcyVsxqyfIHGkSJfW0hi7Sh7w4,2574
+django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.po,sha256=7L9pBCN-dScEAfPIe4u-jY14S6NgVe6seZHaqthgms0,3060
+django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=Twqt8SVetuVV6UQ8ne48RfXILh2I9_-5De7cIrd5Lvc,2586
+django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.po,sha256=5qE-q9uXlHM59soKgNSqeCfP-DnFuYI4fXLAbQctJ8c,2962
+django/contrib/postgres/lookups.py,sha256=Y8x4RxGGkVnlqJfNIWcQvBA1Uk5cKtsr4FPUF7hUSuo,1601
+django/contrib/postgres/operations.py,sha256=wBooH3gFy8arxZvMiPhU6w_5fGwwlcWb8OBvm-iiy1s,11808
+django/contrib/postgres/search.py,sha256=KoGQrV1KiiqJ9ctJznqqjmv-oOLYO8LUBbeOMSUH8hM,11492
+django/contrib/postgres/serializers.py,sha256=wCg0IzTNeuVOiC2cdy1wio6gChjqVvH6Ri4hkCkEeXU,435
+django/contrib/postgres/signals.py,sha256=NmSCh5WHhIgfXvcMDayKFgYARVqHdT_Dq0s5RWeVAG4,2285
+django/contrib/postgres/templates/postgres/widgets/split_array.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
+django/contrib/postgres/utils.py,sha256=32nCnzdMZ7Ra4dDonbIdv1aCppV3tnQnoEX9AhCJe38,1187
+django/contrib/postgres/validators.py,sha256=LT4W70ZC6aJ_uHZzu1VbFTjEY2p0V0hKqnKaTobNV78,2805
+django/contrib/redirects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/redirects/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/redirects/__pycache__/admin.cpython-310.pyc,,
+django/contrib/redirects/__pycache__/apps.cpython-310.pyc,,
+django/contrib/redirects/__pycache__/middleware.cpython-310.pyc,,
+django/contrib/redirects/__pycache__/models.cpython-310.pyc,,
+django/contrib/redirects/admin.py,sha256=1bPOgeZYRYCHdh7s2SpXnuL2WsfdQjD96U5Y3xhRY8g,314
+django/contrib/redirects/apps.py,sha256=1uS5EBp7WwDnY0WHeaRYo7VW9j-s20h4KDdImodjCNg,251
+django/contrib/redirects/locale/af/LC_MESSAGES/django.mo,sha256=EZpwI7hxr96D4CUt6e-kJHgkE3Q5k9RAmPjn6kXvE8A,1136
+django/contrib/redirects/locale/af/LC_MESSAGES/django.po,sha256=kDPrxqvMg3hn12fGyTaImC1gOtTjSxuJtbKdA7jvl_4,1367
+django/contrib/redirects/locale/ar/LC_MESSAGES/django.mo,sha256=FfPauXNUmQxq0R1-eQ2xw2WY1Oi33sLwVhyKX10_zFw,1336
+django/contrib/redirects/locale/ar/LC_MESSAGES/django.po,sha256=X0xX51asSDWedd56riJ4UrsCGEjH-lZdkcilIg4amgI,1595
+django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=hg1lkBEORP2vgLPRbuKcXiIFUcTvAO7KrjbPXlWhvqY,1379
+django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.po,sha256=O4quBKA1jHATGGeDqCONDFfAqvDvOAATIBvueeMphyY,1581
+django/contrib/redirects/locale/ast/LC_MESSAGES/django.mo,sha256=a1ixBQQIdBZ7o-ADnF2r74CBtPLsuatG7txjc05_GXI,1071
+django/contrib/redirects/locale/ast/LC_MESSAGES/django.po,sha256=PguAqeIUeTMWsADOYLTxoC6AuKrCloi8HN18hbm3pZ0,1266
+django/contrib/redirects/locale/az/LC_MESSAGES/django.mo,sha256=KzpRUrONOi5Cdr9sSRz3p0X-gGhD1-3LNhen-XDhO3g,1092
+django/contrib/redirects/locale/az/LC_MESSAGES/django.po,sha256=RGjd2J_pRdSkin4UlKxg7kc3aA8PCQRjDPXkpGZHdn0,1347
+django/contrib/redirects/locale/be/LC_MESSAGES/django.mo,sha256=fVqy28ml508UJf5AA-QVsS5dzKI8Q_ugZZ34WjTpJ-s,1426
+django/contrib/redirects/locale/be/LC_MESSAGES/django.po,sha256=zHBVewcpt0KoavV96v3F4wybqtkGb1jUuPz7sbiWWDI,1662
+django/contrib/redirects/locale/bg/LC_MESSAGES/django.mo,sha256=o-ETSDGtAFZRo3SPd_IHe0mJ3R0RHA32KpgfOmUH11M,1279
+django/contrib/redirects/locale/bg/LC_MESSAGES/django.po,sha256=9qm8s6vj-0LStnyEJ8iYVi13_MfugVAAs2RHvIi7kW8,1587
+django/contrib/redirects/locale/bn/LC_MESSAGES/django.mo,sha256=SbQh_pgxNCogvUFud7xW9T6NTAvpaQb2jngXCtpjICM,1319
+django/contrib/redirects/locale/bn/LC_MESSAGES/django.po,sha256=LgUuiPryDLSXxo_4KMCdjM5XC3BiRfINuEk0s5PUQYQ,1511
+django/contrib/redirects/locale/br/LC_MESSAGES/django.mo,sha256=Yt8xo5B5LJ9HB8IChCkj5mljFQAAKlaW_gurtF8q8Yw,1429
+django/contrib/redirects/locale/br/LC_MESSAGES/django.po,sha256=L2qPx6mZEVUNay1yYEweKBLr_fXVURCnACfsezfP_pI,1623
+django/contrib/redirects/locale/bs/LC_MESSAGES/django.mo,sha256=0Yak4rXHjRRXLu3oYYzvS8qxvk2v4IFvUiDPA68a5YI,1115
+django/contrib/redirects/locale/bs/LC_MESSAGES/django.po,sha256=s9Nhx3H4074hlSqo1zgQRJbozakdJTwA1aTuMSqEJWw,1316
+django/contrib/redirects/locale/ca/LC_MESSAGES/django.mo,sha256=VHE6qHCEoA7rQk0fMUpoTfwqSfu63-CiOFvhvKp5DMQ,1136
+django/contrib/redirects/locale/ca/LC_MESSAGES/django.po,sha256=PSMb_7iZBuYhtdR8byh9zr9dr50Z_tQ518DUlqoEA_M,1484
+django/contrib/redirects/locale/cs/LC_MESSAGES/django.mo,sha256=UwYsoEHsg7FJLVe0JxdOa1cTGypqJFienAbWe7Vldf0,1229
+django/contrib/redirects/locale/cs/LC_MESSAGES/django.po,sha256=hnWJLXX7IjwZK7_8L3p-dpj5XpDmEo7lQ7-F4upjn7U,1504
+django/contrib/redirects/locale/cy/LC_MESSAGES/django.mo,sha256=NSGoK12A7gbtuAuzQEVFPNSZMqqmhHyRvTEn9PUm9So,1132
+django/contrib/redirects/locale/cy/LC_MESSAGES/django.po,sha256=jDmC64z5exPnO9zwRkBmpa9v3DBlaeHRhqZYPoWqiIY,1360
+django/contrib/redirects/locale/da/LC_MESSAGES/django.mo,sha256=_UVfTMRG__5j7Ak8Q3HtXSy_DPGpZ1XvKj9MHdmR_xI,1132
+django/contrib/redirects/locale/da/LC_MESSAGES/django.po,sha256=RAWWbZXbJciNSdw4skUEoTnOb19iKXAe1KXJLWi0zPQ,1418
+django/contrib/redirects/locale/de/LC_MESSAGES/django.mo,sha256=uh-ldy-QkWS5-ARX6cLyzxzdhbTb_chyEbBPFCvCKuE,1155
+django/contrib/redirects/locale/de/LC_MESSAGES/django.po,sha256=hhGNnVCRV4HNxhCYfmVXTOIkabD7qsVQccwxKa5Tz9g,1424
+django/contrib/redirects/locale/dsb/LC_MESSAGES/django.mo,sha256=LXgczA38RzrN7zSWpxKy8_RY4gPg5tZLl30CJGjJ63s,1236
+django/contrib/redirects/locale/dsb/LC_MESSAGES/django.po,sha256=rI9dyDp7zuZ6CjvFyo2OkGUDK5XzdvdI0ma8IGVkjp4,1431
+django/contrib/redirects/locale/el/LC_MESSAGES/django.mo,sha256=sD3HT4e53Yd3HmQap_Mqlxkm0xF98A6PFW8Lil0PihI,1395
+django/contrib/redirects/locale/el/LC_MESSAGES/django.po,sha256=puhVCcshg5HaPHsVAOucneVgBYT6swhCCBpVGOZykgA,1716
+django/contrib/redirects/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/redirects/locale/en/LC_MESSAGES/django.po,sha256=u4RcMkFmNvlG9Bv6kM0a0scWUMDUbTEDJGR90-G8C0E,1123
+django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.mo,sha256=wxCpSLGl_zsE47kDwilDkpihazwHkA363PvtGOLWhdk,1127
+django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.po,sha256=zujH1WuxoHw_32flptG0x2Ob_BlilLKXuMjQxVbZmgw,1307
+django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.mo,sha256=VscL30uJnV-eiQZITpBCy0xk_FfKdnMh4O9Hk4HGxww,1053
+django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.po,sha256=loe8xIVjZ7eyteQNLPoa-QceBZdgky22dR6deK5ubmA,1246
+django/contrib/redirects/locale/eo/LC_MESSAGES/django.mo,sha256=pZo0DSbfGGTHi-jgaTGp29kJK-iplaai-WXJoOPluMA,1138
+django/contrib/redirects/locale/eo/LC_MESSAGES/django.po,sha256=3AxFPHffYw3svHe-MR3zuVGLMtkJPL_SX_vB_ztx98c,1414
+django/contrib/redirects/locale/es/LC_MESSAGES/django.mo,sha256=xyeIQL_pHFyo7p7SkeuxzKdDsma2EXhvnPNDHUhaBv8,1159
+django/contrib/redirects/locale/es/LC_MESSAGES/django.po,sha256=Y3hPQrcbhLtR-pPYRJJXkJME5M8Enr20j9D63hhe9ZA,1490
+django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.mo,sha256=JdKzpdyf9W2m_0_NguvXvyciOh6LAATfE6lqcsp45To,1144
+django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.po,sha256=3zrKJXLh_mrjc4A6g9O6ePyFz8PNUMYTPjNFpvEhaDo,1364
+django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.mo,sha256=wcAMOiqsgz2KEpRwirRH9FNoto6vmo_hxthrQJi0IHU,1147
+django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.po,sha256=n8DM14vHekZRayH0B6Pm3L5XnSo4lto4ZAdu4OhcOmc,1291
+django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.mo,sha256=38fbiReibMAmC75BCCbyo7pA2VA3QvmRqVEo_K6Ejow,1116
+django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.po,sha256=t7R6PiQ1bCc7jhfMrjHlZxVQ6BRlWT2Vv4XXhxBD_Oo,1397
+django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486
+django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.po,sha256=f4XZW8OHjRJoztMJtSDCxd2_Mfy-XK44hLtigjGSsZY,958
+django/contrib/redirects/locale/et/LC_MESSAGES/django.mo,sha256=34-Z1s9msdnj6U7prMctEWCxAR8TNnP44MIoyUuFsls,1131
+django/contrib/redirects/locale/et/LC_MESSAGES/django.po,sha256=1VWcUbM9z_nNmiGnT9Mka3Y3ZLRVHuJdS_j_yNXvmQ0,1479
+django/contrib/redirects/locale/eu/LC_MESSAGES/django.mo,sha256=yHlAEz01pWse4ZworAj7JiATUam5Fp20EZd_3PRgSNw,1126
+django/contrib/redirects/locale/eu/LC_MESSAGES/django.po,sha256=zAvSdahjvq727hXeGjHJ_R5L5meCrOv98tbH3rwlBcE,1404
+django/contrib/redirects/locale/fa/LC_MESSAGES/django.mo,sha256=vZa1KKm2y8duEv9UbJMyiM8WO2EAXcevdR3Lj1ISgLU,1234
+django/contrib/redirects/locale/fa/LC_MESSAGES/django.po,sha256=1quB0Wx5VTIjX2QUCpENl1GA2hpSdsRpgK931jr20B0,1541
+django/contrib/redirects/locale/fi/LC_MESSAGES/django.mo,sha256=xJEd4M2IowXxKBlaGuOEgFKA9OuihcgPoK07Beat4cc,1164
+django/contrib/redirects/locale/fi/LC_MESSAGES/django.po,sha256=1I7AoXMPRDMY6TCjPkQh0Q9g68r9BwKOwki9DybcFWc,1429
+django/contrib/redirects/locale/fr/LC_MESSAGES/django.mo,sha256=YhVNoNaHdSOp2P2F7xfo2MHCd2KkHiehpVjLyJ4VLuw,1155
+django/contrib/redirects/locale/fr/LC_MESSAGES/django.po,sha256=-ljzEKiU05annJ8DHw4OOg8eDCAnWLV2V33R-tQn9dE,1391
+django/contrib/redirects/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
+django/contrib/redirects/locale/fy/LC_MESSAGES/django.po,sha256=D7xverCbf3kTCcFM8h7EKWM5DcxZRqeOSKDB1irbKeE,948
+django/contrib/redirects/locale/ga/LC_MESSAGES/django.mo,sha256=blwOMshClFZKvOZXVvqENK_E_OkdS1ydbjQCDXcHXd4,1075
+django/contrib/redirects/locale/ga/LC_MESSAGES/django.po,sha256=76rdrG4GVbcKwgUQN4bB-B0t6hpivCA_ehf4uzGM_mY,1341
+django/contrib/redirects/locale/gd/LC_MESSAGES/django.mo,sha256=baZXdulbPZwe4_Q3OwfHFl4GJ4hCYtoZz-lE4wcdJvg,1250
+django/contrib/redirects/locale/gd/LC_MESSAGES/django.po,sha256=M4E2giFgzRowd3OsvhD389MyJmT5osKz1Vs1sEfmUpU,1428
+django/contrib/redirects/locale/gl/LC_MESSAGES/django.mo,sha256=LoMrpBThJSmWzZ1wT66xGndnNCVCOq2eCEyo88qKwkA,1127
+django/contrib/redirects/locale/gl/LC_MESSAGES/django.po,sha256=d8qXhC2wI45yXtFJuMBgibzHsCkZSxAD3I6pVdpxlSU,1313
+django/contrib/redirects/locale/he/LC_MESSAGES/django.mo,sha256=MnCcK4Vb3Z5ZQ2A52tb0kM60hmoHQJ0UrWcrhuI2RK0,1204
+django/contrib/redirects/locale/he/LC_MESSAGES/django.po,sha256=gjFr6b15s5JoAT6OoLCA3ApfwiqZ_vhB-EXEWOiUEwo,1427
+django/contrib/redirects/locale/hi/LC_MESSAGES/django.mo,sha256=onR8L7Kvkx6HgFLK7jT-wA_zjarBN8pyltG6BbKFIWU,1409
+django/contrib/redirects/locale/hi/LC_MESSAGES/django.po,sha256=fNv9_qwR9iS-pjWNXnrUFIqvc10lwg3bfj5lgdQOy1U,1649
+django/contrib/redirects/locale/hr/LC_MESSAGES/django.mo,sha256=7wHi6Uu0czZhI6v0ndJJ1wSkalTRfn7D5ovyw8tr4U4,1207
+django/contrib/redirects/locale/hr/LC_MESSAGES/django.po,sha256=HtxZwZ-ymmf-XID0z5s7nGYg-4gJL8i6FDGWt9i4Wns,1406
+django/contrib/redirects/locale/hsb/LC_MESSAGES/django.mo,sha256=6lfIW4LcMGvuLOY0U4w1V6Xwcd_TsUC3r-QzZOOLwys,1221
+django/contrib/redirects/locale/hsb/LC_MESSAGES/django.po,sha256=l5pATo8NHa8ypB8dCigRwqpLZvV8W0v2vPh60oAeGn0,1420
+django/contrib/redirects/locale/hu/LC_MESSAGES/django.mo,sha256=4oYBNGEmFMISzw3LExVf6CHsJD_o20mMy132pwzM-wk,1111
+django/contrib/redirects/locale/hu/LC_MESSAGES/django.po,sha256=UYJ_ZrAnOqA6S8nkkfN_FBLxCyPHJjOMd1OSIUVc8aY,1383
+django/contrib/redirects/locale/hy/LC_MESSAGES/django.mo,sha256=gT5x1TZXMNyBwfmQ-C_cOB60JGYdKIM7tVb3-J5d6nw,1261
+django/contrib/redirects/locale/hy/LC_MESSAGES/django.po,sha256=40QTpth2AVeoy9P36rMJC2C82YsBh_KYup19WL6zM6w,1359
+django/contrib/redirects/locale/ia/LC_MESSAGES/django.mo,sha256=PDB5ZQP6iH31xN6N2YmPZYjt6zzc88TRmh9_gAWH2U0,1152
+django/contrib/redirects/locale/ia/LC_MESSAGES/django.po,sha256=GXjbzY-cQz2QLx_iuqgijT7VUMcoNKL7prbP6yIbj8E,1297
+django/contrib/redirects/locale/id/LC_MESSAGES/django.mo,sha256=XEsvVWMR9As9csO_6iXNAcLZrErxz3HfDj5GTe06fJU,1105
+django/contrib/redirects/locale/id/LC_MESSAGES/django.po,sha256=t8FoC1xIB-XHDplyDJByQGFnHggxR0LSfUMGwWoAKWE,1410
+django/contrib/redirects/locale/io/LC_MESSAGES/django.mo,sha256=vz7TWRML-DFDFapbEXTByb9-pRQwoeJ0ApSdh6nOzXY,1019
+django/contrib/redirects/locale/io/LC_MESSAGES/django.po,sha256=obStuMYYSQ7x2utkGS3gekdPfnsNAwp3DcNwlwdg1sI,1228
+django/contrib/redirects/locale/is/LC_MESSAGES/django.mo,sha256=aMjlGilYfP7clGriAp1Za60uCD40rvLt9sKXuYX3ABg,1040
+django/contrib/redirects/locale/is/LC_MESSAGES/django.po,sha256=nw5fxVV20eQqsk4WKg6cIiKttG3zsITSVzH4p5xBV8s,1299
+django/contrib/redirects/locale/it/LC_MESSAGES/django.mo,sha256=bBj6dvhZSpxojLZ0GiMBamh1xiluxAYMt6RHubi9CxU,1092
+django/contrib/redirects/locale/it/LC_MESSAGES/django.po,sha256=NHSVus7ixtrB7JDIrYw22srZcse5i4Z9y8Ply_-Jcts,1390
+django/contrib/redirects/locale/ja/LC_MESSAGES/django.mo,sha256=XSJw3iLK0gYVjZ86MYuV4jfoiN_-WkH--oMK5uW9cs8,1193
+django/contrib/redirects/locale/ja/LC_MESSAGES/django.po,sha256=SlYrmC3arGgS7SL8cCnq7d37P-bQGcmpgUXAwVC2eRw,1510
+django/contrib/redirects/locale/ka/LC_MESSAGES/django.mo,sha256=0aOLKrhUX6YAIMNyt6KES9q2iFk2GupEr76WeGlJMkk,1511
+django/contrib/redirects/locale/ka/LC_MESSAGES/django.po,sha256=AQWIEdhxp55XnJwwHrUxxQaGbLJPmdo1YLeT86IJqnY,1725
+django/contrib/redirects/locale/kab/LC_MESSAGES/django.mo,sha256=Ogx9NXK1Nfw4ctZfp-slIL81ziDX3f4DZ01OkVNY5Tw,699
+django/contrib/redirects/locale/kab/LC_MESSAGES/django.po,sha256=gI6aUPkXH-XzKrStDsMCMNfQKDEc-D1ffqE-Z-ItQuI,1001
+django/contrib/redirects/locale/kk/LC_MESSAGES/django.mo,sha256=KVLc6PKL1MP_Px0LmpoW2lIvgLiSzlvoJ9062F-s3Zw,1261
+django/contrib/redirects/locale/kk/LC_MESSAGES/django.po,sha256=Xoy4mnOT51F_GS1oIO91EAuwt-ZfePKh-sutedo6D_g,1478
+django/contrib/redirects/locale/km/LC_MESSAGES/django.mo,sha256=tcW1s7jvTG0cagtdRNT0jSNkhX-B903LKl7bK31ZvJU,1248
+django/contrib/redirects/locale/km/LC_MESSAGES/django.po,sha256=KJ4h1umpfFLdsWZtsfXoeOl6cUPUD97U4ISWt80UZ2U,1437
+django/contrib/redirects/locale/kn/LC_MESSAGES/django.mo,sha256=24GHcQlEoCDri-98eLtqLbGjtJz9cTPAfYdAijsL5ck,788
+django/contrib/redirects/locale/kn/LC_MESSAGES/django.po,sha256=xkH24itr2fpuCQMGQ3xssOqaN_7KzM-GLy0u00ti27I,1245
+django/contrib/redirects/locale/ko/LC_MESSAGES/django.mo,sha256=viohri0QV3d46CN-YZP1k7w83Ac8r5lCkWU8fhbAEEc,1134
+django/contrib/redirects/locale/ko/LC_MESSAGES/django.po,sha256=8TsMfyl-BqGb-8fI12pazzlI7x3X1yruIYuvFroLti0,1521
+django/contrib/redirects/locale/ky/LC_MESSAGES/django.mo,sha256=4jX_g-hledmjWEx0RvY99G5QcBj_mQt_HZzpd000J44,1265
+django/contrib/redirects/locale/ky/LC_MESSAGES/django.po,sha256=yvx21nxsqqVzPyyxX9_rF-oeaY2WszXrG4ZDSZTW6-4,1522
+django/contrib/redirects/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
+django/contrib/redirects/locale/lb/LC_MESSAGES/django.po,sha256=Hv1CF9CC78YuVVNpklDtPJDU5-iIUeuXcljewmc9akg,946
+django/contrib/redirects/locale/lt/LC_MESSAGES/django.mo,sha256=reiFMXJnvE4XUosbKjyvUFzl4IKjlJoFK1gVJE9Tbnc,1191
+django/contrib/redirects/locale/lt/LC_MESSAGES/django.po,sha256=G56UIYuuVLgwzHCIj_suHNYPe1z76Y_cauWfGEs4nKI,1448
+django/contrib/redirects/locale/lv/LC_MESSAGES/django.mo,sha256=slGK6O2tYD5yciS8m_7h2WA4LOPf05nQ4oTRKB63etE,1175
+django/contrib/redirects/locale/lv/LC_MESSAGES/django.po,sha256=GUDn1IYQ5UMOQUBvGfuVOeVb-bpf5FHVigqTt_N0I0M,1442
+django/contrib/redirects/locale/mk/LC_MESSAGES/django.mo,sha256=3XGgf2K60LclScPKcgw07TId6x535AW5jtGVJ9lC01A,1353
+django/contrib/redirects/locale/mk/LC_MESSAGES/django.po,sha256=Smsdpid5VByoxvnfzju_XOlp6aTPl8qshFptot3cRYM,1596
+django/contrib/redirects/locale/ml/LC_MESSAGES/django.mo,sha256=IhSkvbgX9xfE4GypOQ7W7SDM-wOOqx1xgSTW7L1JofU,1573
+django/contrib/redirects/locale/ml/LC_MESSAGES/django.po,sha256=9KpXf88GRUB5I51Rj3q9qhvhjHFINuiJ9ig0SZdYE6k,1755
+django/contrib/redirects/locale/mn/LC_MESSAGES/django.mo,sha256=14fdHC_hZrRaA0EAFzBJy8BHj4jMMX6l2e6rLLBtJ8E,1274
+django/contrib/redirects/locale/mn/LC_MESSAGES/django.po,sha256=7_QzUWf5l0P-7gM35p9UW7bOj33NabQq_zSrekUeZsY,1502
+django/contrib/redirects/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
+django/contrib/redirects/locale/mr/LC_MESSAGES/django.po,sha256=0aGKTlriCJoP-Tirl-qCl7tjjpjURhgCjRGmurHVO3c,940
+django/contrib/redirects/locale/ms/LC_MESSAGES/django.mo,sha256=WUk6hvvHPWuylCGiDvy0MstWoQ1mdmwwfqlms1Nv4Ng,1094
+django/contrib/redirects/locale/ms/LC_MESSAGES/django.po,sha256=bsQDwxqtS5FgPCqTrfm9kw2hH_R2y44DnI5nluUgduc,1255
+django/contrib/redirects/locale/my/LC_MESSAGES/django.mo,sha256=H5-y9A3_1yIXJzC4sSuHqhURxhOlnYEL8Nvc0IF4zUE,549
+django/contrib/redirects/locale/my/LC_MESSAGES/django.po,sha256=MZGNt0jMQA6aHA6OmjvaC_ajvRWfUfDiKkV0j3_E480,1052
+django/contrib/redirects/locale/nb/LC_MESSAGES/django.mo,sha256=pxRtj5VFxTQBbi_mDS05iGoQs4BZ4y6LLJZ9pozJezY,1110
+django/contrib/redirects/locale/nb/LC_MESSAGES/django.po,sha256=ALYXciVa0d0sG70dqjtk17Yh_qwzKAzTXDlEZSU9kc0,1392
+django/contrib/redirects/locale/ne/LC_MESSAGES/django.mo,sha256=TxTnBGIi5k0PKAjADeCuOAJQV5dtzLrsFRXBXtfszWI,1420
+django/contrib/redirects/locale/ne/LC_MESSAGES/django.po,sha256=5b5R-6AlSIQrDyTtcmquoW5xrQRGZwlxZpBpZfVo5t4,1607
+django/contrib/redirects/locale/nl/LC_MESSAGES/django.mo,sha256=Xeh1YbEAu7Lhz07RXPTMDyv7AyWF9Bhe-9oHdWT74mo,1129
+django/contrib/redirects/locale/nl/LC_MESSAGES/django.po,sha256=QuNgrX7w2wO15KPEe3ogVhXbkt0v60EwKmKfD7-PedU,1476
+django/contrib/redirects/locale/nn/LC_MESSAGES/django.mo,sha256=8TQXBF2mzENl7lFpcrsKxkJ4nKySTOgXJM5_I2OD7q8,1143
+django/contrib/redirects/locale/nn/LC_MESSAGES/django.po,sha256=pfrKVQd1wLKKpq-b7CBpc-rZnEEgyZFDSjbipsEiwxM,1344
+django/contrib/redirects/locale/os/LC_MESSAGES/django.mo,sha256=joQ-ibV9_6ctGMNPLZQLCx5fUamRQngs6_LDd_s9sMQ,1150
+django/contrib/redirects/locale/os/LC_MESSAGES/django.po,sha256=ZwFWiuGS9comy7r2kMnKuqaPOvVehVdAAuFvXM5ldxM,1358
+django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo,sha256=MY-OIDNXlZth-ZRoOJ52nlUPg_51_F5k0NBIpc7GZEw,748
+django/contrib/redirects/locale/pa/LC_MESSAGES/django.po,sha256=TPDTK2ZvDyvO1ob8Qfr64QDbHVWAREfEeBO5w9jf63E,1199
+django/contrib/redirects/locale/pl/LC_MESSAGES/django.mo,sha256=9Sc_8aDC8-PADnr4hYdat6iRUXj0QxsWR1RGWKIQP3M,1285
+django/contrib/redirects/locale/pl/LC_MESSAGES/django.po,sha256=RLuSAlWQPvxDGSNHL3j5ohMdf4IZL-g21-_QIuTdY4c,1605
+django/contrib/redirects/locale/pt/LC_MESSAGES/django.mo,sha256=WocPaVk3fQEz_MLmGVtFBGwsThD-gNU7GDocqEbeaBA,1129
+django/contrib/redirects/locale/pt/LC_MESSAGES/django.po,sha256=ptCzoE41c9uFAbgSjb6VHSFYPEUv_51YyBdoThXN3XA,1350
+django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.mo,sha256=LxFEZCH75ucCaB5fEmdsjEJi5aJa3barRLqcd6r-gj0,1171
+django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po,sha256=PO5whkwiagEN_s8ViBDN41dW35wdjAuXZBB1j2m09lY,1615
+django/contrib/redirects/locale/ro/LC_MESSAGES/django.mo,sha256=D8FkmV6IxZOn5QAPBu9PwhStBpVQWudU62wKa7ADfJY,1158
+django/contrib/redirects/locale/ro/LC_MESSAGES/django.po,sha256=Z_-pDi2-A7_KXrEQtFlAJ_KLO0vXFKCbMphsNlqfNJk,1477
+django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo,sha256=IvO0IXq1xuX0wpo2hV8po1AMifLS3ElGyQal0vmC_Jw,1457
+django/contrib/redirects/locale/ru/LC_MESSAGES/django.po,sha256=FHb4L3RMVV5ajxGj9y6ZymPtO_XjZrhHmvCZBPwwzmQ,1762
+django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo,sha256=oVA89AU0UVErADtesum66Oo3D27RRy04qLHy3n0Y9-w,1189
+django/contrib/redirects/locale/sk/LC_MESSAGES/django.po,sha256=Kjbdc7nrKsMCaEphxUdGb4VbpJbFhF0cs3ReqrY7638,1468
+django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo,sha256=GAZtOFSUxsOHdXs3AzT40D-3JFWIlNDZU_Z-cMvdaHo,1173
+django/contrib/redirects/locale/sl/LC_MESSAGES/django.po,sha256=gkZTyxNh8L2gNxyLVzm-M1HTiK8KDvughTa2MK9NzWo,1351
+django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo,sha256=f2HyVjWFGnjNXV-EIk0YMFaMH6_ZwYLYgSDwU4fIJfM,1165
+django/contrib/redirects/locale/sq/LC_MESSAGES/django.po,sha256=gbd4JxoevGfDTRx3iYfDtlnh54EwyRKYXxs4XagHvRM,1453
+django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo,sha256=OK90avxrpYxBcvPIZ_tDlSZP6PyRCzFg_7h0F_JlMy8,1367
+django/contrib/redirects/locale/sr/LC_MESSAGES/django.po,sha256=Ipi7j7q5N8aNGWmkz5XGlOPqpD46xCLKarfs-lNbKqM,1629
+django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=qYXT0j80c7a5jMsxeezncAL9Gff2Pb7eJz8iTX0TRX4,1210
+django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po,sha256=CL3ij3uGK8UOMggLXf0MctEydLbyi-9zvkXN5Teuu9c,1424
+django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo,sha256=2j_IyOgbM_yED5lF10r7KGguEC2qX58dRIVogWj5PVY,1134
+django/contrib/redirects/locale/sv/LC_MESSAGES/django.po,sha256=lIFNLfEondtzlwlG3tDf3AH59uEotLtj-XdL87c-QUo,1404
+django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo,sha256=oJnTp9CTgNsg5TSOV_aPZIUXdr6-l65hAZbaARZCO2w,1078
+django/contrib/redirects/locale/sw/LC_MESSAGES/django.po,sha256=CTVwA3O7GUQb7l1WpbmT8kOfqr7DpqnIyQt3HWJ6YTQ,1245
+django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo,sha256=AE6Py2_CV2gQKjKQAa_UgkLT9i61x3i1hegQpRGuZZM,1502
+django/contrib/redirects/locale/ta/LC_MESSAGES/django.po,sha256=ojdq8p4HnwtK0n6By2I6_xuucOpJIobJEGRMGc_TrS8,1700
+django/contrib/redirects/locale/te/LC_MESSAGES/django.mo,sha256=Gtcs4cbgrD7-bSkPKiPbM5DcjONS2fSdHhvWdbs_E1M,467
+django/contrib/redirects/locale/te/LC_MESSAGES/django.po,sha256=RT-t3TjcOLyNQQWljVrIcPWErKssh_HQMyGujloy-EI,939
+django/contrib/redirects/locale/tg/LC_MESSAGES/django.mo,sha256=6e4Pk9vX1csvSz80spVLhNTd3N251JrXaCga9n60AP8,782
+django/contrib/redirects/locale/tg/LC_MESSAGES/django.po,sha256=2Cmle5usoNZBo8nTfAiqCRq3KqN1WKKdc-mogUOJm9I,1177
+django/contrib/redirects/locale/th/LC_MESSAGES/django.mo,sha256=1l6eO0k1KjcmuRJKUS4ZdtJGhAUmUDMAMIeNwEobQqY,1331
+django/contrib/redirects/locale/th/LC_MESSAGES/django.po,sha256=DVVqpGC6zL8Hy8e6P8ZkhKbvcMJmXV5euLxmfoTCtms,1513
+django/contrib/redirects/locale/tk/LC_MESSAGES/django.mo,sha256=NkxO6C7s1HHT1Jrmwad9zaD3pPyW_sPuZz3F2AGUD7M,1155
+django/contrib/redirects/locale/tk/LC_MESSAGES/django.po,sha256=0EQj1I1oNbAovKmF7o2rQ8_QsQiYqEFDab2KlCFw0s0,1373
+django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo,sha256=-qySxKYwxfFO79cBytvzTBeFGdio1wJlM5DeBBfdxns,1133
+django/contrib/redirects/locale/tr/LC_MESSAGES/django.po,sha256=-03z3YMI6tlt12xwFI2lWchOxiIVbkdVRhghaCoMKlk,1408
+django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo,sha256=Hf1JXcCGNwedxy1nVRM_pQ0yUebC-tvOXr7P0h86JyI,1178
+django/contrib/redirects/locale/tt/LC_MESSAGES/django.po,sha256=2WCyBQtqZk-8GXgtu-x94JYSNrryy2QoMnirhiBrgV0,1376
+django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
+django/contrib/redirects/locale/udm/LC_MESSAGES/django.po,sha256=xsxlm4itpyLlLdPQRIHLuvTYRvruhM3Ezc9jtp3XSm4,934
+django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo,sha256=QbN1ABfbr2YbZQXz2U4DI-6iTvWoKPrLAn5tGq57G5Y,1569
+django/contrib/redirects/locale/uk/LC_MESSAGES/django.po,sha256=pH9M4ilsJneoHw6E1E3T54QCHGS_i4tlhDc0nbAJP8I,1949
+django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo,sha256=CQkt-yxyAaTd_Aj1ZZC8s5-4fI2TRyTEZ-SYJZgpRrQ,1138
+django/contrib/redirects/locale/ur/LC_MESSAGES/django.po,sha256=CkhmN49PvYTccvlSRu8qGpcbx2C-1aY7K3Lq1VC2fuM,1330
+django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo,sha256=vD0Y920SSsRsLROKFaU6YM8CT5KjQxJcgMh5bZ4Pugo,743
+django/contrib/redirects/locale/uz/LC_MESSAGES/django.po,sha256=G2Rj-6g8Vse2Bp8L_hGIO84S--akagMXj8gSa7F2lK4,1195
+django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo,sha256=BquXycJKh-7-D9p-rGUNnjqzs1d6S1YhEJjFW8_ARFA,1106
+django/contrib/redirects/locale/vi/LC_MESSAGES/django.po,sha256=xsCASrGZNbQk4d1mhsTZBcCpPJ0KO6Jr4Zz1wfnL67s,1301
+django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=iftb_HccNV383_odHbB6Tikn2h7EtP_9QK-Plq2xwTY,1100
+django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po,sha256=xZmfuCEYx7ou_qvtxBcBly5mBmkSBEhnx0xqJj3nvMw,1490
+django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=-H2o5p5v8j5RqKZ6vOsWToFWGOn8CaO3KSTiU42Zqjk,1071
+django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po,sha256=fQicS5nmJLgloKM83l6NcSJp36-Wjn2Dl9jf03e0pGo,1334
+django/contrib/redirects/middleware.py,sha256=ydqidqi5JTaoguEFQBRzLEkU3HeiohgVsFglHUE-HIU,1921
+django/contrib/redirects/migrations/0001_initial.py,sha256=FmCw6R7-BK2bQIsetCADPKjV_s5bU4_gQLXzs5YySrk,2102
+django/contrib/redirects/migrations/0002_alter_redirect_new_path_help_text.py,sha256=qUWUkoM5ak5ywVulV9dzKNby3iDZgG212c9U659KdQg,636
+django/contrib/redirects/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-310.pyc,,
+django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-310.pyc,,
+django/contrib/redirects/migrations/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/redirects/models.py,sha256=KJ6mj0BS243BNPKp26K7OSqcT9j49FPth5m0gNWWxFM,1083
+django/contrib/sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/sessions/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/sessions/__pycache__/apps.cpython-310.pyc,,
+django/contrib/sessions/__pycache__/base_session.cpython-310.pyc,,
+django/contrib/sessions/__pycache__/exceptions.cpython-310.pyc,,
+django/contrib/sessions/__pycache__/middleware.cpython-310.pyc,,
+django/contrib/sessions/__pycache__/models.cpython-310.pyc,,
+django/contrib/sessions/__pycache__/serializers.cpython-310.pyc,,
+django/contrib/sessions/apps.py,sha256=5WIMqa3ymqEvYMnFHe3uWZB8XSijUF_NSgaorRD50Lg,194
+django/contrib/sessions/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/sessions/backends/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/sessions/backends/__pycache__/base.cpython-310.pyc,,
+django/contrib/sessions/backends/__pycache__/cache.cpython-310.pyc,,
+django/contrib/sessions/backends/__pycache__/cached_db.cpython-310.pyc,,
+django/contrib/sessions/backends/__pycache__/db.cpython-310.pyc,,
+django/contrib/sessions/backends/__pycache__/file.cpython-310.pyc,,
+django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-310.pyc,,
+django/contrib/sessions/backends/base.py,sha256=xm9Rs0ZI8ERP6cZ-N4KdfVww3aWiXC8FcgcxQWNdrqw,11744
+django/contrib/sessions/backends/cache.py,sha256=Dz4lOirEI3ZSrvOWnAffQpyA53TuPm3MmV1u8jkT-hI,2741
+django/contrib/sessions/backends/cached_db.py,sha256=pxPlY9klOH0NCht8OZrHQew_UkMrQlKMtIKMLYIv2DI,2098
+django/contrib/sessions/backends/db.py,sha256=qEYZNmyWk1pBbuXGXbTsLtQ2Xt_HgoRALxTQm55ZLy0,3785
+django/contrib/sessions/backends/file.py,sha256=4o1LB0hZz_SCQjAwXHulDnFB1QZrEprAY4LKQdGfkRc,7754
+django/contrib/sessions/backends/signed_cookies.py,sha256=keRgy5CyvufiEo4A91znOKbX6UOzzH2hzaw51UzK_0Y,2676
+django/contrib/sessions/base_session.py,sha256=1woSGGF4IFWm2apOabxtdQHeVS6OmnivL_fwjUYGJwc,1490
+django/contrib/sessions/exceptions.py,sha256=KhkhXiFwfUflSP_t6wCLOEXz1YjBRTKVNbrLmGhOTLo,359
+django/contrib/sessions/locale/af/LC_MESSAGES/django.mo,sha256=0DS0pgVrMN-bUimDfesgHs8Lgr0loz2c6nJdz58RxyQ,717
+django/contrib/sessions/locale/af/LC_MESSAGES/django.po,sha256=ZJRLBshQCAiTTAUycdB3MZIadLeHR5LxbSlDvSWLnEo,838
+django/contrib/sessions/locale/ar/LC_MESSAGES/django.mo,sha256=yoepqaR68PTGLx--cAOzP94Sqyl5xIYpeQ0IFWgY380,846
+django/contrib/sessions/locale/ar/LC_MESSAGES/django.po,sha256=ZgwtBYIdtnqp_8nKHXF1NVJFzQU81-3yv9b7STrQHMc,995
+django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=_iSasR22CxvNWfei6aE_24woPhhhvNzQl5FUO_649dc,817
+django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.po,sha256=vop5scstamgFSnO_FWXCEnI7R1N26t7jy_mZUAfETcY,978
+django/contrib/sessions/locale/ast/LC_MESSAGES/django.mo,sha256=hz2m-PkrHby2CKfIOARj6kCzisT-Vs0syfDSTx_iVVw,702
+django/contrib/sessions/locale/ast/LC_MESSAGES/django.po,sha256=M90j1Nx6oDJ16hguUkfKYlyb5OymUeZ5xzPixWxSC7I,846
+django/contrib/sessions/locale/az/LC_MESSAGES/django.mo,sha256=_4XcYdtRasbCjRoaWGoULsXX2cEa--KdRdqbnGoaRuM,731
+django/contrib/sessions/locale/az/LC_MESSAGES/django.po,sha256=qYd7vz6A-hHQNwewzI6wEsxRVLdoc2xLGm1RPW0Hxc4,891
+django/contrib/sessions/locale/be/LC_MESSAGES/django.mo,sha256=FHZ72QuOd-vAOjOXisLs4CaEk7uZuzjO_EfUSB6754M,854
+django/contrib/sessions/locale/be/LC_MESSAGES/django.po,sha256=tHsYVn3XNTcukB0SrHUWP1iV763rrQHCimOyJHRPiek,1023
+django/contrib/sessions/locale/bg/LC_MESSAGES/django.mo,sha256=fFZ8EgRlJ1Z-IP8gPtsUXAnqVHbqQRZpYv6PLWNlNVA,759
+django/contrib/sessions/locale/bg/LC_MESSAGES/django.po,sha256=tXcaDPNmFIv0RU-7sGscRkLCbKEgTBowzVj3AYymarY,997
+django/contrib/sessions/locale/bn/LC_MESSAGES/django.mo,sha256=0BdFN7ou9tmoVG00fCA-frb1Tri3iKz43W7SWal398s,762
+django/contrib/sessions/locale/bn/LC_MESSAGES/django.po,sha256=LycmTel6LXV2HGGN6qzlAfID-cVEQCNnW1Nv_hbWXJk,909
+django/contrib/sessions/locale/br/LC_MESSAGES/django.mo,sha256=6ubPQUyXX08KUssyVZBMMkTlD94mlA6wzsteAMiZ8C8,1027
+django/contrib/sessions/locale/br/LC_MESSAGES/django.po,sha256=LKxGGHOQejKpUp18rCU2FXW8D_H3WuP_P6dPlEluwcE,1201
+django/contrib/sessions/locale/bs/LC_MESSAGES/django.mo,sha256=M7TvlJMrSUAFhp7oUSpUKejnbTuIK-19yiGBBECl9Sc,759
+django/contrib/sessions/locale/bs/LC_MESSAGES/django.po,sha256=Ur0AeRjXUsLgDJhcGiw75hRk4Qe98DzPBOocD7GFDRQ,909
+django/contrib/sessions/locale/ca/LC_MESSAGES/django.mo,sha256=tbaZ48PaihGGD9-2oTKiMFY3kbXjU59nNciCRINOBNk,738
+django/contrib/sessions/locale/ca/LC_MESSAGES/django.po,sha256=tJuJdehKuD9aXOauWOkE5idQhsVsLbeg1Usmc6N_SP0,906
+django/contrib/sessions/locale/cs/LC_MESSAGES/django.mo,sha256=wEFP4NNaRQDbcbw96UC906jN4rOrlPJMn60VloXr944,759
+django/contrib/sessions/locale/cs/LC_MESSAGES/django.po,sha256=7XkKESwfOmbDRDbUYr1f62-fDOuyI-aCqLGaEiDrmX8,962
+django/contrib/sessions/locale/cy/LC_MESSAGES/django.mo,sha256=GeWVeV2PvgLQV8ecVUA2g3-VvdzMsedgIDUSpn8DByk,774
+django/contrib/sessions/locale/cy/LC_MESSAGES/django.po,sha256=zo18MXtkEdO1L0Q6ewFurx3lsEWTCdh0JpQJTmvw5bY,952
+django/contrib/sessions/locale/da/LC_MESSAGES/django.mo,sha256=7_YecCzfeYQp9zVYt2B7MtjhAAuVb0BcK2D5Qv_uAbg,681
+django/contrib/sessions/locale/da/LC_MESSAGES/django.po,sha256=qX_Oo7niVo57bazlIYFA6bnVmPBclUUTWvZFYNLaG04,880
+django/contrib/sessions/locale/de/LC_MESSAGES/django.mo,sha256=N3kTal0YK9z7Te3zYGLbJmoSB6oWaviWDLGdPlsPa9g,721
+django/contrib/sessions/locale/de/LC_MESSAGES/django.po,sha256=0qnfDeCUQN2buKn6R0MvwhQP05XWxSu-xgvfxvnJe3k,844
+django/contrib/sessions/locale/dsb/LC_MESSAGES/django.mo,sha256=RABl3WZmY6gLh4IqmTUhoBEXygDzjp_5lLF1MU9U5fA,810
+django/contrib/sessions/locale/dsb/LC_MESSAGES/django.po,sha256=cItKs5tASYHzDxfTg0A_dgBQounpzoGyOEFn18E_W_g,934
+django/contrib/sessions/locale/el/LC_MESSAGES/django.mo,sha256=QbTbmcfgc8_4r5hFrIghDhk2XQ4f8_emKmqupMG2ah0,809
+django/contrib/sessions/locale/el/LC_MESSAGES/django.po,sha256=HeaEbpVmFhhrZt2NsZteYaYoeo8FYKZF0IoNJwtzZkc,971
+django/contrib/sessions/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/sessions/locale/en/LC_MESSAGES/django.po,sha256=afaM-IIUZtcRZduojUTS8tT0w7C4Ya9lXgReOvq_iF0,804
+django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.mo,sha256=FgY1K6IVyQjMjXqVZxcsyWW_Tu5ckfrbmIfNYq5P-_E,693
+django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.po,sha256=cMV15gJq8jNSUzkhn7uyOf2JYMFx7BNH1oFYa1vISnc,853
+django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.mo,sha256=T5NQCTYkpERfP9yKbUvixT0VdBt1zGmGB8ITlkVc420,707
+django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.po,sha256=1ks_VE1qpEfPcyKg0HybkTG0-DTttTHTfUPhQCR53sw,849
+django/contrib/sessions/locale/eo/LC_MESSAGES/django.mo,sha256=eBvYQbZS_WxVV3QCSZAOyHNIljC2ZXxVc4mktUuXVjI,727
+django/contrib/sessions/locale/eo/LC_MESSAGES/django.po,sha256=Ru9xicyTgHWVHh26hO2nQNFRQmwBnYKEagsS8TZRv3E,917
+django/contrib/sessions/locale/es/LC_MESSAGES/django.mo,sha256=jbHSvHjO2OCLlBD66LefocKOEbefWbPhj-l3NugiWuc,734
+django/contrib/sessions/locale/es/LC_MESSAGES/django.po,sha256=fY5WXeONEXHeuBlH0LkvzdZ2CSgbvLZ8BJc429aIbhI,909
+django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.mo,sha256=_8icF2dMUWj4WW967rc5npgndXBAdJrIiz_VKf5D-Rw,694
+django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.po,sha256=AnmvjeOA7EBTJ6wMOkCl8JRLVYRU8KS0egPijcKutns,879
+django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.mo,sha256=UP7ia0gV9W-l0Qq5AS4ZPadJtml8iuzzlS5C9guMgh8,754
+django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.po,sha256=_XeiiRWvDaGjofamsRHr5up_EQvcw0w-GLLeWK27Af8,878
+django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.mo,sha256=MDM0K3xMvyf8ymvAurHYuacpxfG_YfJFyNnp1uuc6yY,756
+django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.po,sha256=Y7VNa16F_yyK7_XJvF36rR2XNW8aBJK4UDweufyXpxE,892
+django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486
+django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.po,sha256=zWjgB0AmsmhX2tjk1PgldttqY56Czz8epOVCaYWXTLU,761
+django/contrib/sessions/locale/et/LC_MESSAGES/django.mo,sha256=aL1jZWourEC7jtjsuBZHD-Gw9lpL6L1SoqjTtzguxD0,737
+django/contrib/sessions/locale/et/LC_MESSAGES/django.po,sha256=VNBYohAOs59jYWkjVMY-v2zwVy5AKrtBbFRJZLwdCFg,899
+django/contrib/sessions/locale/eu/LC_MESSAGES/django.mo,sha256=M9piOB_t-ZnfN6pX-jeY0yWh2S_5cCuo1oGiy7X65A4,728
+django/contrib/sessions/locale/eu/LC_MESSAGES/django.po,sha256=bHdSoknoH0_dy26e93tWVdO4TT7rnCPXlSLPsYAhwyw,893
+django/contrib/sessions/locale/fa/LC_MESSAGES/django.mo,sha256=6DdJcqaYuBnhpFFHR42w-RqML0eQPFMAUEEDY0Redy8,755
+django/contrib/sessions/locale/fa/LC_MESSAGES/django.po,sha256=rklhNf0UFl2bM6mt7x9lWvfzPH4XWGbrW9Gc2w-9rzg,922
+django/contrib/sessions/locale/fi/LC_MESSAGES/django.mo,sha256=oAugvlTEvJmG8KsZw09WcfnifYY5oHnGo4lxcxqKeaY,721
+django/contrib/sessions/locale/fi/LC_MESSAGES/django.po,sha256=BVVrjbZZtLGAuZ9HK63p769CbjZFZMlS4BewSMfNMKU,889
+django/contrib/sessions/locale/fr/LC_MESSAGES/django.mo,sha256=aDGYdzx2eInF6IZ-UzPDEJkuYVPnvwVND3qVuSfJNWw,692
+django/contrib/sessions/locale/fr/LC_MESSAGES/django.po,sha256=hARxGdtBOzEZ_iVyzkNvcKlgyM8fOkdXTH3upj2XFYM,893
+django/contrib/sessions/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
+django/contrib/sessions/locale/fy/LC_MESSAGES/django.po,sha256=U-VEY4WbmIkmrnPK4Mv-B-pbdtDzusBCVmE8iHyvzFU,751
+django/contrib/sessions/locale/ga/LC_MESSAGES/django.mo,sha256=zTrydRCRDiUQwF4tQ3cN1-5w36i6KptagsdA5_SaGy0,747
+django/contrib/sessions/locale/ga/LC_MESSAGES/django.po,sha256=Qpk1JaUWiHSEPdgBk-O_KfvGzwlZ4IAA6c6-nsJe400,958
+django/contrib/sessions/locale/gd/LC_MESSAGES/django.mo,sha256=Yi8blY_fUD5YTlnUD6YXZvv1qjm4QDriO6CJIUe1wIk,791
+django/contrib/sessions/locale/gd/LC_MESSAGES/django.po,sha256=fEa40AUqA5vh743Zqv0FO2WxSFXGYk4IzUR4BoaP-C4,890
+django/contrib/sessions/locale/gl/LC_MESSAGES/django.mo,sha256=uQ2ZmtUNoVCB2mSlMGSy-j4a_hu9PBfJDo796d8beFA,701
+django/contrib/sessions/locale/gl/LC_MESSAGES/django.po,sha256=FovTLHdVK15N9FI9lFFAOP4zt7GsvO0kKdocgeVDkNk,902
+django/contrib/sessions/locale/he/LC_MESSAGES/django.mo,sha256=qhgjSWfGAOgl-i7iwzSrJttx88xcj1pB0iLkEK64mJU,809
+django/contrib/sessions/locale/he/LC_MESSAGES/django.po,sha256=KvQG6wOpokM-2JkhWnB2UUQacy5Ie1402K_pH2zUOu0,1066
+django/contrib/sessions/locale/hi/LC_MESSAGES/django.mo,sha256=naqxOjfAnNKy3qqnUG-4LGf9arLRJpjyWWmSj5tEfao,759
+django/contrib/sessions/locale/hi/LC_MESSAGES/django.po,sha256=WnTGvOz9YINMcUJg2BYCaHceZLKaTfsba_0AZtRNP38,951
+django/contrib/sessions/locale/hr/LC_MESSAGES/django.mo,sha256=axyJAmXmadpFxIhu8rroVD8NsGGadQemh9-_ZDo7L1U,819
+django/contrib/sessions/locale/hr/LC_MESSAGES/django.po,sha256=3G-qOYXBO-eMWWsa5LwTCW9M1oF0hlWgEz7hAK8hJqI,998
+django/contrib/sessions/locale/hsb/LC_MESSAGES/django.mo,sha256=_OXpOlCt4KU0i65Iw4LMjSsyn__E9wH20l9vDNBSEzw,805
+django/contrib/sessions/locale/hsb/LC_MESSAGES/django.po,sha256=yv3vX_UCDrdl07GQ79Mnytwgz2oTvySYOG9enzMpFJA,929
+django/contrib/sessions/locale/hu/LC_MESSAGES/django.mo,sha256=ik40LnsWkKYEUioJB9e11EX9XZ-qWMa-S7haxGhM-iI,727
+django/contrib/sessions/locale/hu/LC_MESSAGES/django.po,sha256=1-UWEEsFxRwmshP2x4pJbitWIGZ1YMeDDxnAX-XGNxc,884
+django/contrib/sessions/locale/hy/LC_MESSAGES/django.mo,sha256=x6VQWGdidRJFUJme-6jf1pcitktcQHQ7fhmw2UBej1Q,815
+django/contrib/sessions/locale/hy/LC_MESSAGES/django.po,sha256=eRMa3_A2Vx195mx2lvza1v-wcEcEeMrU63f0bgPPFjc,893
+django/contrib/sessions/locale/ia/LC_MESSAGES/django.mo,sha256=-o4aQPNJeqSDRSLqcKuYvJuKNBbFqDJDe3IzHgSgZeQ,744
+django/contrib/sessions/locale/ia/LC_MESSAGES/django.po,sha256=PULLDd3QOIU03kgradgQzT6IicoPhLPlUvFgRl-tGbA,869
+django/contrib/sessions/locale/id/LC_MESSAGES/django.mo,sha256=mOaIF0NGOO0-dt-nhHL-i3cfvt9-JKTbyUkFWPqDS9Y,705
+django/contrib/sessions/locale/id/LC_MESSAGES/django.po,sha256=EA6AJno3CaFOO-dEU9VQ_GEI-RAXS0v0uFqn1RJGjEs,914
+django/contrib/sessions/locale/io/LC_MESSAGES/django.mo,sha256=_rqAY6reegqmxmWc-pW8_kDaG9zflZuD-PGOVFsjRHo,683
+django/contrib/sessions/locale/io/LC_MESSAGES/django.po,sha256=tbKMxGuB6mh_m0ex9rO9KkTy6qyuRW2ERrQsGwmPiaw,840
+django/contrib/sessions/locale/is/LC_MESSAGES/django.mo,sha256=3QeMl-MCnBie9Sc_aQ1I7BrBhkbuArpoSJP95UEs4lg,706
+django/contrib/sessions/locale/is/LC_MESSAGES/django.po,sha256=LADIFJv8L5vgDJxiQUmKPSN64zzzrIKImh8wpLBEVWQ,853
+django/contrib/sessions/locale/it/LC_MESSAGES/django.mo,sha256=qTY3O-0FbbpZ5-BR5xOJWP0rlnIkBZf-oSawW_YJWlk,726
+django/contrib/sessions/locale/it/LC_MESSAGES/django.po,sha256=hEv0iTGLuUvEBk-lF-w7a9P3ifC0-eiodNtuSc7cXhg,869
+django/contrib/sessions/locale/ja/LC_MESSAGES/django.mo,sha256=hbv9FzWzXRIGRh_Kf_FLQB34xfmPU_9RQKn9u1kJqGU,757
+django/contrib/sessions/locale/ja/LC_MESSAGES/django.po,sha256=ppGx5ekOWGgDF3vzyrWsqnFUZ-sVZZhiOhvAzl_8v54,920
+django/contrib/sessions/locale/ka/LC_MESSAGES/django.mo,sha256=VZ-ysrDbea_-tMV-1xtlTeW62IAy2RWR94V3Y1iSh4U,803
+django/contrib/sessions/locale/ka/LC_MESSAGES/django.po,sha256=hqiWUiATlrc7qISF7ndlelIrFwc61kzhKje9l-DY6V4,955
+django/contrib/sessions/locale/kab/LC_MESSAGES/django.mo,sha256=W_yE0NDPJrVznA2Qb89VuprJNwyxSg59ovvjkQe6mAs,743
+django/contrib/sessions/locale/kab/LC_MESSAGES/django.po,sha256=FJeEuv4P3NT_PpWHEUsQVSWXu65nYkJ6Z2AlbSKb0ZA,821
+django/contrib/sessions/locale/kk/LC_MESSAGES/django.mo,sha256=FROGz_MuIhsIU5_-EYV38cHnRZrc3-OxxkBeK0ax9Rk,810
+django/contrib/sessions/locale/kk/LC_MESSAGES/django.po,sha256=P-oHO3Oi3V_RjWHjEAHdTrDfTwKP2xh3yJh7BlXL1VQ,1029
+django/contrib/sessions/locale/km/LC_MESSAGES/django.mo,sha256=VOuKsIG2DEeCA5JdheuMIeJlpmAhKrI6lD4KWYqIIPk,929
+django/contrib/sessions/locale/km/LC_MESSAGES/django.po,sha256=09i6Nd_rUK7UqFpJ70LMXTR6xS0NuGETRLe0CopMVBk,1073
+django/contrib/sessions/locale/kn/LC_MESSAGES/django.mo,sha256=TMZ71RqNR6zI20BeozyLa9cjYrWlvfIajGDfpnHd3pQ,810
+django/contrib/sessions/locale/kn/LC_MESSAGES/django.po,sha256=whdM8P74jkAAHvjgJN8Q77dYd9sIsf_135ID8KBu-a8,990
+django/contrib/sessions/locale/ko/LC_MESSAGES/django.mo,sha256=EUyVQYGtiFJg01mP30a0iOqBYHvpzHAcGTZM28Ubs5Q,700
+django/contrib/sessions/locale/ko/LC_MESSAGES/django.po,sha256=PjntvSzRz_Aekj9VFhGsP5yO6rAsxTMzwFj58JqToIU,855
+django/contrib/sessions/locale/ky/LC_MESSAGES/django.mo,sha256=ME7YUgKOYQz9FF_IdrqHImieEONDrkcn4T3HxTZKSV0,742
+django/contrib/sessions/locale/ky/LC_MESSAGES/django.po,sha256=JZHTs9wYmlWzilRMyp-jZWFSzGxWtPiQefPmLL9yhtM,915
+django/contrib/sessions/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
+django/contrib/sessions/locale/lb/LC_MESSAGES/django.po,sha256=3igeAnQjDg6D7ItBkQQhyBoFJOZlBxT7NoZiExwD-Fo,749
+django/contrib/sessions/locale/lt/LC_MESSAGES/django.mo,sha256=L9w8-qxlDlCqR_2P0PZegfhok_I61n0mJ1koJxzufy4,786
+django/contrib/sessions/locale/lt/LC_MESSAGES/django.po,sha256=dEefLGtg5flFr_v4vHS5HhK1kxx9WYWTw98cvEn132M,1023
+django/contrib/sessions/locale/lv/LC_MESSAGES/django.mo,sha256=exEzDUNwNS0GLsUkKPu_SfqBxU7T6VRA_T2schIQZ88,753
+django/contrib/sessions/locale/lv/LC_MESSAGES/django.po,sha256=fBgQEbsGg1ECVm1PFDrS2sfKs2eqmsqrSYzx9ELotNQ,909
+django/contrib/sessions/locale/mk/LC_MESSAGES/django.mo,sha256=4oTWp8-qzUQBiqG32hNieABgT3O17q2C4iEhcFtAxLA,816
+django/contrib/sessions/locale/mk/LC_MESSAGES/django.po,sha256=afApb5YRhPXUWR8yF_TTym73u0ov7lWiwRda1-uNiLY,988
+django/contrib/sessions/locale/ml/LC_MESSAGES/django.mo,sha256=tff5TsHILSV1kAAB3bzHQZDB9fgMglZJTofzCunGBzc,854
+django/contrib/sessions/locale/ml/LC_MESSAGES/django.po,sha256=eRkeupt42kUey_9vJmlH8USshnXPZ8M7aYHq88u-5iY,1016
+django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo,sha256=CcCH2ggVYrD29Q11ZMthcscBno2ePkQDbZfoYquTRPM,784
+django/contrib/sessions/locale/mn/LC_MESSAGES/django.po,sha256=nvcjbJzXiDvWFXrM5CxgOQIq8XucsZEUVdYkY8LnCRE,992
+django/contrib/sessions/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
+django/contrib/sessions/locale/mr/LC_MESSAGES/django.po,sha256=FQRdZ-qIDuvTCrwbnWfxoxNi8rywLSebcNbxGvr-hb0,743
+django/contrib/sessions/locale/ms/LC_MESSAGES/django.mo,sha256=rFi4D_ZURYUPjs5AqJ66bW70yL7AekAKWnrZRBvGPiE,649
+django/contrib/sessions/locale/ms/LC_MESSAGES/django.po,sha256=nZuJ_D0JZUzmGensLa7tSgzbBo05qgQcuHmte2oU6WQ,786
+django/contrib/sessions/locale/my/LC_MESSAGES/django.mo,sha256=8zzzyfJYok969YuAwDUaa6YhxaSi3wcXy3HRNXDb_70,872
+django/contrib/sessions/locale/my/LC_MESSAGES/django.po,sha256=mfs0zRBI0tugyyEfXBZzZ_FMIohydq6EYPZGra678pw,997
+django/contrib/sessions/locale/nb/LC_MESSAGES/django.mo,sha256=hfJ1NCFgcAAtUvNEpaZ9b31PyidHxDGicifUWANIbM8,717
+django/contrib/sessions/locale/nb/LC_MESSAGES/django.po,sha256=yXr6oYuiu01oELdQKuztQFWz8x5C2zS5OzEfU9MHJsU,908
+django/contrib/sessions/locale/ne/LC_MESSAGES/django.mo,sha256=slFgMrqGVtLRHdGorLGPpB09SM92_WnbnRR0rlpNlPQ,802
+django/contrib/sessions/locale/ne/LC_MESSAGES/django.po,sha256=1vyoiGnnaB8f9SFz8PGfzpw6V_NoL78DQwjjnB6fS98,978
+django/contrib/sessions/locale/nl/LC_MESSAGES/django.mo,sha256=84BTlTyxa409moKbQMFyJisI65w22p09qjJHBAmQe-g,692
+django/contrib/sessions/locale/nl/LC_MESSAGES/django.po,sha256=smRr-QPGm6h6hdXxghggWES8b2NnL7yDQ07coUypa8g,909
+django/contrib/sessions/locale/nn/LC_MESSAGES/django.mo,sha256=cytH72J3yS1PURcgyrD8R2PV5d3SbPE73IAqOMBPPVg,667
+django/contrib/sessions/locale/nn/LC_MESSAGES/django.po,sha256=y9l60yy_W3qjxWzxgJg5VgEH9KAIHIQb5hv7mgnep9w,851
+django/contrib/sessions/locale/os/LC_MESSAGES/django.mo,sha256=xVux1Ag45Jo9HQBbkrRzcWrNjqP09nMQl16jIh0YVlo,732
+django/contrib/sessions/locale/os/LC_MESSAGES/django.po,sha256=1hG5Vsz2a2yW05_Z9cTNrBKtK9VRPZuQdx4KJ_0n98o,892
+django/contrib/sessions/locale/pa/LC_MESSAGES/django.mo,sha256=qEx4r_ONwXK1-qYD5uxxXEQPqK5I6rf38QZoUSm7UVA,771
+django/contrib/sessions/locale/pa/LC_MESSAGES/django.po,sha256=M7fmVGP8DtZGEuTV3iJhuWWqILVUTDZvUey_mrP4_fM,918
+django/contrib/sessions/locale/pl/LC_MESSAGES/django.mo,sha256=F9CQb7gQ1ltP6B82JNKu8IAsTdHK5TNke0rtDIgNz3c,828
+django/contrib/sessions/locale/pl/LC_MESSAGES/django.po,sha256=C_MJBB-vwTZbx-t4-mzun-RxHhdOVv04b6xrWdnTv8E,1084
+django/contrib/sessions/locale/pt/LC_MESSAGES/django.mo,sha256=dlJF7hF4GjLmQPdAJhtf-FCKX26XsOmZlChOcxxIqPk,738
+django/contrib/sessions/locale/pt/LC_MESSAGES/django.po,sha256=cOycrw3HCHjSYBadpalyrg5LdRTlqZCTyMh93GOQ8O0,896
+django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.mo,sha256=XHNF5D8oXIia3e3LYwxd46a2JOgDc_ykvc8yuo21fT0,757
+django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.po,sha256=K_zxKaUKngWPFpvHgXOcymJEsiONSw-OrVrroRXmUUk,924
+django/contrib/sessions/locale/ro/LC_MESSAGES/django.mo,sha256=WR9I9Gum_pq7Qg2Gzhf-zAv43OwR_uDtsbhtx4Ta5gE,776
+django/contrib/sessions/locale/ro/LC_MESSAGES/django.po,sha256=fEgVxL_0Llnjspu9EsXBf8AVL0DGdfF7NgV88G7WN1E,987
+django/contrib/sessions/locale/ru/LC_MESSAGES/django.mo,sha256=n-8vXR5spEbdfyeWOYWC_6kBbAppNoRrWYgqKFY6gJA,913
+django/contrib/sessions/locale/ru/LC_MESSAGES/django.po,sha256=sNqNGdoof6eXzFlh4YIp1O54MdDOAFDjD3GvAFsNP8k,1101
+django/contrib/sessions/locale/sk/LC_MESSAGES/django.mo,sha256=Yntm624Wt410RwuNPU1c-WwQoyrRrBs69VlKMlNUHeQ,766
+django/contrib/sessions/locale/sk/LC_MESSAGES/django.po,sha256=wt7BJk6RpFogJ2Wwa9Mh0mJi9YMpNYKTUSDuDuv1Ong,975
+django/contrib/sessions/locale/sl/LC_MESSAGES/django.mo,sha256=EE6mB8BiYRyAxK6qzurRWcaYVs96FO_4rERYQdtIt3k,770
+django/contrib/sessions/locale/sl/LC_MESSAGES/django.po,sha256=KTjBWyvaNCHbpV9K6vbnavwxxXqf2DlIqVPv7MVFcO8,928
+django/contrib/sessions/locale/sq/LC_MESSAGES/django.mo,sha256=eRaTy3WOC76EYLtMSD4xtJj2h8eE4W-TS4VvCVxI5bw,683
+django/contrib/sessions/locale/sq/LC_MESSAGES/django.po,sha256=9pzp7834LQKafe5fJzC4OKsAd6XfgtEQl6K6hVLaBQM,844
+django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo,sha256=ZDBOYmWIoSyDeT0nYIIFeMtW5jwpr257CbdTZlkVeRQ,855
+django/contrib/sessions/locale/sr/LC_MESSAGES/django.po,sha256=OXQOYeac0ghuzLrwaErJGr1FczuORTu2yroFX5hvRnk,1027
+django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=f3x9f9hTOsJltghjzJMdd8ueDwzxJex6zTXsU-_Hf_Y,757
+django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.po,sha256=HKjo7hjSAvgrIvlI0SkgF3zxz8TtKWyBT51UGNhDwek,946
+django/contrib/sessions/locale/sv/LC_MESSAGES/django.mo,sha256=SGbr0K_5iAMA22MfseAldMDgLSEBrI56pCtyV8tMAPc,707
+django/contrib/sessions/locale/sv/LC_MESSAGES/django.po,sha256=vraY3915wBYGeYu9Ro0-TlBeLWqGZP1fbckLv8y47Ys,853
+django/contrib/sessions/locale/sw/LC_MESSAGES/django.mo,sha256=Edhqp8yuBnrGtJqPO7jxobeXN4uU5wKSLrOsFO1F23k,743
+django/contrib/sessions/locale/sw/LC_MESSAGES/django.po,sha256=iY4rN4T-AA2FBQA7DiWWFvrclqKiDYQefqwwVw61-f8,858
+django/contrib/sessions/locale/ta/LC_MESSAGES/django.mo,sha256=qLIThhFQbJKc1_UVr7wVIm1rJfK2rO5m84BCB_oKq7s,801
+django/contrib/sessions/locale/ta/LC_MESSAGES/django.po,sha256=bYqtYf9XgP9IKKFJXh0u64JhRhDvPPUliI1J-NeRpKE,945
+django/contrib/sessions/locale/te/LC_MESSAGES/django.mo,sha256=kteZeivEckt4AmAeKgmgouMQo1qqSQrI8M42B16gMnQ,786
+django/contrib/sessions/locale/te/LC_MESSAGES/django.po,sha256=dQgiNS52RHrL6bV9CEO7Jk9lk3YUQrUBDCg_bP2OSZc,980
+django/contrib/sessions/locale/tg/LC_MESSAGES/django.mo,sha256=N6AiKfV47QTlO5Z_r4SQZXVLtouu-NVSwWkePgD17Tc,747
+django/contrib/sessions/locale/tg/LC_MESSAGES/django.po,sha256=wvvDNu060yqlTxy3swM0x3v6QpvCB9DkfNm0Q-kb9Xk,910
+django/contrib/sessions/locale/th/LC_MESSAGES/django.mo,sha256=D41vbkoYMdYPj3587p-c5yytLVi9pE5xvRZEYhZrxPs,814
+django/contrib/sessions/locale/th/LC_MESSAGES/django.po,sha256=43704TUv4ysKhL8T5MowZwlyv1JZrPyVGrpdIyb3r40,988
+django/contrib/sessions/locale/tk/LC_MESSAGES/django.mo,sha256=pT_hpKCwFT60GUXzD_4z8JOhmh1HRnkZj-QSouVEgUA,699
+django/contrib/sessions/locale/tk/LC_MESSAGES/django.po,sha256=trqXxfyIbh4V4szol0pXETmEWRxAAKywPZ9EzVMVE-I,865
+django/contrib/sessions/locale/tr/LC_MESSAGES/django.mo,sha256=STDnYOeO1d9nSCVf7pSkMq8R7z1aeqq-xAuIYjsofuE,685
+django/contrib/sessions/locale/tr/LC_MESSAGES/django.po,sha256=XYKo0_P5xitYehvjMzEw2MTp_Nza-cIXEECV3dA6BmY,863
+django/contrib/sessions/locale/tt/LC_MESSAGES/django.mo,sha256=Q-FGu_ljTsxXO_EWu7zCzGwoqFXkeoTzWSlvx85VLGc,806
+django/contrib/sessions/locale/tt/LC_MESSAGES/django.po,sha256=UC85dFs_1836noZTuZEzPqAjQMFfSvj7oGmEWOGcfCA,962
+django/contrib/sessions/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
+django/contrib/sessions/locale/udm/LC_MESSAGES/django.po,sha256=CPml2Fn9Ax_qO5brCFDLPBoTiNdvsvJb1btQ0COwUfY,737
+django/contrib/sessions/locale/uk/LC_MESSAGES/django.mo,sha256=jzNrLuFghQMCHNRQ0ihnKMCicgear0yWiTOLnvdPszw,841
+django/contrib/sessions/locale/uk/LC_MESSAGES/django.po,sha256=4K2geuGjRpJCtNfGPMhYWZlGxUy5xzIoDKA2jL2iGos,1171
+django/contrib/sessions/locale/ur/LC_MESSAGES/django.mo,sha256=FkGIiHegr8HR8zjVyJ9TTW1T9WYtAL5Mg77nRKnKqWk,729
+django/contrib/sessions/locale/ur/LC_MESSAGES/django.po,sha256=qR4QEBTP6CH09XFCzsPSPg2Dv0LqzbRV_I67HO2OUwk,879
+django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo,sha256=asPu0RhMB_Ui1li-OTVL4qIXnM9XpjsYyx5yJldDYBY,744
+django/contrib/sessions/locale/uz/LC_MESSAGES/django.po,sha256=KsHuLgGJt-KDH0h6ND7JLP2dDJAdLVHSlau4DkkfqA8,880
+django/contrib/sessions/locale/vi/LC_MESSAGES/django.mo,sha256=KriTpT-Hgr10DMnY5Bmbd4isxmSFLmav8vg2tuL2Bb8,679
+django/contrib/sessions/locale/vi/LC_MESSAGES/django.po,sha256=M7S46Q0Q961ykz_5FCAN8SXQ54w8tp4rZeZpy6bPtXs,909
+django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=zsbhIMocgB8Yn1XEBxbIIbBh8tLifvvYNlhe5U61ch8,722
+django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.po,sha256=tPshgXjEv6pME4N082ztamJhd5whHB2_IV_egdP-LlQ,889
+django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=WZzfpFKZ41Pu8Q9SuhGu3hXwp4eiq8Dt8vdiQfxvF9M,733
+django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.po,sha256=6IRDQu6-PAYh6SyEIcKdhuR172lX0buY8qqsU0QXlYU,898
+django/contrib/sessions/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/sessions/management/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/sessions/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/sessions/management/commands/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-310.pyc,,
+django/contrib/sessions/management/commands/clearsessions.py,sha256=pAiO5o7zgButVlYAV93bPnmiwzWP7V5N7-xPtxSkjJg,661
+django/contrib/sessions/middleware.py,sha256=ghX32L-B6lQokp8lH6_f0AvQ_9YhV4RJ3g9YkhZt23M,3496
+django/contrib/sessions/migrations/0001_initial.py,sha256=4tczVgNJxmM5aEhrDw_EfqOBePzsxuJmlchwlMFHWrU,1149
+django/contrib/sessions/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-310.pyc,,
+django/contrib/sessions/migrations/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/sessions/models.py,sha256=BguwuQSDzpeTNXhteYRAcspg1rop431tjFeZUVWZNYc,1250
+django/contrib/sessions/serializers.py,sha256=x8cVZhsG5RBJZaK4wKsuAcEYKv6rop9V9Y7mDySyOwM,256
+django/contrib/sitemaps/__init__.py,sha256=lDBHU3Y6vjyy7MTchupEeIIHmKxeVhWVsPVrul9pPlQ,9039
+django/contrib/sitemaps/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/sitemaps/__pycache__/apps.cpython-310.pyc,,
+django/contrib/sitemaps/__pycache__/views.cpython-310.pyc,,
+django/contrib/sitemaps/apps.py,sha256=xYE-mAs37nL8ZAnv052LhUKVUwGYKB3xyPy4t8pwOpw,249
+django/contrib/sitemaps/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/sitemaps/management/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/sitemaps/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/sitemaps/management/commands/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/sitemaps/management/commands/__pycache__/ping_google.cpython-310.pyc,,
+django/contrib/sitemaps/management/commands/ping_google.py,sha256=cU6bAGhDARD7ZM2R9cUZufEPiB9ZrM7Nc3EbghQJI5Y,558
+django/contrib/sitemaps/templates/sitemap.xml,sha256=L092SHTtwtmNJ_Lj_jLrzHhfI0-OKKIw5fpyOfr4qRs,683
+django/contrib/sitemaps/templates/sitemap_index.xml,sha256=SQf9avfFmnT8j-nLEc8lVQQcdhiy_qhnqjssIMti3oU,360
+django/contrib/sitemaps/views.py,sha256=ETX8bFIDvHgw504WuTAOhhmtzTXr9IekpYgbzAKjnMo,5034
+django/contrib/sites/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/sites/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/sites/__pycache__/admin.cpython-310.pyc,,
+django/contrib/sites/__pycache__/apps.cpython-310.pyc,,
+django/contrib/sites/__pycache__/checks.cpython-310.pyc,,
+django/contrib/sites/__pycache__/management.cpython-310.pyc,,
+django/contrib/sites/__pycache__/managers.cpython-310.pyc,,
+django/contrib/sites/__pycache__/middleware.cpython-310.pyc,,
+django/contrib/sites/__pycache__/models.cpython-310.pyc,,
+django/contrib/sites/__pycache__/requests.cpython-310.pyc,,
+django/contrib/sites/__pycache__/shortcuts.cpython-310.pyc,,
+django/contrib/sites/admin.py,sha256=IWvGDQUTDPEUsd-uuxfHxJq4syGtddNKUdkP0nmVUMA,214
+django/contrib/sites/apps.py,sha256=uBLHUyQoSuo1Q7NwLTwlvsTuRU1MXwj4t6lRUnIBdwk,562
+django/contrib/sites/checks.py,sha256=SsFycVVw6JcbMNF1tNgCen9dix-UGrMTWz8Gbb80adQ,340
+django/contrib/sites/locale/af/LC_MESSAGES/django.mo,sha256=A10bZFMs-wUetVfF5UrFwmuiKnN4ZnlrR4Rx8U4Ut1A,786
+django/contrib/sites/locale/af/LC_MESSAGES/django.po,sha256=O0-ZRvmXvV_34kONuqakuXV5OmYbQ569K1Puj3qQNac,907
+django/contrib/sites/locale/ar/LC_MESSAGES/django.mo,sha256=kLoytp2jvhWn6p1c8kNVua2sYAMnrpS4xnbluHD22Vs,947
+django/contrib/sites/locale/ar/LC_MESSAGES/django.po,sha256=HYA3pA29GktzXBP-soUEn9VP2vkZuhVIXVA8TNPCHCs,1135
+django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=-ltwY57Th6LNqU3bgOPPP7qWtII5c6rj8Dv8eY7PZ84,918
+django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.po,sha256=KRTjZ2dFRWVPmE_hC5Hq8eDv3GQs3yQKCgV5ISFmEKk,1079
+django/contrib/sites/locale/ast/LC_MESSAGES/django.mo,sha256=eEvaeiGnZFBPGzKLlRz4M9AHemgJVAb-yNpbpxRqtd0,774
+django/contrib/sites/locale/ast/LC_MESSAGES/django.po,sha256=huBohKzLpdaJRFMFXXSDhDCUOqVqyWXfxb8_lLOkUd0,915
+django/contrib/sites/locale/az/LC_MESSAGES/django.mo,sha256=CjAGI4qGoXN95q4LpCLXLKvaNB33Ocf5SfXdurFBkas,773
+django/contrib/sites/locale/az/LC_MESSAGES/django.po,sha256=E84kNPFhgHmIfYT0uzCnTPGwPkAqKzqwFvJB7pETbVo,933
+django/contrib/sites/locale/be/LC_MESSAGES/django.mo,sha256=HGh78mI50ZldBtQ8jId26SI-lSHv4ZLcveRN2J8VzH8,983
+django/contrib/sites/locale/be/LC_MESSAGES/django.po,sha256=W5FhVJKcmd3WHl2Lpd5NJUsc7_sE_1Pipk3CVPoGPa4,1152
+django/contrib/sites/locale/bg/LC_MESSAGES/django.mo,sha256=a2R52umIQIhnzFaFYSRhQ6nBlywE8RGMj2FUOFmyb0A,904
+django/contrib/sites/locale/bg/LC_MESSAGES/django.po,sha256=awB8RMS-qByhNB6eH2f0Oyxb3SH8waLhrZ--rokGfaI,1118
+django/contrib/sites/locale/bn/LC_MESSAGES/django.mo,sha256=cI3a9_L-OC7gtdyRNaGX7A5w0Za0M4ERnYB7rSNkuRU,925
+django/contrib/sites/locale/bn/LC_MESSAGES/django.po,sha256=8ZxYF16bgtTZSZRZFok6IJxUV02vIztoVx2qXqwO8NM,1090
+django/contrib/sites/locale/br/LC_MESSAGES/django.mo,sha256=rI_dIznbwnadZbxOPtQxZ1pGYePNwcNNXt05iiPkchU,1107
+django/contrib/sites/locale/br/LC_MESSAGES/django.po,sha256=7Ein5Xw73DNGGtdd595Bx6ixfSD-dBXZNBUU44pSLuQ,1281
+django/contrib/sites/locale/bs/LC_MESSAGES/django.mo,sha256=bDeqQNme586LnQRQdvOWaLGZssjOoECef3vMq_OCXno,692
+django/contrib/sites/locale/bs/LC_MESSAGES/django.po,sha256=xRTWInDNiLxikjwsjgW_pYjhy24zOro90-909ns9fig,923
+django/contrib/sites/locale/ca/LC_MESSAGES/django.mo,sha256=lEUuQEpgDY3bVWzRONrPzYlojRoNduT16_oYDkkbdfk,791
+django/contrib/sites/locale/ca/LC_MESSAGES/django.po,sha256=aORAoVn69iG1ynmEfnkBzBO-UZOzzbkPVOU-ZvfMtZg,996
+django/contrib/sites/locale/cs/LC_MESSAGES/django.mo,sha256=mnXnpU7sLDTJ3OrIUTnGarPYsupNIUPV4ex_BPWU8fk,827
+django/contrib/sites/locale/cs/LC_MESSAGES/django.po,sha256=ONzFlwzmt7p5jdp6111qQkkevckRrd7GNS0lkDPKu-4,1035
+django/contrib/sites/locale/cy/LC_MESSAGES/django.mo,sha256=70pOie0K__hkmM9oBUaQfVwHjK8Cl48E26kRQL2mtew,835
+django/contrib/sites/locale/cy/LC_MESSAGES/django.po,sha256=FAZrVc72x-4R1A-1qYOBwADoXngC_F6FO8nRjr5-Z6g,1013
+django/contrib/sites/locale/da/LC_MESSAGES/django.mo,sha256=FTOyV1DIH9sMldyjgPw98d2HCotoO4zJ_KY_C9DCB7Y,753
+django/contrib/sites/locale/da/LC_MESSAGES/django.po,sha256=Po1Z6u52CFCyz9hLfK009pMbZzZgHrBse0ViX8wCYm8,957
+django/contrib/sites/locale/de/LC_MESSAGES/django.mo,sha256=5Q6X0_bDQ1ZRpkTy7UpPNzrhmQsB9Q0P1agB7koRyzs,792
+django/contrib/sites/locale/de/LC_MESSAGES/django.po,sha256=aD0wBinqtDUPvBbwtHrLEhFdoVRx1nOh17cJFuWhN3U,980
+django/contrib/sites/locale/dsb/LC_MESSAGES/django.mo,sha256=pPpWYsYp81MTrqCsGF0QnGktZNIll70bdBwSkuVE8go,868
+django/contrib/sites/locale/dsb/LC_MESSAGES/django.po,sha256=IA3G8AKJls20gzfxnrfPzivMNpL8A0zBQBg7OyzrP6g,992
+django/contrib/sites/locale/el/LC_MESSAGES/django.mo,sha256=G9o1zLGysUePGzZRicQ2aIIrc2UXMLTQmdpbrUMfWBU,878
+django/contrib/sites/locale/el/LC_MESSAGES/django.po,sha256=RBi_D-_znYuV6LXfTlSOf1Mvuyl96fIyEoiZ-lgeyWs,1133
+django/contrib/sites/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
+django/contrib/sites/locale/en/LC_MESSAGES/django.po,sha256=tSjfrNZ_FqLHsXjm5NuTyo5-JpdlPLsPZjFqF2APhy8,817
+django/contrib/sites/locale/en_AU/LC_MESSAGES/django.mo,sha256=G--2j_CR99JjRgVIX2Y_5pDfO7IgIkvK4kYHZtGzpxU,753
+django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po,sha256=Giw634r94MJT1Q3qgqM7gZakQCasRM9Dm7MDkb9JOc8,913
+django/contrib/sites/locale/en_GB/LC_MESSAGES/django.mo,sha256=FbSh7msJdrHsXr0EtDMuODFzSANG_HJ3iBlW8ePpqFs,639
+django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po,sha256=Ib-DIuTWlrN3kg99kLCuqWJVtt1NWaFD4UbDFK6d4KY,862
+django/contrib/sites/locale/eo/LC_MESSAGES/django.mo,sha256=N4KkH12OHxic3pp1okeBhpfDx8XxxpULk3UC219vjWU,792
+django/contrib/sites/locale/eo/LC_MESSAGES/django.po,sha256=ymXSJaFJWGBO903ObqR-ows-p4T3KyUplc_p_3r1uk8,1043
+django/contrib/sites/locale/es/LC_MESSAGES/django.mo,sha256=qLN1uoCdslxdYWgdjgSBi7szllP-mQZtHbuZnNOthsQ,804
+django/contrib/sites/locale/es/LC_MESSAGES/django.po,sha256=QClia2zY39269VSQzkQsLwwukthN6u2JBsjbLNxA1VQ,1066
+django/contrib/sites/locale/es_AR/LC_MESSAGES/django.mo,sha256=_O4rVk7IM2BBlZvjDP2SvTOo8WWqthQi5exQzt027-s,776
+django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po,sha256=RwyNylXbyxdSXn6qRDXd99-GaEPlmr6TicHTUW0boaQ,969
+django/contrib/sites/locale/es_CO/LC_MESSAGES/django.mo,sha256=a4Xje2M26wyIx6Wlg6puHo_OXjiDEy7b0FquT9gbThA,825
+django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po,sha256=9bnRhVD099JzkheO80l65dufjuawsj9aSFgFu5A-lnM,949
+django/contrib/sites/locale/es_MX/LC_MESSAGES/django.mo,sha256=AtGta5jBL9XNBvfSpsCcnDtDhvcb89ALl4hNjSPxibM,809
+django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po,sha256=TnkpQp-7swH-x9cytUJe-QJRd2n_pYMVo0ltDw9Pu8o,991
+django/contrib/sites/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486
+django/contrib/sites/locale/es_VE/LC_MESSAGES/django.po,sha256=8PWXy2L1l67wDIi98Q45j7OpVITr0Lt4zwitAnB-d_o,791
+django/contrib/sites/locale/et/LC_MESSAGES/django.mo,sha256=I2E-49UQsG-F26OeAfnKlfUdA3YCkUSV8ffA-GMSkE0,788
+django/contrib/sites/locale/et/LC_MESSAGES/django.po,sha256=mEfD6EyQ15PPivb5FTlkabt3Lo_XGtomI9XzHrrh34Y,992
+django/contrib/sites/locale/eu/LC_MESSAGES/django.mo,sha256=1HTAFI3DvTAflLJsN7NVtSd4XOTlfoeLGFyYCOX69Ec,807
+django/contrib/sites/locale/eu/LC_MESSAGES/django.po,sha256=NWxdE5-mF6Ak4nPRpCFEgAMIsVDe9YBEZl81v9kEuX8,1023
+django/contrib/sites/locale/fa/LC_MESSAGES/django.mo,sha256=odtsOpZ6noNqwDb18HDc2e6nz3NMsa-wrTN-9dk7d9w,872
+django/contrib/sites/locale/fa/LC_MESSAGES/django.po,sha256=-DirRvcTqcpIy90QAUiCSoNkCDRifqpWSzLriJ4cwQU,1094
+django/contrib/sites/locale/fi/LC_MESSAGES/django.mo,sha256=I5DUeLk1ChUC32q5uzriABCLLJpJKNbEK4BfqylPQzg,786
+django/contrib/sites/locale/fi/LC_MESSAGES/django.po,sha256=LH2sFIKM3YHPoz9zIu10z1DFv1svXphBdOhXNy4a17s,929
+django/contrib/sites/locale/fr/LC_MESSAGES/django.mo,sha256=W7Ne5HqgnRcl42njzbUaDSY059jdhwvr0tgZzecVWD8,756
+django/contrib/sites/locale/fr/LC_MESSAGES/django.po,sha256=u24rHDJ47AoBgcmBwI1tIescAgbjFxov6y906H_uhK0,999
+django/contrib/sites/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
+django/contrib/sites/locale/fy/LC_MESSAGES/django.po,sha256=Yh6Lw0QI2Me0zCtlyXraFLjERKqklB6-IJLDTjH_jTs,781
+django/contrib/sites/locale/ga/LC_MESSAGES/django.mo,sha256=g5popLirHXWn6ZWJHESQaG5MmKWZL_JNI_5Vgn5FTqU,683
+django/contrib/sites/locale/ga/LC_MESSAGES/django.po,sha256=34hj3ELt7GQ7CaHL246uBDmvsVUaaN5kTrzt8j7eETM,962
+django/contrib/sites/locale/gd/LC_MESSAGES/django.mo,sha256=df4XIGGD6FIyMUXsb-SoSqNfBFAsRXf4qYtolh_C964,858
+django/contrib/sites/locale/gd/LC_MESSAGES/django.po,sha256=NPKp7A5-y-MR7r8r4WqtcVQJEHCIOP5mLTd0cIfUsug,957
+django/contrib/sites/locale/gl/LC_MESSAGES/django.mo,sha256=QUJdJV71VT-4iVQ5mUAeyszTVhD2LlmmPQv0WpPWttU,742
+django/contrib/sites/locale/gl/LC_MESSAGES/django.po,sha256=cLcejsFyoFk0fRX9fAcl9owHoxiD593QZZeZTfObBVw,940
+django/contrib/sites/locale/he/LC_MESSAGES/django.mo,sha256=L3bganfG4gHqp2WXGh4rfWmmbaIxHaGc7-ypAqjSL_E,820
+django/contrib/sites/locale/he/LC_MESSAGES/django.po,sha256=iO3OZwz2aiuAzugkKp5Hxonwdg3kKjBurxR685J2ZMk,1082
+django/contrib/sites/locale/hi/LC_MESSAGES/django.mo,sha256=J4oIS1vJnCvdCCUD4tlTUVyTe4Xn0gKcWedfhH4C0t0,665
+django/contrib/sites/locale/hi/LC_MESSAGES/django.po,sha256=INBrm37jL3okBHuzX8MSN1vMptj77a-4kwQkAyt8w_8,890
+django/contrib/sites/locale/hr/LC_MESSAGES/django.mo,sha256=KjDUhEaOuYSMexcURu2UgfkatN2rrUcAbCUbcpVSInk,876
+django/contrib/sites/locale/hr/LC_MESSAGES/django.po,sha256=-nFMFkVuDoKYDFV_zdNULOqQlnqtiCG57aakN5hqlmg,1055
+django/contrib/sites/locale/hsb/LC_MESSAGES/django.mo,sha256=RyHVb7u9aRn5BXmWzR1gApbZlOioPDJ59ufR1Oo3e8Y,863
+django/contrib/sites/locale/hsb/LC_MESSAGES/django.po,sha256=Aq54y5Gb14bIt28oDDrFltnSOk31Z2YalwaJMDMXfWc,987
+django/contrib/sites/locale/hu/LC_MESSAGES/django.mo,sha256=P--LN84U2BeZAvRVR-OiWl4R02cTTBi2o8XR2yHIwIU,796
+django/contrib/sites/locale/hu/LC_MESSAGES/django.po,sha256=b0VhyFdNaZZR5MH1vFsLL69FmICN8Dz-sTRk0PdK49E,953
+django/contrib/sites/locale/hy/LC_MESSAGES/django.mo,sha256=Hs9XwRHRkHicLWt_NvWvr7nMocmY-Kc8XphhVSAMQRc,906
+django/contrib/sites/locale/hy/LC_MESSAGES/django.po,sha256=MU4hXXGfjXKfYcjxDYzFfsEUIelz5ZzyQLkeSrUQKa0,1049
+django/contrib/sites/locale/ia/LC_MESSAGES/django.mo,sha256=gRMs-W5EiY26gqzwnDXEMbeb1vs0bYZ2DC2a9VCciew,809
+django/contrib/sites/locale/ia/LC_MESSAGES/django.po,sha256=HXZzn9ACIqfR2YoyvpK2FjZ7QuEq_RVZ1kSC4nxMgeg,934
+django/contrib/sites/locale/id/LC_MESSAGES/django.mo,sha256=__2E_2TmVUcbf1ygxtS1lHvkhv8L0mdTAtJpBsdH24Y,791
+django/contrib/sites/locale/id/LC_MESSAGES/django.po,sha256=e5teAHiMjLR8RDlg8q99qtW-K81ltcIiBIdb1MZw2sE,1000
+django/contrib/sites/locale/io/LC_MESSAGES/django.mo,sha256=W-NP0b-zR1oWUZnHZ6fPu5AC2Q6o7nUNoxssgeguUBo,760
+django/contrib/sites/locale/io/LC_MESSAGES/django.po,sha256=G4GUUz3rxoBjWTs-j5RFCvv52AEHiwrCBwom5hYeBSE,914
+django/contrib/sites/locale/is/LC_MESSAGES/django.mo,sha256=lkJgTzDjh5PNfIJpOS2DxKmwVUs9Sl5XwFHv4YdCB30,812
+django/contrib/sites/locale/is/LC_MESSAGES/django.po,sha256=1DVgAcHSZVyDd5xn483oqICIG4ooyZY8ko7A3aDogKM,976
+django/contrib/sites/locale/it/LC_MESSAGES/django.mo,sha256=6NQjjtDMudnAgnDCkemOXinzX0J-eAE5gSq1F8kjusY,795
+django/contrib/sites/locale/it/LC_MESSAGES/django.po,sha256=zxavlLMmp1t1rCDsgrw12kVgxiK5EyR_mOalSu8-ws8,984
+django/contrib/sites/locale/ja/LC_MESSAGES/django.mo,sha256=RNuCS6wv8uK5TmXkSH_7SjsbUFkf24spZfTsvfoTKro,814
+django/contrib/sites/locale/ja/LC_MESSAGES/django.po,sha256=e-cj92VOVc5ycIY6NwyFh5bO7Q9q5vp5CG4dOzd_eWQ,982
+django/contrib/sites/locale/ka/LC_MESSAGES/django.mo,sha256=m8GTqr9j0ijn0YJhvnsYwlk5oYcASKbHg_5hLqZ91TI,993
+django/contrib/sites/locale/ka/LC_MESSAGES/django.po,sha256=1upohcHrQH9T34b6lW09MTtFkk5WswdYOLs2vMAJIuE,1160
+django/contrib/sites/locale/kab/LC_MESSAGES/django.mo,sha256=Utdj5gH5YPeaYMjeMzF-vjqYvYTCipre2qCBkEJSc-Y,808
+django/contrib/sites/locale/kab/LC_MESSAGES/django.po,sha256=d78Z-YanYZkyP5tpasj8oAa5RimVEmce6dlq5vDSscA,886
+django/contrib/sites/locale/kk/LC_MESSAGES/django.mo,sha256=T2dTZ83vBRfQb2dRaKOrhvO00BHQu_2bu0O0k7RsvGA,895
+django/contrib/sites/locale/kk/LC_MESSAGES/django.po,sha256=HvdSFqsumyNurDJ6NKVLjtDdSIg0KZN2v29dM748GtU,1062
+django/contrib/sites/locale/km/LC_MESSAGES/django.mo,sha256=Q7pn5E4qN957j20-iCHgrfI-p8sm3Tc8O2DWeuH0By8,701
+django/contrib/sites/locale/km/LC_MESSAGES/django.po,sha256=TOs76vlCMYOZrdHgXPWZhQH1kTBQTpzsDJ8N4kbJQ7E,926
+django/contrib/sites/locale/kn/LC_MESSAGES/django.mo,sha256=_jl_4_39oe940UMyb15NljGOd45kkCeVNpJy6JvGWTE,673
+django/contrib/sites/locale/kn/LC_MESSAGES/django.po,sha256=cMPXF2DeiQuErhyFMe4i7swxMoqoz1sqtBEXf4Ghx1c,921
+django/contrib/sites/locale/ko/LC_MESSAGES/django.mo,sha256=wlfoWG-vmMSCipUJVVC0Y_W7QbGNNE-oEnVwl_6-AmY,807
+django/contrib/sites/locale/ko/LC_MESSAGES/django.po,sha256=TENAk9obGUxFwMnJQj_V9sZxEKJj4DyWMuGpx3Ft_pM,1049
+django/contrib/sites/locale/ky/LC_MESSAGES/django.mo,sha256=IYxp8jG5iyN81h7YJqOiSQdOH7DnwOiIvelKZfzP6ZA,811
+django/contrib/sites/locale/ky/LC_MESSAGES/django.po,sha256=rxPdgQoBtGQSi5diOy3MXyoM4ffpwdWCc4WE3pjIHEI,927
+django/contrib/sites/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
+django/contrib/sites/locale/lb/LC_MESSAGES/django.po,sha256=1yRdK9Zyh7kcWG7wUexuF9-zxEaKLS2gG3ggVOHbRJ8,779
+django/contrib/sites/locale/lt/LC_MESSAGES/django.mo,sha256=bK6PJtd7DaOgDukkzuqos5ktgdjSF_ffL9IJTQY839s,869
+django/contrib/sites/locale/lt/LC_MESSAGES/django.po,sha256=T-vdVqs9KCz9vMs9FfushgZN9z7LQOT-C86D85H2X8c,1195
+django/contrib/sites/locale/lv/LC_MESSAGES/django.mo,sha256=t9bQiVqpAmXrq8QijN4Lh0n6EGUGQjnuH7hDcu21z4c,823
+django/contrib/sites/locale/lv/LC_MESSAGES/django.po,sha256=vMaEtXGosD3AcTomiuctbOpjLes8TRBnumLe8DC4yq4,1023
+django/contrib/sites/locale/mk/LC_MESSAGES/django.mo,sha256=_YXasRJRWjYmmiEWCrAoqnrKuHHPBG_v_EYTUe16Nfo,885
+django/contrib/sites/locale/mk/LC_MESSAGES/django.po,sha256=AgdIjiSpN0P5o5rr5Ie4sFhnmS5d4doB1ffk91lmOvY,1062
+django/contrib/sites/locale/ml/LC_MESSAGES/django.mo,sha256=axNQVBY0nbR7hYa5bzNtdxB17AUOs2WXhu0Rg--FA3Q,1007
+django/contrib/sites/locale/ml/LC_MESSAGES/django.po,sha256=Sg7hHfK8OMs05ebtTv8gxS6_2kZv-OODwf7okP95Jtk,1169
+django/contrib/sites/locale/mn/LC_MESSAGES/django.mo,sha256=w2sqJRAe0wyz_IuCZ_Ocubs_VHL6wV1BcutWPz0dseQ,867
+django/contrib/sites/locale/mn/LC_MESSAGES/django.po,sha256=Zh_Eao0kLZsrQ8wkL1f-pRrsAtNJOspu45uStq5t8Mo,1127
+django/contrib/sites/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
+django/contrib/sites/locale/mr/LC_MESSAGES/django.po,sha256=pqnjF5oxvpMyjijy6JfI8qJbbbowZzE5tZF0DMYiCBs,773
+django/contrib/sites/locale/ms/LC_MESSAGES/django.mo,sha256=GToJlS8yDNEy-D3-p7p8ZlWEZYHlSzZAcVIH5nQEkkI,727
+django/contrib/sites/locale/ms/LC_MESSAGES/django.po,sha256=_4l4DCIqSWZtZZNyfzpBA0V-CbAaHe9Ckz06VLbTjFo,864
+django/contrib/sites/locale/my/LC_MESSAGES/django.mo,sha256=jN59e9wRheZYx1A4t_BKc7Hx11J5LJg2wQRd21aQv08,961
+django/contrib/sites/locale/my/LC_MESSAGES/django.po,sha256=EhqYIW5-rX33YjsDsBwfiFb3BK6fZKVc3CRYeJpZX1E,1086
+django/contrib/sites/locale/nb/LC_MESSAGES/django.mo,sha256=AaiHGcmcciy5IMBPVAShcc1OQOETJvBCv7GYHMcIQMA,793
+django/contrib/sites/locale/nb/LC_MESSAGES/django.po,sha256=936zoN1sPSiiq7GuH01umrw8W6BtymYEU3bCfOQyfWE,1000
+django/contrib/sites/locale/ne/LC_MESSAGES/django.mo,sha256=n96YovpBax3T5VZSmIfGmd7Zakn9FJShJs5rvUX7Kf0,863
+django/contrib/sites/locale/ne/LC_MESSAGES/django.po,sha256=B14rhDd8GAaIjxd1sYjxO2pZfS8gAwZ1C-kCdVkRXho,1078
+django/contrib/sites/locale/nl/LC_MESSAGES/django.mo,sha256=ghu-tNPNZuE4sVRDWDVmmmVNPYZLWYm_UPJRqh8wmec,735
+django/contrib/sites/locale/nl/LC_MESSAGES/django.po,sha256=1DCQNzMRhy4vW-KkmlPGy58UR27Np5ilmYhmjaq-8_k,1030
+django/contrib/sites/locale/nn/LC_MESSAGES/django.mo,sha256=eSW8kwbzm2HsE9s9IRCsAo9juimVQjcfdd8rtl3TQJM,731
+django/contrib/sites/locale/nn/LC_MESSAGES/django.po,sha256=OOyvE7iji9hwvz8Z_OxWoKw2e3ptk3dqeqlriXgilSc,915
+django/contrib/sites/locale/os/LC_MESSAGES/django.mo,sha256=Su06FkWMOPzBxoung3bEju_EnyAEAXROoe33imO65uQ,806
+django/contrib/sites/locale/os/LC_MESSAGES/django.po,sha256=4i4rX6aXDUKjq64T02iStqV2V2erUsSVnTivh2XtQeY,963
+django/contrib/sites/locale/pa/LC_MESSAGES/django.mo,sha256=tOHiisOtZrTyIFoo4Ipn_XFH9hhu-ubJLMdOML5ZUgk,684
+django/contrib/sites/locale/pa/LC_MESSAGES/django.po,sha256=ztGyuqvzxRfNjqDG0rMLCu_oQ8V3Dxdsx0WZoYUyNv8,912
+django/contrib/sites/locale/pl/LC_MESSAGES/django.mo,sha256=lo5K262sZmo-hXvcHoBsEDqX8oJEPSxJY5EfRIqHZh0,903
+django/contrib/sites/locale/pl/LC_MESSAGES/django.po,sha256=-kQ49UvXITMy1vjJoN_emuazV_EjNDQnZDERXWNoKvw,1181
+django/contrib/sites/locale/pt/LC_MESSAGES/django.mo,sha256=PrcFQ04lFJ7mIYThXbW6acmDigEFIoLAC0PYk5hfaJs,797
+django/contrib/sites/locale/pt/LC_MESSAGES/django.po,sha256=Aj8hYI9W5nk5uxKHj1oE-b9bxmmuoeXLKaJDPfI2x2o,993
+django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.mo,sha256=BsFfarOR6Qk67fB-tTWgGhuOReJSgjwJBkIzZsv28vo,824
+django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po,sha256=jfvgelpWn2VQqYe2_CE39SLTsscCckvjuZo6dWII28c,1023
+django/contrib/sites/locale/ro/LC_MESSAGES/django.mo,sha256=oGsZw4_uYpaH6adMxnAuifJgHeZ_ytRZ4rFhiNfRQkQ,857
+django/contrib/sites/locale/ro/LC_MESSAGES/django.po,sha256=tWbWVbjFFELNzSXX4_5ltmzEeEJsY3pKwgEOjgV_W_8,1112
+django/contrib/sites/locale/ru/LC_MESSAGES/django.mo,sha256=bIZJWMpm2O5S6RC_2cfkrp5NXaTU2GWSsMr0wHVEmcw,1016
+django/contrib/sites/locale/ru/LC_MESSAGES/django.po,sha256=jHy5GR05ZSjLmAwaVNq3m0WdhO9GYxge3rDBziqesA8,1300
+django/contrib/sites/locale/sk/LC_MESSAGES/django.mo,sha256=-EYdm14ZjoR8bd7Rv2b5G7UJVSKmZa1ItLsdATR3-Cg,822
+django/contrib/sites/locale/sk/LC_MESSAGES/django.po,sha256=VSRlsq8uk-hP0JI94iWsGX8Al76vvGK4N1xIoFtoRQM,1070
+django/contrib/sites/locale/sl/LC_MESSAGES/django.mo,sha256=JmkpTKJGWgnBM3CqOUriGvrDnvg2YWabIU2kbYAOM4s,845
+django/contrib/sites/locale/sl/LC_MESSAGES/django.po,sha256=qWrWrSz5r3UOVraX08ILt3TTmfyTDGKbJKbTlN9YImU,1059
+django/contrib/sites/locale/sq/LC_MESSAGES/django.mo,sha256=DMLN1ZDJeDnslavjcKloXSXn6IvangVliVP3O6U8dAY,769
+django/contrib/sites/locale/sq/LC_MESSAGES/django.po,sha256=zg3ALcMNZErAS_xFxmtv6TmXZ0vxobX5AzCwOSRSwc8,930
+django/contrib/sites/locale/sr/LC_MESSAGES/django.mo,sha256=8kfi9IPdB2reF8C_eC2phaP6qonboHPwes_w3UgNtzw,935
+django/contrib/sites/locale/sr/LC_MESSAGES/django.po,sha256=A7xaen8H1W4uMBRAqCXT_0KQMoA2-45AUNDfGo9FydI,1107
+django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=jMXiq18efq0wErJAQfJR1fCnkYcEb7OYXg8sv6kzP0s,815
+django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po,sha256=9jkWYcZCTfQr2UZtyvhWDAmEHBrzunJUZcx7FlrFOis,1004
+django/contrib/sites/locale/sv/LC_MESSAGES/django.mo,sha256=qmhdn3N2C_DR_FYrUaFSacVjghgfb0CuWKanVRJSTq8,792
+django/contrib/sites/locale/sv/LC_MESSAGES/django.po,sha256=dDVuuuHGpZIoT6dU48aT2j4nEuGrd6zZ3FiZEs3TCeE,987
+django/contrib/sites/locale/sw/LC_MESSAGES/django.mo,sha256=cWjjDdFXBGmpUm03UDtgdDrREa2r75oMsXiEPT_Bx3g,781
+django/contrib/sites/locale/sw/LC_MESSAGES/django.po,sha256=oOKNdztQQU0sd6XmLI-n3ONmTL7jx3Q0z1YD8673Wi8,901
+django/contrib/sites/locale/ta/LC_MESSAGES/django.mo,sha256=CLO41KsSKqBrgtrHi6fmXaBk-_Y2l4KBLDJctZuZyWY,714
+django/contrib/sites/locale/ta/LC_MESSAGES/django.po,sha256=YsTITHg7ikkNcsP29tDgkZrUdtO0s9PrV1XPu4mgqCw,939
+django/contrib/sites/locale/te/LC_MESSAGES/django.mo,sha256=GmIWuVyIOcoQoAmr2HxCwBDE9JUYEktzYig93H_4v50,687
+django/contrib/sites/locale/te/LC_MESSAGES/django.po,sha256=jbncxU9H3EjXxWPsEoCKJhKi392XXTGvWyuenqLDxps,912
+django/contrib/sites/locale/tg/LC_MESSAGES/django.mo,sha256=wiWRlf3AN5zlFMNyP_rSDZS7M5rHQJ2DTUHARtXjim8,863
+django/contrib/sites/locale/tg/LC_MESSAGES/django.po,sha256=VBGZfJIw40JZe15ghsk-n3qUVX0VH2nFQQhpBy_lk1Y,1026
+django/contrib/sites/locale/th/LC_MESSAGES/django.mo,sha256=dQOp4JoP3gvfsxqEQ73L6F8FgH1YtAA9hYY-Uz5sv6Y,898
+django/contrib/sites/locale/th/LC_MESSAGES/django.po,sha256=auZBoKKKCHZbbh0PaUr9YKiWB1TEYZoj4bE7efAonV8,1077
+django/contrib/sites/locale/tk/LC_MESSAGES/django.mo,sha256=YhzSiVb_NdG1s7G1-SGGd4R3uweZQgnTs3G8Lv9r5z0,755
+django/contrib/sites/locale/tk/LC_MESSAGES/django.po,sha256=sigmzH3Ni2vJwLJ7ba8EeB4wnDXsg8rQRFExZAGycF4,917
+django/contrib/sites/locale/tr/LC_MESSAGES/django.mo,sha256=ryf01jcvvBMGPKkdViieDuor-Lr2KRXZeFF1gPupCOA,758
+django/contrib/sites/locale/tr/LC_MESSAGES/django.po,sha256=L9tsnwxw1BEJD-Nm3m1RAS7ekgdmyC0ETs_mr7tQw1E,1043
+django/contrib/sites/locale/tt/LC_MESSAGES/django.mo,sha256=gmmjXeEQUlBpfDmouhxE-qpEtv-iWdQSobYL5MWprZc,706
+django/contrib/sites/locale/tt/LC_MESSAGES/django.po,sha256=yj49TjwcZ4YrGqnJrKh3neKydlTgwYduto9KsmxI_eI,930
+django/contrib/sites/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
+django/contrib/sites/locale/udm/LC_MESSAGES/django.po,sha256=vrLZ0XJF63CO3IucbQpd12lxuoM9S8tTUv6cpu3g81c,767
+django/contrib/sites/locale/uk/LC_MESSAGES/django.mo,sha256=H4806mPqOoHJFm549F7drzsfkvAXWKmn1w_WVwQx9rk,960
+django/contrib/sites/locale/uk/LC_MESSAGES/django.po,sha256=CJZTOaurDXwpgBiwXx3W7juaF0EctEImPhJdDn8j1xU,1341
+django/contrib/sites/locale/ur/LC_MESSAGES/django.mo,sha256=s6QL8AB_Mp9haXS4n1r9b0YhEUECPxUyPrHTMI3agts,654
+django/contrib/sites/locale/ur/LC_MESSAGES/django.po,sha256=R9tv3qtett8CUGackoHrc5XADeygVKAE0Fz8YzK2PZ4,885
+django/contrib/sites/locale/uz/LC_MESSAGES/django.mo,sha256=OsuqnLEDl9gUAwsmM2s1KH7VD74ID-k7JXcjGhjFlEY,799
+django/contrib/sites/locale/uz/LC_MESSAGES/django.po,sha256=RoaOwLDjkqqIJTuxpuY7eMLo42n6FoYAYutCfMaDk4I,935
+django/contrib/sites/locale/vi/LC_MESSAGES/django.mo,sha256=YOaKcdrN1238Zdm81jUkc2cpxjInAbdnhsSqHP_jQsI,762
+django/contrib/sites/locale/vi/LC_MESSAGES/django.po,sha256=AHcqR2p0fdscLvzbJO_a-CzMzaeRL4LOw4HB9K3noVQ,989
+django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=7D9_pDY5lBRpo1kfzIQL-PNvIg-ofCm7cBHE1-JWlMk,779
+django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.po,sha256=xI_N00xhV8dWDp4fg5Mmj9ivOBBdHP79T3-JYXPyc5M,946
+django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=0F6Qmh1smIXlOUNDaDwDajyyGecc1azfwh8BhXrpETo,790
+django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.po,sha256=ixbXNBNKNfrpI_B0O_zktTfo63sRFMOk1B1uIh4DGGg,1046
+django/contrib/sites/management.py,sha256=AElGktvFhWXJtlJwOKpUlIeuv2thkNM8F6boliML84U,1646
+django/contrib/sites/managers.py,sha256=uqD_Cu3P4NCp7VVdGn0NvHfhsZB05MLmiPmgot-ygz4,1994
+django/contrib/sites/middleware.py,sha256=qYcVHsHOg0VxQNS4saoLHkdF503nJR-D7Z01vE0SvUM,309
+django/contrib/sites/migrations/0001_initial.py,sha256=eSu5aiR8FPElTvIbLeuSQZclOa0TIltT7XaDroJejOg,1362
+django/contrib/sites/migrations/0002_alter_domain_unique.py,sha256=OyuSeh6HxcuRRe6dCrJDQ8vGnAlrngO_jec3LL38Kg0,550
+django/contrib/sites/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/sites/migrations/__pycache__/0001_initial.cpython-310.pyc,,
+django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-310.pyc,,
+django/contrib/sites/migrations/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/sites/models.py,sha256=NZkMEqDxrulV-y2yAq_dYg1Y3GxbI7o7Ca4HYOA_98s,3696
+django/contrib/sites/requests.py,sha256=baABc6fmTejNmk8M3fcoQ1cuI2qpJzF8Y47A1xSt8gY,641
+django/contrib/sites/shortcuts.py,sha256=nekVQADJROFYwKCD7flmWDMQ9uLAaaKztHVKl5emuWc,573
+django/contrib/staticfiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/staticfiles/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/staticfiles/__pycache__/apps.cpython-310.pyc,,
+django/contrib/staticfiles/__pycache__/checks.cpython-310.pyc,,
+django/contrib/staticfiles/__pycache__/finders.cpython-310.pyc,,
+django/contrib/staticfiles/__pycache__/handlers.cpython-310.pyc,,
+django/contrib/staticfiles/__pycache__/storage.cpython-310.pyc,,
+django/contrib/staticfiles/__pycache__/testing.cpython-310.pyc,,
+django/contrib/staticfiles/__pycache__/urls.cpython-310.pyc,,
+django/contrib/staticfiles/__pycache__/utils.cpython-310.pyc,,
+django/contrib/staticfiles/__pycache__/views.cpython-310.pyc,,
+django/contrib/staticfiles/apps.py,sha256=SbeI6t0nB9pO56qpwyxRYgPvvCfAvbLTwMJDAzFfn6U,423
+django/contrib/staticfiles/checks.py,sha256=rH9A8NIYtEkA_PRYXQJxndm243O6Mz6GwyqWSUe3f24,391
+django/contrib/staticfiles/finders.py,sha256=VqUPjNTjHrJZL5pyMPcrRF2lmqKzjZF9nas_mnyIjaM,11008
+django/contrib/staticfiles/handlers.py,sha256=HGzVGgV4nv8v20XxzX9L1dXdNxV7ciwYzWxG1S0GJ6c,3496
+django/contrib/staticfiles/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/staticfiles/management/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/staticfiles/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-310.pyc,,
+django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-310.pyc,,
+django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-310.pyc,,
+django/contrib/staticfiles/management/commands/collectstatic.py,sha256=Zd65dgKD8JlXmoDb3ig6tvZka4gMV_6egbLcoRLJ1SA,15137
+django/contrib/staticfiles/management/commands/findstatic.py,sha256=TMMGlbV-B1aq1b27nA6Otu6hV44pqAzeuEtTV2DPmp0,1638
+django/contrib/staticfiles/management/commands/runserver.py,sha256=U_7oCY8LJX5Jn1xlMv-qF4EQoUvlT0ldB5E_0sJmRtw,1373
+django/contrib/staticfiles/storage.py,sha256=LEjxXneWMYjZMHsn6U57F3a1oDRDOfYRB9aRZxKJ3e4,19432
+django/contrib/staticfiles/testing.py,sha256=4X-EtOfXnwkJAyFT8qe4H4sbVTKgM65klLUtY81KHiE,463
+django/contrib/staticfiles/urls.py,sha256=owDM_hdyPeRmxYxZisSMoplwnzWrptI_W8-3K2f7ITA,498
+django/contrib/staticfiles/utils.py,sha256=iPXHA0yMXu37PQwCrq9zjhSzjZf_zEBXJ-dHGsqZoX8,2279
+django/contrib/staticfiles/views.py,sha256=XacxXwbhLlcmxhspeDOYvNF0OhMtSMOHGouxqQf0jlU,1261
+django/contrib/syndication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/contrib/syndication/__pycache__/__init__.cpython-310.pyc,,
+django/contrib/syndication/__pycache__/apps.cpython-310.pyc,,
+django/contrib/syndication/__pycache__/views.cpython-310.pyc,,
+django/contrib/syndication/apps.py,sha256=7IpHoihPWtOcA6S4O6VoG0XRlqEp3jsfrNf-D-eluic,203
+django/contrib/syndication/views.py,sha256=c8T8V49cyTMk6KLna8fbULOr3aMjkqye6C5lMAFofUU,9309
+django/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/core/__pycache__/__init__.cpython-310.pyc,,
+django/core/__pycache__/asgi.cpython-310.pyc,,
+django/core/__pycache__/exceptions.cpython-310.pyc,,
+django/core/__pycache__/paginator.cpython-310.pyc,,
+django/core/__pycache__/signals.cpython-310.pyc,,
+django/core/__pycache__/signing.cpython-310.pyc,,
+django/core/__pycache__/validators.cpython-310.pyc,,
+django/core/__pycache__/wsgi.cpython-310.pyc,,
+django/core/asgi.py,sha256=N2L3GS6F6oL-yD9Tu2otspCi2UhbRQ90LEx3ExOP1m0,386
+django/core/cache/__init__.py,sha256=-ofAjaYaEq3HsbfOjMkRnQa8-WU8UYRHeqvEot4mPiY,1928
+django/core/cache/__pycache__/__init__.cpython-310.pyc,,
+django/core/cache/__pycache__/utils.cpython-310.pyc,,
+django/core/cache/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/core/cache/backends/__pycache__/__init__.cpython-310.pyc,,
+django/core/cache/backends/__pycache__/base.cpython-310.pyc,,
+django/core/cache/backends/__pycache__/db.cpython-310.pyc,,
+django/core/cache/backends/__pycache__/dummy.cpython-310.pyc,,
+django/core/cache/backends/__pycache__/filebased.cpython-310.pyc,,
+django/core/cache/backends/__pycache__/locmem.cpython-310.pyc,,
+django/core/cache/backends/__pycache__/memcached.cpython-310.pyc,,
+django/core/cache/backends/__pycache__/redis.cpython-310.pyc,,
+django/core/cache/backends/base.py,sha256=fkEigg1NJnT26lrkDuBLm0n9dmhU_rhY_oxIdSZ7vnQ,14227
+django/core/cache/backends/db.py,sha256=_Rxe7Vhv4hXFR-vkHuRfMjA01hNVPAc-qZPPEk0fyvQ,11373
+django/core/cache/backends/dummy.py,sha256=fQbFiL72DnVKP9UU4WDsZYaxYKx7FlMOJhtP8aky2ic,1043
+django/core/cache/backends/filebased.py,sha256=N7kaB-2bssd2PI7wLKrdJxaLAaGEc4UpCDS2dXT6n0s,5783
+django/core/cache/backends/locmem.py,sha256=cqdFgPxYrfEKDvKR2IYiFV7-MwhM0CIHPxLTBxJMDTQ,4035
+django/core/cache/backends/memcached.py,sha256=RDCiTtfAFbtN3f34C2W9wnj1WpQ6SHBqlTKpfKXnnHo,6800
+django/core/cache/backends/redis.py,sha256=cOQH1lHk5zUdG3WN7MEeIGTgsoYmQlMir2ygIouLjew,7891
+django/core/cache/utils.py,sha256=t9XOrfbjRrJ48gzIS8i5ustrKA5Ldd_0kjdV0-dOBHU,409
+django/core/checks/__init__.py,sha256=gFG0gY0C0L-akCrk1F0Q_WmkptYDLXYdyzr3wNJVIi4,1195
+django/core/checks/__pycache__/__init__.cpython-310.pyc,,
+django/core/checks/__pycache__/async_checks.cpython-310.pyc,,
+django/core/checks/__pycache__/caches.cpython-310.pyc,,
+django/core/checks/__pycache__/database.cpython-310.pyc,,
+django/core/checks/__pycache__/files.cpython-310.pyc,,
+django/core/checks/__pycache__/messages.cpython-310.pyc,,
+django/core/checks/__pycache__/model_checks.cpython-310.pyc,,
+django/core/checks/__pycache__/registry.cpython-310.pyc,,
+django/core/checks/__pycache__/templates.cpython-310.pyc,,
+django/core/checks/__pycache__/translation.cpython-310.pyc,,
+django/core/checks/__pycache__/urls.cpython-310.pyc,,
+django/core/checks/async_checks.py,sha256=A9p_jebELrf4fiD6jJtBM6Gvm8cMb03sSuW9Ncx3-vU,403
+django/core/checks/caches.py,sha256=hbcIFD_grXUQR2lGAzzlCX6qMJfkXj02ZDJElgdT5Yg,2643
+django/core/checks/compatibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/core/checks/compatibility/__pycache__/__init__.cpython-310.pyc,,
+django/core/checks/compatibility/__pycache__/django_4_0.cpython-310.pyc,,
+django/core/checks/compatibility/django_4_0.py,sha256=2s7lm9LZ0NrhaYSrw1Y5mMkL5BC68SS-TyD-TKczbEI,657
+django/core/checks/database.py,sha256=sBj-8o4DmpG5QPy1KXgXtZ0FZ0T9xdlT4XBIc70wmEQ,341
+django/core/checks/files.py,sha256=W4yYHiWrqi0d_G6tDWTw79pr2dgJY41rOv7mRpbtp2Q,522
+django/core/checks/messages.py,sha256=vIJtvmeafgwFzwcXaoRBWkcL_t2gLTLjstWSw5xCtjQ,2241
+django/core/checks/model_checks.py,sha256=8aK5uit9yP_lDfdXBJPlz_r-46faP_gIOXLszXqLQqY,8830
+django/core/checks/registry.py,sha256=FaixxLUVKtF-wNVKYXVkOVTg06lLdwOty2mfdDcEfb4,3458
+django/core/checks/security/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/core/checks/security/__pycache__/__init__.cpython-310.pyc,,
+django/core/checks/security/__pycache__/base.cpython-310.pyc,,
+django/core/checks/security/__pycache__/csrf.cpython-310.pyc,,
+django/core/checks/security/__pycache__/sessions.cpython-310.pyc,,
+django/core/checks/security/base.py,sha256=I0Gm446twRIhbRopEmKsdsYW_NdI7_nK_ZV28msRPEo,9140
+django/core/checks/security/csrf.py,sha256=hmFJ4m9oxDGwhDAWedmtpnIYQcI8Mxcge1D6CCoOBbc,2055
+django/core/checks/security/sessions.py,sha256=Qyb93CJeQBM5LLhhrqor4KQJR2tSpFklS-p7WltXcHc,2554
+django/core/checks/templates.py,sha256=mhiGoPfZL_rYUFso_1vFCYbLo5NxPpVwy4o8ynV756Y,2244
+django/core/checks/translation.py,sha256=it7VjXf10-HBdCc3z55_lSxwok9qEncdojRBG74d4FA,1990
+django/core/checks/urls.py,sha256=NIRbMn2r9GzdgOxhIujAICdYWC2M7SAiC5QuamENfU4,3328
+django/core/exceptions.py,sha256=856Rz8frSvYvg37zHXhX2GtZUReqtAybVueOJIx5Hjo,6297
+django/core/files/__init__.py,sha256=Rhz5Jm9BM6gy_nf5yMtswN1VsTIILYUL7Z-5edjh_HI,60
+django/core/files/__pycache__/__init__.cpython-310.pyc,,
+django/core/files/__pycache__/base.cpython-310.pyc,,
+django/core/files/__pycache__/images.cpython-310.pyc,,
+django/core/files/__pycache__/locks.cpython-310.pyc,,
+django/core/files/__pycache__/move.cpython-310.pyc,,
+django/core/files/__pycache__/storage.cpython-310.pyc,,
+django/core/files/__pycache__/temp.cpython-310.pyc,,
+django/core/files/__pycache__/uploadedfile.cpython-310.pyc,,
+django/core/files/__pycache__/uploadhandler.cpython-310.pyc,,
+django/core/files/__pycache__/utils.cpython-310.pyc,,
+django/core/files/base.py,sha256=UeErNSLdQMR2McOUNfgjHBadSlmVP_DDHsAwVrn1gYk,4811
+django/core/files/images.py,sha256=nn_GxARZobyRZr15MtCjbcgax8L4JhNQmfBK3-TvB78,2643
+django/core/files/locks.py,sha256=VU7D396gIi_RH9pE6Gv0ffOfe-8VwVqMeDqDS4zgfz4,3593
+django/core/files/move.py,sha256=3XS3kX7KerwZy0eYALnzXu2yeWkf-3pVE90uoyk2AK0,3101
+django/core/files/storage.py,sha256=pTGzZMz0NO2BP7qdpdA1oNEZFxnG5m8pOL2HcmWsRvQ,16147
+django/core/files/temp.py,sha256=iUegEgQ3UyUrDN10SgvKIrHfBPSej1lk-LAgJqMZBcU,2503
+django/core/files/uploadedfile.py,sha256=6hBjxmx8P0fxmZQbtj4OTsXtUk9GdIA7IUcv_KwSI08,4189
+django/core/files/uploadhandler.py,sha256=riobj6SKikjiacrhObFsW9NFRfjG5qPklsaS1pzpFvE,7179
+django/core/files/utils.py,sha256=f0naLw9ovd9z1DzQHLKXPJxHmBogsg4MEFZH4K9nxvg,2659
+django/core/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/core/handlers/__pycache__/__init__.cpython-310.pyc,,
+django/core/handlers/__pycache__/asgi.cpython-310.pyc,,
+django/core/handlers/__pycache__/base.cpython-310.pyc,,
+django/core/handlers/__pycache__/exception.cpython-310.pyc,,
+django/core/handlers/__pycache__/wsgi.cpython-310.pyc,,
+django/core/handlers/asgi.py,sha256=_qPhxvxVCRWuHvyOUVaq6ewbveld7rv7HAu2PPl7Jr8,11789
+django/core/handlers/base.py,sha256=SqkzzoFLleOuAkF8npl3CJfUDG7JGKMg3jq4q9Yt2Oo,14832
+django/core/handlers/exception.py,sha256=NsvgK7RG1WC9jQO1dfFapGSsJUS-HSD9gohKCQqJIe8,5884
+django/core/handlers/wsgi.py,sha256=nVw38J_-UI6jDn9FyNHu8YN69vVwNLNaifqDhvZHTe0,7790
+django/core/mail/__init__.py,sha256=HJSPyTBz34PsIyv4jTFJvhswauZr51NpsB-gpYR73-A,4958
+django/core/mail/__pycache__/__init__.cpython-310.pyc,,
+django/core/mail/__pycache__/message.cpython-310.pyc,,
+django/core/mail/__pycache__/utils.cpython-310.pyc,,
+django/core/mail/backends/__init__.py,sha256=VJ_9dBWKA48MXBZXVUaTy9NhgfRonapA6UAjVFEPKD8,37
+django/core/mail/backends/__pycache__/__init__.cpython-310.pyc,,
+django/core/mail/backends/__pycache__/base.cpython-310.pyc,,
+django/core/mail/backends/__pycache__/console.cpython-310.pyc,,
+django/core/mail/backends/__pycache__/dummy.cpython-310.pyc,,
+django/core/mail/backends/__pycache__/filebased.cpython-310.pyc,,
+django/core/mail/backends/__pycache__/locmem.cpython-310.pyc,,
+django/core/mail/backends/__pycache__/smtp.cpython-310.pyc,,
+django/core/mail/backends/base.py,sha256=Cljbb7nil40Dfpob2R8iLmlO0Yv_wlOCBA9hF2Z6W54,1683
+django/core/mail/backends/console.py,sha256=Z9damLP7VPLswrNDX9kLjL3MdWf9yAM6ZCeUv-3tRgU,1426
+django/core/mail/backends/dummy.py,sha256=sI7tAa3MfG43UHARduttBvEAYYfiLasgF39jzaZPu9E,234
+django/core/mail/backends/filebased.py,sha256=AbEBL9tXr6WIhuSQvm3dHoCpuMoDTSIkx6qFb4GMUe4,2353
+django/core/mail/backends/locmem.py,sha256=AT8ilBy4m5OWaiyqm_k82HdkQIemn4gciIYILGZag2o,885
+django/core/mail/backends/smtp.py,sha256=ek6Jp3X5AKYM_LwKAYT4pZ4YVe495uwIerfe60l0ack,5538
+django/core/mail/message.py,sha256=Mdi8_UbFQD0k-WzM43cqTJcwqxpqwM5v5OM3Hzdm9Vk,17709
+django/core/mail/utils.py,sha256=Wf-pdSdv0WLREYzI7EVWr59K6o7tfb3d2HSbAyE3SOE,506
+django/core/management/__init__.py,sha256=a_oJFck85xceALyH3mwP9CJSc0QWLK0MVZBOlc41ScA,17611
+django/core/management/__pycache__/__init__.cpython-310.pyc,,
+django/core/management/__pycache__/base.cpython-310.pyc,,
+django/core/management/__pycache__/color.cpython-310.pyc,,
+django/core/management/__pycache__/sql.cpython-310.pyc,,
+django/core/management/__pycache__/templates.cpython-310.pyc,,
+django/core/management/__pycache__/utils.cpython-310.pyc,,
+django/core/management/base.py,sha256=pGyweUGVNaJjM-RAYDyHuHD4qSChwk4UBQzteVbOKF0,23820
+django/core/management/color.py,sha256=Efa1K67kd5dwlcs2DgnkDTtZy0FuW6nSo7oaVsLN9Bw,2878
+django/core/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/core/management/commands/__pycache__/__init__.cpython-310.pyc,,
+django/core/management/commands/__pycache__/check.cpython-310.pyc,,
+django/core/management/commands/__pycache__/compilemessages.cpython-310.pyc,,
+django/core/management/commands/__pycache__/createcachetable.cpython-310.pyc,,
+django/core/management/commands/__pycache__/dbshell.cpython-310.pyc,,
+django/core/management/commands/__pycache__/diffsettings.cpython-310.pyc,,
+django/core/management/commands/__pycache__/dumpdata.cpython-310.pyc,,
+django/core/management/commands/__pycache__/flush.cpython-310.pyc,,
+django/core/management/commands/__pycache__/inspectdb.cpython-310.pyc,,
+django/core/management/commands/__pycache__/loaddata.cpython-310.pyc,,
+django/core/management/commands/__pycache__/makemessages.cpython-310.pyc,,
+django/core/management/commands/__pycache__/makemigrations.cpython-310.pyc,,
+django/core/management/commands/__pycache__/migrate.cpython-310.pyc,,
+django/core/management/commands/__pycache__/optimizemigration.cpython-310.pyc,,
+django/core/management/commands/__pycache__/runserver.cpython-310.pyc,,
+django/core/management/commands/__pycache__/sendtestemail.cpython-310.pyc,,
+django/core/management/commands/__pycache__/shell.cpython-310.pyc,,
+django/core/management/commands/__pycache__/showmigrations.cpython-310.pyc,,
+django/core/management/commands/__pycache__/sqlflush.cpython-310.pyc,,
+django/core/management/commands/__pycache__/sqlmigrate.cpython-310.pyc,,
+django/core/management/commands/__pycache__/sqlsequencereset.cpython-310.pyc,,
+django/core/management/commands/__pycache__/squashmigrations.cpython-310.pyc,,
+django/core/management/commands/__pycache__/startapp.cpython-310.pyc,,
+django/core/management/commands/__pycache__/startproject.cpython-310.pyc,,
+django/core/management/commands/__pycache__/test.cpython-310.pyc,,
+django/core/management/commands/__pycache__/testserver.cpython-310.pyc,,
+django/core/management/commands/check.py,sha256=KPtpSfNkIPPKaBP4od_vh-kp_D439sG8T9MOU41p9DA,2652
+django/core/management/commands/compilemessages.py,sha256=zb5fkLrfXSg5LQgs5m-SUBDFt7OtYmdgEmqiENv1Vrc,6992
+django/core/management/commands/createcachetable.py,sha256=1gXJFZpvuCZPd1I_VlhFlCVOPmxk-LQxFB0Tf2H2eyA,4616
+django/core/management/commands/dbshell.py,sha256=XWBxHQIxXzKd_o81PxmmOCV67VPcqbDr9Und6LEAt9Q,1731
+django/core/management/commands/diffsettings.py,sha256=NNL_J0P3HRzAZd9XcW7Eo_iE_lNliIpKtdcarDbBRpc,3554
+django/core/management/commands/dumpdata.py,sha256=PTJ32bLwSRd-NkZZhpowxNMHAPQpclAoOFESKMsyGQg,10962
+django/core/management/commands/flush.py,sha256=9KhMxzJFqA3cOCw-0VFZ2Utb2xZ-xCnn8ZGeiVGOm8E,3611
+django/core/management/commands/inspectdb.py,sha256=hhwS2t8OizSaOr4_fCns9NRtXxIIidVlt84jiZ-acZw,15663
+django/core/management/commands/loaddata.py,sha256=RJrdi1VWKv53FcBMrXZhLpTYwsjZvhqo76JJdor3aaA,15969
+django/core/management/commands/makemessages.py,sha256=6Yjq-e_pmTNdAlIOHn6AgZYmt-Ys5aCV73kIXN0rm3Y,27945
+django/core/management/commands/makemigrations.py,sha256=qh7o0suQJWfn--VB9oLQo-EAZVBgzRvABWkPlA4F_qA,17142
+django/core/management/commands/migrate.py,sha256=bdtUeTkgvjWD-YCR4sXVx3eIKLK1Vb12mUn_7KWed0M,21182
+django/core/management/commands/optimizemigration.py,sha256=GVWIhX94tOLHEx53w-VrUc48euVWpKCLMw-BbpiQgIg,5224
+django/core/management/commands/runserver.py,sha256=AAXjfEFhDysNLQGaH-xpPUp61G2JfvNzcULTaahEHuo,6788
+django/core/management/commands/sendtestemail.py,sha256=sF5TUMbD_tlGBnUsn9t-oFVGNSyeiWRIrgyPbJE88cs,1518
+django/core/management/commands/shell.py,sha256=LKmj6KYv6zpJzQ2mWtR4-u2CDSQL-_Na6TsT4JLYsi4,4613
+django/core/management/commands/showmigrations.py,sha256=dHDyNji_c55LntHanNT7ZF2EOq6pN4nulP-e4WRPMwE,6807
+django/core/management/commands/sqlflush.py,sha256=wivzfu_vA5XeU7fu2x1k7nEBky_vjtJgU4ruPja1pRQ,991
+django/core/management/commands/sqlmigrate.py,sha256=fjC7M5-cFxPV6yiqpSwpBrvo4ygZQeqoGEAVywVhKQY,3308
+django/core/management/commands/sqlsequencereset.py,sha256=Bf6HoGe5WoyAivZv1qYpklFQF9CaG4X2s1sLxT6U0Xw,1061
+django/core/management/commands/squashmigrations.py,sha256=ihEC5R-DJJx8uXfrkg_gtDAaIz7KYb5jhPSLCjx1Ia8,10862
+django/core/management/commands/startapp.py,sha256=Dhllhaf1q3EKVnyBLhJ9QsWf6JmjAtYnVLruHsmMlcQ,503
+django/core/management/commands/startproject.py,sha256=Iv7KOco1GkzGqUEME_LCx5vGi4JfY8-lzdkazDqF7k8,789
+django/core/management/commands/test.py,sha256=R0DDsSQ3rYHvA6rL0tFh-Q66JibpP6naPhirF3PeKnY,2554
+django/core/management/commands/testserver.py,sha256=o0MuEiPYKbZ4w7bj3BnwDQawc5CNOp53nl4e_nretF0,2245
+django/core/management/sql.py,sha256=fP6Bvq4NrQB_9Tb6XsYeCg57xs2Ck6uaCXq0ojFOSvA,1851
+django/core/management/templates.py,sha256=6NnEAJrM9_vtM3YrkJXsbLWeCrWpf31WPVAB_3JOSkc,15368
+django/core/management/utils.py,sha256=Yutz7UolTbsmTLp5AYe8qIze5eh-Y3ukNnz8fAAaek8,5192
+django/core/paginator.py,sha256=RItcuDrLFaa6IeWvaoOeFWSukWvP2FFRft28oQnFc_0,7542
+django/core/serializers/__init__.py,sha256=gaH58ip_2dyUFDlfOPenMkVJftQQOBvXqCcZBjAKwTA,8772
+django/core/serializers/__pycache__/__init__.cpython-310.pyc,,
+django/core/serializers/__pycache__/base.cpython-310.pyc,,
+django/core/serializers/__pycache__/json.cpython-310.pyc,,
+django/core/serializers/__pycache__/jsonl.cpython-310.pyc,,
+django/core/serializers/__pycache__/python.cpython-310.pyc,,
+django/core/serializers/__pycache__/pyyaml.cpython-310.pyc,,
+django/core/serializers/__pycache__/xml_serializer.cpython-310.pyc,,
+django/core/serializers/base.py,sha256=a-yHSUuRnHr-3VdgUlk79hLDTYVFuSGL_BqyNHqm6uE,13304
+django/core/serializers/json.py,sha256=GK9Slqj1cCeQVZU-jkagTC_hRsvgf2kBmdEseBcRpn8,3446
+django/core/serializers/jsonl.py,sha256=671JRbWRgOH3-oeD3auK9QCziwtrcdbyCIRDy5s4Evw,1879
+django/core/serializers/python.py,sha256=mfP8mMuaaYCl4cy6sXVAr8YQLOgsTBO-7jelfmWA9oc,6490
+django/core/serializers/pyyaml.py,sha256=77zu6PCfJg_75m36lX9X5018ADcux5qsDGajKNh4pI8,2955
+django/core/serializers/xml_serializer.py,sha256=iN0du1rdtJuo1CI1mk4vCN_kYsFeZ2Lshs0_KIs6kgw,17949
+django/core/servers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/core/servers/__pycache__/__init__.cpython-310.pyc,,
+django/core/servers/__pycache__/basehttp.cpython-310.pyc,,
+django/core/servers/basehttp.py,sha256=shQRR3aixd7bfn_mU9oU2o7nYp0aw0NPFQZ7M-hTcC4,8811
+django/core/signals.py,sha256=5vh1e7IgPN78WXPo7-hEMPN9tQcqJSZHu0WCibNgd-E,151
+django/core/signing.py,sha256=whV8CTcDhQOOE48myoLeuWpDW9oi9_X0PaKQbvelmoI,8788
+django/core/validators.py,sha256=tCi5toH1uyuuHLo06xTRKP3vb2ftjDAZkIkQfORcsG4,20527
+django/core/wsgi.py,sha256=2sYMSe3IBrENeQT7rys-04CRmf8hW2Q2CjlkBUIyjHk,388
+django/db/__init__.py,sha256=8W-BApKlr4YNfaDdQ544Gyp3AYYbX2E0dyDmQTiVHr0,1483
+django/db/__pycache__/__init__.cpython-310.pyc,,
+django/db/__pycache__/transaction.cpython-310.pyc,,
+django/db/__pycache__/utils.cpython-310.pyc,,
+django/db/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/db/backends/__pycache__/__init__.cpython-310.pyc,,
+django/db/backends/__pycache__/ddl_references.cpython-310.pyc,,
+django/db/backends/__pycache__/signals.cpython-310.pyc,,
+django/db/backends/__pycache__/utils.cpython-310.pyc,,
+django/db/backends/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/db/backends/base/__pycache__/__init__.cpython-310.pyc,,
+django/db/backends/base/__pycache__/base.cpython-310.pyc,,
+django/db/backends/base/__pycache__/client.cpython-310.pyc,,
+django/db/backends/base/__pycache__/creation.cpython-310.pyc,,
+django/db/backends/base/__pycache__/features.cpython-310.pyc,,
+django/db/backends/base/__pycache__/introspection.cpython-310.pyc,,
+django/db/backends/base/__pycache__/operations.cpython-310.pyc,,
+django/db/backends/base/__pycache__/schema.cpython-310.pyc,,
+django/db/backends/base/__pycache__/validation.cpython-310.pyc,,
+django/db/backends/base/base.py,sha256=ixpe59e6cJwvcRkLcUgCDTuRLMN4VruIw3do4_j32iw,27401
+django/db/backends/base/client.py,sha256=90Ffs6zZYCli3tJjwsPH8TItZ8tz1Pp-zhQa-EpsNqc,937
+django/db/backends/base/creation.py,sha256=KmBpV9NYgmK5sF2mjNUuGVcc3xoyQTaAqpv_oBqpdQY,15667
+django/db/backends/base/features.py,sha256=jjzA5UpweVJEula6cZP4ieeIzb3ZRlnjjozvnGkT_aM,14089
+django/db/backends/base/introspection.py,sha256=U9XFBIO-p3aqnWgzOX_2khFPCMhjSHNcvYkrW-hyWyc,7657
+django/db/backends/base/operations.py,sha256=PGMi80FDQ4VTf9metZkBjaOm2TuuAqh0DcJZFYkm5dM,28767
+django/db/backends/base/schema.py,sha256=km_O691N2xrXB1761UFhvSNHb5vc4qzWAmfTOcLsmME,69946
+django/db/backends/base/validation.py,sha256=2zpI11hyUJr0I0cA1xmvoFwQVdZ-7_1T2F11TpQ0Rkk,1067
+django/db/backends/ddl_references.py,sha256=eBDnxoh7_PY2H8AGuZ5FUoxsEscpnmMuYEMqzfPRFqk,8129
+django/db/backends/dummy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/db/backends/dummy/__pycache__/__init__.cpython-310.pyc,,
+django/db/backends/dummy/__pycache__/base.cpython-310.pyc,,
+django/db/backends/dummy/__pycache__/features.cpython-310.pyc,,
+django/db/backends/dummy/base.py,sha256=im1_ubNhbY6cP8yNntqDr6Hlg5d5c_5r5IUCPCDfv28,2181
+django/db/backends/dummy/features.py,sha256=Pg8_jND-aoJomTaBBXU3hJEjzpB-rLs6VwpoKkOYuQg,181
+django/db/backends/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/db/backends/mysql/__pycache__/__init__.cpython-310.pyc,,
+django/db/backends/mysql/__pycache__/base.cpython-310.pyc,,
+django/db/backends/mysql/__pycache__/client.cpython-310.pyc,,
+django/db/backends/mysql/__pycache__/compiler.cpython-310.pyc,,
+django/db/backends/mysql/__pycache__/creation.cpython-310.pyc,,
+django/db/backends/mysql/__pycache__/features.cpython-310.pyc,,
+django/db/backends/mysql/__pycache__/introspection.cpython-310.pyc,,
+django/db/backends/mysql/__pycache__/operations.cpython-310.pyc,,
+django/db/backends/mysql/__pycache__/schema.cpython-310.pyc,,
+django/db/backends/mysql/__pycache__/validation.cpython-310.pyc,,
+django/db/backends/mysql/base.py,sha256=mXWBrUYHjTxzHpA73QwdVq7L21w51AYAAiRvy29YWEo,16910
+django/db/backends/mysql/client.py,sha256=kehdRl8BX9KPcfTwYd3iDtHN3cdl-IFWUcV3cYHlIXY,2581
+django/db/backends/mysql/compiler.py,sha256=wju0iZ_KHfEgyNtQjnLizXC_GxW2uc61zgznLIGo_C0,3075
+django/db/backends/mysql/creation.py,sha256=8BV8YHk3qEq555nH3NHukxpZZgxtvXFvkv7XvkRlhKA,3449
+django/db/backends/mysql/features.py,sha256=ES00bKqMU5Rd7DClcoe4GrPTKzNRpjqLUa7_hTE-F7I,13666
+django/db/backends/mysql/introspection.py,sha256=kaz6iaruGdnnBmZM2m1Es1UGqkSIDpptQiI4xa0vfLc,13690
+django/db/backends/mysql/operations.py,sha256=XhsS7lbDf5xYAGBg3SSSLZwKaezAXatqkJ7HxBRUizk,18917
+django/db/backends/mysql/schema.py,sha256=pQFZMYDuyf4r-bs7yxy6_BUVnoA4MZ_8P88iqA1pF3g,7324
+django/db/backends/mysql/validation.py,sha256=XERj0lPEihKThPvzoVJmNpWdPOun64cRF3gHv-zmCGk,3093
+django/db/backends/oracle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/db/backends/oracle/__pycache__/__init__.cpython-310.pyc,,
+django/db/backends/oracle/__pycache__/base.cpython-310.pyc,,
+django/db/backends/oracle/__pycache__/client.cpython-310.pyc,,
+django/db/backends/oracle/__pycache__/creation.cpython-310.pyc,,
+django/db/backends/oracle/__pycache__/features.cpython-310.pyc,,
+django/db/backends/oracle/__pycache__/functions.cpython-310.pyc,,
+django/db/backends/oracle/__pycache__/introspection.cpython-310.pyc,,
+django/db/backends/oracle/__pycache__/operations.cpython-310.pyc,,
+django/db/backends/oracle/__pycache__/schema.cpython-310.pyc,,
+django/db/backends/oracle/__pycache__/utils.cpython-310.pyc,,
+django/db/backends/oracle/__pycache__/validation.cpython-310.pyc,,
+django/db/backends/oracle/base.py,sha256=-CaIam5TSyw3UxcT0xQezQSX7cpXBPF2I27DgQ0y4Qo,23085
+django/db/backends/oracle/client.py,sha256=DfDURfno8Sek13M8r5S2t2T8VUutx2hBT9DZRfow9VQ,784
+django/db/backends/oracle/creation.py,sha256=KVUU5EqNWeaeRMRj0Q2Z3EQ-F-FRuj25JaXdSTA_Q7I,20834
+django/db/backends/oracle/features.py,sha256=hlBLQUlCw1ODcYTgBAAV-phtXqIncld2IL2aj2nfS-4,6092
+django/db/backends/oracle/functions.py,sha256=2OoBYyY1Lb4B5hYbkRHjd8YY_artr3QeGu2hlojC-vc,812
+django/db/backends/oracle/introspection.py,sha256=4JvrK2rf8WQArRdiLhgf1AAy9PJA0xB5BlQiEXtfIRE,14682
+django/db/backends/oracle/operations.py,sha256=LvmRq3Cf1yoPNrgWWyO4bcLZgR50QqLmhCq4MsaR1gA,29588
+django/db/backends/oracle/schema.py,sha256=HhrIjCSlU2INjeTSkMz4jR2ViL87q636IQWCMIwGMb0,10724
+django/db/backends/oracle/utils.py,sha256=y-fIivrmHabu5CBCUgEUoud7kOIH7rGCXMEkMn8gHIs,2685
+django/db/backends/oracle/validation.py,sha256=cq-Bvy5C0_rmkgng0SSQ4s74FKg2yTM1N782Gfz86nY,860
+django/db/backends/postgresql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/db/backends/postgresql/__pycache__/__init__.cpython-310.pyc,,
+django/db/backends/postgresql/__pycache__/base.cpython-310.pyc,,
+django/db/backends/postgresql/__pycache__/client.cpython-310.pyc,,
+django/db/backends/postgresql/__pycache__/creation.cpython-310.pyc,,
+django/db/backends/postgresql/__pycache__/features.cpython-310.pyc,,
+django/db/backends/postgresql/__pycache__/introspection.cpython-310.pyc,,
+django/db/backends/postgresql/__pycache__/operations.cpython-310.pyc,,
+django/db/backends/postgresql/__pycache__/schema.cpython-310.pyc,,
+django/db/backends/postgresql/base.py,sha256=8XSvhykIme8vq8Z9dD0T3mJvhjK7a8r3hycpJ6QirkU,14280
+django/db/backends/postgresql/client.py,sha256=7-Q-fpIFgeFwO6mbNKosHZYcCQskcA58OqXKBG1kkl4,2052
+django/db/backends/postgresql/creation.py,sha256=ZuyzNToyKmUA6S49a3is6SQg8ELV3_ijvm3Ch3uMf7o,3663
+django/db/backends/postgresql/features.py,sha256=S5s3Pp0EIaJFEgB2jBFZUU8MojwKKXxIXuXB360jghw,3587
+django/db/backends/postgresql/introspection.py,sha256=-WQ_MzLd92us5b_22dn7j_-htQ0gKQZVg52_cczkkcw,11266
+django/db/backends/postgresql/operations.py,sha256=o9UYZpQyUEndg7sax8Sbptkd3IeOy4Qi5ctmNXMs1gI,13568
+django/db/backends/postgresql/schema.py,sha256=K1ho58Z9NjeUm2edAkZXC5kEv4aNpeBn3WopZnVabPs,11164
+django/db/backends/signals.py,sha256=Yl14KjYJijTt1ypIZirp90lS7UTJ8UogPFI_DwbcsSc,66
+django/db/backends/sqlite3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/db/backends/sqlite3/__pycache__/__init__.cpython-310.pyc,,
+django/db/backends/sqlite3/__pycache__/_functions.cpython-310.pyc,,
+django/db/backends/sqlite3/__pycache__/base.cpython-310.pyc,,
+django/db/backends/sqlite3/__pycache__/client.cpython-310.pyc,,
+django/db/backends/sqlite3/__pycache__/creation.cpython-310.pyc,,
+django/db/backends/sqlite3/__pycache__/features.cpython-310.pyc,,
+django/db/backends/sqlite3/__pycache__/introspection.cpython-310.pyc,,
+django/db/backends/sqlite3/__pycache__/operations.cpython-310.pyc,,
+django/db/backends/sqlite3/__pycache__/schema.cpython-310.pyc,,
+django/db/backends/sqlite3/_functions.py,sha256=xE8iY_GGjnTh6TZ3ctbtRdE4OaHMnV-zTjACiK1GGUU,14427
+django/db/backends/sqlite3/base.py,sha256=QT5X1VTxK6Td9Az17TFq1opnuJhVkv4Jlb95Dfl9HFA,15297
+django/db/backends/sqlite3/client.py,sha256=Eb_-P1w0aTbZGVNYkv7KA1ku5Il1N2RQov2lc3v0nho,321
+django/db/backends/sqlite3/creation.py,sha256=e6dong_YpN9x783IDRrV4NRav_jPqJP0x6JUZrN8A6c,6797
+django/db/backends/sqlite3/features.py,sha256=0PJQWoKuY3XXGX7NXkg2E_jDtgMGouUf0zu82tFPsrE,5855
+django/db/backends/sqlite3/introspection.py,sha256=CWGYy2OlYtlqQw_kB3C1201JfuHLwUSbMcA6IgBmlRM,17479
+django/db/backends/sqlite3/operations.py,sha256=k9fFz30k0H7E6TN0PU8l7pRC-u4qvxIHN0DkDLGxjgQ,17015
+django/db/backends/sqlite3/schema.py,sha256=4-SGoFiM5AIkMh0ts2vHTzFl6cspWSzQBQBt9KdVxro,23526
+django/db/backends/utils.py,sha256=xgNbEF1aNO5e_2xaaQwtocMUAiQvu3xf70zrHVCDCfE,9236
+django/db/migrations/__init__.py,sha256=Oa4RvfEa6hITCqdcqwXYC66YknFKyluuy7vtNbSc-L4,97
+django/db/migrations/__pycache__/__init__.cpython-310.pyc,,
+django/db/migrations/__pycache__/autodetector.cpython-310.pyc,,
+django/db/migrations/__pycache__/exceptions.cpython-310.pyc,,
+django/db/migrations/__pycache__/executor.cpython-310.pyc,,
+django/db/migrations/__pycache__/graph.cpython-310.pyc,,
+django/db/migrations/__pycache__/loader.cpython-310.pyc,,
+django/db/migrations/__pycache__/migration.cpython-310.pyc,,
+django/db/migrations/__pycache__/optimizer.cpython-310.pyc,,
+django/db/migrations/__pycache__/questioner.cpython-310.pyc,,
+django/db/migrations/__pycache__/recorder.cpython-310.pyc,,
+django/db/migrations/__pycache__/serializer.cpython-310.pyc,,
+django/db/migrations/__pycache__/state.cpython-310.pyc,,
+django/db/migrations/__pycache__/utils.cpython-310.pyc,,
+django/db/migrations/__pycache__/writer.cpython-310.pyc,,
+django/db/migrations/autodetector.py,sha256=BrIM-wMo0Bw1pJGOvNr9Z1Kgrv_zrIiTmQCmJ_H-1Q0,77637
+django/db/migrations/exceptions.py,sha256=SotQF7ZKgJpd9KN-gKDL8wCJAKSEgbZToM_vtUAnqHw,1204
+django/db/migrations/executor.py,sha256=_XxTCSHiwAy6KqFsqS_V2fVojDdMdKnDchCdc1nU2Bo,18923
+django/db/migrations/graph.py,sha256=vt7Pc45LuiXR8aRCrXP5Umm6VDCCTs2LAr5NXh-rxcE,13055
+django/db/migrations/loader.py,sha256=KRHdjq7A0sHqOS0JHVNlR8MtQvbY9smjId7rngwrrOU,16863
+django/db/migrations/migration.py,sha256=DmJrF_UdBlLO7wA50FMgWuvvI9jMlYBhE-U5v7yWVTY,9735
+django/db/migrations/operations/__init__.py,sha256=heS3YBo2D_5xevcMxXDCmCMFcg5GcUrSwPTqKO35jac,906
+django/db/migrations/operations/__pycache__/__init__.cpython-310.pyc,,
+django/db/migrations/operations/__pycache__/base.cpython-310.pyc,,
+django/db/migrations/operations/__pycache__/fields.cpython-310.pyc,,
+django/db/migrations/operations/__pycache__/models.cpython-310.pyc,,
+django/db/migrations/operations/__pycache__/special.cpython-310.pyc,,
+django/db/migrations/operations/base.py,sha256=-wdWlbVLtUGeOeWKyuQ67R3HCx_jd0ausstbJcBT4QQ,5082
+django/db/migrations/operations/fields.py,sha256=_6znw6YYwAxs_V4I05BbP_T58rkzR2dqUcLyUmul-Zc,12692
+django/db/migrations/operations/models.py,sha256=yIY28SKIRmgbkiMCbSfTejyrQ_9fvlFM2i7Nyp95PZc,39660
+django/db/migrations/operations/special.py,sha256=3Zbya6B1nEjvIwhQLoFR8kGBZUlc26kgBxX7XS3aeFQ,7831
+django/db/migrations/optimizer.py,sha256=c0JZ5FGltD_gmh20e5SR6A21q_De6rUKfkAJKwmX4Ks,3255
+django/db/migrations/questioner.py,sha256=HVtcEBRxQwL9JrQO5r1bVIZIZUFBfs9L-siuDQERZh0,13330
+django/db/migrations/recorder.py,sha256=36vtix99DAFnWgKQYnj4G8VQwNfOQUP2OTsC_afAPNM,3535
+django/db/migrations/serializer.py,sha256=aEuEXHyja4Bbz1CM2H5sJt6j2Y_qQqPGTbwM18XU42c,13151
+django/db/migrations/state.py,sha256=nsklYSqxnEr5O4kZa8D3LiZAZ6I7hCARE8N2AdyhKB0,40635
+django/db/migrations/utils.py,sha256=pdrzumGDhgytc5KVWdZov7cQtBt3jRASLqbmBxSRSvg,4401
+django/db/migrations/writer.py,sha256=KqsYN3bDTjGWnuvVvkAj06qk2lhFQLkaWsr9cW-oVYI,11458
+django/db/models/__init__.py,sha256=CB0CfDP1McdMRNfGuDs1OaJ7Xw-br2tC_EIjTcH51X4,2774
+django/db/models/__pycache__/__init__.cpython-310.pyc,,
+django/db/models/__pycache__/aggregates.cpython-310.pyc,,
+django/db/models/__pycache__/base.cpython-310.pyc,,
+django/db/models/__pycache__/constants.cpython-310.pyc,,
+django/db/models/__pycache__/constraints.cpython-310.pyc,,
+django/db/models/__pycache__/deletion.cpython-310.pyc,,
+django/db/models/__pycache__/enums.cpython-310.pyc,,
+django/db/models/__pycache__/expressions.cpython-310.pyc,,
+django/db/models/__pycache__/indexes.cpython-310.pyc,,
+django/db/models/__pycache__/lookups.cpython-310.pyc,,
+django/db/models/__pycache__/manager.cpython-310.pyc,,
+django/db/models/__pycache__/options.cpython-310.pyc,,
+django/db/models/__pycache__/query.cpython-310.pyc,,
+django/db/models/__pycache__/query_utils.cpython-310.pyc,,
+django/db/models/__pycache__/signals.cpython-310.pyc,,
+django/db/models/__pycache__/utils.cpython-310.pyc,,
+django/db/models/aggregates.py,sha256=x-sWUo-Lf8XIePorwLodwO49KCxUMnR-pVz8kqxR3qA,6944
+django/db/models/base.py,sha256=gLOeW_p5iuvWd8fZztLfNUuiVFskX8ph-mxLCxRaZe8,99289
+django/db/models/constants.py,sha256=yfhLjetzfpKFqd5pIIuILL3r2pmD-nhRL-4VzrZYQ4w,209
+django/db/models/constraints.py,sha256=bU83BRUEFs6QHoBZH1F7Dz3IjZgQFHVuuMXE1cgy3Vg,14976
+django/db/models/deletion.py,sha256=aj0hAKIIeMLusaLG81uBu6pyncUqPuLmCvZCMwRDmXk,20753
+django/db/models/enums.py,sha256=Erf-SMu9CD1aZfq4xct3WdoOjjMIZp_vlja6FyJQfyw,2804
+django/db/models/expressions.py,sha256=kBNs-7_9W2mFTmb1GVUr5K8FFX2P_r2z7-kgtHm4ODk,62634
+django/db/models/fields/__init__.py,sha256=NdouHh90Swn7a_7X1vGXuL0lbKUGHDj8SfnIF3lQ5hQ,94222
+django/db/models/fields/__pycache__/__init__.cpython-310.pyc,,
+django/db/models/fields/__pycache__/files.cpython-310.pyc,,
+django/db/models/fields/__pycache__/json.cpython-310.pyc,,
+django/db/models/fields/__pycache__/mixins.cpython-310.pyc,,
+django/db/models/fields/__pycache__/proxy.cpython-310.pyc,,
+django/db/models/fields/__pycache__/related.cpython-310.pyc,,
+django/db/models/fields/__pycache__/related_descriptors.cpython-310.pyc,,
+django/db/models/fields/__pycache__/related_lookups.cpython-310.pyc,,
+django/db/models/fields/__pycache__/reverse_related.cpython-310.pyc,,
+django/db/models/fields/files.py,sha256=gNA62GW-O4X3gtAZBLtl97IwyhdMCmlVhAv0ON9s9qc,18764
+django/db/models/fields/json.py,sha256=KBtTBPMdswZBF_5pDk_4uzsjATFG3uA6skXnT4e5pTk,19991
+django/db/models/fields/mixins.py,sha256=AfnqL5l3yXQmYh9sW35MPFy9AvKjA7SarXijXfd68J8,1823
+django/db/models/fields/proxy.py,sha256=eFHyl4gRTqocjgd6nID9UlQuOIppBA57Vcr71UReTAs,515
+django/db/models/fields/related.py,sha256=qqJdbSeU8k6HYvR9_sxlT7XLG5fp1Ide137ZmT8hUm4,76095
+django/db/models/fields/related_descriptors.py,sha256=njmAbhvduVLX4se0qfP7doNckP7oUvl9Hz1_Q0S6SxU,59017
+django/db/models/fields/related_lookups.py,sha256=aDnRMXf6LFJyCAShS3mCsgXqxCukKjspnaawbQo4AkM,8171
+django/db/models/fields/reverse_related.py,sha256=v5tQdGwqsnLi5cqNElxERkmG_6mpEWwkKeaXL3Q-pKw,12330
+django/db/models/functions/__init__.py,sha256=aglCm_JtzDYk2KmxubDN_78CGG3JCfRWnfJ74Oj5YJ4,2658
+django/db/models/functions/__pycache__/__init__.cpython-310.pyc,,
+django/db/models/functions/__pycache__/comparison.cpython-310.pyc,,
+django/db/models/functions/__pycache__/datetime.cpython-310.pyc,,
+django/db/models/functions/__pycache__/math.cpython-310.pyc,,
+django/db/models/functions/__pycache__/mixins.cpython-310.pyc,,
+django/db/models/functions/__pycache__/text.cpython-310.pyc,,
+django/db/models/functions/__pycache__/window.cpython-310.pyc,,
+django/db/models/functions/comparison.py,sha256=1PAS7MopA64-U1yEzk-pFpqsJF8kqCoiROuEeV_RRjA,8159
+django/db/models/functions/datetime.py,sha256=PHQYeXK1vnc8s3Oy3iXYqiXiw_qTm2cDH6U44w9qj8s,13217
+django/db/models/functions/math.py,sha256=1MMhlAzVYjIbC2kuuG0wzSQ21aXvgp7OlqMnfPG5y7Q,6104
+django/db/models/functions/mixins.py,sha256=04MuLCiXw4DYDx0kRU3g_QZcOOCbttAkFEa4WtwGeao,2229
+django/db/models/functions/text.py,sha256=nukaAx3ZAOPQoBFvZ4a3zVLkwqztLHI0ZSywuLOPth8,10605
+django/db/models/functions/window.py,sha256=g4fryay1tLQCpZRfmPQhrTiuib4RvPqtwFdodlLbi98,2841
+django/db/models/indexes.py,sha256=hEMb5h9gjVLQTKhS8yYZ3i_o17ppErOx8jlYeFYXn44,11871
+django/db/models/lookups.py,sha256=aj84NavidWTW5Q1FlOosCB91Rb2FF3KDCxET86uZzD8,24634
+django/db/models/manager.py,sha256=bTLdM0ed5kE7T5QUtLLx2lvhg_KFxBzD5I__Ryznzxo,6917
+django/db/models/options.py,sha256=VpVMrURnD1ZWssyl6E_pBsGiCTyvigjFsSxAZckI5Go,38009
+django/db/models/query.py,sha256=x-LlitxuVzB8b6c0gWizCCS-QOoAMTxbE5uO6tK7EgU,100811
+django/db/models/query_utils.py,sha256=JPoxFwyBc0-GxixYWcN3RKntIVWsrvE7Vw2QwTpCJtg,13389
+django/db/models/signals.py,sha256=mG6hxVWugr_m0ugTU2XAEMiqlu2FJ4CBuGa34dLJvEQ,1622
+django/db/models/sql/__init__.py,sha256=BGZ1GSn03dTOO8PYx6vF1-ImE3g1keZsQ74AHJoQwmQ,241
+django/db/models/sql/__pycache__/__init__.cpython-310.pyc,,
+django/db/models/sql/__pycache__/compiler.cpython-310.pyc,,
+django/db/models/sql/__pycache__/constants.cpython-310.pyc,,
+django/db/models/sql/__pycache__/datastructures.cpython-310.pyc,,
+django/db/models/sql/__pycache__/query.cpython-310.pyc,,
+django/db/models/sql/__pycache__/subqueries.cpython-310.pyc,,
+django/db/models/sql/__pycache__/where.cpython-310.pyc,,
+django/db/models/sql/compiler.py,sha256=D3BY9g8pXaIzDKGHdKA8lPRvbV9oD3bEyMzEcpjQOWE,81893
+django/db/models/sql/constants.py,sha256=usb1LSh9WNGPsurWAGppDkV0wYJJg5GEegKibQdS718,533
+django/db/models/sql/datastructures.py,sha256=cg4EexjiRimHEzgAuvMm3QN9qqmklPu37Zf1ONc0jFQ,7180
+django/db/models/sql/query.py,sha256=JQ8PUOPg2NZ_1LeftCO90a9htUTVtUDj_9WMDnE30Ns,114470
+django/db/models/sql/subqueries.py,sha256=eqwaqhe_A2-OVKcYu6N3Wi6jDvftnVnQ-30vFfZMB5w,5935
+django/db/models/sql/where.py,sha256=78n4GKnAgTQa2xcn1QDyDrEIQnvQGqDpPwn9XoSkRJQ,10376
+django/db/models/utils.py,sha256=q8bxqC8Fv8zuWgKuC8AcPFosw8BQHmyF9bLzIucFao0,1608
+django/db/transaction.py,sha256=qcjWKDs49xV6-XJgTeVcHcWf_avZJsPURfOFFdFsJwI,12433
+django/db/utils.py,sha256=RKtSSyVJmM5__SAs1pY0njX6hLVRy1WIBggYo1zP4RI,9279
+django/dispatch/__init__.py,sha256=qP203zNwjaolUFnXLNZHnuBn7HNzyw9_JkODECRKZbc,286
+django/dispatch/__pycache__/__init__.cpython-310.pyc,,
+django/dispatch/__pycache__/dispatcher.cpython-310.pyc,,
+django/dispatch/dispatcher.py,sha256=hMPMYVDCkQuUfY1D3XVyP2CqSQDhEHMgp25a-RytTMs,10793
+django/dispatch/license.txt,sha256=VABMS2BpZOvBY68W0EYHwW5Cj4p4oCb-y1P3DAn0qU8,1743
+django/forms/__init__.py,sha256=S6ckOMmvUX-vVST6AC-M8BzsfVQwuEUAdHWabMN-OGI,368
+django/forms/__pycache__/__init__.cpython-310.pyc,,
+django/forms/__pycache__/boundfield.cpython-310.pyc,,
+django/forms/__pycache__/fields.cpython-310.pyc,,
+django/forms/__pycache__/forms.cpython-310.pyc,,
+django/forms/__pycache__/formsets.cpython-310.pyc,,
+django/forms/__pycache__/models.cpython-310.pyc,,
+django/forms/__pycache__/renderers.cpython-310.pyc,,
+django/forms/__pycache__/utils.cpython-310.pyc,,
+django/forms/__pycache__/widgets.cpython-310.pyc,,
+django/forms/boundfield.py,sha256=z-zjCOwA3VmaOH0Zb9KnvDUy9jIkI3hHscehqlXLh_o,12036
+django/forms/fields.py,sha256=uSoJ18iL3PmcI4ff7-np4CRjBqNAQ6xIl78YbUW79BU,48333
+django/forms/forms.py,sha256=f-mLXMrandanFzIS9G4SkiqPp-z6O0vMGDEdUO-zVEc,20586
+django/forms/formsets.py,sha256=JbBdpSRLZ5ZNHwnM-D85yCpLea9pNb3eUQpXrdcP9kg,21068
+django/forms/jinja2/django/forms/attrs.html,sha256=TD0lNK-ohDjb_bWg1Kosdn4kU01B_M0_C19dp9kYJqo,165
+django/forms/jinja2/django/forms/default.html,sha256=stPE5cj2dGb6pxqKLtgDHPr14Qr6pcr4i_s2lCZDFF8,40
+django/forms/jinja2/django/forms/div.html,sha256=Fgqt-XPtBFe6qiW7_mTb7w9gf0aNUbUalhxZvNV6gP0,865
+django/forms/jinja2/django/forms/errors/dict/default.html,sha256=1DLQf0Czjr5V4cghQOyJr3v34G2ClF0RAOc-H7GwXUE,49
+django/forms/jinja2/django/forms/errors/dict/text.txt,sha256=E7eqEWc6q2_kLyc9k926klRe2mPp4O2VqG-2_MliYaU,113
+django/forms/jinja2/django/forms/errors/dict/ul.html,sha256=65EYJOqDAn7-ca7FtjrcdbXygLE-RA_IJQTltO7qS1Q,137
+django/forms/jinja2/django/forms/errors/list/default.html,sha256=q41d4u6XcxDL06gRAVdU021kM_iFLIt5BuYa-HATOWE,49
+django/forms/jinja2/django/forms/errors/list/text.txt,sha256=VVbLrGMHcbs1hK9-2v2Y6SIoH9qRMtlKzM6qzLVAFyE,52
+django/forms/jinja2/django/forms/errors/list/ul.html,sha256=AwXfGxnos6llX44dhxMChz6Kk6VStAJiNzUpSLN8_y4,119
+django/forms/jinja2/django/forms/formsets/default.html,sha256=VS7142h_1WElYa58vKdd9vfQiwaRxrQLyatBAI22T3U,77
+django/forms/jinja2/django/forms/formsets/div.html,sha256=uq10XZdQ1WSt6kJFoKxtluvnCKE4L3oYcLkPraF4ovs,86
+django/forms/jinja2/django/forms/formsets/p.html,sha256=HzEX7XdSDt9owDkYJvBdFIETeU9RDbXc1e4R2YEt6ec,84
+django/forms/jinja2/django/forms/formsets/table.html,sha256=L9B4E8lR0roTr7dBoMiUlekuMbO-3y4_b4NHm6Oy_Vg,88
+django/forms/jinja2/django/forms/formsets/ul.html,sha256=ANvMWb6EeFAtLPDTr61IeI3-YHtAYZCT_zmm-_y-5Oc,85
+django/forms/jinja2/django/forms/label.html,sha256=trXo6yF4ezDv-y-8y1yJnP7sSByw0TTppgZLcrmfR6M,147
+django/forms/jinja2/django/forms/p.html,sha256=fQJWWpBV4WgggOA-KULIY6vIIPTHNVlkfj9yOngfOOY,673
+django/forms/jinja2/django/forms/table.html,sha256=B6EEQIJDDpc2SHC5qJzOZylzjmLVA1IWzOQWzzvRZA8,814
+django/forms/jinja2/django/forms/ul.html,sha256=U6aaYi-Wb66KcLhRGJ_GeGc5TQyeUK9LKLTw4a8utoE,712
+django/forms/jinja2/django/forms/widgets/attrs.html,sha256=_J2P-AOpHFhIwaqCNcrJFxEY4s-KPdy0Wcq0KlarIG0,172
+django/forms/jinja2/django/forms/widgets/checkbox.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/jinja2/django/forms/widgets/checkbox_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55
+django/forms/jinja2/django/forms/widgets/checkbox_select.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57
+django/forms/jinja2/django/forms/widgets/clearable_file_input.html,sha256=h5_tWYnKRjGTYkzOq6AfDpkffj31DdEolpdtInilitM,511
+django/forms/jinja2/django/forms/widgets/date.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/jinja2/django/forms/widgets/datetime.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/jinja2/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/jinja2/django/forms/widgets/file.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/jinja2/django/forms/widgets/hidden.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/jinja2/django/forms/widgets/input.html,sha256=u12fZde-ugkEAAkPAtAfSxwGQmYBkXkssWohOUs-xoE,172
+django/forms/jinja2/django/forms/widgets/input_option.html,sha256=PyRNn9lmE9Da0-RK37zW4yJZUSiJWgIPCU9ou5oUC28,219
+django/forms/jinja2/django/forms/widgets/multiple_hidden.html,sha256=T54-n1ZeUlTd-svM3C4tLF42umKM0R5A7fdfsdthwkA,54
+django/forms/jinja2/django/forms/widgets/multiple_input.html,sha256=voM3dqu69R0Z202TmCgMFM6toJp7FgFPVvbWY9WKEAU,395
+django/forms/jinja2/django/forms/widgets/multiwidget.html,sha256=pr-MxRyucRxn_HvBGZvbc3JbFyrAolbroxvA4zmPz2Y,86
+django/forms/jinja2/django/forms/widgets/number.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/jinja2/django/forms/widgets/password.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/jinja2/django/forms/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57
+django/forms/jinja2/django/forms/widgets/radio_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55
+django/forms/jinja2/django/forms/widgets/select.html,sha256=ESyDzbLTtM7-OG34EuSUnvxCtyP5IrQsZh0jGFrIdEA,365
+django/forms/jinja2/django/forms/widgets/select_date.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
+django/forms/jinja2/django/forms/widgets/select_option.html,sha256=tNa1D3G8iy2ZcWeKyI-mijjDjRmMaqSo-jnAR_VS3Qc,110
+django/forms/jinja2/django/forms/widgets/splitdatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
+django/forms/jinja2/django/forms/widgets/splithiddendatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
+django/forms/jinja2/django/forms/widgets/text.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/jinja2/django/forms/widgets/textarea.html,sha256=Av1Y-hpXUU2AjrhnUivgZFKNBLdwCSZSeuSmCqmCkDA,145
+django/forms/jinja2/django/forms/widgets/time.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/jinja2/django/forms/widgets/url.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/models.py,sha256=zTtQzYTzT8JRxRJx5A9DvZ1l9oIcm1U-1_XnbjCxFqs,60344
+django/forms/renderers.py,sha256=7G1MxTkXh-MYoXcg12Bam_tukUdx_MZfkQkr-FXq8fI,3036
+django/forms/templates/django/forms/attrs.html,sha256=UFPgCXXCAkbumxZE1NM-aJVE4VCe2RjCrHLNseibv3I,165
+django/forms/templates/django/forms/default.html,sha256=stPE5cj2dGb6pxqKLtgDHPr14Qr6pcr4i_s2lCZDFF8,40
+django/forms/templates/django/forms/div.html,sha256=UpjHVpiDG6TL-8wf7egyA2yY8S7igoIWKe-_y1dX388,874
+django/forms/templates/django/forms/errors/dict/default.html,sha256=tFtwfHlkOY_XaKjoUPsWshiSWT5olxm3kDElND-GQtQ,48
+django/forms/templates/django/forms/errors/dict/text.txt,sha256=E7eqEWc6q2_kLyc9k926klRe2mPp4O2VqG-2_MliYaU,113
+django/forms/templates/django/forms/errors/dict/ul.html,sha256=65EYJOqDAn7-ca7FtjrcdbXygLE-RA_IJQTltO7qS1Q,137
+django/forms/templates/django/forms/errors/list/default.html,sha256=Kmx1nwrzQ49MaP80Gd17GC5TQH4B7doWa3I3azXvoHA,48
+django/forms/templates/django/forms/errors/list/text.txt,sha256=VVbLrGMHcbs1hK9-2v2Y6SIoH9qRMtlKzM6qzLVAFyE,52
+django/forms/templates/django/forms/errors/list/ul.html,sha256=5kt2ckbr3esK0yoPzco2EB0WzS8MvGzau_rAcomB508,118
+django/forms/templates/django/forms/formsets/default.html,sha256=VS7142h_1WElYa58vKdd9vfQiwaRxrQLyatBAI22T3U,77
+django/forms/templates/django/forms/formsets/div.html,sha256=lmIRSTBuGczEd2lj-UfDS9zAlVv8ntpmRo-boDDRwEg,84
+django/forms/templates/django/forms/formsets/p.html,sha256=qkoHKem-gb3iqvTtROBcHNJqI-RoUwLHUvJC6EoHg-I,82
+django/forms/templates/django/forms/formsets/table.html,sha256=N0G9GETzJfV16wUesvdrNMDwc8Fhh6durrmkHUPeDZY,86
+django/forms/templates/django/forms/formsets/ul.html,sha256=bGQpjbpKwMahyiIP4-2p3zg3yJP-pN1A48yCqhHdw7o,83
+django/forms/templates/django/forms/label.html,sha256=0bJCdIj8G5e2Gaw3QUR0ZMdwVavC80YwxS5E0ShkzmE,122
+django/forms/templates/django/forms/p.html,sha256=N3sx-PBlt3Trs6lfjE4oQa3owxhM3rqXTy-AQg9Hr44,684
+django/forms/templates/django/forms/table.html,sha256=zuLIyEOeNzV7aeIjIqIwM4XfZP_SlEc_OZ_x87rbOhY,825
+django/forms/templates/django/forms/ul.html,sha256=K8kCd5q4nD-_ChR47s3q5fkHd8BHrHAa830-5H8aXVI,723
+django/forms/templates/django/forms/widgets/attrs.html,sha256=9ylIPv5EZg-rx2qPLgobRkw6Zq_WJSM8kt106PpSYa0,172
+django/forms/templates/django/forms/widgets/checkbox.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/templates/django/forms/widgets/checkbox_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55
+django/forms/templates/django/forms/widgets/checkbox_select.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57
+django/forms/templates/django/forms/widgets/clearable_file_input.html,sha256=h5_tWYnKRjGTYkzOq6AfDpkffj31DdEolpdtInilitM,511
+django/forms/templates/django/forms/widgets/date.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/templates/django/forms/widgets/datetime.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/templates/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/templates/django/forms/widgets/file.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/templates/django/forms/widgets/hidden.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/templates/django/forms/widgets/input.html,sha256=dwzzrLocGLZQIaGe-_X8k7z87jV6AFtn28LilnUnUH0,189
+django/forms/templates/django/forms/widgets/input_option.html,sha256=PyRNn9lmE9Da0-RK37zW4yJZUSiJWgIPCU9ou5oUC28,219
+django/forms/templates/django/forms/widgets/multiple_hidden.html,sha256=T54-n1ZeUlTd-svM3C4tLF42umKM0R5A7fdfsdthwkA,54
+django/forms/templates/django/forms/widgets/multiple_input.html,sha256=jxEWRqV32a73340eQ0uIn672Xz5jW9qm3V_srByLEd0,426
+django/forms/templates/django/forms/widgets/multiwidget.html,sha256=slk4AgCdXnVmFvavhjVcsza0quTOP2LG50D8wna0dw0,117
+django/forms/templates/django/forms/widgets/number.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/templates/django/forms/widgets/password.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/templates/django/forms/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57
+django/forms/templates/django/forms/widgets/radio_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55
+django/forms/templates/django/forms/widgets/select.html,sha256=7U0RzjeESG87ENzQjPRUF71gvKvGjVVvXcpsW2-BTR4,384
+django/forms/templates/django/forms/widgets/select_date.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
+django/forms/templates/django/forms/widgets/select_option.html,sha256=N_psd0JYCqNhx2eh2oyvkF2KU2dv7M9mtMw_4BLYq8A,127
+django/forms/templates/django/forms/widgets/splitdatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
+django/forms/templates/django/forms/widgets/splithiddendatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
+django/forms/templates/django/forms/widgets/text.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/templates/django/forms/widgets/textarea.html,sha256=Av1Y-hpXUU2AjrhnUivgZFKNBLdwCSZSeuSmCqmCkDA,145
+django/forms/templates/django/forms/widgets/time.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/templates/django/forms/widgets/url.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
+django/forms/utils.py,sha256=cE0YGhNlmArdpQ6bS_OxFRcPlKNSkAwK1pQfw66x3rg,8161
+django/forms/widgets.py,sha256=cKcxRd0a-2rCeCE4w0xP_rS_98GOtruystVq7QS2OYk,38627
+django/http/__init__.py,sha256=9x9P4-fKv1dYEpjq5n7aStkZ2mCFnv0U3Tohny00yDM,1164
+django/http/__pycache__/__init__.cpython-310.pyc,,
+django/http/__pycache__/cookie.cpython-310.pyc,,
+django/http/__pycache__/multipartparser.cpython-310.pyc,,
+django/http/__pycache__/request.cpython-310.pyc,,
+django/http/__pycache__/response.cpython-310.pyc,,
+django/http/cookie.py,sha256=t7yGORGClUnCYVKQqyLBlEYsxQLLHn9crsMSWqK_Eic,679
+django/http/multipartparser.py,sha256=thb5VZQzMyvbUrxmdGvaqrjZYnBHpuvLyXPZ4R_fw84,27173
+django/http/request.py,sha256=qiLsOBRINtfQ9ZNI-1EPzfA2zbicSh9SD7abFcPNlPQ,24818
+django/http/response.py,sha256=_amo06OAX7lcKHPd4v4HU4ROinHgXvY0oSqNl4G6X1Y,23854
+django/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/middleware/__pycache__/__init__.cpython-310.pyc,,
+django/middleware/__pycache__/cache.cpython-310.pyc,,
+django/middleware/__pycache__/clickjacking.cpython-310.pyc,,
+django/middleware/__pycache__/common.cpython-310.pyc,,
+django/middleware/__pycache__/csrf.cpython-310.pyc,,
+django/middleware/__pycache__/gzip.cpython-310.pyc,,
+django/middleware/__pycache__/http.cpython-310.pyc,,
+django/middleware/__pycache__/locale.cpython-310.pyc,,
+django/middleware/__pycache__/security.cpython-310.pyc,,
+django/middleware/cache.py,sha256=WAfMAUktNAqHGkTwC8iB0HVcZwQTdXBCLWFng4ERGgM,7951
+django/middleware/clickjacking.py,sha256=rIm2VlbblLWrMTRYJ1JBIui5xshAM-2mpyJf989xOgY,1724
+django/middleware/common.py,sha256=9G8G40Jd6vNeSVQfu1bKO-y2Rd550Lsm8ohr_fDeAnU,7603
+django/middleware/csrf.py,sha256=uosTUtHAj6P7Puam7VtYfRxqKCWGWEOUcnunviwsOlU,19773
+django/middleware/gzip.py,sha256=P_gEykSWFCwAhcsm4bUB8bvv6oH7B3gl47O3ezOACsQ,2143
+django/middleware/http.py,sha256=RqXN9Kp6GEh8j_ub7YXRi6W2_CKZTZEyAPpFUzeNPBs,1616
+django/middleware/locale.py,sha256=CV8aerSUWmO6cJQ6IrD5BzT3YlOxYNIqFraCqr8DoY4,3442
+django/middleware/security.py,sha256=AjcJ338onziA0HPXsM5WUnIrQkmyW8mpwU0KObaPPUI,2623
+django/shortcuts.py,sha256=UniuxOq4cpBYCN-spLkUCFEYmA2SSXsozeS6xM2Lx8w,5009
+django/template/__init__.py,sha256=-hvAhcRO8ydLdjTJJFr6LYoBVCsJq561ebRqE9kYBJs,1845
+django/template/__pycache__/__init__.cpython-310.pyc,,
+django/template/__pycache__/autoreload.cpython-310.pyc,,
+django/template/__pycache__/base.cpython-310.pyc,,
+django/template/__pycache__/context.cpython-310.pyc,,
+django/template/__pycache__/context_processors.cpython-310.pyc,,
+django/template/__pycache__/defaultfilters.cpython-310.pyc,,
+django/template/__pycache__/defaulttags.cpython-310.pyc,,
+django/template/__pycache__/engine.cpython-310.pyc,,
+django/template/__pycache__/exceptions.cpython-310.pyc,,
+django/template/__pycache__/library.cpython-310.pyc,,
+django/template/__pycache__/loader.cpython-310.pyc,,
+django/template/__pycache__/loader_tags.cpython-310.pyc,,
+django/template/__pycache__/response.cpython-310.pyc,,
+django/template/__pycache__/smartif.cpython-310.pyc,,
+django/template/__pycache__/utils.cpython-310.pyc,,
+django/template/autoreload.py,sha256=eW35nTUXJQsEuK8DFSeoeNQ3_zhOUP5uSPUgbiayPXk,1812
+django/template/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/template/backends/__pycache__/__init__.cpython-310.pyc,,
+django/template/backends/__pycache__/base.cpython-310.pyc,,
+django/template/backends/__pycache__/django.cpython-310.pyc,,
+django/template/backends/__pycache__/dummy.cpython-310.pyc,,
+django/template/backends/__pycache__/jinja2.cpython-310.pyc,,
+django/template/backends/__pycache__/utils.cpython-310.pyc,,
+django/template/backends/base.py,sha256=leXk6e3XTeD8YYZ4jzGYP9bqKs2HdZupz3C1b-XcImE,2752
+django/template/backends/django.py,sha256=L-_iLPAkHZACdYYHoddd_GeCaw8Z_NFWF0r1jFLNZPU,4395
+django/template/backends/dummy.py,sha256=XAtI1wmVkGJDfVOz-ENr4voPWrfY3h4sW0CjMqoiCK4,1752
+django/template/backends/jinja2.py,sha256=GtLKK8Ot1vBcylD5LFDC2PBII_ZcXM_Fnj0JkHKs5To,4046
+django/template/backends/utils.py,sha256=z5X_lxKa9qL4KFDVeai-FmsewU3KLgVHO8y-gHLiVts,424
+django/template/base.py,sha256=3HjabVBW7fA5IhOrqHFZAMvaKHg67Md1e3tzHXI2hRg,40344
+django/template/context.py,sha256=67y6QyhjnwxKx37h4vORKBSNao1tYAf95LhXszZ4O10,9004
+django/template/context_processors.py,sha256=PMIuGUE1iljf5L8oXggIdvvFOhCLJpASdwd39BMdjBE,2480
+django/template/defaultfilters.py,sha256=s28jBp4_SVbnf6uPt2Q7ftt5pbGX_O_RVP6Oh-654eE,27674
+django/template/defaulttags.py,sha256=mgLeENndoSN-AQ-u5t-rC91C0fV_biVgU7Dm0OPyc00,48461
+django/template/engine.py,sha256=c4ZINgREkvys2WDKNVkuZqZKG4t1Qu02tUTnLx0WA54,7733
+django/template/exceptions.py,sha256=rqG3_qZq31tUHbmtZD-MIu0StChqwaFejFFpR4u7th4,1342
+django/template/library.py,sha256=2g2HaF2qvR3tSfzVNWeClOAv4gJ8UfvI5f43uvtCB4w,13340
+django/template/loader.py,sha256=PVFUUtC5WgiRVVTilhQ6NFZnvjly6sP9s7anFmMoKdo,2054
+django/template/loader_tags.py,sha256=blVie4GNs8kGY_kh-1TLaoilIGGUJ5vc_Spcum0athA,13103
+django/template/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/template/loaders/__pycache__/__init__.cpython-310.pyc,,
+django/template/loaders/__pycache__/app_directories.cpython-310.pyc,,
+django/template/loaders/__pycache__/base.cpython-310.pyc,,
+django/template/loaders/__pycache__/cached.cpython-310.pyc,,
+django/template/loaders/__pycache__/filesystem.cpython-310.pyc,,
+django/template/loaders/__pycache__/locmem.cpython-310.pyc,,
+django/template/loaders/app_directories.py,sha256=sQpVXKYpnKr9Rl1YStNca-bGIQHcOkSnmm1l2qRGFVE,312
+django/template/loaders/base.py,sha256=Y5V4g0ly9GuNe7BQxaJSMENJnvxzXJm7XhSTxzfFM0s,1636
+django/template/loaders/cached.py,sha256=bDwkWYPgbvprU_u9f9w9oNYpSW_j9b7so_mlKzp9-N4,3716
+django/template/loaders/filesystem.py,sha256=f4silD7WWhv3K9QySMgW7dlGGNwwYAcHCMSTFpwiiXY,1506
+django/template/loaders/locmem.py,sha256=t9p0GYF2VHf4XG6Gggp0KBmHkdIuSKuLdiVXMVb2iHs,672
+django/template/response.py,sha256=UAU-aM7mn6cbGOIJuurn4EE5ITdcAqSFgKD5RXFms4w,5584
+django/template/smartif.py,sha256=eTzcnzPBdbkoiP8j9q_sa_47SoLLMqYdLKC3z0TbjpA,6407
+django/template/utils.py,sha256=c9cJRfmBXs-41xa8KkZiLkeqUAbd-8elKc_7WdnI3G0,3626
+django/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/templatetags/__pycache__/__init__.cpython-310.pyc,,
+django/templatetags/__pycache__/cache.cpython-310.pyc,,
+django/templatetags/__pycache__/i18n.cpython-310.pyc,,
+django/templatetags/__pycache__/l10n.cpython-310.pyc,,
+django/templatetags/__pycache__/static.cpython-310.pyc,,
+django/templatetags/__pycache__/tz.cpython-310.pyc,,
+django/templatetags/cache.py,sha256=OpiR0FQBsJC9p73aEcXQQamSySR2hwIx2wEiuD925pg,3545
+django/templatetags/i18n.py,sha256=Sym7Brxit6BWTOolHu4DV3R2mwv64Q9rJackHKLcT5g,19945
+django/templatetags/l10n.py,sha256=F6pnC2_7xNCKfNi0mcfzYQY8pzrQ9enK7_6-ZWzRu3A,1723
+django/templatetags/static.py,sha256=W4Rqt3DN_YtXe6EoqO-GLy7WR7xd7z0JsoX-VT0vvjc,4730
+django/templatetags/tz.py,sha256=sjPsTsOy7ndIirXowxNVno8GSNii0lC0L9u8xQfrZ_U,6095
+django/test/__init__.py,sha256=X12C98lKN5JW1-wms7B6OaMTo-Li90waQpjfJE1V3AE,834
+django/test/__pycache__/__init__.cpython-310.pyc,,
+django/test/__pycache__/client.cpython-310.pyc,,
+django/test/__pycache__/html.cpython-310.pyc,,
+django/test/__pycache__/runner.cpython-310.pyc,,
+django/test/__pycache__/selenium.cpython-310.pyc,,
+django/test/__pycache__/signals.cpython-310.pyc,,
+django/test/__pycache__/testcases.cpython-310.pyc,,
+django/test/__pycache__/utils.cpython-310.pyc,,
+django/test/client.py,sha256=wmyDbflf4-5s7bNVqeri4pRPd1AyIPP6B0RS2f7t-eI,39126
+django/test/html.py,sha256=L4Af_qk1ukVoXnW9ffkTEg4K-JvdHEZ5mixNRXzSDN8,9209
+django/test/runner.py,sha256=KaYN5K0ANMxCiqZ9g7FE9BC2hCgqTuM0HfSwBnC-qm8,41708
+django/test/selenium.py,sha256=0JPzph8lyk1i9taDCgsOvLhkxSh-jR-gvM4pPhdTGzc,5129
+django/test/signals.py,sha256=_fr9RYJ5pS3jeHAE3Gt7G3aE7LetiD63698xQWDV3Tw,6848
+django/test/testcases.py,sha256=7mFy0CFFrPv9TpsodzTuKGyO8T10SCm8dyfqjcEIlQw,69230
+django/test/utils.py,sha256=DVsPcFArAu7_mLLITBrM07NXViFQd_f1Alz3ZF3QgFM,32871
+django/urls/__init__.py,sha256=BHyBIOD3E4_3Ng27SpXnRmqO3IzUqvBLCE4TTfs4wNs,1079
+django/urls/__pycache__/__init__.cpython-310.pyc,,
+django/urls/__pycache__/base.cpython-310.pyc,,
+django/urls/__pycache__/conf.cpython-310.pyc,,
+django/urls/__pycache__/converters.cpython-310.pyc,,
+django/urls/__pycache__/exceptions.cpython-310.pyc,,
+django/urls/__pycache__/resolvers.cpython-310.pyc,,
+django/urls/__pycache__/utils.cpython-310.pyc,,
+django/urls/base.py,sha256=0YT_x7hYBKkYV_1RXetdP6gFQKxQci5_bLHoowWPKQA,5703
+django/urls/conf.py,sha256=uP_G78p31DejLa638fnOysaYwxWJETK5FDpJ6T9klj4,3425
+django/urls/converters.py,sha256=fVO-I8vTHL0H25GyElAYQWwSZtPMMNa9mJ1W-ZQrHyg,1216
+django/urls/exceptions.py,sha256=alLNjkORtAxneC00g4qnRpG5wouOHvJvGbymdpKtG_I,115
+django/urls/resolvers.py,sha256=iaGUMt7PpbJOzylpqEu2x7naxx7pTTI_DyGDDtmiAp4,30743
+django/urls/utils.py,sha256=MSSGo9sAlnsDG3fDt2zayhXwYMCL4qtBzVjQv8BwemA,2197
+django/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/utils/__pycache__/__init__.cpython-310.pyc,,
+django/utils/__pycache__/_os.cpython-310.pyc,,
+django/utils/__pycache__/archive.cpython-310.pyc,,
+django/utils/__pycache__/asyncio.cpython-310.pyc,,
+django/utils/__pycache__/autoreload.cpython-310.pyc,,
+django/utils/__pycache__/baseconv.cpython-310.pyc,,
+django/utils/__pycache__/cache.cpython-310.pyc,,
+django/utils/__pycache__/connection.cpython-310.pyc,,
+django/utils/__pycache__/crypto.cpython-310.pyc,,
+django/utils/__pycache__/datastructures.cpython-310.pyc,,
+django/utils/__pycache__/dateformat.cpython-310.pyc,,
+django/utils/__pycache__/dateparse.cpython-310.pyc,,
+django/utils/__pycache__/dates.cpython-310.pyc,,
+django/utils/__pycache__/datetime_safe.cpython-310.pyc,,
+django/utils/__pycache__/deconstruct.cpython-310.pyc,,
+django/utils/__pycache__/decorators.cpython-310.pyc,,
+django/utils/__pycache__/deprecation.cpython-310.pyc,,
+django/utils/__pycache__/duration.cpython-310.pyc,,
+django/utils/__pycache__/encoding.cpython-310.pyc,,
+django/utils/__pycache__/feedgenerator.cpython-310.pyc,,
+django/utils/__pycache__/formats.cpython-310.pyc,,
+django/utils/__pycache__/functional.cpython-310.pyc,,
+django/utils/__pycache__/hashable.cpython-310.pyc,,
+django/utils/__pycache__/html.cpython-310.pyc,,
+django/utils/__pycache__/http.cpython-310.pyc,,
+django/utils/__pycache__/inspect.cpython-310.pyc,,
+django/utils/__pycache__/ipv6.cpython-310.pyc,,
+django/utils/__pycache__/itercompat.cpython-310.pyc,,
+django/utils/__pycache__/jslex.cpython-310.pyc,,
+django/utils/__pycache__/log.cpython-310.pyc,,
+django/utils/__pycache__/lorem_ipsum.cpython-310.pyc,,
+django/utils/__pycache__/module_loading.cpython-310.pyc,,
+django/utils/__pycache__/numberformat.cpython-310.pyc,,
+django/utils/__pycache__/regex_helper.cpython-310.pyc,,
+django/utils/__pycache__/safestring.cpython-310.pyc,,
+django/utils/__pycache__/termcolors.cpython-310.pyc,,
+django/utils/__pycache__/text.cpython-310.pyc,,
+django/utils/__pycache__/timesince.cpython-310.pyc,,
+django/utils/__pycache__/timezone.cpython-310.pyc,,
+django/utils/__pycache__/topological_sort.cpython-310.pyc,,
+django/utils/__pycache__/tree.cpython-310.pyc,,
+django/utils/__pycache__/version.cpython-310.pyc,,
+django/utils/__pycache__/xmlutils.cpython-310.pyc,,
+django/utils/_os.py,sha256=-_6vh_w0-c2wMUXveE45hj-QHf2HCq5KuWGUkX4_FvI,2310
+django/utils/archive.py,sha256=JExZfmiqSixQ_ujY7UM6sNShVpO5CsF-0hH2qyt44Eo,8086
+django/utils/asyncio.py,sha256=0glOg3eGmms-gUv04ZgDvZt19IZbdPBC64PnaKqeGDc,1138
+django/utils/autoreload.py,sha256=rAgqg6hg66wsOKkC8pPoj5Zb8GqBz5a7Sp5r1uy0_RM,24862
+django/utils/baseconv.py,sha256=mnIn3_P2jqb8ytiFOiaCjrTFFujeNFT0EkympSmt7Ck,3268
+django/utils/cache.py,sha256=DlG31HdM9NUNaAZyy5nhaQebyYW-GKqufiZXPgkq0lc,16561
+django/utils/connection.py,sha256=2kqA6M_EObbZg6QKMXhX6p4YXG9RiPTUHwwN3mumhDY,2554
+django/utils/crypto.py,sha256=iF4x5Uad3sSVkfKSK-vzjDGFojrh3E6yoPK02tnjleo,3275
+django/utils/datastructures.py,sha256=ud8qmQXpo1Bfv5G4FX8JRGqPb1gLinJYuWvrA1gdJhE,10286
+django/utils/dateformat.py,sha256=zobxAkSA6T4JIJkf90BHKIFE8hwZmDqV6PtC-vYob4o,10258
+django/utils/dateparse.py,sha256=2lBci1DO1vWzXh0Wi9yShj6rD9pgh7UPsNgzvwFhyuI,5363
+django/utils/dates.py,sha256=zHUHeOkxuo53rTvHG3dWMLRfVyfaMLBIt5xmA4E_Ids,2179
+django/utils/datetime_safe.py,sha256=KG5hS-S4NCeZ0IAwLd30gvsOe28rHgN0TbXEe9t3jVw,3106
+django/utils/deconstruct.py,sha256=RaeX2YTce1I9XJsQ0_FqYTcudPM5xu_--M1tAZm7LOA,2078
+django/utils/decorators.py,sha256=xa6p2egupMJYpcXVFrteTAHT9DiatGm-zGFoQ2nxUOs,6939
+django/utils/deprecation.py,sha256=xGH0mrDAg4uS0jQbvDaGiwzcX3yBvpM7cu_woQfnwxo,5227
+django/utils/duration.py,sha256=8JFvrrlyMGUUcVqN-7_TR_wi388rZYWsBoqeZZtpUbQ,1248
+django/utils/encoding.py,sha256=xpOiY11Gpggd_MImqLwMFolO4gw3qvS5CFVAM7FCcwg,8791
+django/utils/feedgenerator.py,sha256=ORkZCUa8aazivb_qW8XhtKpRtM36BmMtyK6Eqp_uqqc,15635
+django/utils/formats.py,sha256=wT_lB1_OaXkUEyLy6avm5DBK04GLlm2HVqivnWcIdGM,10544
+django/utils/functional.py,sha256=x0q0YYkKLX3mOKeGM9VVGZF5DClDK5l9ITEgNifPYQ4,15162
+django/utils/hashable.py,sha256=kFbHnVOA4g-rTFI_1oHeNGA0ZEzAlY0vOeGTAeqxz7E,740
+django/utils/html.py,sha256=RamfSIgZnmSagIMYG-piC88J2yvT8dd8gkF6ASt3-RI,14218
+django/utils/http.py,sha256=1hKviYPDJly3wyNbV2r-tzvEooP8A1zuJxBhSCmw_qk,13715
+django/utils/inspect.py,sha256=lhDEOtmSLEub5Jj__MIgW3AyWOEVkaA6doJKKwBhZ6A,2235
+django/utils/ipv6.py,sha256=laDOQe_r4W-oVKLOgQ4aAJxs37n8P3LkH-eeIchJqh4,1333
+django/utils/itercompat.py,sha256=lacIDjczhxbwG4ON_KfG1H6VNPOGOpbRhnVhbedo2CY,184
+django/utils/jslex.py,sha256=cha8xFT5cQ0OMhKMsdsIq1THDndmKUNYNNieQ8BNa9E,8048
+django/utils/log.py,sha256=qkGXBz4zCVkfOUy-3ciMNOAf53Z94LyAeYxlyD3ykE8,7952
+django/utils/lorem_ipsum.py,sha256=yUtBgKhshftIpPg04pc1IrLpOBydZIf7g0isFCIJZqk,5473
+django/utils/module_loading.py,sha256=-a7qOb5rpp-Lw_51vyIPSdb7R40B16Er1Zc1C_a6ibY,3820
+django/utils/numberformat.py,sha256=99DahMpI94hgBALt00-VGaN9NMYjJfb4WHcU9tnewSQ,3733
+django/utils/regex_helper.py,sha256=gv0YfkofciCI4iptv_6GEwyLyVZg1_HFaNRwn3DuH4c,12771
+django/utils/safestring.py,sha256=bcy4XFsqns4_FUBEOfWchVADwzDAHrwK0lk4oG7fAqA,1876
+django/utils/termcolors.py,sha256=vvQbUH7GsFofGRSiKQwx4YvgE4yZMtAGRVz9QPDfisA,7386
+django/utils/text.py,sha256=kLvqe_Ndz1bqq2cLfnznVwRJQFcWl1RY_wAnlVO516w,13686
+django/utils/timesince.py,sha256=XbkMzThZYjWPC3wf4X-yObbt7dIeCkUAsY3LVeUdtbs,3636
+django/utils/timezone.py,sha256=w3QWTAKHboHIrJpHEizAOyhPGcYljZntOV_k0MX2Uuc,10100
+django/utils/topological_sort.py,sha256=W_xR8enn8cY6W4oM8M2TnoidbbiYZbThfdI6UMI4-gc,1287
+django/utils/translation/__init__.py,sha256=BWLfGwW57kXwWOGpYsp6oIzUvOlPDxr8zk7ho2ZVlno,8889
+django/utils/translation/__pycache__/__init__.cpython-310.pyc,,
+django/utils/translation/__pycache__/reloader.cpython-310.pyc,,
+django/utils/translation/__pycache__/template.cpython-310.pyc,,
+django/utils/translation/__pycache__/trans_null.cpython-310.pyc,,
+django/utils/translation/__pycache__/trans_real.cpython-310.pyc,,
+django/utils/translation/reloader.py,sha256=oVM0xenn3fraUomMEFucvwlbr5UGYUijWnUn6FL55Zc,1114
+django/utils/translation/template.py,sha256=TOfPNT62RnUbUG64a_6d_VQ7tsDC1_F1TCopw_HwlcA,10549
+django/utils/translation/trans_null.py,sha256=niy_g1nztS2bPsINqK7_g0HcpI_w6hL-c8_hqpC7U7s,1287
+django/utils/translation/trans_real.py,sha256=RKL6exYoD_xl57KHrrQ1MM9lN7x0iUZSRIetsaKwwms,20348
+django/utils/tree.py,sha256=iST3UIX4Hobmlo3YxQETWMPij7l_wsZqVoeOHnyychs,4558
+django/utils/version.py,sha256=V3ff3SC9FUonZr8novYRPnKo8cdM9CdfBqPeymXNMhI,3592
+django/utils/xmlutils.py,sha256=LsggeI4vhln3An_YXNBk2cCwKLQgMe-O_3L--j3o3GM,1172
+django/views/__init__.py,sha256=GIq6CKUBCbGpQVyK4xIoaAUDPrmRvbBPSX_KSHk0Bb4,63
+django/views/__pycache__/__init__.cpython-310.pyc,,
+django/views/__pycache__/csrf.cpython-310.pyc,,
+django/views/__pycache__/debug.cpython-310.pyc,,
+django/views/__pycache__/defaults.cpython-310.pyc,,
+django/views/__pycache__/i18n.cpython-310.pyc,,
+django/views/__pycache__/static.cpython-310.pyc,,
+django/views/csrf.py,sha256=8brhoog4O9MiOnXk_v79uiiHENwD0TwTvQzyXexl874,6306
+django/views/debug.py,sha256=D-BpQ5_fvj7C4tgaTWYYlZyLjzl9gKBH_RBFyk_ZVCU,23364
+django/views/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django/views/decorators/__pycache__/__init__.cpython-310.pyc,,
+django/views/decorators/__pycache__/cache.cpython-310.pyc,,
+django/views/decorators/__pycache__/clickjacking.cpython-310.pyc,,
+django/views/decorators/__pycache__/common.cpython-310.pyc,,
+django/views/decorators/__pycache__/csrf.cpython-310.pyc,,
+django/views/decorators/__pycache__/debug.cpython-310.pyc,,
+django/views/decorators/__pycache__/gzip.cpython-310.pyc,,
+django/views/decorators/__pycache__/http.cpython-310.pyc,,
+django/views/decorators/__pycache__/vary.cpython-310.pyc,,
+django/views/decorators/cache.py,sha256=MWG5wGtCAW2Onb-jSNxEiGbAeXlX4j_sX1ILuEOa6HU,2340
+django/views/decorators/clickjacking.py,sha256=RuN4sYDOQyvqVMuhG2VzKLpiYJbLSJrzP4uaUrMLQfw,1571
+django/views/decorators/common.py,sha256=EC0OmNVMZdoKb5nXPWiOfQxOU9lCph_ZDwcWw9bMlmg,489
+django/views/decorators/csrf.py,sha256=sz46dXdnsUdVJbRdoMa7bwaRJUQ0_CSGbgrMdBskH8I,2074
+django/views/decorators/debug.py,sha256=MXGthVNjdh8wzX7BepHN6SEniWhziU2tHMRJs7ijjdU,3150
+django/views/decorators/gzip.py,sha256=PtpSGd8BePa1utGqvKMFzpLtZJxpV2_Jej8llw5bCJY,253
+django/views/decorators/http.py,sha256=KfijhsLVYXnAl3yDCaJclihMcX3T4HS58e8gV1Bq8sE,4931
+django/views/decorators/vary.py,sha256=VcBaCDOEjy1CrIy0LnCt2cJdJRnqXgn3B43zmzKuZ80,1089
+django/views/defaults.py,sha256=-oUH6srPROqcKKG202eR-67HC7s8x8LyTFdk5Z68twU,4668
+django/views/generic/__init__.py,sha256=VwQKUbBFJktiq5J2fo3qRNzRc0STfcMRPChlLPYAkkE,886
+django/views/generic/__pycache__/__init__.cpython-310.pyc,,
+django/views/generic/__pycache__/base.cpython-310.pyc,,
+django/views/generic/__pycache__/dates.cpython-310.pyc,,
+django/views/generic/__pycache__/detail.cpython-310.pyc,,
+django/views/generic/__pycache__/edit.cpython-310.pyc,,
+django/views/generic/__pycache__/list.cpython-310.pyc,,
+django/views/generic/base.py,sha256=5taujzIpUqEgRM-SUze_zt94zaNzRleYeB2cLadCnMM,9095
+django/views/generic/dates.py,sha256=xwSEF6zsaSl1jUTePs6NPihnOJEWT-j8SST0RG4bco0,26332
+django/views/generic/detail.py,sha256=zrAuhJxrFvNqJLnlvK-NSiRiiONsKKOYFantD7UztwU,6663
+django/views/generic/edit.py,sha256=Gq0E2HTi9KZuIDJHC24tB4VQVRL0qLswqfyA9gRJ210,9747
+django/views/generic/list.py,sha256=KWsT5UOK5jflxn5JFoJCnyJEQXa0fM4talHswzEjzXU,7941
+django/views/i18n.py,sha256=L54knZenhRK1sLXvjDLxI7jjwqYlW-gC8FSE0FsdXJI,11466
+django/views/static.py,sha256=U7QLmzVwW3oiY_lrqW_kGcUVB2ZKYq5nq0Ij-K0w8Q8,4318
+django/views/templates/default_urlconf.html,sha256=PErsyemtTEmbEjM0ceduzvS_8iGD-skzTGIDXiH2MCc,11134
+django/views/templates/technical_404.html,sha256=dJEOimEguJg6g4IhdRPG5HmdMy8D30U-lNI8wC8wwQs,2706
+django/views/templates/technical_500.html,sha256=WDNi1wOh2K7PhQs7kwX86ndDoHzsyekBm1xsUMF42YE,17604
+django/views/templates/technical_500.txt,sha256=sioEO7ZLn_241kxmP70WVr0VLWjaxHLms5jJmzCSLkI,3650
diff --git a/venv/Lib/site-packages/Django-4.1.dist-info/REQUESTED b/app_env/Lib/site-packages/Django-4.1.dist-info/REQUESTED
similarity index 100%
rename from venv/Lib/site-packages/Django-4.1.dist-info/REQUESTED
rename to app_env/Lib/site-packages/Django-4.1.dist-info/REQUESTED
diff --git a/venv/Lib/site-packages/Django-4.1.dist-info/WHEEL b/app_env/Lib/site-packages/Django-4.1.dist-info/WHEEL
similarity index 100%
rename from venv/Lib/site-packages/Django-4.1.dist-info/WHEEL
rename to app_env/Lib/site-packages/Django-4.1.dist-info/WHEEL
diff --git a/venv/Lib/site-packages/Django-4.1.dist-info/entry_points.txt b/app_env/Lib/site-packages/Django-4.1.dist-info/entry_points.txt
similarity index 100%
rename from venv/Lib/site-packages/Django-4.1.dist-info/entry_points.txt
rename to app_env/Lib/site-packages/Django-4.1.dist-info/entry_points.txt
diff --git a/venv/Lib/site-packages/Django-4.1.dist-info/top_level.txt b/app_env/Lib/site-packages/Django-4.1.dist-info/top_level.txt
similarity index 100%
rename from venv/Lib/site-packages/Django-4.1.dist-info/top_level.txt
rename to app_env/Lib/site-packages/Django-4.1.dist-info/top_level.txt
diff --git a/app_env/Lib/site-packages/__pycache__/dj_database_url.cpython-310.pyc b/app_env/Lib/site-packages/__pycache__/dj_database_url.cpython-310.pyc
new file mode 100644
index 00000000..80809e42
Binary files /dev/null and b/app_env/Lib/site-packages/__pycache__/dj_database_url.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/_distutils_hack/__init__.py b/app_env/Lib/site-packages/_distutils_hack/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/_distutils_hack/__init__.py
rename to app_env/Lib/site-packages/_distutils_hack/__init__.py
diff --git a/app_env/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..07e55dff
Binary files /dev/null and b/app_env/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc b/app_env/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc
new file mode 100644
index 00000000..b6ad9c4f
Binary files /dev/null and b/app_env/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/_distutils_hack/override.py b/app_env/Lib/site-packages/_distutils_hack/override.py
similarity index 100%
rename from venv/Lib/site-packages/_distutils_hack/override.py
rename to app_env/Lib/site-packages/_distutils_hack/override.py
diff --git a/venv/Lib/site-packages/asgiref-3.5.2.dist-info/INSTALLER b/app_env/Lib/site-packages/asgiref-3.5.2.dist-info/INSTALLER
similarity index 100%
rename from venv/Lib/site-packages/asgiref-3.5.2.dist-info/INSTALLER
rename to app_env/Lib/site-packages/asgiref-3.5.2.dist-info/INSTALLER
diff --git a/venv/Lib/site-packages/asgiref-3.5.2.dist-info/LICENSE b/app_env/Lib/site-packages/asgiref-3.5.2.dist-info/LICENSE
similarity index 100%
rename from venv/Lib/site-packages/asgiref-3.5.2.dist-info/LICENSE
rename to app_env/Lib/site-packages/asgiref-3.5.2.dist-info/LICENSE
diff --git a/venv/Lib/site-packages/asgiref-3.5.2.dist-info/METADATA b/app_env/Lib/site-packages/asgiref-3.5.2.dist-info/METADATA
similarity index 100%
rename from venv/Lib/site-packages/asgiref-3.5.2.dist-info/METADATA
rename to app_env/Lib/site-packages/asgiref-3.5.2.dist-info/METADATA
diff --git a/venv/Lib/site-packages/asgiref-3.5.2.dist-info/RECORD b/app_env/Lib/site-packages/asgiref-3.5.2.dist-info/RECORD
similarity index 100%
rename from venv/Lib/site-packages/asgiref-3.5.2.dist-info/RECORD
rename to app_env/Lib/site-packages/asgiref-3.5.2.dist-info/RECORD
diff --git a/venv/Lib/site-packages/asgiref-3.5.2.dist-info/WHEEL b/app_env/Lib/site-packages/asgiref-3.5.2.dist-info/WHEEL
similarity index 100%
rename from venv/Lib/site-packages/asgiref-3.5.2.dist-info/WHEEL
rename to app_env/Lib/site-packages/asgiref-3.5.2.dist-info/WHEEL
diff --git a/venv/Lib/site-packages/asgiref-3.5.2.dist-info/top_level.txt b/app_env/Lib/site-packages/asgiref-3.5.2.dist-info/top_level.txt
similarity index 100%
rename from venv/Lib/site-packages/asgiref-3.5.2.dist-info/top_level.txt
rename to app_env/Lib/site-packages/asgiref-3.5.2.dist-info/top_level.txt
diff --git a/venv/Lib/site-packages/asgiref/__init__.py b/app_env/Lib/site-packages/asgiref/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/asgiref/__init__.py
rename to app_env/Lib/site-packages/asgiref/__init__.py
diff --git a/app_env/Lib/site-packages/asgiref/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/asgiref/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..92cdbe88
Binary files /dev/null and b/app_env/Lib/site-packages/asgiref/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/asgiref/__pycache__/compatibility.cpython-310.pyc b/app_env/Lib/site-packages/asgiref/__pycache__/compatibility.cpython-310.pyc
similarity index 82%
rename from venv/Lib/site-packages/asgiref/__pycache__/compatibility.cpython-310.pyc
rename to app_env/Lib/site-packages/asgiref/__pycache__/compatibility.cpython-310.pyc
index 32337cac..4964ba3b 100644
Binary files a/venv/Lib/site-packages/asgiref/__pycache__/compatibility.cpython-310.pyc and b/app_env/Lib/site-packages/asgiref/__pycache__/compatibility.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/asgiref/__pycache__/current_thread_executor.cpython-310.pyc b/app_env/Lib/site-packages/asgiref/__pycache__/current_thread_executor.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/asgiref/__pycache__/current_thread_executor.cpython-310.pyc
rename to app_env/Lib/site-packages/asgiref/__pycache__/current_thread_executor.cpython-310.pyc
index 80364d55..7ecb7da3 100644
Binary files a/venv/Lib/site-packages/asgiref/__pycache__/current_thread_executor.cpython-310.pyc and b/app_env/Lib/site-packages/asgiref/__pycache__/current_thread_executor.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/asgiref/__pycache__/local.cpython-310.pyc b/app_env/Lib/site-packages/asgiref/__pycache__/local.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/asgiref/__pycache__/local.cpython-310.pyc
rename to app_env/Lib/site-packages/asgiref/__pycache__/local.cpython-310.pyc
index 51b59203..138f5797 100644
Binary files a/venv/Lib/site-packages/asgiref/__pycache__/local.cpython-310.pyc and b/app_env/Lib/site-packages/asgiref/__pycache__/local.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/asgiref/__pycache__/server.cpython-310.pyc b/app_env/Lib/site-packages/asgiref/__pycache__/server.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/asgiref/__pycache__/server.cpython-310.pyc
rename to app_env/Lib/site-packages/asgiref/__pycache__/server.cpython-310.pyc
index ed97257b..27f8e9e1 100644
Binary files a/venv/Lib/site-packages/asgiref/__pycache__/server.cpython-310.pyc and b/app_env/Lib/site-packages/asgiref/__pycache__/server.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/asgiref/__pycache__/sync.cpython-310.pyc b/app_env/Lib/site-packages/asgiref/__pycache__/sync.cpython-310.pyc
new file mode 100644
index 00000000..b07a1e63
Binary files /dev/null and b/app_env/Lib/site-packages/asgiref/__pycache__/sync.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/asgiref/__pycache__/testing.cpython-310.pyc b/app_env/Lib/site-packages/asgiref/__pycache__/testing.cpython-310.pyc
new file mode 100644
index 00000000..2ad8fccf
Binary files /dev/null and b/app_env/Lib/site-packages/asgiref/__pycache__/testing.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/asgiref/__pycache__/timeout.cpython-310.pyc b/app_env/Lib/site-packages/asgiref/__pycache__/timeout.cpython-310.pyc
new file mode 100644
index 00000000..46628233
Binary files /dev/null and b/app_env/Lib/site-packages/asgiref/__pycache__/timeout.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/asgiref/__pycache__/typing.cpython-310.pyc b/app_env/Lib/site-packages/asgiref/__pycache__/typing.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/asgiref/__pycache__/typing.cpython-310.pyc
rename to app_env/Lib/site-packages/asgiref/__pycache__/typing.cpython-310.pyc
index 4f25a4ad..44417b53 100644
Binary files a/venv/Lib/site-packages/asgiref/__pycache__/typing.cpython-310.pyc and b/app_env/Lib/site-packages/asgiref/__pycache__/typing.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/asgiref/__pycache__/wsgi.cpython-310.pyc b/app_env/Lib/site-packages/asgiref/__pycache__/wsgi.cpython-310.pyc
new file mode 100644
index 00000000..ca47c770
Binary files /dev/null and b/app_env/Lib/site-packages/asgiref/__pycache__/wsgi.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/asgiref/compatibility.py b/app_env/Lib/site-packages/asgiref/compatibility.py
similarity index 100%
rename from venv/Lib/site-packages/asgiref/compatibility.py
rename to app_env/Lib/site-packages/asgiref/compatibility.py
diff --git a/venv/Lib/site-packages/asgiref/current_thread_executor.py b/app_env/Lib/site-packages/asgiref/current_thread_executor.py
similarity index 100%
rename from venv/Lib/site-packages/asgiref/current_thread_executor.py
rename to app_env/Lib/site-packages/asgiref/current_thread_executor.py
diff --git a/venv/Lib/site-packages/asgiref/local.py b/app_env/Lib/site-packages/asgiref/local.py
similarity index 100%
rename from venv/Lib/site-packages/asgiref/local.py
rename to app_env/Lib/site-packages/asgiref/local.py
diff --git a/venv/Lib/site-packages/asgiref/py.typed b/app_env/Lib/site-packages/asgiref/py.typed
similarity index 100%
rename from venv/Lib/site-packages/asgiref/py.typed
rename to app_env/Lib/site-packages/asgiref/py.typed
diff --git a/venv/Lib/site-packages/asgiref/server.py b/app_env/Lib/site-packages/asgiref/server.py
similarity index 100%
rename from venv/Lib/site-packages/asgiref/server.py
rename to app_env/Lib/site-packages/asgiref/server.py
diff --git a/venv/Lib/site-packages/asgiref/sync.py b/app_env/Lib/site-packages/asgiref/sync.py
similarity index 100%
rename from venv/Lib/site-packages/asgiref/sync.py
rename to app_env/Lib/site-packages/asgiref/sync.py
diff --git a/venv/Lib/site-packages/asgiref/testing.py b/app_env/Lib/site-packages/asgiref/testing.py
similarity index 100%
rename from venv/Lib/site-packages/asgiref/testing.py
rename to app_env/Lib/site-packages/asgiref/testing.py
diff --git a/venv/Lib/site-packages/asgiref/timeout.py b/app_env/Lib/site-packages/asgiref/timeout.py
similarity index 100%
rename from venv/Lib/site-packages/asgiref/timeout.py
rename to app_env/Lib/site-packages/asgiref/timeout.py
diff --git a/venv/Lib/site-packages/asgiref/typing.py b/app_env/Lib/site-packages/asgiref/typing.py
similarity index 100%
rename from venv/Lib/site-packages/asgiref/typing.py
rename to app_env/Lib/site-packages/asgiref/typing.py
diff --git a/venv/Lib/site-packages/asgiref/wsgi.py b/app_env/Lib/site-packages/asgiref/wsgi.py
similarity index 100%
rename from venv/Lib/site-packages/asgiref/wsgi.py
rename to app_env/Lib/site-packages/asgiref/wsgi.py
diff --git a/venv/Lib/site-packages/distutils-precedence.pth b/app_env/Lib/site-packages/distutils-precedence.pth
similarity index 100%
rename from venv/Lib/site-packages/distutils-precedence.pth
rename to app_env/Lib/site-packages/distutils-precedence.pth
diff --git a/venv/Lib/site-packages/pip-22.2.2.dist-info/INSTALLER b/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/INSTALLER
similarity index 100%
rename from venv/Lib/site-packages/pip-22.2.2.dist-info/INSTALLER
rename to app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/INSTALLER
diff --git a/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/LICENSE b/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/LICENSE
new file mode 100644
index 00000000..3aaf1516
--- /dev/null
+++ b/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/LICENSE
@@ -0,0 +1,27 @@
+Copyright (c) Kenneth Reitz & individual contributors
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ 3. Neither the name of Django nor the names of its contributors may be used
+ to endorse or promote products derived from this software without
+ specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/METADATA b/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/METADATA
new file mode 100644
index 00000000..3b69ab98
--- /dev/null
+++ b/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/METADATA
@@ -0,0 +1,183 @@
+Metadata-Version: 2.1
+Name: dj-database-url
+Version: 1.0.0
+Summary: Use Database URLs in your Django Application.
+Home-page: https://github.com/jazzband/dj-database-url
+Author: Original Author: Kenneth Reitz, Maintained by: JazzBand Community
+License: BSD
+Platform: any
+Classifier: Environment :: Web Environment
+Classifier: Framework :: Django
+Classifier: Framework :: Django :: 3.2
+Classifier: Framework :: Django :: 4.0
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: BSD License
+Classifier: Operating System :: OS Independent
+Classifier: Programming Language :: Python
+Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
+Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Description-Content-Type: text/x-rst
+License-File: LICENSE
+Requires-Dist: Django (>3.2)
+
+DJ-Database-URL
+~~~~~~~~~~~~~~~
+
+.. image:: https://jazzband.co/static/img/badge.png
+ :target: https://jazzband.co/
+ :alt: Jazzband
+
+.. image:: https://github.com/jazzband/dj-database-url/actions/workflows/test.yml/badge.svg
+ :target: https://github.com/jazzband/dj-database-url/actions/workflows/test.yml
+
+.. image:: https://codecov.io/gh/jazzband/dj-database-url/branch/master/graph/badge.svg?token=7srBUpszOa
+ :target: https://codecov.io/gh/jazzband/dj-database-url
+
+This simple Django utility allows you to utilize the
+`12factor `_ inspired
+``DATABASE_URL`` environment variable to configure your Django application.
+
+The ``dj_database_url.config`` method returns a Django database connection
+dictionary, populated with all the data specified in your URL. There is
+also a `conn_max_age` argument to easily enable Django's connection pool.
+
+If you'd rather not use an environment variable, you can pass a URL in directly
+instead to ``dj_database_url.parse``.
+
+Supported Databases
+-------------------
+
+Support currently exists for PostgreSQL, PostGIS, MySQL, MySQL (GIS),
+Oracle, Oracle (GIS), Redshift, CockroachDB, and SQLite.
+
+Installation
+------------
+
+Installation is simple::
+
+ $ pip install dj-database-url
+
+Usage
+-----
+
+1. If ``DATABASES`` is already defined:
+
+- Configure your database in ``settings.py`` from ``DATABASE_URL``::
+
+ import dj_database_url
+
+ DATABASES['default'] = dj_database_url.config(conn_max_age=600)
+
+- Provide a default::
+
+ DATABASES['default'] = dj_database_url.config(default='postgres://...')
+
+- Parse an arbitrary Database URL::
+
+ DATABASES['default'] = dj_database_url.parse('postgres://...', conn_max_age=600)
+
+2. If ``DATABASES`` is not defined:
+
+- Configure your database in ``settings.py`` from ``DATABASE_URL``::
+
+ import dj_database_url
+
+ DATABASES = {'default': dj_database_url.config(conn_max_age=600)}
+
+- Provide a default::
+
+ DATABASES = {'default': dj_database_url.config(default='postgres://...')}
+
+- Parse an arbitrary Database URL::
+
+ DATABASES = {'default': dj_database_url.parse('postgres://...', conn_max_age=600)}
+
+The ``conn_max_age`` attribute is the lifetime of a database connection in seconds
+and is available in Django 1.6+. If you do not set a value, it will default to ``0``
+which is Django's historical behavior of using a new database connection on each
+request. Use ``None`` for unlimited persistent connections.
+
+Strings passed to `dj_database_url` must be valid URLs; in
+particular, special characters must be url-encoded. The following url will raise
+a `ValueError`::
+
+ postgres://user:p#ssword!@localhost/foobar
+
+and should instead be passed as::
+
+ postgres://user:p%23ssword!@localhost/foobar
+
+URL schema
+----------
+
++-------------+-----------------------------------------------+--------------------------------------------------+
+| Engine | Django Backend | URL |
++=============+===============================================+==================================================+
+| PostgreSQL | ``django.db.backends.postgresql`` [1]_ | ``postgres://USER:PASSWORD@HOST:PORT/NAME`` [2]_ |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| PostGIS | ``django.contrib.gis.db.backends.postgis`` | ``postgis://USER:PASSWORD@HOST:PORT/NAME`` |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| MSSQL | ``sql_server.pyodbc`` | ``mssql://USER:PASSWORD@HOST:PORT/NAME`` |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| MSSQL [5]_ | ``mssql`` | ``mssqlms://USER:PASSWORD@HOST:PORT/NAME`` |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| MySQL | ``django.db.backends.mysql`` | ``mysql://USER:PASSWORD@HOST:PORT/NAME`` |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| MySQL (GIS) | ``django.contrib.gis.db.backends.mysql`` | ``mysqlgis://USER:PASSWORD@HOST:PORT/NAME`` |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| SQLite | ``django.db.backends.sqlite3`` | ``sqlite:///PATH`` [3]_ |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| SpatiaLite | ``django.contrib.gis.db.backends.spatialite`` | ``spatialite:///PATH`` [3]_ |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| Oracle | ``django.db.backends.oracle`` | ``oracle://USER:PASSWORD@HOST:PORT/NAME`` [4]_ |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| Oracle (GIS)| ``django.contrib.gis.db.backends.oracle`` | ``oraclegis://USER:PASSWORD@HOST:PORT/NAME`` |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| Redshift | ``django_redshift_backend`` | ``redshift://USER:PASSWORD@HOST:PORT/NAME`` |
++-------------+-----------------------------------------------+--------------------------------------------------+
+| CockroachDB | ``django_cockroachdb`` | ``cockroach://USER:PASSWORD@HOST:PORT/NAME`` |
++-------------+-----------------------------------------------+--------------------------------------------------+
+
+.. [1] The django.db.backends.postgresql backend is named django.db.backends.postgresql_psycopg2 in older releases. For
+ backwards compatibility, the old name still works in newer versions. (The new name does not work in older versions).
+.. [2] With PostgreSQL, you can also use unix domain socket paths with
+ `percent encoding `_:
+ ``postgres://%2Fvar%2Flib%2Fpostgresql/dbname``.
+.. [3] SQLite connects to file based databases. The same URL format is used, omitting
+ the hostname, and using the "file" portion as the filename of the database.
+ This has the effect of four slashes being present for an absolute file path:
+ ``sqlite:////full/path/to/your/database/file.sqlite``.
+.. [4] Note that when connecting to Oracle the URL isn't in the form you may know
+ from using other Oracle tools (like SQLPlus) i.e. user and password are separated
+ by ``:`` not by ``/``. Also you can omit ``HOST`` and ``PORT``
+ and provide a full DSN string or TNS name in ``NAME`` part.
+.. [5] Microsoft official `mssql-django `_ adapter.
+
+Contributing
+------------
+
+We welcome contributions to this project. Projects can take two forms:
+
+1. Raising issues or helping others through the github issue tracker.
+2. Contributing code.
+
+Raising Issues or helping others:
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+When submitting an issue or helping other remember you are talking to humans who have feelings, jobs and lives of their
+own. Be nice, be kind, be polite. Remember english may not be someone first language, if you do not understand or
+something is not clear be polite and re-ask/ re-word.
+
+Contributing code:
+^^^^^^^^^^^^^^^^^^
+
+* Before writing code be sure to check existing PR's and issues in the tracker.
+* Write code to the pylint spec.
+* Large or wide sweeping changes will take longer, and may face more scrutiny than smaller confined changes.
+* Code should be pass `black` and `flake8` validation.
diff --git a/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/RECORD b/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/RECORD
new file mode 100644
index 00000000..53d7e96b
--- /dev/null
+++ b/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/RECORD
@@ -0,0 +1,8 @@
+__pycache__/dj_database_url.cpython-310.pyc,,
+dj_database_url-1.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+dj_database_url-1.0.0.dist-info/LICENSE,sha256=Emnu_QhkmoP1ncOPx7yFY8X0C41EkjQXLoOg8NYSFLg,1536
+dj_database_url-1.0.0.dist-info/METADATA,sha256=HOHArX2w4wEP_2mU0VMLgklQqEiUyHQpFxH_UpfoWt4,9061
+dj_database_url-1.0.0.dist-info/RECORD,,
+dj_database_url-1.0.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
+dj_database_url-1.0.0.dist-info/top_level.txt,sha256=pntpOZz98RuKrz2758NE7pVfM4EG6zO_0IBiYUrqS94,16
+dj_database_url.py,sha256=X7-pYeS56oRHQzD2QLmd1B4Hc6etONYrWQHzmLf9iVQ,5084
diff --git a/venv/Lib/site-packages/pip-22.2.2.dist-info/WHEEL b/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/WHEEL
similarity index 100%
rename from venv/Lib/site-packages/pip-22.2.2.dist-info/WHEEL
rename to app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/WHEEL
diff --git a/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/top_level.txt b/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/top_level.txt
new file mode 100644
index 00000000..09593895
--- /dev/null
+++ b/app_env/Lib/site-packages/dj_database_url-1.0.0.dist-info/top_level.txt
@@ -0,0 +1 @@
+dj_database_url
diff --git a/app_env/Lib/site-packages/dj_database_url.py b/app_env/Lib/site-packages/dj_database_url.py
new file mode 100644
index 00000000..d4de0269
--- /dev/null
+++ b/app_env/Lib/site-packages/dj_database_url.py
@@ -0,0 +1,159 @@
+# -*- coding: utf-8 -*-
+
+import os
+import urllib.parse as urlparse
+
+try:
+ from django import VERSION as DJANGO_VERSION
+except ImportError:
+ DJANGO_VERSION = None
+
+
+# Register database schemes in URLs.
+urlparse.uses_netloc.append("postgres")
+urlparse.uses_netloc.append("postgresql")
+urlparse.uses_netloc.append("pgsql")
+urlparse.uses_netloc.append("postgis")
+urlparse.uses_netloc.append("mysql")
+urlparse.uses_netloc.append("mysql2")
+urlparse.uses_netloc.append("mysqlgis")
+urlparse.uses_netloc.append("mysql-connector")
+urlparse.uses_netloc.append("mssql")
+urlparse.uses_netloc.append("mssqlms")
+urlparse.uses_netloc.append("spatialite")
+urlparse.uses_netloc.append("sqlite")
+urlparse.uses_netloc.append("oracle")
+urlparse.uses_netloc.append("oraclegis")
+urlparse.uses_netloc.append("redshift")
+urlparse.uses_netloc.append("cockroach")
+
+DEFAULT_ENV = "DATABASE_URL"
+
+SCHEMES = {
+ "postgis": "django.contrib.gis.db.backends.postgis",
+ "mysql": "django.db.backends.mysql",
+ "mysql2": "django.db.backends.mysql",
+ "mysqlgis": "django.contrib.gis.db.backends.mysql",
+ "mysql-connector": "mysql.connector.django",
+ "mssql": "sql_server.pyodbc",
+ "mssqlms": "mssql",
+ "spatialite": "django.contrib.gis.db.backends.spatialite",
+ "sqlite": "django.db.backends.sqlite3",
+ "oracle": "django.db.backends.oracle",
+ "oraclegis": "django.contrib.gis.db.backends.oracle",
+ "redshift": "django_redshift_backend",
+ "cockroach": "django_cockroachdb",
+}
+
+# https://docs.djangoproject.com/en/2.0/releases/2.0/#id1
+if DJANGO_VERSION and DJANGO_VERSION < (2, 0):
+ SCHEMES["postgres"] = "django.db.backends.postgresql_psycopg2"
+ SCHEMES["postgresql"] = "django.db.backends.postgresql_psycopg2"
+ SCHEMES["pgsql"] = "django.db.backends.postgresql_psycopg2"
+else:
+ SCHEMES["postgres"] = "django.db.backends.postgresql"
+ SCHEMES["postgresql"] = "django.db.backends.postgresql"
+ SCHEMES["pgsql"] = "django.db.backends.postgresql"
+
+
+def config(
+ env=DEFAULT_ENV, default=None, engine=None, conn_max_age=0, ssl_require=False
+):
+ """Returns configured DATABASE dictionary from DATABASE_URL."""
+ s = os.environ.get(env, default)
+
+ if s:
+ return parse(s, engine, conn_max_age, ssl_require)
+
+ return {}
+
+
+def parse(url, engine=None, conn_max_age=0, ssl_require=False):
+ """Parses a database URL."""
+
+ if url == "sqlite://:memory:":
+ # this is a special case, because if we pass this URL into
+ # urlparse, urlparse will choke trying to interpret "memory"
+ # as a port number
+ return {"ENGINE": SCHEMES["sqlite"], "NAME": ":memory:"}
+ # note: no other settings are required for sqlite
+
+ # otherwise parse the url as normal
+ parsed_config = {}
+
+ url = urlparse.urlparse(url)
+
+ # Split query strings from path.
+ path = url.path[1:]
+ if "?" in path and not url.query:
+ path, query = path.split("?", 2)
+ else:
+ path, query = path, url.query
+ query = urlparse.parse_qs(query)
+
+ # If we are using sqlite and we have no path, then assume we
+ # want an in-memory database (this is the behaviour of sqlalchemy)
+ if url.scheme == "sqlite" and path == "":
+ path = ":memory:"
+
+ # Handle postgres percent-encoded paths.
+ hostname = url.hostname or ""
+ if "%2f" in hostname.lower():
+ # Switch to url.netloc to avoid lower cased paths
+ hostname = url.netloc
+ if "@" in hostname:
+ hostname = hostname.rsplit("@", 1)[1]
+ if ":" in hostname:
+ hostname = hostname.split(":", 1)[0]
+ hostname = hostname.replace("%2f", "/").replace("%2F", "/")
+
+ # Lookup specified engine.
+ engine = SCHEMES[url.scheme] if engine is None else engine
+
+ port = (
+ str(url.port)
+ if url.port
+ and engine in [SCHEMES["oracle"], SCHEMES["mssql"], SCHEMES["mssqlms"]]
+ else url.port
+ )
+
+ # Update with environment configuration.
+ parsed_config.update(
+ {
+ "NAME": urlparse.unquote(path or ""),
+ "USER": urlparse.unquote(url.username or ""),
+ "PASSWORD": urlparse.unquote(url.password or ""),
+ "HOST": hostname,
+ "PORT": port or "",
+ "CONN_MAX_AGE": conn_max_age,
+ }
+ )
+
+ # Pass the query string into OPTIONS.
+ options = {}
+ for key, values in query.items():
+ if url.scheme == "mysql" and key == "ssl-ca":
+ options["ssl"] = {"ca": values[-1]}
+ continue
+
+ options[key] = values[-1]
+
+ if ssl_require:
+ options["sslmode"] = "require"
+
+ # Support for Postgres Schema URLs
+ if "currentSchema" in options and engine in (
+ "django.contrib.gis.db.backends.postgis",
+ "django.db.backends.postgresql_psycopg2",
+ "django.db.backends.postgresql",
+ "django_redshift_backend",
+ ):
+ options["options"] = "-c search_path={0}".format(options.pop("currentSchema"))
+
+ if options:
+ parsed_config["OPTIONS"] = options
+
+ if engine:
+ parsed_config["ENGINE"] = engine
+
+ return parsed_config
diff --git a/venv/Lib/site-packages/django/__init__.py b/app_env/Lib/site-packages/django/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/__init__.py
rename to app_env/Lib/site-packages/django/__init__.py
diff --git a/venv/Lib/site-packages/django/__main__.py b/app_env/Lib/site-packages/django/__main__.py
similarity index 100%
rename from venv/Lib/site-packages/django/__main__.py
rename to app_env/Lib/site-packages/django/__main__.py
diff --git a/app_env/Lib/site-packages/django/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..68d265c4
Binary files /dev/null and b/app_env/Lib/site-packages/django/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/__pycache__/__main__.cpython-310.pyc b/app_env/Lib/site-packages/django/__pycache__/__main__.cpython-310.pyc
new file mode 100644
index 00000000..7b4bd544
Binary files /dev/null and b/app_env/Lib/site-packages/django/__pycache__/__main__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/__pycache__/shortcuts.cpython-310.pyc b/app_env/Lib/site-packages/django/__pycache__/shortcuts.cpython-310.pyc
new file mode 100644
index 00000000..1e01f2fb
Binary files /dev/null and b/app_env/Lib/site-packages/django/__pycache__/shortcuts.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/apps/__init__.py b/app_env/Lib/site-packages/django/apps/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/apps/__init__.py
rename to app_env/Lib/site-packages/django/apps/__init__.py
diff --git a/app_env/Lib/site-packages/django/apps/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/apps/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9316700c
Binary files /dev/null and b/app_env/Lib/site-packages/django/apps/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/apps/__pycache__/config.cpython-310.pyc b/app_env/Lib/site-packages/django/apps/__pycache__/config.cpython-310.pyc
new file mode 100644
index 00000000..da5c7715
Binary files /dev/null and b/app_env/Lib/site-packages/django/apps/__pycache__/config.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/apps/__pycache__/registry.cpython-310.pyc b/app_env/Lib/site-packages/django/apps/__pycache__/registry.cpython-310.pyc
new file mode 100644
index 00000000..9ceede72
Binary files /dev/null and b/app_env/Lib/site-packages/django/apps/__pycache__/registry.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/apps/config.py b/app_env/Lib/site-packages/django/apps/config.py
similarity index 100%
rename from venv/Lib/site-packages/django/apps/config.py
rename to app_env/Lib/site-packages/django/apps/config.py
diff --git a/venv/Lib/site-packages/django/apps/registry.py b/app_env/Lib/site-packages/django/apps/registry.py
similarity index 100%
rename from venv/Lib/site-packages/django/apps/registry.py
rename to app_env/Lib/site-packages/django/apps/registry.py
diff --git a/venv/Lib/site-packages/django/conf/__init__.py b/app_env/Lib/site-packages/django/conf/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/__init__.py
rename to app_env/Lib/site-packages/django/conf/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..194a5eb4
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/__pycache__/global_settings.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/__pycache__/global_settings.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/conf/__pycache__/global_settings.cpython-310.pyc
rename to app_env/Lib/site-packages/django/conf/__pycache__/global_settings.cpython-310.pyc
index 6c1c88b0..17e1bb7b 100644
Binary files a/venv/Lib/site-packages/django/conf/__pycache__/global_settings.cpython-310.pyc and b/app_env/Lib/site-packages/django/conf/__pycache__/global_settings.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/app_template/__init__.py-tpl b/app_env/Lib/site-packages/django/conf/app_template/__init__.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/app_template/__init__.py-tpl
rename to app_env/Lib/site-packages/django/conf/app_template/__init__.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/app_template/admin.py-tpl b/app_env/Lib/site-packages/django/conf/app_template/admin.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/app_template/admin.py-tpl
rename to app_env/Lib/site-packages/django/conf/app_template/admin.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/app_template/apps.py-tpl b/app_env/Lib/site-packages/django/conf/app_template/apps.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/app_template/apps.py-tpl
rename to app_env/Lib/site-packages/django/conf/app_template/apps.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/app_template/migrations/__init__.py-tpl b/app_env/Lib/site-packages/django/conf/app_template/migrations/__init__.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/app_template/migrations/__init__.py-tpl
rename to app_env/Lib/site-packages/django/conf/app_template/migrations/__init__.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/app_template/models.py-tpl b/app_env/Lib/site-packages/django/conf/app_template/models.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/app_template/models.py-tpl
rename to app_env/Lib/site-packages/django/conf/app_template/models.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/app_template/tests.py-tpl b/app_env/Lib/site-packages/django/conf/app_template/tests.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/app_template/tests.py-tpl
rename to app_env/Lib/site-packages/django/conf/app_template/tests.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/app_template/views.py-tpl b/app_env/Lib/site-packages/django/conf/app_template/views.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/app_template/views.py-tpl
rename to app_env/Lib/site-packages/django/conf/app_template/views.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/global_settings.py b/app_env/Lib/site-packages/django/conf/global_settings.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/global_settings.py
rename to app_env/Lib/site-packages/django/conf/global_settings.py
diff --git a/venv/Lib/site-packages/django/conf/locale/__init__.py b/app_env/Lib/site-packages/django/conf/locale/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..14181eaa
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ar/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ar/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ar/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ar/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..f7e5b936
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ar/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ar/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..e325704f
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ar/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ar/formats.py b/app_env/Lib/site-packages/django/conf/locale/ar/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ar/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ar/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ar_DZ/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ar_DZ/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ar_DZ/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ar_DZ/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..2ff81b6f
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..098c5eab
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ar_DZ/formats.py b/app_env/Lib/site-packages/django/conf/locale/ar_DZ/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ar_DZ/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ar_DZ/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/az/__init__.py b/app_env/Lib/site-packages/django/conf/locale/az/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/az/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/az/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..728885c2
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/az/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/az/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..76214805
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/az/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/az/formats.py b/app_env/Lib/site-packages/django/conf/locale/az/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/az/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/az/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/bg/__init__.py b/app_env/Lib/site-packages/django/conf/locale/bg/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bg/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/bg/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c3b525ec
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/bg/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/bg/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..415466af
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/bg/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/bg/formats.py b/app_env/Lib/site-packages/django/conf/locale/bg/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bg/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/bg/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/bn/__init__.py b/app_env/Lib/site-packages/django/conf/locale/bn/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bn/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/bn/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7c3837e2
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/bn/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/bn/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..fa95c52e
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/bn/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/bn/formats.py b/app_env/Lib/site-packages/django/conf/locale/bn/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bn/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/bn/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/bs/__init__.py b/app_env/Lib/site-packages/django/conf/locale/bs/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bs/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/bs/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..418db4e8
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/bs/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/bs/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..3af2526b
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/bs/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/bs/formats.py b/app_env/Lib/site-packages/django/conf/locale/bs/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/bs/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/bs/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ca/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ca/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ca/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ca/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..caa7afda
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ca/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ca/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..3c110bbe
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ca/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ca/formats.py b/app_env/Lib/site-packages/django/conf/locale/ca/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ca/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ca/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/cs/__init__.py b/app_env/Lib/site-packages/django/conf/locale/cs/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/cs/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/cs/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7ff7f5a4
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/cs/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/cs/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..97430f64
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/cs/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/cs/formats.py b/app_env/Lib/site-packages/django/conf/locale/cs/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/cs/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/cs/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/cy/__init__.py b/app_env/Lib/site-packages/django/conf/locale/cy/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/cy/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/cy/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..89b57676
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/cy/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/cy/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..b80cc927
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/cy/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/cy/formats.py b/app_env/Lib/site-packages/django/conf/locale/cy/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/cy/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/cy/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/da/__init__.py b/app_env/Lib/site-packages/django/conf/locale/da/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/da/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/da/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..0c7edc64
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/da/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/da/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..ce99b670
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/da/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/da/formats.py b/app_env/Lib/site-packages/django/conf/locale/da/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/da/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/da/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/de/__init__.py b/app_env/Lib/site-packages/django/conf/locale/de/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/de/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/de/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..94db1792
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/de/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/de/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..3c4a04ad
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/de/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/de/formats.py b/app_env/Lib/site-packages/django/conf/locale/de/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/de/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/de/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/de_CH/__init__.py b/app_env/Lib/site-packages/django/conf/locale/de_CH/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/de_CH/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/de_CH/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4993e03d
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/de_CH/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/de_CH/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..cb465cca
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/de_CH/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/de_CH/formats.py b/app_env/Lib/site-packages/django/conf/locale/de_CH/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/de_CH/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/de_CH/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/el/__init__.py b/app_env/Lib/site-packages/django/conf/locale/el/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/el/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/el/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9c7e6d84
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/el/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/el/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..811b1db3
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/el/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/el/formats.py b/app_env/Lib/site-packages/django/conf/locale/el/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/el/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/el/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/en/__init__.py b/app_env/Lib/site-packages/django/conf/locale/en/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/en/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e8c577b2
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/en/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/en/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..d1df3168
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/en/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/en/formats.py b/app_env/Lib/site-packages/django/conf/locale/en/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/en/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/en_AU/__init__.py b/app_env/Lib/site-packages/django/conf/locale/en_AU/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en_AU/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/en_AU/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..a0b954cd
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/en_AU/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/en_AU/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..00f57546
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/en_AU/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/en_AU/formats.py b/app_env/Lib/site-packages/django/conf/locale/en_AU/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en_AU/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/en_AU/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/en_GB/__init__.py b/app_env/Lib/site-packages/django/conf/locale/en_GB/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en_GB/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/en_GB/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..60a705cb
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/en_GB/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/en_GB/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..a203e7b4
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/en_GB/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/en_GB/formats.py b/app_env/Lib/site-packages/django/conf/locale/en_GB/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/en_GB/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/en_GB/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/eo/__init__.py b/app_env/Lib/site-packages/django/conf/locale/eo/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/eo/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/eo/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..61f8039f
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/eo/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/eo/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..3d139902
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/eo/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/eo/formats.py b/app_env/Lib/site-packages/django/conf/locale/eo/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/eo/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/eo/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/es/__init__.py b/app_env/Lib/site-packages/django/conf/locale/es/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/es/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b5c18fad
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/es/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..f576cd32
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es/formats.py b/app_env/Lib/site-packages/django/conf/locale/es/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/es/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/es_AR/__init__.py b/app_env/Lib/site-packages/django/conf/locale/es_AR/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_AR/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/es_AR/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..db8666c1
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..6119c61b
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_AR/formats.py b/app_env/Lib/site-packages/django/conf/locale/es_AR/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_AR/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/es_AR/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/es_CO/__init__.py b/app_env/Lib/site-packages/django/conf/locale/es_CO/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_CO/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/es_CO/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..61ac2729
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..b35a57cf
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_CO/formats.py b/app_env/Lib/site-packages/django/conf/locale/es_CO/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_CO/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/es_CO/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/es_MX/__init__.py b/app_env/Lib/site-packages/django/conf/locale/es_MX/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_MX/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/es_MX/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..683968e8
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..d7dce792
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_MX/formats.py b/app_env/Lib/site-packages/django/conf/locale/es_MX/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_MX/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/es_MX/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/es_NI/__init__.py b/app_env/Lib/site-packages/django/conf/locale/es_NI/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_NI/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/es_NI/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1d381f7c
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..1012683a
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_NI/formats.py b/app_env/Lib/site-packages/django/conf/locale/es_NI/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_NI/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/es_NI/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/es_PR/__init__.py b/app_env/Lib/site-packages/django/conf/locale/es_PR/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_PR/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/es_PR/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/es_PR/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es_PR/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1d2ae2c1
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es_PR/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..98b93727
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_PR/formats.py b/app_env/Lib/site-packages/django/conf/locale/es_PR/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_PR/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/es_PR/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/et/__init__.py b/app_env/Lib/site-packages/django/conf/locale/et/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/et/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/et/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..37c9c80a
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/et/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/et/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..5b244f94
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/et/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/et/formats.py b/app_env/Lib/site-packages/django/conf/locale/et/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/et/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/et/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/eu/__init__.py b/app_env/Lib/site-packages/django/conf/locale/eu/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/eu/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/eu/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e9b7f2e9
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/eu/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/eu/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..aebe4482
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/eu/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/eu/formats.py b/app_env/Lib/site-packages/django/conf/locale/eu/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/eu/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/eu/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/fa/__init__.py b/app_env/Lib/site-packages/django/conf/locale/fa/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fa/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/fa/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..248ca5d6
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/fa/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/fa/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..dc8dda17
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/fa/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fa/formats.py b/app_env/Lib/site-packages/django/conf/locale/fa/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fa/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/fa/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/fi/__init__.py b/app_env/Lib/site-packages/django/conf/locale/fi/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fi/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/fi/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..2f2af7c1
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/fi/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/fi/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..f358e216
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/fi/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fi/formats.py b/app_env/Lib/site-packages/django/conf/locale/fi/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fi/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/fi/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/fr/__init__.py b/app_env/Lib/site-packages/django/conf/locale/fr/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fr/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/fr/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..2e96b21d
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/fr/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/fr/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..4b71f4ac
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/fr/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fr/formats.py b/app_env/Lib/site-packages/django/conf/locale/fr/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fr/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/fr/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/fy/__init__.py b/app_env/Lib/site-packages/django/conf/locale/fy/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fy/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/fy/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..42f8661c
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/fy/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/fy/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..bacb00a1
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/fy/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fy/formats.py b/app_env/Lib/site-packages/django/conf/locale/fy/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/fy/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/fy/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ga/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ga/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ga/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ga/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7f35e2b2
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ga/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ga/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..0260d277
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ga/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ga/formats.py b/app_env/Lib/site-packages/django/conf/locale/ga/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ga/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ga/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/gd/__init__.py b/app_env/Lib/site-packages/django/conf/locale/gd/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/gd/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/gd/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4ff8f1a4
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/gd/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/gd/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..2e36e0c4
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/gd/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/gd/formats.py b/app_env/Lib/site-packages/django/conf/locale/gd/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/gd/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/gd/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/gl/__init__.py b/app_env/Lib/site-packages/django/conf/locale/gl/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/gl/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/gl/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..981abe9b
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/gl/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/gl/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..bcf1b760
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/gl/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/gl/formats.py b/app_env/Lib/site-packages/django/conf/locale/gl/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/gl/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/gl/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/he/__init__.py b/app_env/Lib/site-packages/django/conf/locale/he/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/he/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/he/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..fb3bd48d
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/he/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/he/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..6e3f1971
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/he/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/he/formats.py b/app_env/Lib/site-packages/django/conf/locale/he/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/he/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/he/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/hi/__init__.py b/app_env/Lib/site-packages/django/conf/locale/hi/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hi/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/hi/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8bd3098e
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/hi/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/hi/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..56f04e32
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/hi/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/hi/formats.py b/app_env/Lib/site-packages/django/conf/locale/hi/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hi/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/hi/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/hr/__init__.py b/app_env/Lib/site-packages/django/conf/locale/hr/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hr/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/hr/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..90bfe0f3
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/hr/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/hr/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..0b327f5f
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/hr/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/hr/formats.py b/app_env/Lib/site-packages/django/conf/locale/hr/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hr/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/hr/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/hu/__init__.py b/app_env/Lib/site-packages/django/conf/locale/hu/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hu/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/hu/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c0462259
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/hu/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/hu/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..793b1a2e
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/hu/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/hu/formats.py b/app_env/Lib/site-packages/django/conf/locale/hu/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hu/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/hu/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/id/__init__.py b/app_env/Lib/site-packages/django/conf/locale/id/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/id/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/id/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..513c7c6a
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/id/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/id/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..64042162
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/id/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/id/formats.py b/app_env/Lib/site-packages/django/conf/locale/id/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/id/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/id/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ig/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ig/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ig/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ig/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..971843e1
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ig/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ig/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..8390ecce
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ig/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ig/formats.py b/app_env/Lib/site-packages/django/conf/locale/ig/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ig/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ig/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/is/__init__.py b/app_env/Lib/site-packages/django/conf/locale/is/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/is/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/is/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..451ea63a
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/is/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/is/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..49ea23b9
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/is/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/is/formats.py b/app_env/Lib/site-packages/django/conf/locale/is/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/is/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/is/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/it/__init__.py b/app_env/Lib/site-packages/django/conf/locale/it/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/it/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/it/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..977aeae2
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/it/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/it/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..0da08b89
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/it/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/it/formats.py b/app_env/Lib/site-packages/django/conf/locale/it/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/it/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/it/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ja/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ja/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ja/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ja/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..a3c57cbc
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ja/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ja/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..e96f5fe4
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ja/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ja/formats.py b/app_env/Lib/site-packages/django/conf/locale/ja/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ja/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ja/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ka/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ka/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ka/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ka/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..17db7f1f
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..7c598798
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ka/formats.py b/app_env/Lib/site-packages/django/conf/locale/ka/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ka/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ka/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/km/__init__.py b/app_env/Lib/site-packages/django/conf/locale/km/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/km/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/km/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..5a82cb41
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/km/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/km/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..8f4fb988
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/km/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/km/formats.py b/app_env/Lib/site-packages/django/conf/locale/km/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/km/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/km/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/kn/__init__.py b/app_env/Lib/site-packages/django/conf/locale/kn/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/kn/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/kn/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1a99b79d
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/kn/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/kn/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..355deba8
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/kn/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/kn/formats.py b/app_env/Lib/site-packages/django/conf/locale/kn/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/kn/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/kn/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ko/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ko/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ko/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ko/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c8e43299
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ko/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ko/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..f612ec4f
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ko/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ko/formats.py b/app_env/Lib/site-packages/django/conf/locale/ko/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ko/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ko/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ky/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ky/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ky/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ky/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b423b71f
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ky/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ky/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..70944614
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ky/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ky/formats.py b/app_env/Lib/site-packages/django/conf/locale/ky/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ky/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ky/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/lt/__init__.py b/app_env/Lib/site-packages/django/conf/locale/lt/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/lt/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/lt/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..26131ba6
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/lt/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/lt/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..bb550239
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/lt/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/lt/formats.py b/app_env/Lib/site-packages/django/conf/locale/lt/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/lt/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/lt/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/lv/__init__.py b/app_env/Lib/site-packages/django/conf/locale/lv/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/lv/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/lv/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..5e885934
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/lv/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/lv/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..c00fb9be
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/lv/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/lv/formats.py b/app_env/Lib/site-packages/django/conf/locale/lv/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/lv/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/lv/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/mk/__init__.py b/app_env/Lib/site-packages/django/conf/locale/mk/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/mk/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/mk/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7fb82d0b
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/mk/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/mk/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..14097b0c
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/mk/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/mk/formats.py b/app_env/Lib/site-packages/django/conf/locale/mk/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/mk/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/mk/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ml/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ml/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ml/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ml/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..776d0364
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ml/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ml/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..c86760dc
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ml/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ml/formats.py b/app_env/Lib/site-packages/django/conf/locale/ml/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ml/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ml/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/mn/__init__.py b/app_env/Lib/site-packages/django/conf/locale/mn/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/mn/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/mn/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e79064d5
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..2debe55b
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/mn/formats.py b/app_env/Lib/site-packages/django/conf/locale/mn/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/mn/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/mn/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ms/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ms/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ms/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ms/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..474883c7
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..7150a075
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ms/formats.py b/app_env/Lib/site-packages/django/conf/locale/ms/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ms/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ms/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/nb/__init__.py b/app_env/Lib/site-packages/django/conf/locale/nb/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nb/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/nb/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..175514d8
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/nb/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/nb/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..66b29b7d
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/nb/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/nb/formats.py b/app_env/Lib/site-packages/django/conf/locale/nb/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nb/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/nb/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/nl/__init__.py b/app_env/Lib/site-packages/django/conf/locale/nl/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nl/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/nl/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..de24289e
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/nl/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/nl/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..17db8d35
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/nl/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/nl/formats.py b/app_env/Lib/site-packages/django/conf/locale/nl/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nl/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/nl/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/nn/__init__.py b/app_env/Lib/site-packages/django/conf/locale/nn/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nn/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/nn/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..f3dda11b
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/nn/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/nn/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..f0e89d22
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/nn/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/nn/formats.py b/app_env/Lib/site-packages/django/conf/locale/nn/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/nn/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/nn/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/pl/__init__.py b/app_env/Lib/site-packages/django/conf/locale/pl/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pl/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/pl/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..13606bd5
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..30bae03a
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/pl/formats.py b/app_env/Lib/site-packages/django/conf/locale/pl/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pl/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/pl/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/pt/__init__.py b/app_env/Lib/site-packages/django/conf/locale/pt/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pt/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/pt/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e914af62
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/pt/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/pt/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..c6c8eb62
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/pt/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/pt/formats.py b/app_env/Lib/site-packages/django/conf/locale/pt/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pt/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/pt/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/pt_BR/__init__.py b/app_env/Lib/site-packages/django/conf/locale/pt_BR/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pt_BR/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/pt_BR/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..6d1b36ea
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..b00933c3
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/pt_BR/formats.py b/app_env/Lib/site-packages/django/conf/locale/pt_BR/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/pt_BR/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/pt_BR/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ro/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ro/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ro/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ro/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..0240d88d
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ro/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ro/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..593ed393
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ro/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ro/formats.py b/app_env/Lib/site-packages/django/conf/locale/ro/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ro/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ro/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ru/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ru/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ru/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ru/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..360b5b2a
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ru/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ru/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..92df3adf
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ru/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ru/formats.py b/app_env/Lib/site-packages/django/conf/locale/ru/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ru/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ru/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/sk/__init__.py b/app_env/Lib/site-packages/django/conf/locale/sk/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sk/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/sk/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..f0f95f0f
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..d9f2d0ac
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sk/formats.py b/app_env/Lib/site-packages/django/conf/locale/sk/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sk/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/sk/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/sl/__init__.py b/app_env/Lib/site-packages/django/conf/locale/sl/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sl/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/sl/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ad13074c
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/sl/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sl/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..77d874fd
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sl/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sl/formats.py b/app_env/Lib/site-packages/django/conf/locale/sl/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sl/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/sl/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/sq/__init__.py b/app_env/Lib/site-packages/django/conf/locale/sq/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sq/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/sq/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..2ef0f08c
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/sq/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sq/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..3bf8e6f4
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sq/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sq/formats.py b/app_env/Lib/site-packages/django/conf/locale/sq/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sq/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/sq/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/sr/__init__.py b/app_env/Lib/site-packages/django/conf/locale/sr/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sr/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/sr/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..633fc67a
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/sr/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sr/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..943d607a
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sr/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sr/formats.py b/app_env/Lib/site-packages/django/conf/locale/sr/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sr/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/sr/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/sr_Latn/__init__.py b/app_env/Lib/site-packages/django/conf/locale/sr_Latn/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sr_Latn/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/sr_Latn/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..eb94a2b5
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..6e0082f4
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sr_Latn/formats.py b/app_env/Lib/site-packages/django/conf/locale/sr_Latn/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sr_Latn/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/sr_Latn/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/sv/__init__.py b/app_env/Lib/site-packages/django/conf/locale/sv/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sv/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/sv/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..df7b0d91
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/sv/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/sv/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..07420eac
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/sv/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sv/formats.py b/app_env/Lib/site-packages/django/conf/locale/sv/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sv/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/sv/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/ta/__init__.py b/app_env/Lib/site-packages/django/conf/locale/ta/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ta/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/ta/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ba4ee514
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/ta/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/ta/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..b7a39607
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/ta/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ta/formats.py b/app_env/Lib/site-packages/django/conf/locale/ta/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ta/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/ta/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/te/__init__.py b/app_env/Lib/site-packages/django/conf/locale/te/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/te/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/te/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..34140417
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/te/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/te/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..980951a8
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/te/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/te/formats.py b/app_env/Lib/site-packages/django/conf/locale/te/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/te/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/te/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/tg/__init__.py b/app_env/Lib/site-packages/django/conf/locale/tg/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tg/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/tg/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..30d7fa1a
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/tg/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/tg/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..8407a0e0
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/tg/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/tg/formats.py b/app_env/Lib/site-packages/django/conf/locale/tg/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tg/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/tg/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/th/__init__.py b/app_env/Lib/site-packages/django/conf/locale/th/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/th/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/th/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..31caa5bb
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/th/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/th/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..40464b33
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/th/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/th/formats.py b/app_env/Lib/site-packages/django/conf/locale/th/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/th/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/th/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/tk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/tk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/tk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/tk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/tk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/tk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/tk/__init__.py b/app_env/Lib/site-packages/django/conf/locale/tk/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tk/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/tk/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..a02f0e1a
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/tk/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/tk/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..ddf01f22
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/tk/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/tk/formats.py b/app_env/Lib/site-packages/django/conf/locale/tk/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tk/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/tk/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/tr/__init__.py b/app_env/Lib/site-packages/django/conf/locale/tr/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tr/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/tr/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7e1438aa
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/tr/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/tr/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..7b32807d
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/tr/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/tr/formats.py b/app_env/Lib/site-packages/django/conf/locale/tr/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tr/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/tr/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/uk/__init__.py b/app_env/Lib/site-packages/django/conf/locale/uk/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/uk/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/uk/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..090b6759
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/uk/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/uk/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..29f96676
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/uk/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/uk/formats.py b/app_env/Lib/site-packages/django/conf/locale/uk/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/uk/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/uk/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/uz/__init__.py b/app_env/Lib/site-packages/django/conf/locale/uz/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/uz/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/uz/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1716bdfb
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/uz/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/uz/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..cd6fe37c
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/uz/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/uz/formats.py b/app_env/Lib/site-packages/django/conf/locale/uz/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/uz/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/uz/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/vi/__init__.py b/app_env/Lib/site-packages/django/conf/locale/vi/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/vi/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/vi/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..eefd0ec7
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/vi/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/vi/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..e0eebc78
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/vi/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/vi/formats.py b/app_env/Lib/site-packages/django/conf/locale/vi/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/vi/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/vi/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hans/__init__.py b/app_env/Lib/site-packages/django/conf/locale/zh_Hans/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/zh_Hans/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/zh_Hans/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..24a6298f
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..e8d8ff40
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hans/formats.py b/app_env/Lib/site-packages/django/conf/locale/zh_Hans/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/zh_Hans/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/zh_Hans/formats.py
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hant/__init__.py b/app_env/Lib/site-packages/django/conf/locale/zh_Hant/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/zh_Hant/__init__.py
rename to app_env/Lib/site-packages/django/conf/locale/zh_Hant/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..5ac3e388
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..276ee4f4
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hant/formats.py b/app_env/Lib/site-packages/django/conf/locale/zh_Hant/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/locale/zh_Hant/formats.py
rename to app_env/Lib/site-packages/django/conf/locale/zh_Hant/formats.py
diff --git a/venv/Lib/site-packages/django/conf/project_template/manage.py-tpl b/app_env/Lib/site-packages/django/conf/project_template/manage.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/project_template/manage.py-tpl
rename to app_env/Lib/site-packages/django/conf/project_template/manage.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/project_template/project_name/__init__.py-tpl b/app_env/Lib/site-packages/django/conf/project_template/project_name/__init__.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/project_template/project_name/__init__.py-tpl
rename to app_env/Lib/site-packages/django/conf/project_template/project_name/__init__.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/project_template/project_name/asgi.py-tpl b/app_env/Lib/site-packages/django/conf/project_template/project_name/asgi.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/project_template/project_name/asgi.py-tpl
rename to app_env/Lib/site-packages/django/conf/project_template/project_name/asgi.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/project_template/project_name/settings.py-tpl b/app_env/Lib/site-packages/django/conf/project_template/project_name/settings.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/project_template/project_name/settings.py-tpl
rename to app_env/Lib/site-packages/django/conf/project_template/project_name/settings.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/project_template/project_name/urls.py-tpl b/app_env/Lib/site-packages/django/conf/project_template/project_name/urls.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/project_template/project_name/urls.py-tpl
rename to app_env/Lib/site-packages/django/conf/project_template/project_name/urls.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/project_template/project_name/wsgi.py-tpl b/app_env/Lib/site-packages/django/conf/project_template/project_name/wsgi.py-tpl
similarity index 100%
rename from venv/Lib/site-packages/django/conf/project_template/project_name/wsgi.py-tpl
rename to app_env/Lib/site-packages/django/conf/project_template/project_name/wsgi.py-tpl
diff --git a/venv/Lib/site-packages/django/conf/urls/__init__.py b/app_env/Lib/site-packages/django/conf/urls/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/urls/__init__.py
rename to app_env/Lib/site-packages/django/conf/urls/__init__.py
diff --git a/app_env/Lib/site-packages/django/conf/urls/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/urls/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8128b3fa
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/urls/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/urls/__pycache__/i18n.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/urls/__pycache__/i18n.cpython-310.pyc
new file mode 100644
index 00000000..c5d1dd26
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/urls/__pycache__/i18n.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/conf/urls/__pycache__/static.cpython-310.pyc b/app_env/Lib/site-packages/django/conf/urls/__pycache__/static.cpython-310.pyc
new file mode 100644
index 00000000..e4df7dcd
Binary files /dev/null and b/app_env/Lib/site-packages/django/conf/urls/__pycache__/static.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/conf/urls/i18n.py b/app_env/Lib/site-packages/django/conf/urls/i18n.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/urls/i18n.py
rename to app_env/Lib/site-packages/django/conf/urls/i18n.py
diff --git a/venv/Lib/site-packages/django/conf/urls/static.py b/app_env/Lib/site-packages/django/conf/urls/static.py
similarity index 100%
rename from venv/Lib/site-packages/django/conf/urls/static.py
rename to app_env/Lib/site-packages/django/conf/urls/static.py
diff --git a/venv/Lib/site-packages/django/contrib/__init__.py b/app_env/Lib/site-packages/django/contrib/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/__init__.py
rename to app_env/Lib/site-packages/django/contrib/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c967baee
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__init__.py b/app_env/Lib/site-packages/django/contrib/admin/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/__init__.py
rename to app_env/Lib/site-packages/django/contrib/admin/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..61b6e957
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/actions.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/actions.cpython-310.pyc
new file mode 100644
index 00000000..d7aaf64c
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/actions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..952aa470
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/checks.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/checks.cpython-310.pyc
new file mode 100644
index 00000000..e296c41d
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/checks.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/decorators.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/decorators.cpython-310.pyc
new file mode 100644
index 00000000..d5fb8650
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/decorators.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..e800cb57
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/filters.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/filters.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/contrib/admin/__pycache__/filters.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/admin/__pycache__/filters.cpython-310.pyc
index 70c25fb0..aab8f537 100644
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/filters.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/filters.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/forms.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/forms.cpython-310.pyc
new file mode 100644
index 00000000..b4e52386
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/forms.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/helpers.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/helpers.cpython-310.pyc
new file mode 100644
index 00000000..9966832d
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/helpers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..85d980e6
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/models.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/options.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/options.cpython-310.pyc
new file mode 100644
index 00000000..773a97b0
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/options.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/sites.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/sites.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/contrib/admin/__pycache__/sites.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/admin/__pycache__/sites.cpython-310.pyc
index 807bf885..9c3ba330 100644
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/sites.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/sites.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/tests.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/tests.cpython-310.pyc
new file mode 100644
index 00000000..51927e4c
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/tests.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..bd7aaabc
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/__pycache__/widgets.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/widgets.cpython-310.pyc
new file mode 100644
index 00000000..8aa1de13
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/__pycache__/widgets.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/actions.py b/app_env/Lib/site-packages/django/contrib/admin/actions.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/actions.py
rename to app_env/Lib/site-packages/django/contrib/admin/actions.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/apps.py b/app_env/Lib/site-packages/django/contrib/admin/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/apps.py
rename to app_env/Lib/site-packages/django/contrib/admin/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/checks.py b/app_env/Lib/site-packages/django/contrib/admin/checks.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/checks.py
rename to app_env/Lib/site-packages/django/contrib/admin/checks.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/decorators.py b/app_env/Lib/site-packages/django/contrib/admin/decorators.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/decorators.py
rename to app_env/Lib/site-packages/django/contrib/admin/decorators.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/exceptions.py b/app_env/Lib/site-packages/django/contrib/admin/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/exceptions.py
rename to app_env/Lib/site-packages/django/contrib/admin/exceptions.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/filters.py b/app_env/Lib/site-packages/django/contrib/admin/filters.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/filters.py
rename to app_env/Lib/site-packages/django/contrib/admin/filters.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/forms.py b/app_env/Lib/site-packages/django/contrib/admin/forms.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/forms.py
rename to app_env/Lib/site-packages/django/contrib/admin/forms.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/helpers.py b/app_env/Lib/site-packages/django/contrib/admin/helpers.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/helpers.py
rename to app_env/Lib/site-packages/django/contrib/admin/helpers.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.mo b/app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.mo
rename to app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.mo
diff --git a/venv/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.po b/app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.po
rename to app_env/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.po
diff --git a/venv/Lib/site-packages/django/contrib/admin/migrations/0001_initial.py b/app_env/Lib/site-packages/django/contrib/admin/migrations/0001_initial.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/migrations/0001_initial.py
rename to app_env/Lib/site-packages/django/contrib/admin/migrations/0001_initial.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/migrations/0002_logentry_remove_auto_add.py b/app_env/Lib/site-packages/django/contrib/admin/migrations/0002_logentry_remove_auto_add.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/migrations/0002_logentry_remove_auto_add.py
rename to app_env/Lib/site-packages/django/contrib/admin/migrations/0002_logentry_remove_auto_add.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py b/app_env/Lib/site-packages/django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py
rename to app_env/Lib/site-packages/django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/migrations/__init__.py b/app_env/Lib/site-packages/django/contrib/admin/migrations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/migrations/__init__.py
rename to app_env/Lib/site-packages/django/contrib/admin/migrations/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0001_initial.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0001_initial.cpython-310.pyc
new file mode 100644
index 00000000..927af72a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0001_initial.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-310.pyc
new file mode 100644
index 00000000..5671a449
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-310.pyc
new file mode 100644
index 00000000..a2c03a11
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..63cf18ae
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/migrations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/models.py b/app_env/Lib/site-packages/django/contrib/admin/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/models.py
rename to app_env/Lib/site-packages/django/contrib/admin/models.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/options.py b/app_env/Lib/site-packages/django/contrib/admin/options.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/options.py
rename to app_env/Lib/site-packages/django/contrib/admin/options.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/sites.py b/app_env/Lib/site-packages/django/contrib/admin/sites.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/sites.py
rename to app_env/Lib/site-packages/django/contrib/admin/sites.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/autocomplete.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/autocomplete.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/autocomplete.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/autocomplete.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/base.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/base.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/base.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/base.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/changelists.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/changelists.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/changelists.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/changelists.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/dark_mode.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/dark_mode.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/dark_mode.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/dark_mode.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/dashboard.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/dashboard.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/dashboard.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/dashboard.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/fonts.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/fonts.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/fonts.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/fonts.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/forms.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/forms.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/forms.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/forms.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/login.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/login.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/login.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/login.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/nav_sidebar.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/nav_sidebar.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/nav_sidebar.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/nav_sidebar.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/responsive.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/responsive.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/responsive.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/responsive.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/responsive_rtl.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/responsive_rtl.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/responsive_rtl.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/responsive_rtl.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/rtl.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/rtl.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/rtl.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/rtl.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/LICENSE-SELECT2.md b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/LICENSE-SELECT2.md
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/LICENSE-SELECT2.md
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/LICENSE-SELECT2.md
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/select2.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/select2.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/select2.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/select2.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/select2.min.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/select2.min.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/select2.min.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/select2.min.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/css/widgets.css b/app_env/Lib/site-packages/django/contrib/admin/static/admin/css/widgets.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/css/widgets.css
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/css/widgets.css
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/fonts/LICENSE.txt b/app_env/Lib/site-packages/django/contrib/admin/static/admin/fonts/LICENSE.txt
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/fonts/LICENSE.txt
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/fonts/LICENSE.txt
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/fonts/README.txt b/app_env/Lib/site-packages/django/contrib/admin/static/admin/fonts/README.txt
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/fonts/README.txt
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/fonts/README.txt
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Bold-webfont.woff b/app_env/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Bold-webfont.woff
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Bold-webfont.woff
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Bold-webfont.woff
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Light-webfont.woff b/app_env/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Light-webfont.woff
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Light-webfont.woff
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Light-webfont.woff
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Regular-webfont.woff b/app_env/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Regular-webfont.woff
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Regular-webfont.woff
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Regular-webfont.woff
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/LICENSE b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/LICENSE
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/LICENSE
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/LICENSE
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/README.txt b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/README.txt
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/README.txt
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/README.txt
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/calendar-icons.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/calendar-icons.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/calendar-icons.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/calendar-icons.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_off.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_off.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_off.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_off.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_on.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_on.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_on.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_on.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-addlink.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-addlink.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-addlink.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-addlink.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-alert.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-alert.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-alert.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-alert.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-calendar.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-calendar.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-calendar.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-calendar.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-changelink.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-changelink.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-changelink.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-changelink.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-clock.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-clock.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-clock.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-clock.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-deletelink.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-deletelink.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-deletelink.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-deletelink.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-no.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-no.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-no.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-no.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-unknown-alt.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-unknown-alt.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-unknown-alt.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-unknown-alt.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-unknown.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-unknown.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-unknown.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-unknown.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-viewlink.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-viewlink.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-viewlink.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-viewlink.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-yes.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-yes.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-yes.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/icon-yes.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/inline-delete.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/inline-delete.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/inline-delete.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/inline-delete.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/search.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/search.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/search.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/search.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/selector-icons.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/selector-icons.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/selector-icons.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/selector-icons.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/sorting-icons.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/sorting-icons.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/sorting-icons.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/sorting-icons.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/tooltag-add.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/tooltag-add.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/tooltag-add.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/tooltag-add.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/img/tooltag-arrowright.svg b/app_env/Lib/site-packages/django/contrib/admin/static/admin/img/tooltag-arrowright.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/img/tooltag-arrowright.svg
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/img/tooltag-arrowright.svg
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/SelectBox.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/SelectBox.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/SelectBox.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/SelectBox.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/SelectFilter2.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/SelectFilter2.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/SelectFilter2.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/SelectFilter2.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/actions.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/actions.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/actions.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/actions.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/autocomplete.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/autocomplete.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/autocomplete.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/autocomplete.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/calendar.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/calendar.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/calendar.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/calendar.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/cancel.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/cancel.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/cancel.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/cancel.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/change_form.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/change_form.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/change_form.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/change_form.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/collapse.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/collapse.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/collapse.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/collapse.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/core.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/core.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/core.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/core.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/filters.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/filters.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/filters.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/filters.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/inlines.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/inlines.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/inlines.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/inlines.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/jquery.init.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/jquery.init.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/jquery.init.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/jquery.init.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/nav_sidebar.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/nav_sidebar.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/nav_sidebar.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/nav_sidebar.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/popup_response.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/popup_response.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/popup_response.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/popup_response.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate_init.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate_init.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate_init.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate_init.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/urlify.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/urlify.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/urlify.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/urlify.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/af.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/af.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/af.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/af.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ar.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ar.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ar.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ar.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/az.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/az.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/az.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/az.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bg.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bg.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bg.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bg.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bn.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bn.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bn.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bn.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bs.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bs.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bs.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bs.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ca.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ca.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ca.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ca.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/cs.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/cs.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/cs.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/cs.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/da.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/da.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/da.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/da.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/de.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/de.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/de.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/de.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/dsb.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/dsb.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/dsb.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/dsb.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/el.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/el.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/el.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/el.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/en.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/en.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/en.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/en.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/es.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/es.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/es.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/es.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/et.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/et.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/et.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/et.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/eu.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/eu.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/eu.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/eu.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fa.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fa.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fa.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fa.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fi.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fi.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fi.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fi.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fr.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fr.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fr.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fr.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/gl.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/gl.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/gl.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/gl.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/he.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/he.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/he.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/he.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hi.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hi.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hi.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hi.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hr.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hr.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hr.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hr.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hsb.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hsb.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hsb.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hsb.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hu.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hu.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hu.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hu.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hy.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hy.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hy.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hy.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/id.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/id.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/id.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/id.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/is.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/is.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/is.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/is.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/it.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/it.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/it.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/it.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ja.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ja.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ja.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ja.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ka.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ka.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ka.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ka.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/km.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/km.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/km.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/km.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ko.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ko.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ko.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ko.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/lt.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/lt.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/lt.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/lt.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/lv.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/lv.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/lv.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/lv.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/mk.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/mk.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/mk.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/mk.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ms.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ms.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ms.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ms.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/nb.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/nb.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/nb.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/nb.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ne.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ne.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ne.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ne.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/nl.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/nl.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/nl.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/nl.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pl.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pl.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pl.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pl.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ps.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ps.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ps.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ps.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt-BR.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt-BR.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt-BR.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt-BR.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ro.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ro.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ro.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ro.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ru.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ru.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ru.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ru.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sk.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sk.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sk.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sk.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sl.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sl.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sl.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sl.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sq.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sq.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sq.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sq.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr-Cyrl.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr-Cyrl.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr-Cyrl.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr-Cyrl.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sv.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sv.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sv.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sv.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/th.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/th.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/th.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/th.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/tk.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/tk.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/tk.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/tk.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/tr.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/tr.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/tr.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/tr.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/uk.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/uk.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/uk.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/uk.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/vi.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/vi.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/vi.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/vi.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-CN.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-CN.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-CN.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-CN.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-TW.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-TW.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-TW.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-TW.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/select2.full.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/select2.full.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/select2.full.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/select2.full.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/select2.full.min.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/select2.full.min.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/select2.full.min.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/select2.full.min.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js b/app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js
rename to app_env/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/404.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/404.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/404.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/404.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/500.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/500.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/500.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/500.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/actions.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/actions.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/actions.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/actions.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/app_index.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/app_index.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/app_index.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/app_index.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/app_list.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/app_list.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/app_list.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/app_list.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/add_form.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/add_form.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/add_form.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/add_form.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/change_password.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/change_password.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/change_password.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/change_password.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/base.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/base.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/base.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/base.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/base_site.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/base_site.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/base_site.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/base_site.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/change_form.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/change_form.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/change_form.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/change_form.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/change_form_object_tools.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/change_form_object_tools.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/change_form_object_tools.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/change_form_object_tools.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/change_list.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/change_list.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/change_list.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/change_list.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/change_list_object_tools.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/change_list_object_tools.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/change_list_object_tools.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/change_list_object_tools.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/change_list_results.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/change_list_results.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/change_list_results.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/change_list_results.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/date_hierarchy.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/date_hierarchy.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/date_hierarchy.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/date_hierarchy.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/delete_confirmation.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/delete_confirmation.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/delete_confirmation.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/delete_confirmation.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/delete_selected_confirmation.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/delete_selected_confirmation.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/delete_selected_confirmation.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/delete_selected_confirmation.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/stacked.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/stacked.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/stacked.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/stacked.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/tabular.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/tabular.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/tabular.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/tabular.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/filter.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/filter.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/filter.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/filter.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/includes/object_delete_summary.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/includes/object_delete_summary.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/includes/object_delete_summary.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/includes/object_delete_summary.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/index.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/index.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/index.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/index.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/invalid_setup.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/invalid_setup.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/invalid_setup.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/invalid_setup.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/login.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/login.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/login.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/login.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/nav_sidebar.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/nav_sidebar.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/nav_sidebar.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/nav_sidebar.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/object_history.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/object_history.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/object_history.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/object_history.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/pagination.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/pagination.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/pagination.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/pagination.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/popup_response.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/popup_response.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/popup_response.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/popup_response.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/prepopulated_fields_js.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/prepopulated_fields_js.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/prepopulated_fields_js.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/prepopulated_fields_js.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/search_form.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/search_form.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/search_form.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/search_form.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/submit_line.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/submit_line.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/submit_line.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/submit_line.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/clearable_file_input.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/clearable_file_input.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/clearable_file_input.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/clearable_file_input.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/foreign_key_raw_id.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/foreign_key_raw_id.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/foreign_key_raw_id.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/foreign_key_raw_id.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/radio.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/radio.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/radio.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/radio.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/split_datetime.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/split_datetime.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/split_datetime.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/split_datetime.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/url.html b/app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/url.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/url.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/admin/widgets/url.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/registration/logged_out.html b/app_env/Lib/site-packages/django/contrib/admin/templates/registration/logged_out.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/registration/logged_out.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/registration/logged_out.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/registration/password_change_done.html b/app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_change_done.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/registration/password_change_done.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_change_done.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/registration/password_change_form.html b/app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_change_form.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/registration/password_change_form.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_change_form.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_complete.html b/app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_complete.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_complete.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_complete.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_confirm.html b/app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_confirm.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_confirm.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_confirm.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_done.html b/app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_done.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_done.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_done.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_email.html b/app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_email.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_email.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_email.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_form.html b/app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_form.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_form.html
rename to app_env/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_form.html
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/__init__.py b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templatetags/__init__.py
rename to app_env/Lib/site-packages/django/contrib/admin/templatetags/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..2ffba8d9
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_list.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_list.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_list.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_list.cpython-310.pyc
index ccf2a5c7..d7ff0384 100644
Binary files a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_list.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_list.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-310.pyc
index 43bb4c1a..1e655f84 100644
Binary files a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-310.pyc
new file mode 100644
index 00000000..912aa8e4
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..f0959e60
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/log.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/log.cpython-310.pyc
new file mode 100644
index 00000000..18428480
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/log.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/admin_list.py b/app_env/Lib/site-packages/django/contrib/admin/templatetags/admin_list.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templatetags/admin_list.py
rename to app_env/Lib/site-packages/django/contrib/admin/templatetags/admin_list.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/admin_modify.py b/app_env/Lib/site-packages/django/contrib/admin/templatetags/admin_modify.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templatetags/admin_modify.py
rename to app_env/Lib/site-packages/django/contrib/admin/templatetags/admin_modify.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/admin_urls.py b/app_env/Lib/site-packages/django/contrib/admin/templatetags/admin_urls.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templatetags/admin_urls.py
rename to app_env/Lib/site-packages/django/contrib/admin/templatetags/admin_urls.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/base.py b/app_env/Lib/site-packages/django/contrib/admin/templatetags/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templatetags/base.py
rename to app_env/Lib/site-packages/django/contrib/admin/templatetags/base.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/log.py b/app_env/Lib/site-packages/django/contrib/admin/templatetags/log.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/templatetags/log.py
rename to app_env/Lib/site-packages/django/contrib/admin/templatetags/log.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/tests.py b/app_env/Lib/site-packages/django/contrib/admin/tests.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/tests.py
rename to app_env/Lib/site-packages/django/contrib/admin/tests.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/utils.py b/app_env/Lib/site-packages/django/contrib/admin/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/utils.py
rename to app_env/Lib/site-packages/django/contrib/admin/utils.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/views/__init__.py b/app_env/Lib/site-packages/django/contrib/admin/views/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/views/__init__.py
rename to app_env/Lib/site-packages/django/contrib/admin/views/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..a5dfa515
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/autocomplete.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/autocomplete.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/contrib/admin/views/__pycache__/autocomplete.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/autocomplete.cpython-310.pyc
index d0548923..23a18f5d 100644
Binary files a/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/autocomplete.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/autocomplete.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/decorators.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/decorators.cpython-310.pyc
new file mode 100644
index 00000000..645ead3a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/decorators.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/main.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/main.cpython-310.pyc
new file mode 100644
index 00000000..12faaaec
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admin/views/__pycache__/main.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/views/autocomplete.py b/app_env/Lib/site-packages/django/contrib/admin/views/autocomplete.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/views/autocomplete.py
rename to app_env/Lib/site-packages/django/contrib/admin/views/autocomplete.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/views/decorators.py b/app_env/Lib/site-packages/django/contrib/admin/views/decorators.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/views/decorators.py
rename to app_env/Lib/site-packages/django/contrib/admin/views/decorators.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/views/main.py b/app_env/Lib/site-packages/django/contrib/admin/views/main.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/views/main.py
rename to app_env/Lib/site-packages/django/contrib/admin/views/main.py
diff --git a/venv/Lib/site-packages/django/contrib/admin/widgets.py b/app_env/Lib/site-packages/django/contrib/admin/widgets.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admin/widgets.py
rename to app_env/Lib/site-packages/django/contrib/admin/widgets.py
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/__init__.py b/app_env/Lib/site-packages/django/contrib/admindocs/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/__init__.py
rename to app_env/Lib/site-packages/django/contrib/admindocs/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ebcdb83b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..2666c2e5
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/middleware.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/middleware.cpython-310.pyc
new file mode 100644
index 00000000..853e2c5f
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/middleware.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/urls.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/urls.cpython-310.pyc
new file mode 100644
index 00000000..c7c001f5
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/urls.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..41b4e72a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/views.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/views.cpython-310.pyc
new file mode 100644
index 00000000..ddf55a81
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/admindocs/__pycache__/views.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/apps.py b/app_env/Lib/site-packages/django/contrib/admindocs/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/apps.py
rename to app_env/Lib/site-packages/django/contrib/admindocs/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/middleware.py b/app_env/Lib/site-packages/django/contrib/admindocs/middleware.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/middleware.py
rename to app_env/Lib/site-packages/django/contrib/admindocs/middleware.py
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/bookmarklets.html b/app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/bookmarklets.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/bookmarklets.html
rename to app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/bookmarklets.html
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/index.html b/app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/index.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/index.html
rename to app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/index.html
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/missing_docutils.html b/app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/missing_docutils.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/missing_docutils.html
rename to app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/missing_docutils.html
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/model_detail.html b/app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/model_detail.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/model_detail.html
rename to app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/model_detail.html
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/model_index.html b/app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/model_index.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/model_index.html
rename to app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/model_index.html
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_detail.html b/app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_detail.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_detail.html
rename to app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_detail.html
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_filter_index.html b/app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_filter_index.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_filter_index.html
rename to app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_filter_index.html
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_tag_index.html b/app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_tag_index.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_tag_index.html
rename to app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_tag_index.html
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_detail.html b/app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_detail.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_detail.html
rename to app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_detail.html
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_index.html b/app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_index.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_index.html
rename to app_env/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_index.html
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/urls.py b/app_env/Lib/site-packages/django/contrib/admindocs/urls.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/urls.py
rename to app_env/Lib/site-packages/django/contrib/admindocs/urls.py
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/utils.py b/app_env/Lib/site-packages/django/contrib/admindocs/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/utils.py
rename to app_env/Lib/site-packages/django/contrib/admindocs/utils.py
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/views.py b/app_env/Lib/site-packages/django/contrib/admindocs/views.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/admindocs/views.py
rename to app_env/Lib/site-packages/django/contrib/admindocs/views.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/__init__.py b/app_env/Lib/site-packages/django/contrib/auth/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/__init__.py
rename to app_env/Lib/site-packages/django/contrib/auth/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..40137310
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/admin.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/admin.cpython-310.pyc
new file mode 100644
index 00000000..b7b8db67
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/admin.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..a24ef6bd
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/apps.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/backends.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/backends.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/contrib/auth/__pycache__/backends.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/auth/__pycache__/backends.cpython-310.pyc
index 06aa50ec..cb3d8a4f 100644
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/backends.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/backends.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/base_user.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/base_user.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/contrib/auth/__pycache__/base_user.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/auth/__pycache__/base_user.cpython-310.pyc
index be821d2d..72b71480 100644
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/base_user.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/base_user.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/checks.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/checks.cpython-310.pyc
new file mode 100644
index 00000000..1cb9556d
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/checks.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/context_processors.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/context_processors.cpython-310.pyc
new file mode 100644
index 00000000..bff4794b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/context_processors.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/decorators.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/decorators.cpython-310.pyc
new file mode 100644
index 00000000..0afb2ffd
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/decorators.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/forms.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/forms.cpython-310.pyc
new file mode 100644
index 00000000..fa808e7e
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/forms.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/hashers.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/hashers.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/contrib/auth/__pycache__/hashers.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/auth/__pycache__/hashers.cpython-310.pyc
index 3ee487e6..bb425c7f 100644
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/hashers.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/hashers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/middleware.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/middleware.cpython-310.pyc
new file mode 100644
index 00000000..489ba92b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/middleware.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/mixins.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/mixins.cpython-310.pyc
new file mode 100644
index 00000000..04f67b47
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/mixins.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..2ae69301
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/models.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/password_validation.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/password_validation.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/contrib/auth/__pycache__/password_validation.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/auth/__pycache__/password_validation.cpython-310.pyc
index 95b4106d..2d5669dc 100644
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/password_validation.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/password_validation.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/signals.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/signals.cpython-310.pyc
new file mode 100644
index 00000000..09cb35c1
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/signals.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/tokens.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/tokens.cpython-310.pyc
new file mode 100644
index 00000000..be147493
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/tokens.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/urls.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/urls.cpython-310.pyc
new file mode 100644
index 00000000..e93c7756
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/urls.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/validators.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/validators.cpython-310.pyc
new file mode 100644
index 00000000..19960fef
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/validators.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/__pycache__/views.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/views.cpython-310.pyc
new file mode 100644
index 00000000..d612f0f0
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/__pycache__/views.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/admin.py b/app_env/Lib/site-packages/django/contrib/auth/admin.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/admin.py
rename to app_env/Lib/site-packages/django/contrib/auth/admin.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/apps.py b/app_env/Lib/site-packages/django/contrib/auth/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/apps.py
rename to app_env/Lib/site-packages/django/contrib/auth/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/backends.py b/app_env/Lib/site-packages/django/contrib/auth/backends.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/backends.py
rename to app_env/Lib/site-packages/django/contrib/auth/backends.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/base_user.py b/app_env/Lib/site-packages/django/contrib/auth/base_user.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/base_user.py
rename to app_env/Lib/site-packages/django/contrib/auth/base_user.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/checks.py b/app_env/Lib/site-packages/django/contrib/auth/checks.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/checks.py
rename to app_env/Lib/site-packages/django/contrib/auth/checks.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/common-passwords.txt.gz b/app_env/Lib/site-packages/django/contrib/auth/common-passwords.txt.gz
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/common-passwords.txt.gz
rename to app_env/Lib/site-packages/django/contrib/auth/common-passwords.txt.gz
diff --git a/venv/Lib/site-packages/django/contrib/auth/context_processors.py b/app_env/Lib/site-packages/django/contrib/auth/context_processors.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/context_processors.py
rename to app_env/Lib/site-packages/django/contrib/auth/context_processors.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/decorators.py b/app_env/Lib/site-packages/django/contrib/auth/decorators.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/decorators.py
rename to app_env/Lib/site-packages/django/contrib/auth/decorators.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/forms.py b/app_env/Lib/site-packages/django/contrib/auth/forms.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/forms.py
rename to app_env/Lib/site-packages/django/contrib/auth/forms.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/handlers/__init__.py b/app_env/Lib/site-packages/django/contrib/auth/handlers/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/handlers/__init__.py
rename to app_env/Lib/site-packages/django/contrib/auth/handlers/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/auth/handlers/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/handlers/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..69c6666d
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/handlers/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/handlers/__pycache__/modwsgi.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/handlers/__pycache__/modwsgi.cpython-310.pyc
similarity index 78%
rename from venv/Lib/site-packages/django/contrib/auth/handlers/__pycache__/modwsgi.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/auth/handlers/__pycache__/modwsgi.cpython-310.pyc
index 9b092434..acb7d3f4 100644
Binary files a/venv/Lib/site-packages/django/contrib/auth/handlers/__pycache__/modwsgi.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/auth/handlers/__pycache__/modwsgi.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/handlers/modwsgi.py b/app_env/Lib/site-packages/django/contrib/auth/handlers/modwsgi.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/handlers/modwsgi.py
rename to app_env/Lib/site-packages/django/contrib/auth/handlers/modwsgi.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/hashers.py b/app_env/Lib/site-packages/django/contrib/auth/hashers.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/hashers.py
rename to app_env/Lib/site-packages/django/contrib/auth/hashers.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/tk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/tk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/tk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/tk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/tk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/tk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/tk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/tk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/auth/management/__init__.py b/app_env/Lib/site-packages/django/contrib/auth/management/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/management/__init__.py
rename to app_env/Lib/site-packages/django/contrib/auth/management/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/auth/management/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/management/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4242e9b1
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/management/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/management/commands/__init__.py b/app_env/Lib/site-packages/django/contrib/auth/management/commands/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/management/commands/__init__.py
rename to app_env/Lib/site-packages/django/contrib/auth/management/commands/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..0025adcb
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/changepassword.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/changepassword.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/changepassword.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/changepassword.cpython-310.pyc
index 21ff4abf..1e27b9ec 100644
Binary files a/venv/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/changepassword.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/changepassword.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-310.pyc
index 7ffc20b0..bd2f7691 100644
Binary files a/venv/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/management/commands/changepassword.py b/app_env/Lib/site-packages/django/contrib/auth/management/commands/changepassword.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/management/commands/changepassword.py
rename to app_env/Lib/site-packages/django/contrib/auth/management/commands/changepassword.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/management/commands/createsuperuser.py b/app_env/Lib/site-packages/django/contrib/auth/management/commands/createsuperuser.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/management/commands/createsuperuser.py
rename to app_env/Lib/site-packages/django/contrib/auth/management/commands/createsuperuser.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/middleware.py b/app_env/Lib/site-packages/django/contrib/auth/middleware.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/middleware.py
rename to app_env/Lib/site-packages/django/contrib/auth/middleware.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0001_initial.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0001_initial.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0001_initial.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0001_initial.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0002_alter_permission_name_max_length.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0002_alter_permission_name_max_length.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0002_alter_permission_name_max_length.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0002_alter_permission_name_max_length.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0003_alter_user_email_max_length.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0003_alter_user_email_max_length.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0003_alter_user_email_max_length.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0003_alter_user_email_max_length.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0004_alter_user_username_opts.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0004_alter_user_username_opts.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0004_alter_user_username_opts.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0004_alter_user_username_opts.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0005_alter_user_last_login_null.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0005_alter_user_last_login_null.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0005_alter_user_last_login_null.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0005_alter_user_last_login_null.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0006_require_contenttypes_0002.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0006_require_contenttypes_0002.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0006_require_contenttypes_0002.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0006_require_contenttypes_0002.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0008_alter_user_username_max_length.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0008_alter_user_username_max_length.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0008_alter_user_username_max_length.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0008_alter_user_username_max_length.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0010_alter_group_name_max_length.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0010_alter_group_name_max_length.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0010_alter_group_name_max_length.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0010_alter_group_name_max_length.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0011_update_proxy_permissions.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0011_update_proxy_permissions.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0011_update_proxy_permissions.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0011_update_proxy_permissions.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/0012_alter_user_first_name_max_length.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/0012_alter_user_first_name_max_length.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/0012_alter_user_first_name_max_length.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/0012_alter_user_first_name_max_length.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__init__.py b/app_env/Lib/site-packages/django/contrib/auth/migrations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/__init__.py
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0001_initial.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0001_initial.cpython-310.pyc
new file mode 100644
index 00000000..00629731
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0001_initial.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-310.pyc
new file mode 100644
index 00000000..95b5771e
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-310.pyc
new file mode 100644
index 00000000..5daaec3d
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-310.pyc
new file mode 100644
index 00000000..48f14d1b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-310.pyc
new file mode 100644
index 00000000..275a7ef7
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-310.pyc
new file mode 100644
index 00000000..36f69d33
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-310.pyc
new file mode 100644
index 00000000..b4e6867f
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-310.pyc
new file mode 100644
index 00000000..a2dba4c9
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-310.pyc
new file mode 100644
index 00000000..d7fe2082
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-310.pyc
new file mode 100644
index 00000000..b803ebe0
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-310.pyc
index 47c96a3c..f566878e 100644
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-310.pyc
new file mode 100644
index 00000000..b59ae9e2
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7a5ab02b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/auth/migrations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/mixins.py b/app_env/Lib/site-packages/django/contrib/auth/mixins.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/mixins.py
rename to app_env/Lib/site-packages/django/contrib/auth/mixins.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/models.py b/app_env/Lib/site-packages/django/contrib/auth/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/models.py
rename to app_env/Lib/site-packages/django/contrib/auth/models.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/password_validation.py b/app_env/Lib/site-packages/django/contrib/auth/password_validation.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/password_validation.py
rename to app_env/Lib/site-packages/django/contrib/auth/password_validation.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/signals.py b/app_env/Lib/site-packages/django/contrib/auth/signals.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/signals.py
rename to app_env/Lib/site-packages/django/contrib/auth/signals.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html b/app_env/Lib/site-packages/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html
rename to app_env/Lib/site-packages/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html
diff --git a/venv/Lib/site-packages/django/contrib/auth/templates/registration/password_reset_subject.txt b/app_env/Lib/site-packages/django/contrib/auth/templates/registration/password_reset_subject.txt
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/templates/registration/password_reset_subject.txt
rename to app_env/Lib/site-packages/django/contrib/auth/templates/registration/password_reset_subject.txt
diff --git a/venv/Lib/site-packages/django/contrib/auth/tokens.py b/app_env/Lib/site-packages/django/contrib/auth/tokens.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/tokens.py
rename to app_env/Lib/site-packages/django/contrib/auth/tokens.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/urls.py b/app_env/Lib/site-packages/django/contrib/auth/urls.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/urls.py
rename to app_env/Lib/site-packages/django/contrib/auth/urls.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/validators.py b/app_env/Lib/site-packages/django/contrib/auth/validators.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/validators.py
rename to app_env/Lib/site-packages/django/contrib/auth/validators.py
diff --git a/venv/Lib/site-packages/django/contrib/auth/views.py b/app_env/Lib/site-packages/django/contrib/auth/views.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/auth/views.py
rename to app_env/Lib/site-packages/django/contrib/auth/views.py
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/__init__.py b/app_env/Lib/site-packages/django/contrib/contenttypes/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/__init__.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9e40547b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/admin.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/admin.cpython-310.pyc
new file mode 100644
index 00000000..827c090f
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/admin.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..2e6dfa7b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/checks.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/checks.cpython-310.pyc
new file mode 100644
index 00000000..d4769ef8
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/checks.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/fields.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/fields.cpython-310.pyc
new file mode 100644
index 00000000..cc1ae408
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/fields.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/forms.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/forms.cpython-310.pyc
new file mode 100644
index 00000000..76e83c01
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/forms.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..09c0a2d3
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/models.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/views.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/views.cpython-310.pyc
new file mode 100644
index 00000000..7d39b825
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/__pycache__/views.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/admin.py b/app_env/Lib/site-packages/django/contrib/contenttypes/admin.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/admin.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/admin.py
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/apps.py b/app_env/Lib/site-packages/django/contrib/contenttypes/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/apps.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/checks.py b/app_env/Lib/site-packages/django/contrib/contenttypes/checks.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/checks.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/checks.py
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/fields.py b/app_env/Lib/site-packages/django/contrib/contenttypes/fields.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/fields.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/fields.py
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/forms.py b/app_env/Lib/site-packages/django/contrib/contenttypes/forms.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/forms.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/forms.py
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/management/__init__.py b/app_env/Lib/site-packages/django/contrib/contenttypes/management/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/management/__init__.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/management/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/management/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/management/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e4b5cd93
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/management/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/management/commands/__init__.py b/app_env/Lib/site-packages/django/contrib/contenttypes/management/commands/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/management/commands/__init__.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/management/commands/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..d8a8e990
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-310.pyc
index ef661193..5affcf5d 100644
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py b/app_env/Lib/site-packages/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/migrations/0001_initial.py b/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/0001_initial.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/migrations/0001_initial.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/migrations/0001_initial.py
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/migrations/0002_remove_content_type_name.py b/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/0002_remove_content_type_name.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/migrations/0002_remove_content_type_name.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/migrations/0002_remove_content_type_name.py
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/migrations/__init__.py b/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/migrations/__init__.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-310.pyc
new file mode 100644
index 00000000..e8e03338
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-310.pyc
similarity index 76%
rename from venv/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-310.pyc
index 85bf9874..dd6b8344 100644
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1f4ffa14
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/models.py b/app_env/Lib/site-packages/django/contrib/contenttypes/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/models.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/models.py
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/views.py b/app_env/Lib/site-packages/django/contrib/contenttypes/views.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/contenttypes/views.py
rename to app_env/Lib/site-packages/django/contrib/contenttypes/views.py
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/__init__.py b/app_env/Lib/site-packages/django/contrib/flatpages/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/__init__.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..22b4a20f
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/admin.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/admin.cpython-310.pyc
new file mode 100644
index 00000000..13100066
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/admin.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..e3def3e7
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/forms.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/forms.cpython-310.pyc
new file mode 100644
index 00000000..6c7cce52
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/forms.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/middleware.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/middleware.cpython-310.pyc
new file mode 100644
index 00000000..fb849ec4
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/middleware.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..b43aea46
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/models.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/sitemaps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/sitemaps.cpython-310.pyc
new file mode 100644
index 00000000..b6a87423
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/sitemaps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/urls.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/urls.cpython-310.pyc
new file mode 100644
index 00000000..37a6b828
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/urls.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/views.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/views.cpython-310.pyc
new file mode 100644
index 00000000..d2417a65
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/__pycache__/views.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/admin.py b/app_env/Lib/site-packages/django/contrib/flatpages/admin.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/admin.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/admin.py
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/apps.py b/app_env/Lib/site-packages/django/contrib/flatpages/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/apps.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/forms.py b/app_env/Lib/site-packages/django/contrib/flatpages/forms.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/forms.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/forms.py
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/tk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/tk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/tk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/tk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/tk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/tk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/tk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/tk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/middleware.py b/app_env/Lib/site-packages/django/contrib/flatpages/middleware.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/middleware.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/middleware.py
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/migrations/0001_initial.py b/app_env/Lib/site-packages/django/contrib/flatpages/migrations/0001_initial.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/migrations/0001_initial.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/migrations/0001_initial.py
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/migrations/__init__.py b/app_env/Lib/site-packages/django/contrib/flatpages/migrations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/migrations/__init__.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/migrations/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-310.pyc
new file mode 100644
index 00000000..8cae4034
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..a0e96d93
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/models.py b/app_env/Lib/site-packages/django/contrib/flatpages/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/models.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/models.py
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/sitemaps.py b/app_env/Lib/site-packages/django/contrib/flatpages/sitemaps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/sitemaps.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/sitemaps.py
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/templatetags/__init__.py b/app_env/Lib/site-packages/django/contrib/flatpages/templatetags/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/templatetags/__init__.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/templatetags/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..694f8751
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-310.pyc
index e5af06fe..9fc0652e 100644
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/templatetags/flatpages.py b/app_env/Lib/site-packages/django/contrib/flatpages/templatetags/flatpages.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/templatetags/flatpages.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/templatetags/flatpages.py
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/urls.py b/app_env/Lib/site-packages/django/contrib/flatpages/urls.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/urls.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/urls.py
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/views.py b/app_env/Lib/site-packages/django/contrib/flatpages/views.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/flatpages/views.py
rename to app_env/Lib/site-packages/django/contrib/flatpages/views.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..caf18327
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..d3ee25b5
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/apps.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/__pycache__/feeds.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/feeds.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/django/contrib/gis/__pycache__/feeds.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/__pycache__/feeds.cpython-310.pyc
index 57744b5d..c24fee36 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/__pycache__/feeds.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/feeds.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/__pycache__/geometry.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/geometry.cpython-310.pyc
new file mode 100644
index 00000000..ee803647
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/geometry.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/__pycache__/measure.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/measure.cpython-310.pyc
new file mode 100644
index 00000000..f32b0e79
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/measure.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/__pycache__/ptr.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/ptr.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/django/contrib/gis/__pycache__/ptr.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/__pycache__/ptr.cpython-310.pyc
index 881b6615..c85ef850 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/__pycache__/ptr.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/ptr.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/__pycache__/shortcuts.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/shortcuts.cpython-310.pyc
new file mode 100644
index 00000000..78cd624b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/shortcuts.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/__pycache__/views.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/views.cpython-310.pyc
new file mode 100644
index 00000000..8526ba4b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/__pycache__/views.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/admin/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/admin/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/admin/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/admin/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/admin/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/admin/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..3a19196c
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/admin/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/admin/__pycache__/options.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/admin/__pycache__/options.cpython-310.pyc
new file mode 100644
index 00000000..48a75563
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/admin/__pycache__/options.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/admin/__pycache__/widgets.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/admin/__pycache__/widgets.cpython-310.pyc
new file mode 100644
index 00000000..27343ce1
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/admin/__pycache__/widgets.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/admin/options.py b/app_env/Lib/site-packages/django/contrib/gis/admin/options.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/admin/options.py
rename to app_env/Lib/site-packages/django/contrib/gis/admin/options.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/admin/widgets.py b/app_env/Lib/site-packages/django/contrib/gis/admin/widgets.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/admin/widgets.py
rename to app_env/Lib/site-packages/django/contrib/gis/admin/widgets.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/apps.py b/app_env/Lib/site-packages/django/contrib/gis/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/apps.py
rename to app_env/Lib/site-packages/django/contrib/gis/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/db/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7e0c5903
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8577baac
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..5a94bf08
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/base/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..fdcb1b5a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-310.pyc
new file mode 100644
index 00000000..63b174a8
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..dccf7959
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/features.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..13d8ad11
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/models.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..ada72dbe
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/operations.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/adapter.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/adapter.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/base/adapter.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/base/adapter.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/features.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/base/features.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/base/features.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/models.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/base/models.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/base/models.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/operations.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/base/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/base/operations.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/base/operations.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..186f31d8
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..8109e94d
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..5e4f4f82
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-310.pyc
new file mode 100644
index 00000000..3a99da0d
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..bd65cef9
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-310.pyc
new file mode 100644
index 00000000..390af8ac
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/base.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/base.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/base.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/features.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/features.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/features.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/introspection.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/introspection.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/introspection.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/introspection.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/operations.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/operations.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/operations.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/schema.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/schema.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/schema.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/mysql/schema.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..48e89287
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-310.pyc
new file mode 100644
index 00000000..5a728625
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..6c8621ee
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..160254ee
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-310.pyc
new file mode 100644
index 00000000..d515a454
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..a8fa5222
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..7eb4a9c0
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-310.pyc
new file mode 100644
index 00000000..89521fbe
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/adapter.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/adapter.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/adapter.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/adapter.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/base.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/base.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/base.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/features.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/features.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/features.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/introspection.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/introspection.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/introspection.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/introspection.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/models.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/models.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/models.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/operations.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/operations.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/operations.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/schema.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/schema.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/schema.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/oracle/schema.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..fc4fa47b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-310.pyc
new file mode 100644
index 00000000..ec808e8b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..d17f7a78
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-310.pyc
new file mode 100644
index 00000000..12f996ac
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..58749ee7
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-310.pyc
new file mode 100644
index 00000000..c1a58866
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..4d77b883
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..a8ce2b65
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-310.pyc
index 6ad1b89d..a6915734 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-310.pyc
new file mode 100644
index 00000000..d83dc903
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/adapter.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/adapter.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/adapter.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/adapter.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/base.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/base.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/base.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/const.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/const.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/const.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/const.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/features.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/features.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/features.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/introspection.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/introspection.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/introspection.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/introspection.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/models.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/models.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/models.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/operations.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/operations.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/operations.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/pgraster.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/pgraster.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/pgraster.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/pgraster.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/schema.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/schema.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/schema.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/postgis/schema.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c66dc822
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-310.pyc
new file mode 100644
index 00000000..4cc81d8a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..86de0bbb
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-310.pyc
new file mode 100644
index 00000000..3d02e373
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..d3ee8f05
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-310.pyc
new file mode 100644
index 00000000..6fc24a3b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..55c65d1a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..51a4bdcb
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-310.pyc
new file mode 100644
index 00000000..dc210bde
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/adapter.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/adapter.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/adapter.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/adapter.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/base.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/base.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/base.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/client.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/client.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/client.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/client.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/features.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/features.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/features.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/introspection.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/introspection.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/introspection.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/introspection.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/models.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/models.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/models.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/operations.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/operations.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/operations.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/schema.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/schema.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/schema.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/schema.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/utils.py b/app_env/Lib/site-packages/django/contrib/gis/db/backends/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/backends/utils.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/backends/utils.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/db/models/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/models/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/models/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..0da48123
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/aggregates.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/aggregates.cpython-310.pyc
new file mode 100644
index 00000000..104437dd
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/aggregates.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/fields.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/fields.cpython-310.pyc
new file mode 100644
index 00000000..afb4a906
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/fields.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/functions.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/functions.cpython-310.pyc
new file mode 100644
index 00000000..6092984a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/functions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/lookups.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/lookups.cpython-310.pyc
new file mode 100644
index 00000000..00f05ffb
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/lookups.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/proxy.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/proxy.cpython-310.pyc
new file mode 100644
index 00000000..4ad9df04
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/models/__pycache__/proxy.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/aggregates.py b/app_env/Lib/site-packages/django/contrib/gis/db/models/aggregates.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/models/aggregates.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/models/aggregates.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/fields.py b/app_env/Lib/site-packages/django/contrib/gis/db/models/fields.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/models/fields.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/models/fields.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/functions.py b/app_env/Lib/site-packages/django/contrib/gis/db/models/functions.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/models/functions.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/models/functions.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/lookups.py b/app_env/Lib/site-packages/django/contrib/gis/db/models/lookups.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/models/lookups.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/models/lookups.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/proxy.py b/app_env/Lib/site-packages/django/contrib/gis/db/models/proxy.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/models/proxy.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/models/proxy.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/sql/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/db/models/sql/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/models/sql/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/models/sql/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..db5d6312
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-310.pyc
index d22b1b99..869cea13 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/sql/conversion.py b/app_env/Lib/site-packages/django/contrib/gis/db/models/sql/conversion.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/db/models/sql/conversion.py
rename to app_env/Lib/site-packages/django/contrib/gis/db/models/sql/conversion.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/feeds.py b/app_env/Lib/site-packages/django/contrib/gis/feeds.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/feeds.py
rename to app_env/Lib/site-packages/django/contrib/gis/feeds.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/forms/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/forms/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/forms/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/forms/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/forms/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/forms/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b965fae6
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/forms/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/forms/__pycache__/fields.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/forms/__pycache__/fields.cpython-310.pyc
new file mode 100644
index 00000000..780cfba7
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/forms/__pycache__/fields.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/forms/__pycache__/widgets.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/forms/__pycache__/widgets.cpython-310.pyc
new file mode 100644
index 00000000..c1515240
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/forms/__pycache__/widgets.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/forms/fields.py b/app_env/Lib/site-packages/django/contrib/gis/forms/fields.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/forms/fields.py
rename to app_env/Lib/site-packages/django/contrib/gis/forms/fields.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/forms/widgets.py b/app_env/Lib/site-packages/django/contrib/gis/forms/widgets.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/forms/widgets.py
rename to app_env/Lib/site-packages/django/contrib/gis/forms/widgets.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/LICENSE b/app_env/Lib/site-packages/django/contrib/gis/gdal/LICENSE
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/LICENSE
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/LICENSE
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..0ed1035e
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..c093df40
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/datasource.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/datasource.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/datasource.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/datasource.cpython-310.pyc
index 7674061e..285e7723 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/datasource.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/datasource.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/driver.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/driver.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/driver.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/driver.cpython-310.pyc
index 1e65499c..2dcd035b 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/driver.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/driver.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/envelope.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/envelope.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/envelope.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/envelope.cpython-310.pyc
index a2ee2686..66faffcc 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/envelope.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/envelope.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/error.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/error.cpython-310.pyc
new file mode 100644
index 00000000..f077bd0b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/error.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/feature.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/feature.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/feature.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/feature.cpython-310.pyc
index 07afe7f2..e508e29c 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/feature.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/feature.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/field.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/field.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/field.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/field.cpython-310.pyc
index 24d522a7..794740ba 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/field.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/field.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geometries.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geometries.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geometries.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geometries.cpython-310.pyc
index 77697e8a..aebdff2d 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geometries.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geometries.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geomtype.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geomtype.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geomtype.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geomtype.cpython-310.pyc
index 0cc84aea..d9802920 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geomtype.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geomtype.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/layer.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/layer.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/layer.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/layer.cpython-310.pyc
index 0e42084c..2f63bf7f 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/layer.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/layer.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/libgdal.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/libgdal.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/libgdal.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/libgdal.cpython-310.pyc
index f97cdaab..7e6879a2 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/libgdal.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/libgdal.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/srs.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/srs.cpython-310.pyc
new file mode 100644
index 00000000..97ec61a4
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/__pycache__/srs.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/base.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/base.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/base.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/datasource.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/datasource.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/datasource.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/datasource.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/driver.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/driver.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/driver.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/driver.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/envelope.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/envelope.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/envelope.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/envelope.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/error.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/error.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/error.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/error.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/feature.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/feature.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/feature.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/feature.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/field.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/field.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/field.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/field.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/geometries.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/geometries.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/geometries.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/geometries.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/geomtype.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/geomtype.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/geomtype.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/geomtype.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/layer.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/layer.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/layer.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/layer.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/libgdal.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/libgdal.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/libgdal.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/libgdal.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b9027285
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-310.pyc
index fd7a29af..0d93dce0 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-310.pyc
new file mode 100644
index 00000000..c4ef833c
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-310.pyc
index 4e7900f5..49291c0d 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-310.pyc
new file mode 100644
index 00000000..151254e0
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-310.pyc
index f559ca93..7982648b 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-310.pyc
new file mode 100644
index 00000000..dd5ba81e
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/ds.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/ds.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/ds.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/ds.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/errcheck.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/errcheck.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/errcheck.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/errcheck.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/generation.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/generation.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/generation.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/generation.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/geom.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/geom.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/geom.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/geom.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/raster.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/raster.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/raster.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/raster.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/srs.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/srs.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/srs.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/prototypes/srs.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/raster/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..06e5d877
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/band.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/band.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/band.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/band.cpython-310.pyc
index b46a9b62..94e1df58 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/band.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/band.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..09f2d526
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/const.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/const.cpython-310.pyc
new file mode 100644
index 00000000..a3ee7da2
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/const.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/source.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/source.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/source.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/source.cpython-310.pyc
index 7a809b37..ff22d519 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/source.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/source.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/band.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/band.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/raster/band.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/raster/band.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/base.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/raster/base.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/raster/base.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/const.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/const.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/raster/const.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/raster/const.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/source.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/raster/source.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/raster/source.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/raster/source.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/srs.py b/app_env/Lib/site-packages/django/contrib/gis/gdal/srs.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/gdal/srs.py
rename to app_env/Lib/site-packages/django/contrib/gis/gdal/srs.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geoip2/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/geoip2/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geoip2/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/geoip2/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ff2c96a8
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..5b380f5b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/resources.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/resources.cpython-310.pyc
new file mode 100644
index 00000000..24b6f3b3
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/resources.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geoip2/base.py b/app_env/Lib/site-packages/django/contrib/gis/geoip2/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geoip2/base.py
rename to app_env/Lib/site-packages/django/contrib/gis/geoip2/base.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geoip2/resources.py b/app_env/Lib/site-packages/django/contrib/gis/geoip2/resources.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geoip2/resources.py
rename to app_env/Lib/site-packages/django/contrib/gis/geoip2/resources.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geometry.py b/app_env/Lib/site-packages/django/contrib/gis/geometry.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geometry.py
rename to app_env/Lib/site-packages/django/contrib/gis/geometry.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/LICENSE b/app_env/Lib/site-packages/django/contrib/gis/geos/LICENSE
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/LICENSE
rename to app_env/Lib/site-packages/django/contrib/gis/geos/LICENSE
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/geos/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c506de7a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..33d37f5d
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/collections.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/collections.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/collections.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/collections.cpython-310.pyc
index 1ef4cb6f..5fb9df5b 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/collections.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/collections.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/coordseq.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/coordseq.cpython-310.pyc
new file mode 100644
index 00000000..99e6e173
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/coordseq.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/error.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/error.cpython-310.pyc
new file mode 100644
index 00000000..c982e1cf
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/error.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/factory.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/factory.cpython-310.pyc
new file mode 100644
index 00000000..56d27279
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/factory.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/geometry.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/geometry.cpython-310.pyc
new file mode 100644
index 00000000..c1f81131
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/geometry.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/io.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/io.cpython-310.pyc
new file mode 100644
index 00000000..3547d3f2
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/io.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/libgeos.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/libgeos.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/libgeos.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/libgeos.cpython-310.pyc
index b30a1704..8833c329 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/libgeos.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/libgeos.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/linestring.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/linestring.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/linestring.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/linestring.cpython-310.pyc
index f624e7c3..68bab6af 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/linestring.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/linestring.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/mutable_list.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/mutable_list.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/mutable_list.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/mutable_list.cpython-310.pyc
index b57575e6..3ead6585 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/mutable_list.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/mutable_list.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/point.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/point.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/point.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/point.cpython-310.pyc
index 8da3f8cb..c23b1326 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/point.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/point.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/polygon.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/polygon.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/polygon.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/polygon.cpython-310.pyc
index 2c1c471d..5671acf9 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/polygon.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/polygon.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/prepared.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/prepared.cpython-310.pyc
new file mode 100644
index 00000000..ce89b769
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/__pycache__/prepared.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/base.py b/app_env/Lib/site-packages/django/contrib/gis/geos/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/base.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/base.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/collections.py b/app_env/Lib/site-packages/django/contrib/gis/geos/collections.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/collections.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/collections.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/coordseq.py b/app_env/Lib/site-packages/django/contrib/gis/geos/coordseq.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/coordseq.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/coordseq.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/error.py b/app_env/Lib/site-packages/django/contrib/gis/geos/error.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/error.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/error.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/factory.py b/app_env/Lib/site-packages/django/contrib/gis/geos/factory.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/factory.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/factory.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/geometry.py b/app_env/Lib/site-packages/django/contrib/gis/geos/geometry.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/geometry.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/geometry.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/io.py b/app_env/Lib/site-packages/django/contrib/gis/geos/io.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/io.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/io.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/libgeos.py b/app_env/Lib/site-packages/django/contrib/gis/geos/libgeos.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/libgeos.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/libgeos.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/linestring.py b/app_env/Lib/site-packages/django/contrib/gis/geos/linestring.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/linestring.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/linestring.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/mutable_list.py b/app_env/Lib/site-packages/django/contrib/gis/geos/mutable_list.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/mutable_list.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/mutable_list.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/point.py b/app_env/Lib/site-packages/django/contrib/gis/geos/point.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/point.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/point.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/polygon.py b/app_env/Lib/site-packages/django/contrib/gis/geos/polygon.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/polygon.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/polygon.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prepared.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prepared.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prepared.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prepared.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..780ef519
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-310.pyc
new file mode 100644
index 00000000..fa18c534
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-310.pyc
new file mode 100644
index 00000000..3ecfa9e3
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-310.pyc
new file mode 100644
index 00000000..56e9ccb0
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/io.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/io.cpython-310.pyc
new file mode 100644
index 00000000..fe04898e
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/io.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-310.pyc
new file mode 100644
index 00000000..51eec123
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-310.pyc
similarity index 85%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-310.pyc
index 9dbfe3d2..4a12b06c 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-310.pyc
new file mode 100644
index 00000000..96d6c15a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-310.pyc
index a16a387c..0e7d310e 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-310.pyc
index 975c7060..05fe2b95 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/coordseq.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/coordseq.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/coordseq.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/coordseq.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/errcheck.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/errcheck.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/errcheck.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/errcheck.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/geom.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/geom.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/geom.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/geom.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/io.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/io.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/io.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/io.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/misc.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/misc.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/misc.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/misc.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/predicates.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/predicates.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/predicates.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/predicates.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/prepared.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/prepared.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/prepared.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/prepared.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/threadsafe.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/threadsafe.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/threadsafe.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/threadsafe.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/topology.py b/app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/topology.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/geos/prototypes/topology.py
rename to app_env/Lib/site-packages/django/contrib/gis/geos/prototypes/topology.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/gis/management/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/management/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/management/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/management/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/management/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/management/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..716c4c63
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/management/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/management/commands/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/management/commands/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/management/commands/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/management/commands/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b4449cd9
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-310.pyc
new file mode 100644
index 00000000..278bbcd2
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-310.pyc
new file mode 100644
index 00000000..b67b3723
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/management/commands/inspectdb.py b/app_env/Lib/site-packages/django/contrib/gis/management/commands/inspectdb.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/management/commands/inspectdb.py
rename to app_env/Lib/site-packages/django/contrib/gis/management/commands/inspectdb.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/management/commands/ogrinspect.py b/app_env/Lib/site-packages/django/contrib/gis/management/commands/ogrinspect.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/management/commands/ogrinspect.py
rename to app_env/Lib/site-packages/django/contrib/gis/management/commands/ogrinspect.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/measure.py b/app_env/Lib/site-packages/django/contrib/gis/measure.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/measure.py
rename to app_env/Lib/site-packages/django/contrib/gis/measure.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/ptr.py b/app_env/Lib/site-packages/django/contrib/gis/ptr.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/ptr.py
rename to app_env/Lib/site-packages/django/contrib/gis/ptr.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/serializers/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/serializers/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/serializers/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/serializers/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/serializers/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/serializers/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..6a92f7de
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/serializers/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/serializers/__pycache__/geojson.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/serializers/__pycache__/geojson.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/django/contrib/gis/serializers/__pycache__/geojson.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/serializers/__pycache__/geojson.cpython-310.pyc
index e56cc443..8b9ff30f 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/serializers/__pycache__/geojson.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/serializers/__pycache__/geojson.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/serializers/geojson.py b/app_env/Lib/site-packages/django/contrib/gis/serializers/geojson.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/serializers/geojson.py
rename to app_env/Lib/site-packages/django/contrib/gis/serializers/geojson.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/shortcuts.py b/app_env/Lib/site-packages/django/contrib/gis/shortcuts.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/shortcuts.py
rename to app_env/Lib/site-packages/django/contrib/gis/shortcuts.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/sitemaps/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/sitemaps/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/sitemaps/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/sitemaps/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..326a0401
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/kml.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/kml.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/kml.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/kml.cpython-310.pyc
index ec5da9c3..448eddaa 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/kml.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/kml.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/views.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/views.cpython-310.pyc
new file mode 100644
index 00000000..070a10a6
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/views.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/sitemaps/kml.py b/app_env/Lib/site-packages/django/contrib/gis/sitemaps/kml.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/sitemaps/kml.py
rename to app_env/Lib/site-packages/django/contrib/gis/sitemaps/kml.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/sitemaps/views.py b/app_env/Lib/site-packages/django/contrib/gis/sitemaps/views.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/sitemaps/views.py
rename to app_env/Lib/site-packages/django/contrib/gis/sitemaps/views.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/static/gis/css/ol3.css b/app_env/Lib/site-packages/django/contrib/gis/static/gis/css/ol3.css
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/static/gis/css/ol3.css
rename to app_env/Lib/site-packages/django/contrib/gis/static/gis/css/ol3.css
diff --git a/venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_line_off.svg b/app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_line_off.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_line_off.svg
rename to app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_line_off.svg
diff --git a/venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_line_on.svg b/app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_line_on.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_line_on.svg
rename to app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_line_on.svg
diff --git a/venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_point_off.svg b/app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_point_off.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_point_off.svg
rename to app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_point_off.svg
diff --git a/venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_point_on.svg b/app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_point_on.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_point_on.svg
rename to app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_point_on.svg
diff --git a/venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_polygon_off.svg b/app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_polygon_off.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_polygon_off.svg
rename to app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_polygon_off.svg
diff --git a/venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_polygon_on.svg b/app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_polygon_on.svg
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/static/gis/img/draw_polygon_on.svg
rename to app_env/Lib/site-packages/django/contrib/gis/static/gis/img/draw_polygon_on.svg
diff --git a/venv/Lib/site-packages/django/contrib/gis/static/gis/js/OLMapWidget.js b/app_env/Lib/site-packages/django/contrib/gis/static/gis/js/OLMapWidget.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/static/gis/js/OLMapWidget.js
rename to app_env/Lib/site-packages/django/contrib/gis/static/gis/js/OLMapWidget.js
diff --git a/venv/Lib/site-packages/django/contrib/gis/templates/gis/admin/openlayers.html b/app_env/Lib/site-packages/django/contrib/gis/templates/gis/admin/openlayers.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/templates/gis/admin/openlayers.html
rename to app_env/Lib/site-packages/django/contrib/gis/templates/gis/admin/openlayers.html
diff --git a/venv/Lib/site-packages/django/contrib/gis/templates/gis/admin/openlayers.js b/app_env/Lib/site-packages/django/contrib/gis/templates/gis/admin/openlayers.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/templates/gis/admin/openlayers.js
rename to app_env/Lib/site-packages/django/contrib/gis/templates/gis/admin/openlayers.js
diff --git a/venv/Lib/site-packages/django/contrib/gis/templates/gis/admin/osm.html b/app_env/Lib/site-packages/django/contrib/gis/templates/gis/admin/osm.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/templates/gis/admin/osm.html
rename to app_env/Lib/site-packages/django/contrib/gis/templates/gis/admin/osm.html
diff --git a/venv/Lib/site-packages/django/contrib/gis/templates/gis/admin/osm.js b/app_env/Lib/site-packages/django/contrib/gis/templates/gis/admin/osm.js
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/templates/gis/admin/osm.js
rename to app_env/Lib/site-packages/django/contrib/gis/templates/gis/admin/osm.js
diff --git a/venv/Lib/site-packages/django/contrib/gis/templates/gis/kml/base.kml b/app_env/Lib/site-packages/django/contrib/gis/templates/gis/kml/base.kml
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/templates/gis/kml/base.kml
rename to app_env/Lib/site-packages/django/contrib/gis/templates/gis/kml/base.kml
diff --git a/venv/Lib/site-packages/django/contrib/gis/templates/gis/kml/placemarks.kml b/app_env/Lib/site-packages/django/contrib/gis/templates/gis/kml/placemarks.kml
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/templates/gis/kml/placemarks.kml
rename to app_env/Lib/site-packages/django/contrib/gis/templates/gis/kml/placemarks.kml
diff --git a/venv/Lib/site-packages/django/contrib/gis/templates/gis/openlayers-osm.html b/app_env/Lib/site-packages/django/contrib/gis/templates/gis/openlayers-osm.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/templates/gis/openlayers-osm.html
rename to app_env/Lib/site-packages/django/contrib/gis/templates/gis/openlayers-osm.html
diff --git a/venv/Lib/site-packages/django/contrib/gis/templates/gis/openlayers.html b/app_env/Lib/site-packages/django/contrib/gis/templates/gis/openlayers.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/templates/gis/openlayers.html
rename to app_env/Lib/site-packages/django/contrib/gis/templates/gis/openlayers.html
diff --git a/venv/Lib/site-packages/django/contrib/gis/utils/__init__.py b/app_env/Lib/site-packages/django/contrib/gis/utils/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/utils/__init__.py
rename to app_env/Lib/site-packages/django/contrib/gis/utils/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9be4cf2b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/layermapping.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/layermapping.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/layermapping.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/layermapping.cpython-310.pyc
index b2f1fc9f..baf05e9a 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/layermapping.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/layermapping.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinfo.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinfo.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinfo.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinfo.cpython-310.pyc
index 98740a5f..26c91fe0 100644
Binary files a/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinfo.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinfo.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinspect.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinspect.cpython-310.pyc
new file mode 100644
index 00000000..c08bcaaa
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinspect.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/srs.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/srs.cpython-310.pyc
new file mode 100644
index 00000000..f07d7e03
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/gis/utils/__pycache__/srs.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/utils/layermapping.py b/app_env/Lib/site-packages/django/contrib/gis/utils/layermapping.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/utils/layermapping.py
rename to app_env/Lib/site-packages/django/contrib/gis/utils/layermapping.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/utils/ogrinfo.py b/app_env/Lib/site-packages/django/contrib/gis/utils/ogrinfo.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/utils/ogrinfo.py
rename to app_env/Lib/site-packages/django/contrib/gis/utils/ogrinfo.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/utils/ogrinspect.py b/app_env/Lib/site-packages/django/contrib/gis/utils/ogrinspect.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/utils/ogrinspect.py
rename to app_env/Lib/site-packages/django/contrib/gis/utils/ogrinspect.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/utils/srs.py b/app_env/Lib/site-packages/django/contrib/gis/utils/srs.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/utils/srs.py
rename to app_env/Lib/site-packages/django/contrib/gis/utils/srs.py
diff --git a/venv/Lib/site-packages/django/contrib/gis/views.py b/app_env/Lib/site-packages/django/contrib/gis/views.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/gis/views.py
rename to app_env/Lib/site-packages/django/contrib/gis/views.py
diff --git a/venv/Lib/site-packages/django/contrib/humanize/__init__.py b/app_env/Lib/site-packages/django/contrib/humanize/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/__init__.py
rename to app_env/Lib/site-packages/django/contrib/humanize/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/humanize/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/humanize/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..3f56e455
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/humanize/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/humanize/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/humanize/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..080d11c8
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/humanize/__pycache__/apps.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/humanize/apps.py b/app_env/Lib/site-packages/django/contrib/humanize/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/apps.py
rename to app_env/Lib/site-packages/django/contrib/humanize/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/uz/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/uz/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/uz/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/uz/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/uz/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/uz/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/uz/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/uz/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/humanize/templatetags/__init__.py b/app_env/Lib/site-packages/django/contrib/humanize/templatetags/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/templatetags/__init__.py
rename to app_env/Lib/site-packages/django/contrib/humanize/templatetags/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..333887d7
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/humanize.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/humanize.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/humanize.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/humanize.cpython-310.pyc
index e56fbe22..c181c011 100644
Binary files a/venv/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/humanize.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/humanize.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/humanize/templatetags/humanize.py b/app_env/Lib/site-packages/django/contrib/humanize/templatetags/humanize.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/humanize/templatetags/humanize.py
rename to app_env/Lib/site-packages/django/contrib/humanize/templatetags/humanize.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/__init__.py b/app_env/Lib/site-packages/django/contrib/messages/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/__init__.py
rename to app_env/Lib/site-packages/django/contrib/messages/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/messages/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..63ec7dfd
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/__pycache__/api.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/api.cpython-310.pyc
new file mode 100644
index 00000000..8ab06003
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/api.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..f84bef59
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/__pycache__/constants.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/constants.cpython-310.pyc
new file mode 100644
index 00000000..4357a36d
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/constants.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/__pycache__/context_processors.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/context_processors.cpython-310.pyc
new file mode 100644
index 00000000..bc5426f4
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/context_processors.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/__pycache__/middleware.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/middleware.cpython-310.pyc
new file mode 100644
index 00000000..10294f88
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/middleware.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..85dc0ba2
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/__pycache__/views.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/views.cpython-310.pyc
new file mode 100644
index 00000000..1bdcf6e2
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/__pycache__/views.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/api.py b/app_env/Lib/site-packages/django/contrib/messages/api.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/api.py
rename to app_env/Lib/site-packages/django/contrib/messages/api.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/apps.py b/app_env/Lib/site-packages/django/contrib/messages/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/apps.py
rename to app_env/Lib/site-packages/django/contrib/messages/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/constants.py b/app_env/Lib/site-packages/django/contrib/messages/constants.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/constants.py
rename to app_env/Lib/site-packages/django/contrib/messages/constants.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/context_processors.py b/app_env/Lib/site-packages/django/contrib/messages/context_processors.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/context_processors.py
rename to app_env/Lib/site-packages/django/contrib/messages/context_processors.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/middleware.py b/app_env/Lib/site-packages/django/contrib/messages/middleware.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/middleware.py
rename to app_env/Lib/site-packages/django/contrib/messages/middleware.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/storage/__init__.py b/app_env/Lib/site-packages/django/contrib/messages/storage/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/storage/__init__.py
rename to app_env/Lib/site-packages/django/contrib/messages/storage/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..bfb87cad
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..c3d16022
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/cookie.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/cookie.cpython-310.pyc
new file mode 100644
index 00000000..3bc70a1b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/cookie.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/fallback.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/fallback.cpython-310.pyc
new file mode 100644
index 00000000..04321842
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/fallback.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/session.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/session.cpython-310.pyc
new file mode 100644
index 00000000..84191535
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/messages/storage/__pycache__/session.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/storage/base.py b/app_env/Lib/site-packages/django/contrib/messages/storage/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/storage/base.py
rename to app_env/Lib/site-packages/django/contrib/messages/storage/base.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/storage/cookie.py b/app_env/Lib/site-packages/django/contrib/messages/storage/cookie.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/storage/cookie.py
rename to app_env/Lib/site-packages/django/contrib/messages/storage/cookie.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/storage/fallback.py b/app_env/Lib/site-packages/django/contrib/messages/storage/fallback.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/storage/fallback.py
rename to app_env/Lib/site-packages/django/contrib/messages/storage/fallback.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/storage/session.py b/app_env/Lib/site-packages/django/contrib/messages/storage/session.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/storage/session.py
rename to app_env/Lib/site-packages/django/contrib/messages/storage/session.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/utils.py b/app_env/Lib/site-packages/django/contrib/messages/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/utils.py
rename to app_env/Lib/site-packages/django/contrib/messages/utils.py
diff --git a/venv/Lib/site-packages/django/contrib/messages/views.py b/app_env/Lib/site-packages/django/contrib/messages/views.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/messages/views.py
rename to app_env/Lib/site-packages/django/contrib/messages/views.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__init__.py b/app_env/Lib/site-packages/django/contrib/postgres/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/__init__.py
rename to app_env/Lib/site-packages/django/contrib/postgres/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..70aff254
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..d136cb93
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/constraints.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/constraints.cpython-310.pyc
new file mode 100644
index 00000000..660a1d95
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/constraints.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/expressions.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/expressions.cpython-310.pyc
new file mode 100644
index 00000000..dc93a20b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/expressions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/functions.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/functions.cpython-310.pyc
new file mode 100644
index 00000000..dc883f68
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/functions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/indexes.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/indexes.cpython-310.pyc
new file mode 100644
index 00000000..609a7ac3
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/indexes.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/lookups.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/lookups.cpython-310.pyc
new file mode 100644
index 00000000..a99a1e83
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/lookups.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..553b8d76
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/operations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/search.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/search.cpython-310.pyc
new file mode 100644
index 00000000..7c2c5c09
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/search.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/serializers.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/serializers.cpython-310.pyc
new file mode 100644
index 00000000..0e208b3c
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/serializers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/signals.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/signals.cpython-310.pyc
new file mode 100644
index 00000000..2a9ef3a4
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/signals.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..207791c7
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/validators.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/validators.cpython-310.pyc
new file mode 100644
index 00000000..ac02e7dc
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/__pycache__/validators.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/aggregates/__init__.py b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/aggregates/__init__.py
rename to app_env/Lib/site-packages/django/contrib/postgres/aggregates/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..deebd4ce
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/general.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/general.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/general.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/general.cpython-310.pyc
index 793e9bd4..a8b24051 100644
Binary files a/venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/general.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/general.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/mixins.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/mixins.cpython-310.pyc
new file mode 100644
index 00000000..e7db2721
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/mixins.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/statistics.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/statistics.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/statistics.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/statistics.cpython-310.pyc
index bfd57d68..da249682 100644
Binary files a/venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/statistics.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/statistics.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/aggregates/general.py b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/general.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/aggregates/general.py
rename to app_env/Lib/site-packages/django/contrib/postgres/aggregates/general.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/aggregates/mixins.py b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/mixins.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/aggregates/mixins.py
rename to app_env/Lib/site-packages/django/contrib/postgres/aggregates/mixins.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/aggregates/statistics.py b/app_env/Lib/site-packages/django/contrib/postgres/aggregates/statistics.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/aggregates/statistics.py
rename to app_env/Lib/site-packages/django/contrib/postgres/aggregates/statistics.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/apps.py b/app_env/Lib/site-packages/django/contrib/postgres/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/apps.py
rename to app_env/Lib/site-packages/django/contrib/postgres/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/constraints.py b/app_env/Lib/site-packages/django/contrib/postgres/constraints.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/constraints.py
rename to app_env/Lib/site-packages/django/contrib/postgres/constraints.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/expressions.py b/app_env/Lib/site-packages/django/contrib/postgres/expressions.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/expressions.py
rename to app_env/Lib/site-packages/django/contrib/postgres/expressions.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/__init__.py b/app_env/Lib/site-packages/django/contrib/postgres/fields/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/fields/__init__.py
rename to app_env/Lib/site-packages/django/contrib/postgres/fields/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..fe8c0ee3
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/array.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/array.cpython-310.pyc
new file mode 100644
index 00000000..326d19d3
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/array.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/citext.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/citext.cpython-310.pyc
new file mode 100644
index 00000000..dde8e239
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/citext.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/hstore.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/hstore.cpython-310.pyc
new file mode 100644
index 00000000..2ccd1bab
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/hstore.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/jsonb.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/jsonb.cpython-310.pyc
new file mode 100644
index 00000000..a6093ebf
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/jsonb.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/ranges.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/ranges.cpython-310.pyc
new file mode 100644
index 00000000..3540b3d2
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/ranges.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..6682e0de
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/fields/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/array.py b/app_env/Lib/site-packages/django/contrib/postgres/fields/array.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/fields/array.py
rename to app_env/Lib/site-packages/django/contrib/postgres/fields/array.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/citext.py b/app_env/Lib/site-packages/django/contrib/postgres/fields/citext.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/fields/citext.py
rename to app_env/Lib/site-packages/django/contrib/postgres/fields/citext.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/hstore.py b/app_env/Lib/site-packages/django/contrib/postgres/fields/hstore.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/fields/hstore.py
rename to app_env/Lib/site-packages/django/contrib/postgres/fields/hstore.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/jsonb.py b/app_env/Lib/site-packages/django/contrib/postgres/fields/jsonb.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/fields/jsonb.py
rename to app_env/Lib/site-packages/django/contrib/postgres/fields/jsonb.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/ranges.py b/app_env/Lib/site-packages/django/contrib/postgres/fields/ranges.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/fields/ranges.py
rename to app_env/Lib/site-packages/django/contrib/postgres/fields/ranges.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/utils.py b/app_env/Lib/site-packages/django/contrib/postgres/fields/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/fields/utils.py
rename to app_env/Lib/site-packages/django/contrib/postgres/fields/utils.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/forms/__init__.py b/app_env/Lib/site-packages/django/contrib/postgres/forms/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/forms/__init__.py
rename to app_env/Lib/site-packages/django/contrib/postgres/forms/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7362ae90
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/array.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/array.cpython-310.pyc
new file mode 100644
index 00000000..0c0c3be7
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/array.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/hstore.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/hstore.cpython-310.pyc
new file mode 100644
index 00000000..92e88997
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/hstore.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/ranges.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/ranges.cpython-310.pyc
new file mode 100644
index 00000000..f05540dc
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/postgres/forms/__pycache__/ranges.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/forms/array.py b/app_env/Lib/site-packages/django/contrib/postgres/forms/array.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/forms/array.py
rename to app_env/Lib/site-packages/django/contrib/postgres/forms/array.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/forms/hstore.py b/app_env/Lib/site-packages/django/contrib/postgres/forms/hstore.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/forms/hstore.py
rename to app_env/Lib/site-packages/django/contrib/postgres/forms/hstore.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/forms/ranges.py b/app_env/Lib/site-packages/django/contrib/postgres/forms/ranges.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/forms/ranges.py
rename to app_env/Lib/site-packages/django/contrib/postgres/forms/ranges.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/functions.py b/app_env/Lib/site-packages/django/contrib/postgres/functions.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/functions.py
rename to app_env/Lib/site-packages/django/contrib/postgres/functions.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/indexes.py b/app_env/Lib/site-packages/django/contrib/postgres/indexes.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/indexes.py
rename to app_env/Lib/site-packages/django/contrib/postgres/indexes.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/jinja2/postgres/widgets/split_array.html b/app_env/Lib/site-packages/django/contrib/postgres/jinja2/postgres/widgets/split_array.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/jinja2/postgres/widgets/split_array.html
rename to app_env/Lib/site-packages/django/contrib/postgres/jinja2/postgres/widgets/split_array.html
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/tk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/tk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/tk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/tk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/tk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/tk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/tk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/tk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/uz/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/uz/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/uz/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/uz/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/uz/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/uz/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/uz/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/uz/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/postgres/lookups.py b/app_env/Lib/site-packages/django/contrib/postgres/lookups.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/lookups.py
rename to app_env/Lib/site-packages/django/contrib/postgres/lookups.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/operations.py b/app_env/Lib/site-packages/django/contrib/postgres/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/operations.py
rename to app_env/Lib/site-packages/django/contrib/postgres/operations.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/search.py b/app_env/Lib/site-packages/django/contrib/postgres/search.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/search.py
rename to app_env/Lib/site-packages/django/contrib/postgres/search.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/serializers.py b/app_env/Lib/site-packages/django/contrib/postgres/serializers.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/serializers.py
rename to app_env/Lib/site-packages/django/contrib/postgres/serializers.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/signals.py b/app_env/Lib/site-packages/django/contrib/postgres/signals.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/signals.py
rename to app_env/Lib/site-packages/django/contrib/postgres/signals.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/templates/postgres/widgets/split_array.html b/app_env/Lib/site-packages/django/contrib/postgres/templates/postgres/widgets/split_array.html
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/templates/postgres/widgets/split_array.html
rename to app_env/Lib/site-packages/django/contrib/postgres/templates/postgres/widgets/split_array.html
diff --git a/venv/Lib/site-packages/django/contrib/postgres/utils.py b/app_env/Lib/site-packages/django/contrib/postgres/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/utils.py
rename to app_env/Lib/site-packages/django/contrib/postgres/utils.py
diff --git a/venv/Lib/site-packages/django/contrib/postgres/validators.py b/app_env/Lib/site-packages/django/contrib/postgres/validators.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/postgres/validators.py
rename to app_env/Lib/site-packages/django/contrib/postgres/validators.py
diff --git a/venv/Lib/site-packages/django/contrib/redirects/__init__.py b/app_env/Lib/site-packages/django/contrib/redirects/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/__init__.py
rename to app_env/Lib/site-packages/django/contrib/redirects/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..81d0eb46
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/admin.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/admin.cpython-310.pyc
new file mode 100644
index 00000000..8c997b59
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/admin.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..2f970f31
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/middleware.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/middleware.cpython-310.pyc
new file mode 100644
index 00000000..51459ef5
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/middleware.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..c695890b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/redirects/__pycache__/models.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/redirects/admin.py b/app_env/Lib/site-packages/django/contrib/redirects/admin.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/admin.py
rename to app_env/Lib/site-packages/django/contrib/redirects/admin.py
diff --git a/venv/Lib/site-packages/django/contrib/redirects/apps.py b/app_env/Lib/site-packages/django/contrib/redirects/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/apps.py
rename to app_env/Lib/site-packages/django/contrib/redirects/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/kab/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/kab/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/kab/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/kab/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/kab/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/kab/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/kab/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/kab/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/tk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/tk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/tk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/tk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/tk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/tk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/tk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/tk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/redirects/middleware.py b/app_env/Lib/site-packages/django/contrib/redirects/middleware.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/middleware.py
rename to app_env/Lib/site-packages/django/contrib/redirects/middleware.py
diff --git a/venv/Lib/site-packages/django/contrib/redirects/migrations/0001_initial.py b/app_env/Lib/site-packages/django/contrib/redirects/migrations/0001_initial.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/migrations/0001_initial.py
rename to app_env/Lib/site-packages/django/contrib/redirects/migrations/0001_initial.py
diff --git a/venv/Lib/site-packages/django/contrib/redirects/migrations/0002_alter_redirect_new_path_help_text.py b/app_env/Lib/site-packages/django/contrib/redirects/migrations/0002_alter_redirect_new_path_help_text.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/migrations/0002_alter_redirect_new_path_help_text.py
rename to app_env/Lib/site-packages/django/contrib/redirects/migrations/0002_alter_redirect_new_path_help_text.py
diff --git a/venv/Lib/site-packages/django/contrib/redirects/migrations/__init__.py b/app_env/Lib/site-packages/django/contrib/redirects/migrations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/migrations/__init__.py
rename to app_env/Lib/site-packages/django/contrib/redirects/migrations/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-310.pyc
new file mode 100644
index 00000000..650f4070
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-310.pyc
new file mode 100644
index 00000000..bcb5c2be
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c86c3e99
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/redirects/models.py b/app_env/Lib/site-packages/django/contrib/redirects/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/redirects/models.py
rename to app_env/Lib/site-packages/django/contrib/redirects/models.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/__init__.py b/app_env/Lib/site-packages/django/contrib/sessions/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/__init__.py
rename to app_env/Lib/site-packages/django/contrib/sessions/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c8cca5a3
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..b409cc61
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/apps.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/base_session.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/base_session.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/django/contrib/sessions/__pycache__/base_session.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/sessions/__pycache__/base_session.cpython-310.pyc
index 44863b3a..b766a670 100644
Binary files a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/base_session.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/base_session.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..d59d0e12
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/middleware.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/middleware.cpython-310.pyc
new file mode 100644
index 00000000..5228f9a4
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/middleware.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..666a8e93
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/models.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/serializers.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/serializers.cpython-310.pyc
new file mode 100644
index 00000000..e02f98b8
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/__pycache__/serializers.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/apps.py b/app_env/Lib/site-packages/django/contrib/sessions/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/apps.py
rename to app_env/Lib/site-packages/django/contrib/sessions/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/__init__.py b/app_env/Lib/site-packages/django/contrib/sessions/backends/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/backends/__init__.py
rename to app_env/Lib/site-packages/django/contrib/sessions/backends/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..d0833a2f
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..08348730
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cache.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cache.cpython-310.pyc
new file mode 100644
index 00000000..7338f2b1
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cache.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cached_db.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cached_db.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cached_db.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cached_db.cpython-310.pyc
index 76ca3edf..cc1eed10 100644
Binary files a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cached_db.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cached_db.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/db.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/db.cpython-310.pyc
new file mode 100644
index 00000000..b66a8eb5
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/db.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/file.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/file.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/file.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/file.cpython-310.pyc
index c904f2cb..dad58abd 100644
Binary files a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/file.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/file.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-310.pyc
index 1405e3f3..2278466f 100644
Binary files a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/base.py b/app_env/Lib/site-packages/django/contrib/sessions/backends/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/backends/base.py
rename to app_env/Lib/site-packages/django/contrib/sessions/backends/base.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/cache.py b/app_env/Lib/site-packages/django/contrib/sessions/backends/cache.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/backends/cache.py
rename to app_env/Lib/site-packages/django/contrib/sessions/backends/cache.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/cached_db.py b/app_env/Lib/site-packages/django/contrib/sessions/backends/cached_db.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/backends/cached_db.py
rename to app_env/Lib/site-packages/django/contrib/sessions/backends/cached_db.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/db.py b/app_env/Lib/site-packages/django/contrib/sessions/backends/db.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/backends/db.py
rename to app_env/Lib/site-packages/django/contrib/sessions/backends/db.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/file.py b/app_env/Lib/site-packages/django/contrib/sessions/backends/file.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/backends/file.py
rename to app_env/Lib/site-packages/django/contrib/sessions/backends/file.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/signed_cookies.py b/app_env/Lib/site-packages/django/contrib/sessions/backends/signed_cookies.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/backends/signed_cookies.py
rename to app_env/Lib/site-packages/django/contrib/sessions/backends/signed_cookies.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/base_session.py b/app_env/Lib/site-packages/django/contrib/sessions/base_session.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/base_session.py
rename to app_env/Lib/site-packages/django/contrib/sessions/base_session.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/exceptions.py b/app_env/Lib/site-packages/django/contrib/sessions/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/exceptions.py
rename to app_env/Lib/site-packages/django/contrib/sessions/exceptions.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/tk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/tk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/tk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/tk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/tk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/tk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/tk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/tk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sessions/management/__init__.py b/app_env/Lib/site-packages/django/contrib/sessions/management/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/management/__init__.py
rename to app_env/Lib/site-packages/django/contrib/sessions/management/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/management/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/management/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1da8711e
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/management/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/management/commands/__init__.py b/app_env/Lib/site-packages/django/contrib/sessions/management/commands/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/management/commands/__init__.py
rename to app_env/Lib/site-packages/django/contrib/sessions/management/commands/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1587ecf6
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-310.pyc
similarity index 75%
rename from venv/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-310.pyc
index 881e10e8..3a5ce034 100644
Binary files a/venv/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/management/commands/clearsessions.py b/app_env/Lib/site-packages/django/contrib/sessions/management/commands/clearsessions.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/management/commands/clearsessions.py
rename to app_env/Lib/site-packages/django/contrib/sessions/management/commands/clearsessions.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/middleware.py b/app_env/Lib/site-packages/django/contrib/sessions/middleware.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/middleware.py
rename to app_env/Lib/site-packages/django/contrib/sessions/middleware.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/migrations/0001_initial.py b/app_env/Lib/site-packages/django/contrib/sessions/migrations/0001_initial.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/migrations/0001_initial.py
rename to app_env/Lib/site-packages/django/contrib/sessions/migrations/0001_initial.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/migrations/__init__.py b/app_env/Lib/site-packages/django/contrib/sessions/migrations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/migrations/__init__.py
rename to app_env/Lib/site-packages/django/contrib/sessions/migrations/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-310.pyc
new file mode 100644
index 00000000..9c09922d
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..32850a83
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/models.py b/app_env/Lib/site-packages/django/contrib/sessions/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/models.py
rename to app_env/Lib/site-packages/django/contrib/sessions/models.py
diff --git a/venv/Lib/site-packages/django/contrib/sessions/serializers.py b/app_env/Lib/site-packages/django/contrib/sessions/serializers.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sessions/serializers.py
rename to app_env/Lib/site-packages/django/contrib/sessions/serializers.py
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/__init__.py b/app_env/Lib/site-packages/django/contrib/sitemaps/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sitemaps/__init__.py
rename to app_env/Lib/site-packages/django/contrib/sitemaps/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/sitemaps/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sitemaps/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e7b4bd83
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sitemaps/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sitemaps/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sitemaps/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..a81e9255
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sitemaps/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sitemaps/__pycache__/views.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sitemaps/__pycache__/views.cpython-310.pyc
new file mode 100644
index 00000000..40655866
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sitemaps/__pycache__/views.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/apps.py b/app_env/Lib/site-packages/django/contrib/sitemaps/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sitemaps/apps.py
rename to app_env/Lib/site-packages/django/contrib/sitemaps/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/management/__init__.py b/app_env/Lib/site-packages/django/contrib/sitemaps/management/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sitemaps/management/__init__.py
rename to app_env/Lib/site-packages/django/contrib/sitemaps/management/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/sitemaps/management/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sitemaps/management/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..497d1aab
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sitemaps/management/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/management/commands/__init__.py b/app_env/Lib/site-packages/django/contrib/sitemaps/management/commands/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sitemaps/management/commands/__init__.py
rename to app_env/Lib/site-packages/django/contrib/sitemaps/management/commands/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..43a97b25
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/ping_google.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/ping_google.cpython-310.pyc
new file mode 100644
index 00000000..1a07050c
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/ping_google.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/management/commands/ping_google.py b/app_env/Lib/site-packages/django/contrib/sitemaps/management/commands/ping_google.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sitemaps/management/commands/ping_google.py
rename to app_env/Lib/site-packages/django/contrib/sitemaps/management/commands/ping_google.py
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/templates/sitemap.xml b/app_env/Lib/site-packages/django/contrib/sitemaps/templates/sitemap.xml
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sitemaps/templates/sitemap.xml
rename to app_env/Lib/site-packages/django/contrib/sitemaps/templates/sitemap.xml
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/templates/sitemap_index.xml b/app_env/Lib/site-packages/django/contrib/sitemaps/templates/sitemap_index.xml
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sitemaps/templates/sitemap_index.xml
rename to app_env/Lib/site-packages/django/contrib/sitemaps/templates/sitemap_index.xml
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/views.py b/app_env/Lib/site-packages/django/contrib/sitemaps/views.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sitemaps/views.py
rename to app_env/Lib/site-packages/django/contrib/sitemaps/views.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/__init__.py b/app_env/Lib/site-packages/django/contrib/sites/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/__init__.py
rename to app_env/Lib/site-packages/django/contrib/sites/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/sites/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9ad4bb70
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sites/__pycache__/admin.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/admin.cpython-310.pyc
new file mode 100644
index 00000000..cdfabb40
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/admin.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sites/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..48d88b20
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sites/__pycache__/checks.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/checks.cpython-310.pyc
new file mode 100644
index 00000000..117ea44a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/checks.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sites/__pycache__/management.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/management.cpython-310.pyc
new file mode 100644
index 00000000..f01dc606
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/management.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/__pycache__/managers.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/managers.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/django/contrib/sites/__pycache__/managers.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/sites/__pycache__/managers.cpython-310.pyc
index 9341ce19..b4cd5732 100644
Binary files a/venv/Lib/site-packages/django/contrib/sites/__pycache__/managers.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/managers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sites/__pycache__/middleware.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/middleware.cpython-310.pyc
new file mode 100644
index 00000000..6d02543b
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/middleware.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sites/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..7985111c
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/models.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/__pycache__/requests.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/requests.cpython-310.pyc
similarity index 80%
rename from venv/Lib/site-packages/django/contrib/sites/__pycache__/requests.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/sites/__pycache__/requests.cpython-310.pyc
index 0fb22c65..c28b6bb4 100644
Binary files a/venv/Lib/site-packages/django/contrib/sites/__pycache__/requests.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/requests.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sites/__pycache__/shortcuts.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/shortcuts.cpython-310.pyc
new file mode 100644
index 00000000..7c67d985
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/__pycache__/shortcuts.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/admin.py b/app_env/Lib/site-packages/django/contrib/sites/admin.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/admin.py
rename to app_env/Lib/site-packages/django/contrib/sites/admin.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/apps.py b/app_env/Lib/site-packages/django/contrib/sites/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/apps.py
rename to app_env/Lib/site-packages/django/contrib/sites/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/checks.py b/app_env/Lib/site-packages/django/contrib/sites/checks.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/checks.py
rename to app_env/Lib/site-packages/django/contrib/sites/checks.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/bn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/bn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/bn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/bn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/bn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/bn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/bn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/bn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/br/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/br/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/br/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/br/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/br/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/br/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/br/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/br/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/bs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/bs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/bs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/bs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/bs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/bs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/bs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/bs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/cs/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/cs/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/cs/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/cs/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/cs/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/cs/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/cs/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/cs/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/en/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/en/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/en/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/en/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/en/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/en/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/en/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/en/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/eu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/eu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/eu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/eu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/eu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/eu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/eu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/eu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/fy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/fy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/fy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/fy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/fy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/fy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/fy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/fy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/hi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/hi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/hi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/hi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/hi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/hi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/hi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/hi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/io/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/io/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/io/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/io/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/io/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/io/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/io/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/io/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/km/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/km/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/km/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/km/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/km/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/km/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/km/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/km/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/lb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/lb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/lb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/lb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/lb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/lb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/lb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/lb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/mr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/mr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/mr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/mr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/mr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/mr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/mr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/mr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/pa/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/pa/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/pa/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/pa/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/pa/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/pa/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/pa/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/pa/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sw/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/sw/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sw/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sw/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/sw/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/sw/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/sw/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/sw/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ta/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ta/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ta/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ta/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ta/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ta/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ta/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ta/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/te/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/te/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/te/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/te/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/te/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/te/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/te/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/te/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/tg/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/tg/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/tg/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/tg/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/tg/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/tg/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/tg/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/tg/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/tk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/tk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/tk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/tk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/tk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/tk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/tk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/tk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/tr/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/tr/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/tr/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/tr/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/tr/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/tr/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/tr/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/tr/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/tt/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/tt/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/tt/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/tt/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/tt/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/tt/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/tt/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/tt/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/udm/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/udm/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/udm/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/udm/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/udm/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/udm/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/udm/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/udm/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/uk/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/uk/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/uk/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/uk/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/uk/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/uk/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/uk/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/uk/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ur/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/ur/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ur/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ur/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/ur/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/ur/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/ur/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/ur/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/vi/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/vi/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/vi/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/vi/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/vi/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/vi/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/vi/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/vi/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.mo b/app_env/Lib/site-packages/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.mo
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.mo
rename to app_env/Lib/site-packages/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.mo
diff --git a/venv/Lib/site-packages/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.po b/app_env/Lib/site-packages/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.po
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.po
rename to app_env/Lib/site-packages/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.po
diff --git a/venv/Lib/site-packages/django/contrib/sites/management.py b/app_env/Lib/site-packages/django/contrib/sites/management.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/management.py
rename to app_env/Lib/site-packages/django/contrib/sites/management.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/managers.py b/app_env/Lib/site-packages/django/contrib/sites/managers.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/managers.py
rename to app_env/Lib/site-packages/django/contrib/sites/managers.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/middleware.py b/app_env/Lib/site-packages/django/contrib/sites/middleware.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/middleware.py
rename to app_env/Lib/site-packages/django/contrib/sites/middleware.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/migrations/0001_initial.py b/app_env/Lib/site-packages/django/contrib/sites/migrations/0001_initial.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/migrations/0001_initial.py
rename to app_env/Lib/site-packages/django/contrib/sites/migrations/0001_initial.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/migrations/0002_alter_domain_unique.py b/app_env/Lib/site-packages/django/contrib/sites/migrations/0002_alter_domain_unique.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/migrations/0002_alter_domain_unique.py
rename to app_env/Lib/site-packages/django/contrib/sites/migrations/0002_alter_domain_unique.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/migrations/__init__.py b/app_env/Lib/site-packages/django/contrib/sites/migrations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/migrations/__init__.py
rename to app_env/Lib/site-packages/django/contrib/sites/migrations/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0001_initial.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0001_initial.cpython-310.pyc
new file mode 100644
index 00000000..13dfda0f
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0001_initial.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-310.pyc
new file mode 100644
index 00000000..d861d3a3
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/sites/migrations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/sites/migrations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..f92367f3
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/sites/migrations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/models.py b/app_env/Lib/site-packages/django/contrib/sites/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/models.py
rename to app_env/Lib/site-packages/django/contrib/sites/models.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/requests.py b/app_env/Lib/site-packages/django/contrib/sites/requests.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/requests.py
rename to app_env/Lib/site-packages/django/contrib/sites/requests.py
diff --git a/venv/Lib/site-packages/django/contrib/sites/shortcuts.py b/app_env/Lib/site-packages/django/contrib/sites/shortcuts.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/sites/shortcuts.py
rename to app_env/Lib/site-packages/django/contrib/sites/shortcuts.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__init__.py b/app_env/Lib/site-packages/django/contrib/staticfiles/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/__init__.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..f019263a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..a3a9e47a
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/checks.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/checks.cpython-310.pyc
new file mode 100644
index 00000000..890484c6
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/checks.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/finders.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/finders.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/finders.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/finders.cpython-310.pyc
index d63b3378..8c0445f4 100644
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/finders.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/finders.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/handlers.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/handlers.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/handlers.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/handlers.cpython-310.pyc
index d05315d2..2c4a0d99 100644
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/handlers.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/handlers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/storage.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/storage.cpython-310.pyc
new file mode 100644
index 00000000..fac96947
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/storage.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/testing.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/testing.cpython-310.pyc
new file mode 100644
index 00000000..acedf346
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/testing.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/urls.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/urls.cpython-310.pyc
new file mode 100644
index 00000000..2d643131
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/urls.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..0053c3c6
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/views.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/views.cpython-310.pyc
new file mode 100644
index 00000000..b56d2ea1
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/__pycache__/views.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/apps.py b/app_env/Lib/site-packages/django/contrib/staticfiles/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/apps.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/checks.py b/app_env/Lib/site-packages/django/contrib/staticfiles/checks.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/checks.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/checks.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/finders.py b/app_env/Lib/site-packages/django/contrib/staticfiles/finders.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/finders.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/finders.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/handlers.py b/app_env/Lib/site-packages/django/contrib/staticfiles/handlers.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/handlers.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/handlers.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/management/__init__.py b/app_env/Lib/site-packages/django/contrib/staticfiles/management/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/management/__init__.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/management/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/management/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/management/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c7d398a4
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/management/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__init__.py b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__init__.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..80d695e4
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-310.pyc
index c0df1aec..9d14f014 100644
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-310.pyc
rename to app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-310.pyc
index 8e67bca8..e87027fb 100644
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-310.pyc and b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-310.pyc
new file mode 100644
index 00000000..259207d5
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/findstatic.py b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/findstatic.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/management/commands/findstatic.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/findstatic.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/runserver.py b/app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/runserver.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/management/commands/runserver.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/management/commands/runserver.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/storage.py b/app_env/Lib/site-packages/django/contrib/staticfiles/storage.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/storage.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/storage.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/testing.py b/app_env/Lib/site-packages/django/contrib/staticfiles/testing.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/testing.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/testing.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/urls.py b/app_env/Lib/site-packages/django/contrib/staticfiles/urls.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/urls.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/urls.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/utils.py b/app_env/Lib/site-packages/django/contrib/staticfiles/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/utils.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/utils.py
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/views.py b/app_env/Lib/site-packages/django/contrib/staticfiles/views.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/staticfiles/views.py
rename to app_env/Lib/site-packages/django/contrib/staticfiles/views.py
diff --git a/venv/Lib/site-packages/django/contrib/syndication/__init__.py b/app_env/Lib/site-packages/django/contrib/syndication/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/syndication/__init__.py
rename to app_env/Lib/site-packages/django/contrib/syndication/__init__.py
diff --git a/app_env/Lib/site-packages/django/contrib/syndication/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/syndication/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..821255ec
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/syndication/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/syndication/__pycache__/apps.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/syndication/__pycache__/apps.cpython-310.pyc
new file mode 100644
index 00000000..3b46f790
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/syndication/__pycache__/apps.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/contrib/syndication/__pycache__/views.cpython-310.pyc b/app_env/Lib/site-packages/django/contrib/syndication/__pycache__/views.cpython-310.pyc
new file mode 100644
index 00000000..69cbaa87
Binary files /dev/null and b/app_env/Lib/site-packages/django/contrib/syndication/__pycache__/views.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/contrib/syndication/apps.py b/app_env/Lib/site-packages/django/contrib/syndication/apps.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/syndication/apps.py
rename to app_env/Lib/site-packages/django/contrib/syndication/apps.py
diff --git a/venv/Lib/site-packages/django/contrib/syndication/views.py b/app_env/Lib/site-packages/django/contrib/syndication/views.py
similarity index 100%
rename from venv/Lib/site-packages/django/contrib/syndication/views.py
rename to app_env/Lib/site-packages/django/contrib/syndication/views.py
diff --git a/venv/Lib/site-packages/django/core/__init__.py b/app_env/Lib/site-packages/django/core/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/__init__.py
rename to app_env/Lib/site-packages/django/core/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7de4936f
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/__pycache__/asgi.cpython-310.pyc b/app_env/Lib/site-packages/django/core/__pycache__/asgi.cpython-310.pyc
new file mode 100644
index 00000000..59a314b0
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/__pycache__/asgi.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/django/core/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..712466ed
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/__pycache__/paginator.cpython-310.pyc b/app_env/Lib/site-packages/django/core/__pycache__/paginator.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/django/core/__pycache__/paginator.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/__pycache__/paginator.cpython-310.pyc
index 1284729b..d84e5a8a 100644
Binary files a/venv/Lib/site-packages/django/core/__pycache__/paginator.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/__pycache__/paginator.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/__pycache__/signals.cpython-310.pyc b/app_env/Lib/site-packages/django/core/__pycache__/signals.cpython-310.pyc
new file mode 100644
index 00000000..4fc3b0f9
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/__pycache__/signals.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/__pycache__/signing.cpython-310.pyc b/app_env/Lib/site-packages/django/core/__pycache__/signing.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/core/__pycache__/signing.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/__pycache__/signing.cpython-310.pyc
index 6ec2f7b2..858020f1 100644
Binary files a/venv/Lib/site-packages/django/core/__pycache__/signing.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/__pycache__/signing.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/__pycache__/validators.cpython-310.pyc b/app_env/Lib/site-packages/django/core/__pycache__/validators.cpython-310.pyc
new file mode 100644
index 00000000..0fa6c3ab
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/__pycache__/validators.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/__pycache__/wsgi.cpython-310.pyc b/app_env/Lib/site-packages/django/core/__pycache__/wsgi.cpython-310.pyc
new file mode 100644
index 00000000..8014559a
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/__pycache__/wsgi.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/asgi.py b/app_env/Lib/site-packages/django/core/asgi.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/asgi.py
rename to app_env/Lib/site-packages/django/core/asgi.py
diff --git a/venv/Lib/site-packages/django/core/cache/__init__.py b/app_env/Lib/site-packages/django/core/cache/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/cache/__init__.py
rename to app_env/Lib/site-packages/django/core/cache/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/cache/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/cache/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b06192e8
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/cache/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/cache/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/core/cache/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..a45615c3
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/cache/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/cache/backends/__init__.py b/app_env/Lib/site-packages/django/core/cache/backends/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/cache/backends/__init__.py
rename to app_env/Lib/site-packages/django/core/cache/backends/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8e5e4a28
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..d5318f2e
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/db.cpython-310.pyc b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/db.cpython-310.pyc
new file mode 100644
index 00000000..fcfc0959
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/db.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/dummy.cpython-310.pyc b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/dummy.cpython-310.pyc
new file mode 100644
index 00000000..bb5696e8
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/dummy.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/filebased.cpython-310.pyc b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/filebased.cpython-310.pyc
new file mode 100644
index 00000000..0d091caf
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/filebased.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/locmem.cpython-310.pyc b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/locmem.cpython-310.pyc
new file mode 100644
index 00000000..3bad667d
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/locmem.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/memcached.cpython-310.pyc b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/memcached.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/core/cache/backends/__pycache__/memcached.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/cache/backends/__pycache__/memcached.cpython-310.pyc
index ce51b210..7080b368 100644
Binary files a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/memcached.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/memcached.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/redis.cpython-310.pyc b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/redis.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/core/cache/backends/__pycache__/redis.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/cache/backends/__pycache__/redis.cpython-310.pyc
index a410a994..2626be25 100644
Binary files a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/redis.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/cache/backends/__pycache__/redis.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/cache/backends/base.py b/app_env/Lib/site-packages/django/core/cache/backends/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/cache/backends/base.py
rename to app_env/Lib/site-packages/django/core/cache/backends/base.py
diff --git a/venv/Lib/site-packages/django/core/cache/backends/db.py b/app_env/Lib/site-packages/django/core/cache/backends/db.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/cache/backends/db.py
rename to app_env/Lib/site-packages/django/core/cache/backends/db.py
diff --git a/venv/Lib/site-packages/django/core/cache/backends/dummy.py b/app_env/Lib/site-packages/django/core/cache/backends/dummy.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/cache/backends/dummy.py
rename to app_env/Lib/site-packages/django/core/cache/backends/dummy.py
diff --git a/venv/Lib/site-packages/django/core/cache/backends/filebased.py b/app_env/Lib/site-packages/django/core/cache/backends/filebased.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/cache/backends/filebased.py
rename to app_env/Lib/site-packages/django/core/cache/backends/filebased.py
diff --git a/venv/Lib/site-packages/django/core/cache/backends/locmem.py b/app_env/Lib/site-packages/django/core/cache/backends/locmem.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/cache/backends/locmem.py
rename to app_env/Lib/site-packages/django/core/cache/backends/locmem.py
diff --git a/venv/Lib/site-packages/django/core/cache/backends/memcached.py b/app_env/Lib/site-packages/django/core/cache/backends/memcached.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/cache/backends/memcached.py
rename to app_env/Lib/site-packages/django/core/cache/backends/memcached.py
diff --git a/venv/Lib/site-packages/django/core/cache/backends/redis.py b/app_env/Lib/site-packages/django/core/cache/backends/redis.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/cache/backends/redis.py
rename to app_env/Lib/site-packages/django/core/cache/backends/redis.py
diff --git a/venv/Lib/site-packages/django/core/cache/utils.py b/app_env/Lib/site-packages/django/core/cache/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/cache/utils.py
rename to app_env/Lib/site-packages/django/core/cache/utils.py
diff --git a/venv/Lib/site-packages/django/core/checks/__init__.py b/app_env/Lib/site-packages/django/core/checks/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/__init__.py
rename to app_env/Lib/site-packages/django/core/checks/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/checks/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..45a82f34
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/checks/__pycache__/async_checks.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/async_checks.cpython-310.pyc
new file mode 100644
index 00000000..a683f89e
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/__pycache__/async_checks.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/caches.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/caches.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/django/core/checks/__pycache__/caches.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/checks/__pycache__/caches.cpython-310.pyc
index 23296bb6..7f46237e 100644
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/caches.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/checks/__pycache__/caches.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/checks/__pycache__/database.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/database.cpython-310.pyc
new file mode 100644
index 00000000..1c31a739
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/__pycache__/database.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/checks/__pycache__/files.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/files.cpython-310.pyc
new file mode 100644
index 00000000..f3d1a602
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/__pycache__/files.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/messages.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/messages.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/django/core/checks/__pycache__/messages.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/checks/__pycache__/messages.cpython-310.pyc
index 19b8e7d6..ac3e2ffd 100644
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/messages.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/checks/__pycache__/messages.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/model_checks.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/model_checks.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/core/checks/__pycache__/model_checks.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/checks/__pycache__/model_checks.cpython-310.pyc
index 3a06b291..b3a61032 100644
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/model_checks.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/checks/__pycache__/model_checks.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/checks/__pycache__/registry.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/registry.cpython-310.pyc
new file mode 100644
index 00000000..850561ec
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/__pycache__/registry.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/checks/__pycache__/templates.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/templates.cpython-310.pyc
new file mode 100644
index 00000000..2273add9
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/__pycache__/templates.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/translation.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/translation.cpython-310.pyc
similarity index 79%
rename from venv/Lib/site-packages/django/core/checks/__pycache__/translation.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/checks/__pycache__/translation.cpython-310.pyc
index 6f1ecdb3..5eb5febb 100644
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/translation.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/checks/__pycache__/translation.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/checks/__pycache__/urls.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/__pycache__/urls.cpython-310.pyc
new file mode 100644
index 00000000..454c393a
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/__pycache__/urls.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/checks/async_checks.py b/app_env/Lib/site-packages/django/core/checks/async_checks.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/async_checks.py
rename to app_env/Lib/site-packages/django/core/checks/async_checks.py
diff --git a/venv/Lib/site-packages/django/core/checks/caches.py b/app_env/Lib/site-packages/django/core/checks/caches.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/caches.py
rename to app_env/Lib/site-packages/django/core/checks/caches.py
diff --git a/venv/Lib/site-packages/django/core/checks/compatibility/__init__.py b/app_env/Lib/site-packages/django/core/checks/compatibility/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/compatibility/__init__.py
rename to app_env/Lib/site-packages/django/core/checks/compatibility/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/checks/compatibility/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/compatibility/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8a782e28
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/compatibility/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/checks/compatibility/__pycache__/django_4_0.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/compatibility/__pycache__/django_4_0.cpython-310.pyc
new file mode 100644
index 00000000..28b5ce51
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/compatibility/__pycache__/django_4_0.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/checks/compatibility/django_4_0.py b/app_env/Lib/site-packages/django/core/checks/compatibility/django_4_0.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/compatibility/django_4_0.py
rename to app_env/Lib/site-packages/django/core/checks/compatibility/django_4_0.py
diff --git a/venv/Lib/site-packages/django/core/checks/database.py b/app_env/Lib/site-packages/django/core/checks/database.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/database.py
rename to app_env/Lib/site-packages/django/core/checks/database.py
diff --git a/venv/Lib/site-packages/django/core/checks/files.py b/app_env/Lib/site-packages/django/core/checks/files.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/files.py
rename to app_env/Lib/site-packages/django/core/checks/files.py
diff --git a/venv/Lib/site-packages/django/core/checks/messages.py b/app_env/Lib/site-packages/django/core/checks/messages.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/messages.py
rename to app_env/Lib/site-packages/django/core/checks/messages.py
diff --git a/venv/Lib/site-packages/django/core/checks/model_checks.py b/app_env/Lib/site-packages/django/core/checks/model_checks.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/model_checks.py
rename to app_env/Lib/site-packages/django/core/checks/model_checks.py
diff --git a/venv/Lib/site-packages/django/core/checks/registry.py b/app_env/Lib/site-packages/django/core/checks/registry.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/registry.py
rename to app_env/Lib/site-packages/django/core/checks/registry.py
diff --git a/venv/Lib/site-packages/django/core/checks/security/__init__.py b/app_env/Lib/site-packages/django/core/checks/security/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/security/__init__.py
rename to app_env/Lib/site-packages/django/core/checks/security/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/checks/security/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/security/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..20c42f25
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/security/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/checks/security/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/security/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..28d8f978
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/security/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/checks/security/__pycache__/csrf.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/security/__pycache__/csrf.cpython-310.pyc
new file mode 100644
index 00000000..24729ffd
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/security/__pycache__/csrf.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/checks/security/__pycache__/sessions.cpython-310.pyc b/app_env/Lib/site-packages/django/core/checks/security/__pycache__/sessions.cpython-310.pyc
new file mode 100644
index 00000000..0bf4559f
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/checks/security/__pycache__/sessions.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/checks/security/base.py b/app_env/Lib/site-packages/django/core/checks/security/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/security/base.py
rename to app_env/Lib/site-packages/django/core/checks/security/base.py
diff --git a/venv/Lib/site-packages/django/core/checks/security/csrf.py b/app_env/Lib/site-packages/django/core/checks/security/csrf.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/security/csrf.py
rename to app_env/Lib/site-packages/django/core/checks/security/csrf.py
diff --git a/venv/Lib/site-packages/django/core/checks/security/sessions.py b/app_env/Lib/site-packages/django/core/checks/security/sessions.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/security/sessions.py
rename to app_env/Lib/site-packages/django/core/checks/security/sessions.py
diff --git a/venv/Lib/site-packages/django/core/checks/templates.py b/app_env/Lib/site-packages/django/core/checks/templates.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/templates.py
rename to app_env/Lib/site-packages/django/core/checks/templates.py
diff --git a/venv/Lib/site-packages/django/core/checks/translation.py b/app_env/Lib/site-packages/django/core/checks/translation.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/translation.py
rename to app_env/Lib/site-packages/django/core/checks/translation.py
diff --git a/venv/Lib/site-packages/django/core/checks/urls.py b/app_env/Lib/site-packages/django/core/checks/urls.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/checks/urls.py
rename to app_env/Lib/site-packages/django/core/checks/urls.py
diff --git a/venv/Lib/site-packages/django/core/exceptions.py b/app_env/Lib/site-packages/django/core/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/exceptions.py
rename to app_env/Lib/site-packages/django/core/exceptions.py
diff --git a/venv/Lib/site-packages/django/core/files/__init__.py b/app_env/Lib/site-packages/django/core/files/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/files/__init__.py
rename to app_env/Lib/site-packages/django/core/files/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/files/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/files/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..0803b0d2
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/files/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/files/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/core/files/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..e693bf45
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/files/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/files/__pycache__/images.cpython-310.pyc b/app_env/Lib/site-packages/django/core/files/__pycache__/images.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/django/core/files/__pycache__/images.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/files/__pycache__/images.cpython-310.pyc
index 3d7ff588..f60336d7 100644
Binary files a/venv/Lib/site-packages/django/core/files/__pycache__/images.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/files/__pycache__/images.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/files/__pycache__/locks.cpython-310.pyc b/app_env/Lib/site-packages/django/core/files/__pycache__/locks.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/django/core/files/__pycache__/locks.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/files/__pycache__/locks.cpython-310.pyc
index 026dbaa2..b84dc28a 100644
Binary files a/venv/Lib/site-packages/django/core/files/__pycache__/locks.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/files/__pycache__/locks.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/files/__pycache__/move.cpython-310.pyc b/app_env/Lib/site-packages/django/core/files/__pycache__/move.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/django/core/files/__pycache__/move.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/files/__pycache__/move.cpython-310.pyc
index 8a96a0f4..b8a1b2eb 100644
Binary files a/venv/Lib/site-packages/django/core/files/__pycache__/move.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/files/__pycache__/move.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/files/__pycache__/storage.cpython-310.pyc b/app_env/Lib/site-packages/django/core/files/__pycache__/storage.cpython-310.pyc
new file mode 100644
index 00000000..613a202e
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/files/__pycache__/storage.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/files/__pycache__/temp.cpython-310.pyc b/app_env/Lib/site-packages/django/core/files/__pycache__/temp.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/core/files/__pycache__/temp.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/files/__pycache__/temp.cpython-310.pyc
index fc63fdcc..9e569b14 100644
Binary files a/venv/Lib/site-packages/django/core/files/__pycache__/temp.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/files/__pycache__/temp.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/files/__pycache__/uploadedfile.cpython-310.pyc b/app_env/Lib/site-packages/django/core/files/__pycache__/uploadedfile.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/core/files/__pycache__/uploadedfile.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/files/__pycache__/uploadedfile.cpython-310.pyc
index 0d4a7aab..16c1745c 100644
Binary files a/venv/Lib/site-packages/django/core/files/__pycache__/uploadedfile.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/files/__pycache__/uploadedfile.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/files/__pycache__/uploadhandler.cpython-310.pyc b/app_env/Lib/site-packages/django/core/files/__pycache__/uploadhandler.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/core/files/__pycache__/uploadhandler.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/files/__pycache__/uploadhandler.cpython-310.pyc
index 0b155948..1f328278 100644
Binary files a/venv/Lib/site-packages/django/core/files/__pycache__/uploadhandler.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/files/__pycache__/uploadhandler.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/files/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/core/files/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..c6ec1700
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/files/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/files/base.py b/app_env/Lib/site-packages/django/core/files/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/files/base.py
rename to app_env/Lib/site-packages/django/core/files/base.py
diff --git a/venv/Lib/site-packages/django/core/files/images.py b/app_env/Lib/site-packages/django/core/files/images.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/files/images.py
rename to app_env/Lib/site-packages/django/core/files/images.py
diff --git a/venv/Lib/site-packages/django/core/files/locks.py b/app_env/Lib/site-packages/django/core/files/locks.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/files/locks.py
rename to app_env/Lib/site-packages/django/core/files/locks.py
diff --git a/venv/Lib/site-packages/django/core/files/move.py b/app_env/Lib/site-packages/django/core/files/move.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/files/move.py
rename to app_env/Lib/site-packages/django/core/files/move.py
diff --git a/venv/Lib/site-packages/django/core/files/storage.py b/app_env/Lib/site-packages/django/core/files/storage.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/files/storage.py
rename to app_env/Lib/site-packages/django/core/files/storage.py
diff --git a/venv/Lib/site-packages/django/core/files/temp.py b/app_env/Lib/site-packages/django/core/files/temp.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/files/temp.py
rename to app_env/Lib/site-packages/django/core/files/temp.py
diff --git a/venv/Lib/site-packages/django/core/files/uploadedfile.py b/app_env/Lib/site-packages/django/core/files/uploadedfile.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/files/uploadedfile.py
rename to app_env/Lib/site-packages/django/core/files/uploadedfile.py
diff --git a/venv/Lib/site-packages/django/core/files/uploadhandler.py b/app_env/Lib/site-packages/django/core/files/uploadhandler.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/files/uploadhandler.py
rename to app_env/Lib/site-packages/django/core/files/uploadhandler.py
diff --git a/venv/Lib/site-packages/django/core/files/utils.py b/app_env/Lib/site-packages/django/core/files/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/files/utils.py
rename to app_env/Lib/site-packages/django/core/files/utils.py
diff --git a/venv/Lib/site-packages/django/core/handlers/__init__.py b/app_env/Lib/site-packages/django/core/handlers/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/handlers/__init__.py
rename to app_env/Lib/site-packages/django/core/handlers/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/handlers/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/handlers/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..20afd5da
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/handlers/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/handlers/__pycache__/asgi.cpython-310.pyc b/app_env/Lib/site-packages/django/core/handlers/__pycache__/asgi.cpython-310.pyc
new file mode 100644
index 00000000..8876c16d
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/handlers/__pycache__/asgi.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/handlers/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/core/handlers/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..f9b411f7
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/handlers/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/handlers/__pycache__/exception.cpython-310.pyc b/app_env/Lib/site-packages/django/core/handlers/__pycache__/exception.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/django/core/handlers/__pycache__/exception.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/handlers/__pycache__/exception.cpython-310.pyc
index 8435f2cf..96d6e44f 100644
Binary files a/venv/Lib/site-packages/django/core/handlers/__pycache__/exception.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/handlers/__pycache__/exception.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/handlers/__pycache__/wsgi.cpython-310.pyc b/app_env/Lib/site-packages/django/core/handlers/__pycache__/wsgi.cpython-310.pyc
new file mode 100644
index 00000000..79085186
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/handlers/__pycache__/wsgi.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/handlers/asgi.py b/app_env/Lib/site-packages/django/core/handlers/asgi.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/handlers/asgi.py
rename to app_env/Lib/site-packages/django/core/handlers/asgi.py
diff --git a/venv/Lib/site-packages/django/core/handlers/base.py b/app_env/Lib/site-packages/django/core/handlers/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/handlers/base.py
rename to app_env/Lib/site-packages/django/core/handlers/base.py
diff --git a/venv/Lib/site-packages/django/core/handlers/exception.py b/app_env/Lib/site-packages/django/core/handlers/exception.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/handlers/exception.py
rename to app_env/Lib/site-packages/django/core/handlers/exception.py
diff --git a/venv/Lib/site-packages/django/core/handlers/wsgi.py b/app_env/Lib/site-packages/django/core/handlers/wsgi.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/handlers/wsgi.py
rename to app_env/Lib/site-packages/django/core/handlers/wsgi.py
diff --git a/venv/Lib/site-packages/django/core/mail/__init__.py b/app_env/Lib/site-packages/django/core/mail/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/mail/__init__.py
rename to app_env/Lib/site-packages/django/core/mail/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/mail/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/mail/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ec11dcd0
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/mail/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/mail/__pycache__/message.cpython-310.pyc b/app_env/Lib/site-packages/django/core/mail/__pycache__/message.cpython-310.pyc
new file mode 100644
index 00000000..d86adfad
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/mail/__pycache__/message.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/mail/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/core/mail/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..625d0160
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/mail/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/mail/backends/__init__.py b/app_env/Lib/site-packages/django/core/mail/backends/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/mail/backends/__init__.py
rename to app_env/Lib/site-packages/django/core/mail/backends/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e8a6d3ce
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..2b8a90ba
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/console.cpython-310.pyc b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/console.cpython-310.pyc
new file mode 100644
index 00000000..050321ba
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/console.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/dummy.cpython-310.pyc b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/dummy.cpython-310.pyc
new file mode 100644
index 00000000..ff0ff501
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/dummy.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/filebased.cpython-310.pyc b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/filebased.cpython-310.pyc
new file mode 100644
index 00000000..3c2e1534
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/filebased.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/locmem.cpython-310.pyc b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/locmem.cpython-310.pyc
new file mode 100644
index 00000000..fb206ca7
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/locmem.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/smtp.cpython-310.pyc b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/smtp.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/core/mail/backends/__pycache__/smtp.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/mail/backends/__pycache__/smtp.cpython-310.pyc
index dbd61436..22404b4a 100644
Binary files a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/smtp.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/mail/backends/__pycache__/smtp.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/mail/backends/base.py b/app_env/Lib/site-packages/django/core/mail/backends/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/mail/backends/base.py
rename to app_env/Lib/site-packages/django/core/mail/backends/base.py
diff --git a/venv/Lib/site-packages/django/core/mail/backends/console.py b/app_env/Lib/site-packages/django/core/mail/backends/console.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/mail/backends/console.py
rename to app_env/Lib/site-packages/django/core/mail/backends/console.py
diff --git a/venv/Lib/site-packages/django/core/mail/backends/dummy.py b/app_env/Lib/site-packages/django/core/mail/backends/dummy.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/mail/backends/dummy.py
rename to app_env/Lib/site-packages/django/core/mail/backends/dummy.py
diff --git a/venv/Lib/site-packages/django/core/mail/backends/filebased.py b/app_env/Lib/site-packages/django/core/mail/backends/filebased.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/mail/backends/filebased.py
rename to app_env/Lib/site-packages/django/core/mail/backends/filebased.py
diff --git a/venv/Lib/site-packages/django/core/mail/backends/locmem.py b/app_env/Lib/site-packages/django/core/mail/backends/locmem.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/mail/backends/locmem.py
rename to app_env/Lib/site-packages/django/core/mail/backends/locmem.py
diff --git a/venv/Lib/site-packages/django/core/mail/backends/smtp.py b/app_env/Lib/site-packages/django/core/mail/backends/smtp.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/mail/backends/smtp.py
rename to app_env/Lib/site-packages/django/core/mail/backends/smtp.py
diff --git a/venv/Lib/site-packages/django/core/mail/message.py b/app_env/Lib/site-packages/django/core/mail/message.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/mail/message.py
rename to app_env/Lib/site-packages/django/core/mail/message.py
diff --git a/venv/Lib/site-packages/django/core/mail/utils.py b/app_env/Lib/site-packages/django/core/mail/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/mail/utils.py
rename to app_env/Lib/site-packages/django/core/mail/utils.py
diff --git a/venv/Lib/site-packages/django/core/management/__init__.py b/app_env/Lib/site-packages/django/core/management/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/__init__.py
rename to app_env/Lib/site-packages/django/core/management/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/management/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..89eea25b
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/management/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..0c8df46f
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/management/__pycache__/color.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/__pycache__/color.cpython-310.pyc
new file mode 100644
index 00000000..5e034fce
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/__pycache__/color.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/management/__pycache__/sql.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/__pycache__/sql.cpython-310.pyc
new file mode 100644
index 00000000..0053f023
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/__pycache__/sql.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/management/__pycache__/templates.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/__pycache__/templates.cpython-310.pyc
new file mode 100644
index 00000000..b54d5916
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/__pycache__/templates.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/management/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..137b1ce6
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/base.py b/app_env/Lib/site-packages/django/core/management/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/base.py
rename to app_env/Lib/site-packages/django/core/management/base.py
diff --git a/venv/Lib/site-packages/django/core/management/color.py b/app_env/Lib/site-packages/django/core/management/color.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/color.py
rename to app_env/Lib/site-packages/django/core/management/color.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/__init__.py b/app_env/Lib/site-packages/django/core/management/commands/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/__init__.py
rename to app_env/Lib/site-packages/django/core/management/commands/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/management/commands/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b2de83a6
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/management/commands/__pycache__/check.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/check.cpython-310.pyc
new file mode 100644
index 00000000..f6839b12
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/check.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/compilemessages.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/compilemessages.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/compilemessages.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/compilemessages.cpython-310.pyc
index f416c7d7..eee8cc19 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/compilemessages.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/compilemessages.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/createcachetable.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/createcachetable.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/createcachetable.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/createcachetable.cpython-310.pyc
index c382f7c9..47e77ec4 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/createcachetable.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/createcachetable.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/dbshell.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/dbshell.cpython-310.pyc
similarity index 79%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/dbshell.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/dbshell.cpython-310.pyc
index 6d957066..5530d117 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/dbshell.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/dbshell.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/diffsettings.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/diffsettings.cpython-310.pyc
similarity index 83%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/diffsettings.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/diffsettings.cpython-310.pyc
index f1378a8d..ba449453 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/diffsettings.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/diffsettings.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/dumpdata.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/dumpdata.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/dumpdata.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/dumpdata.cpython-310.pyc
index 57e0d7e1..a384585c 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/dumpdata.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/dumpdata.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/flush.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/flush.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/flush.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/flush.cpython-310.pyc
index 8c8e17a4..b9b81be3 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/flush.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/flush.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/management/commands/__pycache__/inspectdb.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/inspectdb.cpython-310.pyc
new file mode 100644
index 00000000..75c4e880
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/inspectdb.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/loaddata.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/loaddata.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/loaddata.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/loaddata.cpython-310.pyc
index 2580c8c4..2f9a8f2c 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/loaddata.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/loaddata.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/makemessages.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/makemessages.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/makemessages.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/makemessages.cpython-310.pyc
index 5e7efce8..b362b1f0 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/makemessages.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/makemessages.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/makemigrations.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/makemigrations.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/makemigrations.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/makemigrations.cpython-310.pyc
index 2b03ffa5..e54f94b8 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/makemigrations.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/makemigrations.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/migrate.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/migrate.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/migrate.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/migrate.cpython-310.pyc
index a8d02189..99784e0a 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/migrate.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/migrate.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/optimizemigration.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/optimizemigration.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/optimizemigration.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/optimizemigration.cpython-310.pyc
index 19caa213..d0935003 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/optimizemigration.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/optimizemigration.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/management/commands/__pycache__/runserver.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/runserver.cpython-310.pyc
new file mode 100644
index 00000000..1073f7d4
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/runserver.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/sendtestemail.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/sendtestemail.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/sendtestemail.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/sendtestemail.cpython-310.pyc
index 7cb3ecae..b1e28246 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/sendtestemail.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/sendtestemail.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/shell.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/shell.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/shell.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/shell.cpython-310.pyc
index 9d08f02d..52e8b231 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/shell.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/shell.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/showmigrations.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/showmigrations.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/showmigrations.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/showmigrations.cpython-310.pyc
index be9427b8..cd4fd33f 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/showmigrations.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/showmigrations.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/sqlflush.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/sqlflush.cpython-310.pyc
similarity index 80%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/sqlflush.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/sqlflush.cpython-310.pyc
index dda67f18..5c94d572 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/sqlflush.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/sqlflush.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/sqlmigrate.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/sqlmigrate.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/sqlmigrate.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/sqlmigrate.cpython-310.pyc
index b0ecf806..f6873883 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/sqlmigrate.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/sqlmigrate.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/sqlsequencereset.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/sqlsequencereset.cpython-310.pyc
similarity index 79%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/sqlsequencereset.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/sqlsequencereset.cpython-310.pyc
index 6f37b2a3..b8fc2aeb 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/sqlsequencereset.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/sqlsequencereset.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/squashmigrations.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/squashmigrations.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/squashmigrations.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/squashmigrations.cpython-310.pyc
index 40610039..b86ed3d5 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/squashmigrations.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/squashmigrations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/management/commands/__pycache__/startapp.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/startapp.cpython-310.pyc
new file mode 100644
index 00000000..be641714
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/startapp.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/startproject.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/startproject.cpython-310.pyc
similarity index 75%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/startproject.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/startproject.cpython-310.pyc
index 296af7b7..d24ed6d0 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/startproject.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/startproject.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/management/commands/__pycache__/test.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/test.cpython-310.pyc
new file mode 100644
index 00000000..704aeb0f
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/test.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/testserver.cpython-310.pyc b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/testserver.cpython-310.pyc
similarity index 83%
rename from venv/Lib/site-packages/django/core/management/commands/__pycache__/testserver.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/management/commands/__pycache__/testserver.cpython-310.pyc
index a4eb66b1..a0d7abdb 100644
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/testserver.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/management/commands/__pycache__/testserver.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/check.py b/app_env/Lib/site-packages/django/core/management/commands/check.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/check.py
rename to app_env/Lib/site-packages/django/core/management/commands/check.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/compilemessages.py b/app_env/Lib/site-packages/django/core/management/commands/compilemessages.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/compilemessages.py
rename to app_env/Lib/site-packages/django/core/management/commands/compilemessages.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/createcachetable.py b/app_env/Lib/site-packages/django/core/management/commands/createcachetable.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/createcachetable.py
rename to app_env/Lib/site-packages/django/core/management/commands/createcachetable.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/dbshell.py b/app_env/Lib/site-packages/django/core/management/commands/dbshell.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/dbshell.py
rename to app_env/Lib/site-packages/django/core/management/commands/dbshell.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/diffsettings.py b/app_env/Lib/site-packages/django/core/management/commands/diffsettings.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/diffsettings.py
rename to app_env/Lib/site-packages/django/core/management/commands/diffsettings.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/dumpdata.py b/app_env/Lib/site-packages/django/core/management/commands/dumpdata.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/dumpdata.py
rename to app_env/Lib/site-packages/django/core/management/commands/dumpdata.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/flush.py b/app_env/Lib/site-packages/django/core/management/commands/flush.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/flush.py
rename to app_env/Lib/site-packages/django/core/management/commands/flush.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/inspectdb.py b/app_env/Lib/site-packages/django/core/management/commands/inspectdb.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/inspectdb.py
rename to app_env/Lib/site-packages/django/core/management/commands/inspectdb.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/loaddata.py b/app_env/Lib/site-packages/django/core/management/commands/loaddata.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/loaddata.py
rename to app_env/Lib/site-packages/django/core/management/commands/loaddata.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/makemessages.py b/app_env/Lib/site-packages/django/core/management/commands/makemessages.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/makemessages.py
rename to app_env/Lib/site-packages/django/core/management/commands/makemessages.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/makemigrations.py b/app_env/Lib/site-packages/django/core/management/commands/makemigrations.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/makemigrations.py
rename to app_env/Lib/site-packages/django/core/management/commands/makemigrations.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/migrate.py b/app_env/Lib/site-packages/django/core/management/commands/migrate.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/migrate.py
rename to app_env/Lib/site-packages/django/core/management/commands/migrate.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/optimizemigration.py b/app_env/Lib/site-packages/django/core/management/commands/optimizemigration.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/optimizemigration.py
rename to app_env/Lib/site-packages/django/core/management/commands/optimizemigration.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/runserver.py b/app_env/Lib/site-packages/django/core/management/commands/runserver.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/runserver.py
rename to app_env/Lib/site-packages/django/core/management/commands/runserver.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/sendtestemail.py b/app_env/Lib/site-packages/django/core/management/commands/sendtestemail.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/sendtestemail.py
rename to app_env/Lib/site-packages/django/core/management/commands/sendtestemail.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/shell.py b/app_env/Lib/site-packages/django/core/management/commands/shell.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/shell.py
rename to app_env/Lib/site-packages/django/core/management/commands/shell.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/showmigrations.py b/app_env/Lib/site-packages/django/core/management/commands/showmigrations.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/showmigrations.py
rename to app_env/Lib/site-packages/django/core/management/commands/showmigrations.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/sqlflush.py b/app_env/Lib/site-packages/django/core/management/commands/sqlflush.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/sqlflush.py
rename to app_env/Lib/site-packages/django/core/management/commands/sqlflush.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/sqlmigrate.py b/app_env/Lib/site-packages/django/core/management/commands/sqlmigrate.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/sqlmigrate.py
rename to app_env/Lib/site-packages/django/core/management/commands/sqlmigrate.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/sqlsequencereset.py b/app_env/Lib/site-packages/django/core/management/commands/sqlsequencereset.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/sqlsequencereset.py
rename to app_env/Lib/site-packages/django/core/management/commands/sqlsequencereset.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/squashmigrations.py b/app_env/Lib/site-packages/django/core/management/commands/squashmigrations.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/squashmigrations.py
rename to app_env/Lib/site-packages/django/core/management/commands/squashmigrations.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/startapp.py b/app_env/Lib/site-packages/django/core/management/commands/startapp.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/startapp.py
rename to app_env/Lib/site-packages/django/core/management/commands/startapp.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/startproject.py b/app_env/Lib/site-packages/django/core/management/commands/startproject.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/startproject.py
rename to app_env/Lib/site-packages/django/core/management/commands/startproject.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/test.py b/app_env/Lib/site-packages/django/core/management/commands/test.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/test.py
rename to app_env/Lib/site-packages/django/core/management/commands/test.py
diff --git a/venv/Lib/site-packages/django/core/management/commands/testserver.py b/app_env/Lib/site-packages/django/core/management/commands/testserver.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/commands/testserver.py
rename to app_env/Lib/site-packages/django/core/management/commands/testserver.py
diff --git a/venv/Lib/site-packages/django/core/management/sql.py b/app_env/Lib/site-packages/django/core/management/sql.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/sql.py
rename to app_env/Lib/site-packages/django/core/management/sql.py
diff --git a/venv/Lib/site-packages/django/core/management/templates.py b/app_env/Lib/site-packages/django/core/management/templates.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/templates.py
rename to app_env/Lib/site-packages/django/core/management/templates.py
diff --git a/venv/Lib/site-packages/django/core/management/utils.py b/app_env/Lib/site-packages/django/core/management/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/management/utils.py
rename to app_env/Lib/site-packages/django/core/management/utils.py
diff --git a/venv/Lib/site-packages/django/core/paginator.py b/app_env/Lib/site-packages/django/core/paginator.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/paginator.py
rename to app_env/Lib/site-packages/django/core/paginator.py
diff --git a/venv/Lib/site-packages/django/core/serializers/__init__.py b/app_env/Lib/site-packages/django/core/serializers/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/serializers/__init__.py
rename to app_env/Lib/site-packages/django/core/serializers/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/serializers/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/serializers/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b4d7b9bc
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/serializers/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/serializers/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/core/serializers/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..08d45cb4
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/serializers/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/serializers/__pycache__/json.cpython-310.pyc b/app_env/Lib/site-packages/django/core/serializers/__pycache__/json.cpython-310.pyc
new file mode 100644
index 00000000..88df4b2d
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/serializers/__pycache__/json.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/serializers/__pycache__/jsonl.cpython-310.pyc b/app_env/Lib/site-packages/django/core/serializers/__pycache__/jsonl.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/django/core/serializers/__pycache__/jsonl.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/serializers/__pycache__/jsonl.cpython-310.pyc
index c0ec67dd..fca6c8e1 100644
Binary files a/venv/Lib/site-packages/django/core/serializers/__pycache__/jsonl.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/serializers/__pycache__/jsonl.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/core/serializers/__pycache__/python.cpython-310.pyc b/app_env/Lib/site-packages/django/core/serializers/__pycache__/python.cpython-310.pyc
new file mode 100644
index 00000000..b39634e8
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/serializers/__pycache__/python.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/serializers/__pycache__/pyyaml.cpython-310.pyc b/app_env/Lib/site-packages/django/core/serializers/__pycache__/pyyaml.cpython-310.pyc
similarity index 82%
rename from venv/Lib/site-packages/django/core/serializers/__pycache__/pyyaml.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/serializers/__pycache__/pyyaml.cpython-310.pyc
index 8813647a..1029f5f5 100644
Binary files a/venv/Lib/site-packages/django/core/serializers/__pycache__/pyyaml.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/serializers/__pycache__/pyyaml.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/serializers/__pycache__/xml_serializer.cpython-310.pyc b/app_env/Lib/site-packages/django/core/serializers/__pycache__/xml_serializer.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/core/serializers/__pycache__/xml_serializer.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/serializers/__pycache__/xml_serializer.cpython-310.pyc
index 057bc726..5ceed1b4 100644
Binary files a/venv/Lib/site-packages/django/core/serializers/__pycache__/xml_serializer.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/serializers/__pycache__/xml_serializer.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/serializers/base.py b/app_env/Lib/site-packages/django/core/serializers/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/serializers/base.py
rename to app_env/Lib/site-packages/django/core/serializers/base.py
diff --git a/venv/Lib/site-packages/django/core/serializers/json.py b/app_env/Lib/site-packages/django/core/serializers/json.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/serializers/json.py
rename to app_env/Lib/site-packages/django/core/serializers/json.py
diff --git a/venv/Lib/site-packages/django/core/serializers/jsonl.py b/app_env/Lib/site-packages/django/core/serializers/jsonl.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/serializers/jsonl.py
rename to app_env/Lib/site-packages/django/core/serializers/jsonl.py
diff --git a/venv/Lib/site-packages/django/core/serializers/python.py b/app_env/Lib/site-packages/django/core/serializers/python.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/serializers/python.py
rename to app_env/Lib/site-packages/django/core/serializers/python.py
diff --git a/venv/Lib/site-packages/django/core/serializers/pyyaml.py b/app_env/Lib/site-packages/django/core/serializers/pyyaml.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/serializers/pyyaml.py
rename to app_env/Lib/site-packages/django/core/serializers/pyyaml.py
diff --git a/venv/Lib/site-packages/django/core/serializers/xml_serializer.py b/app_env/Lib/site-packages/django/core/serializers/xml_serializer.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/serializers/xml_serializer.py
rename to app_env/Lib/site-packages/django/core/serializers/xml_serializer.py
diff --git a/venv/Lib/site-packages/django/core/servers/__init__.py b/app_env/Lib/site-packages/django/core/servers/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/servers/__init__.py
rename to app_env/Lib/site-packages/django/core/servers/__init__.py
diff --git a/app_env/Lib/site-packages/django/core/servers/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/core/servers/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c2dcfdcf
Binary files /dev/null and b/app_env/Lib/site-packages/django/core/servers/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/servers/__pycache__/basehttp.cpython-310.pyc b/app_env/Lib/site-packages/django/core/servers/__pycache__/basehttp.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/core/servers/__pycache__/basehttp.cpython-310.pyc
rename to app_env/Lib/site-packages/django/core/servers/__pycache__/basehttp.cpython-310.pyc
index e78b0439..715ce5f5 100644
Binary files a/venv/Lib/site-packages/django/core/servers/__pycache__/basehttp.cpython-310.pyc and b/app_env/Lib/site-packages/django/core/servers/__pycache__/basehttp.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/core/servers/basehttp.py b/app_env/Lib/site-packages/django/core/servers/basehttp.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/servers/basehttp.py
rename to app_env/Lib/site-packages/django/core/servers/basehttp.py
diff --git a/venv/Lib/site-packages/django/core/signals.py b/app_env/Lib/site-packages/django/core/signals.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/signals.py
rename to app_env/Lib/site-packages/django/core/signals.py
diff --git a/venv/Lib/site-packages/django/core/signing.py b/app_env/Lib/site-packages/django/core/signing.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/signing.py
rename to app_env/Lib/site-packages/django/core/signing.py
diff --git a/venv/Lib/site-packages/django/core/validators.py b/app_env/Lib/site-packages/django/core/validators.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/validators.py
rename to app_env/Lib/site-packages/django/core/validators.py
diff --git a/venv/Lib/site-packages/django/core/wsgi.py b/app_env/Lib/site-packages/django/core/wsgi.py
similarity index 100%
rename from venv/Lib/site-packages/django/core/wsgi.py
rename to app_env/Lib/site-packages/django/core/wsgi.py
diff --git a/venv/Lib/site-packages/django/db/__init__.py b/app_env/Lib/site-packages/django/db/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/__init__.py
rename to app_env/Lib/site-packages/django/db/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..5e8d5aac
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/__pycache__/transaction.cpython-310.pyc b/app_env/Lib/site-packages/django/db/__pycache__/transaction.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/db/__pycache__/transaction.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/__pycache__/transaction.cpython-310.pyc
index c9b15521..d509778f 100644
Binary files a/venv/Lib/site-packages/django/db/__pycache__/transaction.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/__pycache__/transaction.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/db/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..263120d1
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/backends/__init__.py b/app_env/Lib/site-packages/django/db/backends/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/__init__.py
rename to app_env/Lib/site-packages/django/db/backends/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/backends/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ad11e9fb
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/backends/__pycache__/ddl_references.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/__pycache__/ddl_references.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/db/backends/__pycache__/ddl_references.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/backends/__pycache__/ddl_references.cpython-310.pyc
index 23fb56c1..7e5e0328 100644
Binary files a/venv/Lib/site-packages/django/db/backends/__pycache__/ddl_references.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/backends/__pycache__/ddl_references.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/__pycache__/signals.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/__pycache__/signals.cpython-310.pyc
new file mode 100644
index 00000000..e98264c4
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/__pycache__/signals.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..f61c133e
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/__init__.py b/app_env/Lib/site-packages/django/db/backends/base/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/base/__init__.py
rename to app_env/Lib/site-packages/django/db/backends/base/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/backends/base/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..33cf0791
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/base/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..29ed9fc1
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/base/__pycache__/client.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/client.cpython-310.pyc
new file mode 100644
index 00000000..994eed3f
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/client.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/base/__pycache__/creation.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/creation.cpython-310.pyc
new file mode 100644
index 00000000..bd1fe2be
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/creation.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/base/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..50d4ac5b
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/features.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/base/__pycache__/introspection.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/introspection.cpython-310.pyc
new file mode 100644
index 00000000..a4d8bb9a
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/introspection.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/base/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..7f6992a6
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/operations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/base/__pycache__/schema.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/schema.cpython-310.pyc
new file mode 100644
index 00000000..85fa4ee0
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/schema.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/base/__pycache__/validation.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/validation.cpython-310.pyc
new file mode 100644
index 00000000..3824d092
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/base/__pycache__/validation.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/base.py b/app_env/Lib/site-packages/django/db/backends/base/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/base/base.py
rename to app_env/Lib/site-packages/django/db/backends/base/base.py
diff --git a/venv/Lib/site-packages/django/db/backends/base/client.py b/app_env/Lib/site-packages/django/db/backends/base/client.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/base/client.py
rename to app_env/Lib/site-packages/django/db/backends/base/client.py
diff --git a/venv/Lib/site-packages/django/db/backends/base/creation.py b/app_env/Lib/site-packages/django/db/backends/base/creation.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/base/creation.py
rename to app_env/Lib/site-packages/django/db/backends/base/creation.py
diff --git a/venv/Lib/site-packages/django/db/backends/base/features.py b/app_env/Lib/site-packages/django/db/backends/base/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/base/features.py
rename to app_env/Lib/site-packages/django/db/backends/base/features.py
diff --git a/venv/Lib/site-packages/django/db/backends/base/introspection.py b/app_env/Lib/site-packages/django/db/backends/base/introspection.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/base/introspection.py
rename to app_env/Lib/site-packages/django/db/backends/base/introspection.py
diff --git a/venv/Lib/site-packages/django/db/backends/base/operations.py b/app_env/Lib/site-packages/django/db/backends/base/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/base/operations.py
rename to app_env/Lib/site-packages/django/db/backends/base/operations.py
diff --git a/venv/Lib/site-packages/django/db/backends/base/schema.py b/app_env/Lib/site-packages/django/db/backends/base/schema.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/base/schema.py
rename to app_env/Lib/site-packages/django/db/backends/base/schema.py
diff --git a/venv/Lib/site-packages/django/db/backends/base/validation.py b/app_env/Lib/site-packages/django/db/backends/base/validation.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/base/validation.py
rename to app_env/Lib/site-packages/django/db/backends/base/validation.py
diff --git a/venv/Lib/site-packages/django/db/backends/ddl_references.py b/app_env/Lib/site-packages/django/db/backends/ddl_references.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/ddl_references.py
rename to app_env/Lib/site-packages/django/db/backends/ddl_references.py
diff --git a/venv/Lib/site-packages/django/db/backends/dummy/__init__.py b/app_env/Lib/site-packages/django/db/backends/dummy/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/dummy/__init__.py
rename to app_env/Lib/site-packages/django/db/backends/dummy/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/backends/dummy/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/dummy/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4a47b238
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/dummy/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/dummy/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/dummy/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..ec04dc12
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/dummy/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/dummy/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/dummy/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..ec47bcb4
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/dummy/__pycache__/features.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/backends/dummy/base.py b/app_env/Lib/site-packages/django/db/backends/dummy/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/dummy/base.py
rename to app_env/Lib/site-packages/django/db/backends/dummy/base.py
diff --git a/venv/Lib/site-packages/django/db/backends/dummy/features.py b/app_env/Lib/site-packages/django/db/backends/dummy/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/dummy/features.py
rename to app_env/Lib/site-packages/django/db/backends/dummy/features.py
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__init__.py b/app_env/Lib/site-packages/django/db/backends/mysql/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/mysql/__init__.py
rename to app_env/Lib/site-packages/django/db/backends/mysql/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..a2c1ff1e
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..8239f87a
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/client.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/client.cpython-310.pyc
new file mode 100644
index 00000000..e986058a
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/client.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/compiler.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/compiler.cpython-310.pyc
new file mode 100644
index 00000000..e54c3f1e
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/compiler.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/creation.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/creation.cpython-310.pyc
new file mode 100644
index 00000000..28ae9306
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/creation.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..968e12a0
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/features.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/introspection.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/introspection.cpython-310.pyc
new file mode 100644
index 00000000..54c595d0
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/introspection.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..c8ee5ae1
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/operations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/schema.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/schema.cpython-310.pyc
new file mode 100644
index 00000000..3faa08d1
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/schema.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/validation.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/validation.cpython-310.pyc
new file mode 100644
index 00000000..a28669c6
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/mysql/__pycache__/validation.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/base.py b/app_env/Lib/site-packages/django/db/backends/mysql/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/mysql/base.py
rename to app_env/Lib/site-packages/django/db/backends/mysql/base.py
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/client.py b/app_env/Lib/site-packages/django/db/backends/mysql/client.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/mysql/client.py
rename to app_env/Lib/site-packages/django/db/backends/mysql/client.py
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/compiler.py b/app_env/Lib/site-packages/django/db/backends/mysql/compiler.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/mysql/compiler.py
rename to app_env/Lib/site-packages/django/db/backends/mysql/compiler.py
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/creation.py b/app_env/Lib/site-packages/django/db/backends/mysql/creation.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/mysql/creation.py
rename to app_env/Lib/site-packages/django/db/backends/mysql/creation.py
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/features.py b/app_env/Lib/site-packages/django/db/backends/mysql/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/mysql/features.py
rename to app_env/Lib/site-packages/django/db/backends/mysql/features.py
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/introspection.py b/app_env/Lib/site-packages/django/db/backends/mysql/introspection.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/mysql/introspection.py
rename to app_env/Lib/site-packages/django/db/backends/mysql/introspection.py
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/operations.py b/app_env/Lib/site-packages/django/db/backends/mysql/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/mysql/operations.py
rename to app_env/Lib/site-packages/django/db/backends/mysql/operations.py
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/schema.py b/app_env/Lib/site-packages/django/db/backends/mysql/schema.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/mysql/schema.py
rename to app_env/Lib/site-packages/django/db/backends/mysql/schema.py
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/validation.py b/app_env/Lib/site-packages/django/db/backends/mysql/validation.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/mysql/validation.py
rename to app_env/Lib/site-packages/django/db/backends/mysql/validation.py
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__init__.py b/app_env/Lib/site-packages/django/db/backends/oracle/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/__init__.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..08d8626e
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..e6b5abee
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/client.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/client.cpython-310.pyc
new file mode 100644
index 00000000..1d8788fb
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/client.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/creation.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/creation.cpython-310.pyc
new file mode 100644
index 00000000..8ce9ecf2
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/creation.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..7b8664f2
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/features.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/functions.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/functions.cpython-310.pyc
new file mode 100644
index 00000000..44e31d00
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/functions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/introspection.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/introspection.cpython-310.pyc
new file mode 100644
index 00000000..ce9af8dc
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/introspection.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..32b1718d
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/operations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/schema.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/schema.cpython-310.pyc
new file mode 100644
index 00000000..4e756ae7
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/schema.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..4589a789
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/validation.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/validation.cpython-310.pyc
new file mode 100644
index 00000000..8984982e
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/oracle/__pycache__/validation.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/base.py b/app_env/Lib/site-packages/django/db/backends/oracle/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/base.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/base.py
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/client.py b/app_env/Lib/site-packages/django/db/backends/oracle/client.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/client.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/client.py
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/creation.py b/app_env/Lib/site-packages/django/db/backends/oracle/creation.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/creation.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/creation.py
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/features.py b/app_env/Lib/site-packages/django/db/backends/oracle/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/features.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/features.py
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/functions.py b/app_env/Lib/site-packages/django/db/backends/oracle/functions.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/functions.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/functions.py
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/introspection.py b/app_env/Lib/site-packages/django/db/backends/oracle/introspection.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/introspection.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/introspection.py
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/operations.py b/app_env/Lib/site-packages/django/db/backends/oracle/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/operations.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/operations.py
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/schema.py b/app_env/Lib/site-packages/django/db/backends/oracle/schema.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/schema.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/schema.py
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/utils.py b/app_env/Lib/site-packages/django/db/backends/oracle/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/utils.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/utils.py
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/validation.py b/app_env/Lib/site-packages/django/db/backends/oracle/validation.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/oracle/validation.py
rename to app_env/Lib/site-packages/django/db/backends/oracle/validation.py
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/__init__.py b/app_env/Lib/site-packages/django/db/backends/postgresql/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/postgresql/__init__.py
rename to app_env/Lib/site-packages/django/db/backends/postgresql/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..085d085e
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..f03dd683
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/client.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/client.cpython-310.pyc
new file mode 100644
index 00000000..8d0aeabb
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/client.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/creation.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/creation.cpython-310.pyc
new file mode 100644
index 00000000..ae95c6e9
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/creation.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..4af56c50
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/features.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/introspection.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/introspection.cpython-310.pyc
new file mode 100644
index 00000000..50132b18
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/introspection.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..99c18b22
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/operations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/schema.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/schema.cpython-310.pyc
new file mode 100644
index 00000000..bbf7edb6
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/postgresql/__pycache__/schema.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/base.py b/app_env/Lib/site-packages/django/db/backends/postgresql/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/postgresql/base.py
rename to app_env/Lib/site-packages/django/db/backends/postgresql/base.py
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/client.py b/app_env/Lib/site-packages/django/db/backends/postgresql/client.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/postgresql/client.py
rename to app_env/Lib/site-packages/django/db/backends/postgresql/client.py
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/creation.py b/app_env/Lib/site-packages/django/db/backends/postgresql/creation.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/postgresql/creation.py
rename to app_env/Lib/site-packages/django/db/backends/postgresql/creation.py
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/features.py b/app_env/Lib/site-packages/django/db/backends/postgresql/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/postgresql/features.py
rename to app_env/Lib/site-packages/django/db/backends/postgresql/features.py
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/introspection.py b/app_env/Lib/site-packages/django/db/backends/postgresql/introspection.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/postgresql/introspection.py
rename to app_env/Lib/site-packages/django/db/backends/postgresql/introspection.py
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/operations.py b/app_env/Lib/site-packages/django/db/backends/postgresql/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/postgresql/operations.py
rename to app_env/Lib/site-packages/django/db/backends/postgresql/operations.py
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/schema.py b/app_env/Lib/site-packages/django/db/backends/postgresql/schema.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/postgresql/schema.py
rename to app_env/Lib/site-packages/django/db/backends/postgresql/schema.py
diff --git a/venv/Lib/site-packages/django/db/backends/signals.py b/app_env/Lib/site-packages/django/db/backends/signals.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/signals.py
rename to app_env/Lib/site-packages/django/db/backends/signals.py
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/__init__.py b/app_env/Lib/site-packages/django/db/backends/sqlite3/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/sqlite3/__init__.py
rename to app_env/Lib/site-packages/django/db/backends/sqlite3/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..90fb73f8
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/_functions.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/_functions.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/_functions.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/_functions.cpython-310.pyc
index e2143943..024c9284 100644
Binary files a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/_functions.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/_functions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..584ec9e3
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/client.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/client.cpython-310.pyc
new file mode 100644
index 00000000..db4ac4b4
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/client.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/creation.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/creation.cpython-310.pyc
new file mode 100644
index 00000000..b43628ee
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/creation.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/features.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/features.cpython-310.pyc
new file mode 100644
index 00000000..6a6e8c3e
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/features.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/introspection.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/introspection.cpython-310.pyc
new file mode 100644
index 00000000..8a1a7a3d
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/introspection.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/operations.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/operations.cpython-310.pyc
new file mode 100644
index 00000000..dde16060
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/operations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/schema.cpython-310.pyc b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/schema.cpython-310.pyc
new file mode 100644
index 00000000..febc70bc
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/backends/sqlite3/__pycache__/schema.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/_functions.py b/app_env/Lib/site-packages/django/db/backends/sqlite3/_functions.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/sqlite3/_functions.py
rename to app_env/Lib/site-packages/django/db/backends/sqlite3/_functions.py
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/base.py b/app_env/Lib/site-packages/django/db/backends/sqlite3/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/sqlite3/base.py
rename to app_env/Lib/site-packages/django/db/backends/sqlite3/base.py
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/client.py b/app_env/Lib/site-packages/django/db/backends/sqlite3/client.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/sqlite3/client.py
rename to app_env/Lib/site-packages/django/db/backends/sqlite3/client.py
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/creation.py b/app_env/Lib/site-packages/django/db/backends/sqlite3/creation.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/sqlite3/creation.py
rename to app_env/Lib/site-packages/django/db/backends/sqlite3/creation.py
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/features.py b/app_env/Lib/site-packages/django/db/backends/sqlite3/features.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/sqlite3/features.py
rename to app_env/Lib/site-packages/django/db/backends/sqlite3/features.py
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/introspection.py b/app_env/Lib/site-packages/django/db/backends/sqlite3/introspection.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/sqlite3/introspection.py
rename to app_env/Lib/site-packages/django/db/backends/sqlite3/introspection.py
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/operations.py b/app_env/Lib/site-packages/django/db/backends/sqlite3/operations.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/sqlite3/operations.py
rename to app_env/Lib/site-packages/django/db/backends/sqlite3/operations.py
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/schema.py b/app_env/Lib/site-packages/django/db/backends/sqlite3/schema.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/sqlite3/schema.py
rename to app_env/Lib/site-packages/django/db/backends/sqlite3/schema.py
diff --git a/venv/Lib/site-packages/django/db/backends/utils.py b/app_env/Lib/site-packages/django/db/backends/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/backends/utils.py
rename to app_env/Lib/site-packages/django/db/backends/utils.py
diff --git a/venv/Lib/site-packages/django/db/migrations/__init__.py b/app_env/Lib/site-packages/django/db/migrations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/__init__.py
rename to app_env/Lib/site-packages/django/db/migrations/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/migrations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..75329bfa
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/autodetector.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/autodetector.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/django/db/migrations/__pycache__/autodetector.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/__pycache__/autodetector.cpython-310.pyc
index 5754f5a4..c4e2da55 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/autodetector.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/autodetector.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/migrations/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..5ac5a9cf
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/executor.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/executor.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/db/migrations/__pycache__/executor.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/__pycache__/executor.cpython-310.pyc
index a18f0eee..0859ecb4 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/executor.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/executor.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/graph.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/graph.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/db/migrations/__pycache__/graph.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/__pycache__/graph.cpython-310.pyc
index 938d2448..87c86897 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/graph.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/graph.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/migrations/__pycache__/loader.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/loader.cpython-310.pyc
new file mode 100644
index 00000000..324243da
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/loader.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/migration.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/migration.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/db/migrations/__pycache__/migration.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/__pycache__/migration.cpython-310.pyc
index e7fabab4..ca9d60ae 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/migration.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/migration.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/optimizer.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/optimizer.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/django/db/migrations/__pycache__/optimizer.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/__pycache__/optimizer.cpython-310.pyc
index d635b86e..cc5d42e9 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/optimizer.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/optimizer.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/questioner.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/questioner.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/db/migrations/__pycache__/questioner.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/__pycache__/questioner.cpython-310.pyc
index 83c03ea5..e6a92927 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/questioner.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/questioner.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/recorder.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/recorder.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/django/db/migrations/__pycache__/recorder.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/__pycache__/recorder.cpython-310.pyc
index 55e0a59c..dbb5988d 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/recorder.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/recorder.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/serializer.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/serializer.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/db/migrations/__pycache__/serializer.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/__pycache__/serializer.cpython-310.pyc
index 19fe5e78..ae423f7d 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/serializer.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/serializer.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/state.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/state.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/django/db/migrations/__pycache__/state.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/__pycache__/state.cpython-310.pyc
index d2b25870..8a92af19 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/state.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/state.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/migrations/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..d8110c8c
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/writer.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/__pycache__/writer.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/db/migrations/__pycache__/writer.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/__pycache__/writer.cpython-310.pyc
index 64fb3234..6f84edee 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/writer.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/__pycache__/writer.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/autodetector.py b/app_env/Lib/site-packages/django/db/migrations/autodetector.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/autodetector.py
rename to app_env/Lib/site-packages/django/db/migrations/autodetector.py
diff --git a/venv/Lib/site-packages/django/db/migrations/exceptions.py b/app_env/Lib/site-packages/django/db/migrations/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/exceptions.py
rename to app_env/Lib/site-packages/django/db/migrations/exceptions.py
diff --git a/venv/Lib/site-packages/django/db/migrations/executor.py b/app_env/Lib/site-packages/django/db/migrations/executor.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/executor.py
rename to app_env/Lib/site-packages/django/db/migrations/executor.py
diff --git a/venv/Lib/site-packages/django/db/migrations/graph.py b/app_env/Lib/site-packages/django/db/migrations/graph.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/graph.py
rename to app_env/Lib/site-packages/django/db/migrations/graph.py
diff --git a/venv/Lib/site-packages/django/db/migrations/loader.py b/app_env/Lib/site-packages/django/db/migrations/loader.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/loader.py
rename to app_env/Lib/site-packages/django/db/migrations/loader.py
diff --git a/venv/Lib/site-packages/django/db/migrations/migration.py b/app_env/Lib/site-packages/django/db/migrations/migration.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/migration.py
rename to app_env/Lib/site-packages/django/db/migrations/migration.py
diff --git a/venv/Lib/site-packages/django/db/migrations/operations/__init__.py b/app_env/Lib/site-packages/django/db/migrations/operations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/operations/__init__.py
rename to app_env/Lib/site-packages/django/db/migrations/operations/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..a5d486e8
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..15351f31
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/fields.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/fields.cpython-310.pyc
new file mode 100644
index 00000000..bf54036c
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/fields.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..50d8e6dc
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/models.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/special.cpython-310.pyc b/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/special.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/db/migrations/operations/__pycache__/special.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/special.cpython-310.pyc
index c3628593..505092fc 100644
Binary files a/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/special.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/migrations/operations/__pycache__/special.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/migrations/operations/base.py b/app_env/Lib/site-packages/django/db/migrations/operations/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/operations/base.py
rename to app_env/Lib/site-packages/django/db/migrations/operations/base.py
diff --git a/venv/Lib/site-packages/django/db/migrations/operations/fields.py b/app_env/Lib/site-packages/django/db/migrations/operations/fields.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/operations/fields.py
rename to app_env/Lib/site-packages/django/db/migrations/operations/fields.py
diff --git a/venv/Lib/site-packages/django/db/migrations/operations/models.py b/app_env/Lib/site-packages/django/db/migrations/operations/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/operations/models.py
rename to app_env/Lib/site-packages/django/db/migrations/operations/models.py
diff --git a/venv/Lib/site-packages/django/db/migrations/operations/special.py b/app_env/Lib/site-packages/django/db/migrations/operations/special.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/operations/special.py
rename to app_env/Lib/site-packages/django/db/migrations/operations/special.py
diff --git a/venv/Lib/site-packages/django/db/migrations/optimizer.py b/app_env/Lib/site-packages/django/db/migrations/optimizer.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/optimizer.py
rename to app_env/Lib/site-packages/django/db/migrations/optimizer.py
diff --git a/venv/Lib/site-packages/django/db/migrations/questioner.py b/app_env/Lib/site-packages/django/db/migrations/questioner.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/questioner.py
rename to app_env/Lib/site-packages/django/db/migrations/questioner.py
diff --git a/venv/Lib/site-packages/django/db/migrations/recorder.py b/app_env/Lib/site-packages/django/db/migrations/recorder.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/recorder.py
rename to app_env/Lib/site-packages/django/db/migrations/recorder.py
diff --git a/venv/Lib/site-packages/django/db/migrations/serializer.py b/app_env/Lib/site-packages/django/db/migrations/serializer.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/serializer.py
rename to app_env/Lib/site-packages/django/db/migrations/serializer.py
diff --git a/venv/Lib/site-packages/django/db/migrations/state.py b/app_env/Lib/site-packages/django/db/migrations/state.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/state.py
rename to app_env/Lib/site-packages/django/db/migrations/state.py
diff --git a/venv/Lib/site-packages/django/db/migrations/utils.py b/app_env/Lib/site-packages/django/db/migrations/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/utils.py
rename to app_env/Lib/site-packages/django/db/migrations/utils.py
diff --git a/venv/Lib/site-packages/django/db/migrations/writer.py b/app_env/Lib/site-packages/django/db/migrations/writer.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/migrations/writer.py
rename to app_env/Lib/site-packages/django/db/migrations/writer.py
diff --git a/venv/Lib/site-packages/django/db/models/__init__.py b/app_env/Lib/site-packages/django/db/models/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/__init__.py
rename to app_env/Lib/site-packages/django/db/models/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..821a9c9b
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/aggregates.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/aggregates.cpython-310.pyc
new file mode 100644
index 00000000..a392757d
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/aggregates.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..2316d068
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/constants.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/constants.cpython-310.pyc
new file mode 100644
index 00000000..22901c29
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/constants.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/constraints.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/constraints.cpython-310.pyc
new file mode 100644
index 00000000..cbaae750
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/constraints.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/deletion.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/deletion.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/db/models/__pycache__/deletion.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/__pycache__/deletion.cpython-310.pyc
index 5b8c268a..6da6d442 100644
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/deletion.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/__pycache__/deletion.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/enums.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/enums.cpython-310.pyc
new file mode 100644
index 00000000..23b862da
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/enums.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/expressions.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/expressions.cpython-310.pyc
new file mode 100644
index 00000000..b1e7bb26
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/expressions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/indexes.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/indexes.cpython-310.pyc
new file mode 100644
index 00000000..cacf0ca3
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/indexes.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/lookups.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/lookups.cpython-310.pyc
new file mode 100644
index 00000000..f02a82b2
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/lookups.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/manager.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/manager.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/db/models/__pycache__/manager.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/__pycache__/manager.cpython-310.pyc
index d39bcb31..24c8d73e 100644
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/manager.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/__pycache__/manager.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/options.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/options.cpython-310.pyc
new file mode 100644
index 00000000..c9f146c8
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/options.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/query.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/query.cpython-310.pyc
new file mode 100644
index 00000000..0b7b5c1b
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/query.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/query_utils.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/query_utils.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/db/models/__pycache__/query_utils.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/__pycache__/query_utils.cpython-310.pyc
index 71ab0282..1ba74fa4 100644
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/query_utils.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/__pycache__/query_utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/signals.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/signals.cpython-310.pyc
new file mode 100644
index 00000000..248dea71
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/signals.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..9ec69f7b
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/aggregates.py b/app_env/Lib/site-packages/django/db/models/aggregates.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/aggregates.py
rename to app_env/Lib/site-packages/django/db/models/aggregates.py
diff --git a/venv/Lib/site-packages/django/db/models/base.py b/app_env/Lib/site-packages/django/db/models/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/base.py
rename to app_env/Lib/site-packages/django/db/models/base.py
diff --git a/venv/Lib/site-packages/django/db/models/constants.py b/app_env/Lib/site-packages/django/db/models/constants.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/constants.py
rename to app_env/Lib/site-packages/django/db/models/constants.py
diff --git a/venv/Lib/site-packages/django/db/models/constraints.py b/app_env/Lib/site-packages/django/db/models/constraints.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/constraints.py
rename to app_env/Lib/site-packages/django/db/models/constraints.py
diff --git a/venv/Lib/site-packages/django/db/models/deletion.py b/app_env/Lib/site-packages/django/db/models/deletion.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/deletion.py
rename to app_env/Lib/site-packages/django/db/models/deletion.py
diff --git a/venv/Lib/site-packages/django/db/models/enums.py b/app_env/Lib/site-packages/django/db/models/enums.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/enums.py
rename to app_env/Lib/site-packages/django/db/models/enums.py
diff --git a/venv/Lib/site-packages/django/db/models/expressions.py b/app_env/Lib/site-packages/django/db/models/expressions.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/expressions.py
rename to app_env/Lib/site-packages/django/db/models/expressions.py
diff --git a/venv/Lib/site-packages/django/db/models/fields/__init__.py b/app_env/Lib/site-packages/django/db/models/fields/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/fields/__init__.py
rename to app_env/Lib/site-packages/django/db/models/fields/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/models/fields/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..d4d549d6
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/fields/__pycache__/files.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/files.cpython-310.pyc
new file mode 100644
index 00000000..5535916f
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/files.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/fields/__pycache__/json.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/json.cpython-310.pyc
new file mode 100644
index 00000000..7eafdc54
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/json.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/fields/__pycache__/mixins.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/mixins.cpython-310.pyc
new file mode 100644
index 00000000..17216fb1
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/mixins.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/fields/__pycache__/proxy.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/proxy.cpython-310.pyc
new file mode 100644
index 00000000..67005971
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/proxy.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/fields/__pycache__/related.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/related.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/django/db/models/fields/__pycache__/related.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/fields/__pycache__/related.cpython-310.pyc
index 17260371..67ed198c 100644
Binary files a/venv/Lib/site-packages/django/db/models/fields/__pycache__/related.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/related.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/fields/__pycache__/related_descriptors.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/related_descriptors.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/django/db/models/fields/__pycache__/related_descriptors.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/fields/__pycache__/related_descriptors.cpython-310.pyc
index 74da26ed..0a7a84bf 100644
Binary files a/venv/Lib/site-packages/django/db/models/fields/__pycache__/related_descriptors.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/related_descriptors.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/fields/__pycache__/related_lookups.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/related_lookups.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/db/models/fields/__pycache__/related_lookups.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/fields/__pycache__/related_lookups.cpython-310.pyc
index 5da9cdc1..90fc90d1 100644
Binary files a/venv/Lib/site-packages/django/db/models/fields/__pycache__/related_lookups.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/related_lookups.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/fields/__pycache__/reverse_related.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/reverse_related.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/db/models/fields/__pycache__/reverse_related.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/fields/__pycache__/reverse_related.cpython-310.pyc
index 6e019896..ae9a3b61 100644
Binary files a/venv/Lib/site-packages/django/db/models/fields/__pycache__/reverse_related.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/fields/__pycache__/reverse_related.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/fields/files.py b/app_env/Lib/site-packages/django/db/models/fields/files.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/fields/files.py
rename to app_env/Lib/site-packages/django/db/models/fields/files.py
diff --git a/venv/Lib/site-packages/django/db/models/fields/json.py b/app_env/Lib/site-packages/django/db/models/fields/json.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/fields/json.py
rename to app_env/Lib/site-packages/django/db/models/fields/json.py
diff --git a/venv/Lib/site-packages/django/db/models/fields/mixins.py b/app_env/Lib/site-packages/django/db/models/fields/mixins.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/fields/mixins.py
rename to app_env/Lib/site-packages/django/db/models/fields/mixins.py
diff --git a/venv/Lib/site-packages/django/db/models/fields/proxy.py b/app_env/Lib/site-packages/django/db/models/fields/proxy.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/fields/proxy.py
rename to app_env/Lib/site-packages/django/db/models/fields/proxy.py
diff --git a/venv/Lib/site-packages/django/db/models/fields/related.py b/app_env/Lib/site-packages/django/db/models/fields/related.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/fields/related.py
rename to app_env/Lib/site-packages/django/db/models/fields/related.py
diff --git a/venv/Lib/site-packages/django/db/models/fields/related_descriptors.py b/app_env/Lib/site-packages/django/db/models/fields/related_descriptors.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/fields/related_descriptors.py
rename to app_env/Lib/site-packages/django/db/models/fields/related_descriptors.py
diff --git a/venv/Lib/site-packages/django/db/models/fields/related_lookups.py b/app_env/Lib/site-packages/django/db/models/fields/related_lookups.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/fields/related_lookups.py
rename to app_env/Lib/site-packages/django/db/models/fields/related_lookups.py
diff --git a/venv/Lib/site-packages/django/db/models/fields/reverse_related.py b/app_env/Lib/site-packages/django/db/models/fields/reverse_related.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/fields/reverse_related.py
rename to app_env/Lib/site-packages/django/db/models/fields/reverse_related.py
diff --git a/venv/Lib/site-packages/django/db/models/functions/__init__.py b/app_env/Lib/site-packages/django/db/models/functions/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/functions/__init__.py
rename to app_env/Lib/site-packages/django/db/models/functions/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/models/functions/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..49ab8890
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/functions/__pycache__/comparison.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/comparison.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/db/models/functions/__pycache__/comparison.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/functions/__pycache__/comparison.cpython-310.pyc
index 30a0cbdf..d4392ced 100644
Binary files a/venv/Lib/site-packages/django/db/models/functions/__pycache__/comparison.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/comparison.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/functions/__pycache__/datetime.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/datetime.cpython-310.pyc
new file mode 100644
index 00000000..4de530d1
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/datetime.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/functions/__pycache__/math.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/math.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/db/models/functions/__pycache__/math.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/functions/__pycache__/math.cpython-310.pyc
index f980f4e9..09a6fc4f 100644
Binary files a/venv/Lib/site-packages/django/db/models/functions/__pycache__/math.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/math.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/functions/__pycache__/mixins.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/mixins.cpython-310.pyc
new file mode 100644
index 00000000..11b4adbc
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/mixins.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/functions/__pycache__/text.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/text.cpython-310.pyc
new file mode 100644
index 00000000..572463a3
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/text.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/functions/__pycache__/window.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/window.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/db/models/functions/__pycache__/window.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/functions/__pycache__/window.cpython-310.pyc
index eb7faa22..8abb1dd1 100644
Binary files a/venv/Lib/site-packages/django/db/models/functions/__pycache__/window.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/functions/__pycache__/window.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/functions/comparison.py b/app_env/Lib/site-packages/django/db/models/functions/comparison.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/functions/comparison.py
rename to app_env/Lib/site-packages/django/db/models/functions/comparison.py
diff --git a/venv/Lib/site-packages/django/db/models/functions/datetime.py b/app_env/Lib/site-packages/django/db/models/functions/datetime.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/functions/datetime.py
rename to app_env/Lib/site-packages/django/db/models/functions/datetime.py
diff --git a/venv/Lib/site-packages/django/db/models/functions/math.py b/app_env/Lib/site-packages/django/db/models/functions/math.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/functions/math.py
rename to app_env/Lib/site-packages/django/db/models/functions/math.py
diff --git a/venv/Lib/site-packages/django/db/models/functions/mixins.py b/app_env/Lib/site-packages/django/db/models/functions/mixins.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/functions/mixins.py
rename to app_env/Lib/site-packages/django/db/models/functions/mixins.py
diff --git a/venv/Lib/site-packages/django/db/models/functions/text.py b/app_env/Lib/site-packages/django/db/models/functions/text.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/functions/text.py
rename to app_env/Lib/site-packages/django/db/models/functions/text.py
diff --git a/venv/Lib/site-packages/django/db/models/functions/window.py b/app_env/Lib/site-packages/django/db/models/functions/window.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/functions/window.py
rename to app_env/Lib/site-packages/django/db/models/functions/window.py
diff --git a/venv/Lib/site-packages/django/db/models/indexes.py b/app_env/Lib/site-packages/django/db/models/indexes.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/indexes.py
rename to app_env/Lib/site-packages/django/db/models/indexes.py
diff --git a/venv/Lib/site-packages/django/db/models/lookups.py b/app_env/Lib/site-packages/django/db/models/lookups.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/lookups.py
rename to app_env/Lib/site-packages/django/db/models/lookups.py
diff --git a/venv/Lib/site-packages/django/db/models/manager.py b/app_env/Lib/site-packages/django/db/models/manager.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/manager.py
rename to app_env/Lib/site-packages/django/db/models/manager.py
diff --git a/venv/Lib/site-packages/django/db/models/options.py b/app_env/Lib/site-packages/django/db/models/options.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/options.py
rename to app_env/Lib/site-packages/django/db/models/options.py
diff --git a/venv/Lib/site-packages/django/db/models/query.py b/app_env/Lib/site-packages/django/db/models/query.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/query.py
rename to app_env/Lib/site-packages/django/db/models/query.py
diff --git a/venv/Lib/site-packages/django/db/models/query_utils.py b/app_env/Lib/site-packages/django/db/models/query_utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/query_utils.py
rename to app_env/Lib/site-packages/django/db/models/query_utils.py
diff --git a/venv/Lib/site-packages/django/db/models/signals.py b/app_env/Lib/site-packages/django/db/models/signals.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/signals.py
rename to app_env/Lib/site-packages/django/db/models/signals.py
diff --git a/venv/Lib/site-packages/django/db/models/sql/__init__.py b/app_env/Lib/site-packages/django/db/models/sql/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/sql/__init__.py
rename to app_env/Lib/site-packages/django/db/models/sql/__init__.py
diff --git a/app_env/Lib/site-packages/django/db/models/sql/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e23e0454
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/sql/__pycache__/compiler.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/compiler.cpython-310.pyc
new file mode 100644
index 00000000..5be6177d
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/compiler.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/sql/__pycache__/constants.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/constants.cpython-310.pyc
new file mode 100644
index 00000000..d083279c
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/constants.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/sql/__pycache__/datastructures.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/datastructures.cpython-310.pyc
new file mode 100644
index 00000000..79f129f5
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/datastructures.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/db/models/sql/__pycache__/query.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/query.cpython-310.pyc
new file mode 100644
index 00000000..2033b75f
Binary files /dev/null and b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/query.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/sql/__pycache__/subqueries.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/subqueries.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/db/models/sql/__pycache__/subqueries.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/sql/__pycache__/subqueries.cpython-310.pyc
index 83e29819..edceb2ff 100644
Binary files a/venv/Lib/site-packages/django/db/models/sql/__pycache__/subqueries.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/subqueries.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/sql/__pycache__/where.cpython-310.pyc b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/where.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/db/models/sql/__pycache__/where.cpython-310.pyc
rename to app_env/Lib/site-packages/django/db/models/sql/__pycache__/where.cpython-310.pyc
index 395a707c..450e9de8 100644
Binary files a/venv/Lib/site-packages/django/db/models/sql/__pycache__/where.cpython-310.pyc and b/app_env/Lib/site-packages/django/db/models/sql/__pycache__/where.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/db/models/sql/compiler.py b/app_env/Lib/site-packages/django/db/models/sql/compiler.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/sql/compiler.py
rename to app_env/Lib/site-packages/django/db/models/sql/compiler.py
diff --git a/venv/Lib/site-packages/django/db/models/sql/constants.py b/app_env/Lib/site-packages/django/db/models/sql/constants.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/sql/constants.py
rename to app_env/Lib/site-packages/django/db/models/sql/constants.py
diff --git a/venv/Lib/site-packages/django/db/models/sql/datastructures.py b/app_env/Lib/site-packages/django/db/models/sql/datastructures.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/sql/datastructures.py
rename to app_env/Lib/site-packages/django/db/models/sql/datastructures.py
diff --git a/venv/Lib/site-packages/django/db/models/sql/query.py b/app_env/Lib/site-packages/django/db/models/sql/query.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/sql/query.py
rename to app_env/Lib/site-packages/django/db/models/sql/query.py
diff --git a/venv/Lib/site-packages/django/db/models/sql/subqueries.py b/app_env/Lib/site-packages/django/db/models/sql/subqueries.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/sql/subqueries.py
rename to app_env/Lib/site-packages/django/db/models/sql/subqueries.py
diff --git a/venv/Lib/site-packages/django/db/models/sql/where.py b/app_env/Lib/site-packages/django/db/models/sql/where.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/sql/where.py
rename to app_env/Lib/site-packages/django/db/models/sql/where.py
diff --git a/venv/Lib/site-packages/django/db/models/utils.py b/app_env/Lib/site-packages/django/db/models/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/models/utils.py
rename to app_env/Lib/site-packages/django/db/models/utils.py
diff --git a/venv/Lib/site-packages/django/db/transaction.py b/app_env/Lib/site-packages/django/db/transaction.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/transaction.py
rename to app_env/Lib/site-packages/django/db/transaction.py
diff --git a/venv/Lib/site-packages/django/db/utils.py b/app_env/Lib/site-packages/django/db/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/db/utils.py
rename to app_env/Lib/site-packages/django/db/utils.py
diff --git a/venv/Lib/site-packages/django/dispatch/__init__.py b/app_env/Lib/site-packages/django/dispatch/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/dispatch/__init__.py
rename to app_env/Lib/site-packages/django/dispatch/__init__.py
diff --git a/app_env/Lib/site-packages/django/dispatch/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/dispatch/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..83643b49
Binary files /dev/null and b/app_env/Lib/site-packages/django/dispatch/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/dispatch/__pycache__/dispatcher.cpython-310.pyc b/app_env/Lib/site-packages/django/dispatch/__pycache__/dispatcher.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/dispatch/__pycache__/dispatcher.cpython-310.pyc
rename to app_env/Lib/site-packages/django/dispatch/__pycache__/dispatcher.cpython-310.pyc
index e70f463a..250d22f3 100644
Binary files a/venv/Lib/site-packages/django/dispatch/__pycache__/dispatcher.cpython-310.pyc and b/app_env/Lib/site-packages/django/dispatch/__pycache__/dispatcher.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/dispatch/dispatcher.py b/app_env/Lib/site-packages/django/dispatch/dispatcher.py
similarity index 100%
rename from venv/Lib/site-packages/django/dispatch/dispatcher.py
rename to app_env/Lib/site-packages/django/dispatch/dispatcher.py
diff --git a/venv/Lib/site-packages/django/dispatch/license.txt b/app_env/Lib/site-packages/django/dispatch/license.txt
similarity index 100%
rename from venv/Lib/site-packages/django/dispatch/license.txt
rename to app_env/Lib/site-packages/django/dispatch/license.txt
diff --git a/venv/Lib/site-packages/django/forms/__init__.py b/app_env/Lib/site-packages/django/forms/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/forms/__init__.py
rename to app_env/Lib/site-packages/django/forms/__init__.py
diff --git a/app_env/Lib/site-packages/django/forms/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/forms/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..cd8b1cf5
Binary files /dev/null and b/app_env/Lib/site-packages/django/forms/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/forms/__pycache__/boundfield.cpython-310.pyc b/app_env/Lib/site-packages/django/forms/__pycache__/boundfield.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/forms/__pycache__/boundfield.cpython-310.pyc
rename to app_env/Lib/site-packages/django/forms/__pycache__/boundfield.cpython-310.pyc
index 162ca560..5d03614a 100644
Binary files a/venv/Lib/site-packages/django/forms/__pycache__/boundfield.cpython-310.pyc and b/app_env/Lib/site-packages/django/forms/__pycache__/boundfield.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/forms/__pycache__/fields.cpython-310.pyc b/app_env/Lib/site-packages/django/forms/__pycache__/fields.cpython-310.pyc
new file mode 100644
index 00000000..5f640acd
Binary files /dev/null and b/app_env/Lib/site-packages/django/forms/__pycache__/fields.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/forms/__pycache__/forms.cpython-310.pyc b/app_env/Lib/site-packages/django/forms/__pycache__/forms.cpython-310.pyc
new file mode 100644
index 00000000..95749000
Binary files /dev/null and b/app_env/Lib/site-packages/django/forms/__pycache__/forms.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/forms/__pycache__/formsets.cpython-310.pyc b/app_env/Lib/site-packages/django/forms/__pycache__/formsets.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/forms/__pycache__/formsets.cpython-310.pyc
rename to app_env/Lib/site-packages/django/forms/__pycache__/formsets.cpython-310.pyc
index 1b574103..3879944d 100644
Binary files a/venv/Lib/site-packages/django/forms/__pycache__/formsets.cpython-310.pyc and b/app_env/Lib/site-packages/django/forms/__pycache__/formsets.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/forms/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/django/forms/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..fe2afc72
Binary files /dev/null and b/app_env/Lib/site-packages/django/forms/__pycache__/models.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/forms/__pycache__/renderers.cpython-310.pyc b/app_env/Lib/site-packages/django/forms/__pycache__/renderers.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/forms/__pycache__/renderers.cpython-310.pyc
rename to app_env/Lib/site-packages/django/forms/__pycache__/renderers.cpython-310.pyc
index 8d8fd22c..3501a845 100644
Binary files a/venv/Lib/site-packages/django/forms/__pycache__/renderers.cpython-310.pyc and b/app_env/Lib/site-packages/django/forms/__pycache__/renderers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/forms/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/forms/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..fdcce690
Binary files /dev/null and b/app_env/Lib/site-packages/django/forms/__pycache__/utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/forms/__pycache__/widgets.cpython-310.pyc b/app_env/Lib/site-packages/django/forms/__pycache__/widgets.cpython-310.pyc
new file mode 100644
index 00000000..70f8836b
Binary files /dev/null and b/app_env/Lib/site-packages/django/forms/__pycache__/widgets.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/forms/boundfield.py b/app_env/Lib/site-packages/django/forms/boundfield.py
similarity index 100%
rename from venv/Lib/site-packages/django/forms/boundfield.py
rename to app_env/Lib/site-packages/django/forms/boundfield.py
diff --git a/venv/Lib/site-packages/django/forms/fields.py b/app_env/Lib/site-packages/django/forms/fields.py
similarity index 100%
rename from venv/Lib/site-packages/django/forms/fields.py
rename to app_env/Lib/site-packages/django/forms/fields.py
diff --git a/venv/Lib/site-packages/django/forms/forms.py b/app_env/Lib/site-packages/django/forms/forms.py
similarity index 100%
rename from venv/Lib/site-packages/django/forms/forms.py
rename to app_env/Lib/site-packages/django/forms/forms.py
diff --git a/venv/Lib/site-packages/django/forms/formsets.py b/app_env/Lib/site-packages/django/forms/formsets.py
similarity index 100%
rename from venv/Lib/site-packages/django/forms/formsets.py
rename to app_env/Lib/site-packages/django/forms/formsets.py
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/attrs.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/attrs.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/attrs.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/attrs.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/default.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/default.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/default.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/default.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/div.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/div.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/div.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/div.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/default.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/default.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/default.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/default.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/text.txt b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/text.txt
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/text.txt
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/text.txt
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/ul.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/ul.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/ul.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/ul.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/default.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/default.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/default.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/default.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/text.txt b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/text.txt
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/text.txt
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/text.txt
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/ul.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/ul.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/ul.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/ul.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/formsets/default.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/formsets/default.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/formsets/default.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/formsets/default.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/formsets/div.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/formsets/div.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/formsets/div.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/formsets/div.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/formsets/p.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/formsets/p.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/formsets/p.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/formsets/p.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/formsets/table.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/formsets/table.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/formsets/table.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/formsets/table.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/formsets/ul.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/formsets/ul.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/formsets/ul.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/formsets/ul.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/label.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/label.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/label.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/label.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/p.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/p.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/p.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/p.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/table.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/table.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/table.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/table.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/ul.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/ul.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/ul.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/ul.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/attrs.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/attrs.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/attrs.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/attrs.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_option.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_option.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_option.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_option.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_select.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_select.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_select.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_select.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/clearable_file_input.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/clearable_file_input.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/clearable_file_input.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/clearable_file_input.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/date.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/date.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/date.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/date.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/datetime.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/datetime.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/datetime.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/datetime.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/email.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/email.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/email.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/email.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/file.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/file.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/file.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/file.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/hidden.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/hidden.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/hidden.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/hidden.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input_option.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input_option.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input_option.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input_option.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_hidden.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_hidden.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_hidden.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_hidden.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_input.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_input.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_input.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_input.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiwidget.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiwidget.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiwidget.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiwidget.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/number.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/number.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/number.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/number.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/password.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/password.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/password.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/password.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio_option.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio_option.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio_option.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio_option.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_date.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_date.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_date.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_date.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_option.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_option.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_option.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_option.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splitdatetime.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splitdatetime.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splitdatetime.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splitdatetime.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splithiddendatetime.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splithiddendatetime.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splithiddendatetime.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splithiddendatetime.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/text.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/text.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/text.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/text.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/textarea.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/textarea.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/textarea.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/textarea.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/time.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/time.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/time.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/time.html
diff --git a/venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/url.html b/app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/url.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/url.html
rename to app_env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/url.html
diff --git a/venv/Lib/site-packages/django/forms/models.py b/app_env/Lib/site-packages/django/forms/models.py
similarity index 100%
rename from venv/Lib/site-packages/django/forms/models.py
rename to app_env/Lib/site-packages/django/forms/models.py
diff --git a/venv/Lib/site-packages/django/forms/renderers.py b/app_env/Lib/site-packages/django/forms/renderers.py
similarity index 100%
rename from venv/Lib/site-packages/django/forms/renderers.py
rename to app_env/Lib/site-packages/django/forms/renderers.py
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/attrs.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/attrs.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/attrs.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/attrs.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/default.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/default.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/default.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/default.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/div.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/div.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/div.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/div.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/errors/dict/default.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/errors/dict/default.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/errors/dict/default.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/errors/dict/default.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/errors/dict/text.txt b/app_env/Lib/site-packages/django/forms/templates/django/forms/errors/dict/text.txt
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/errors/dict/text.txt
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/errors/dict/text.txt
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/errors/dict/ul.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/errors/dict/ul.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/errors/dict/ul.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/errors/dict/ul.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/errors/list/default.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/errors/list/default.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/errors/list/default.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/errors/list/default.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/errors/list/text.txt b/app_env/Lib/site-packages/django/forms/templates/django/forms/errors/list/text.txt
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/errors/list/text.txt
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/errors/list/text.txt
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/errors/list/ul.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/errors/list/ul.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/errors/list/ul.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/errors/list/ul.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/formsets/default.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/formsets/default.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/formsets/default.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/formsets/default.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/formsets/div.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/formsets/div.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/formsets/div.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/formsets/div.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/formsets/p.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/formsets/p.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/formsets/p.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/formsets/p.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/formsets/table.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/formsets/table.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/formsets/table.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/formsets/table.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/formsets/ul.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/formsets/ul.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/formsets/ul.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/formsets/ul.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/label.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/label.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/label.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/label.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/p.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/p.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/p.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/p.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/table.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/table.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/table.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/table.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/ul.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/ul.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/ul.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/ul.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/attrs.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/attrs.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/attrs.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/attrs.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_option.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_option.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_option.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_option.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_select.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_select.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_select.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_select.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/clearable_file_input.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/clearable_file_input.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/clearable_file_input.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/clearable_file_input.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/date.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/date.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/date.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/date.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/datetime.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/datetime.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/datetime.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/datetime.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/email.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/email.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/email.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/email.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/file.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/file.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/file.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/file.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/hidden.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/hidden.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/hidden.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/hidden.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/input.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/input.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/input.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/input.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/input_option.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/input_option.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/input_option.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/input_option.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_hidden.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_hidden.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_hidden.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_hidden.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_input.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_input.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_input.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_input.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/multiwidget.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/multiwidget.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/multiwidget.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/multiwidget.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/number.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/number.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/number.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/number.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/password.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/password.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/password.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/password.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/radio.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/radio.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/radio.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/radio.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/radio_option.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/radio_option.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/radio_option.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/radio_option.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/select.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/select.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/select.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/select.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/select_date.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/select_date.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/select_date.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/select_date.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/select_option.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/select_option.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/select_option.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/select_option.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/splitdatetime.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/splitdatetime.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/splitdatetime.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/splitdatetime.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/splithiddendatetime.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/splithiddendatetime.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/splithiddendatetime.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/splithiddendatetime.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/text.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/text.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/text.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/text.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/textarea.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/textarea.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/textarea.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/textarea.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/time.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/time.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/time.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/time.html
diff --git a/venv/Lib/site-packages/django/forms/templates/django/forms/widgets/url.html b/app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/url.html
similarity index 100%
rename from venv/Lib/site-packages/django/forms/templates/django/forms/widgets/url.html
rename to app_env/Lib/site-packages/django/forms/templates/django/forms/widgets/url.html
diff --git a/venv/Lib/site-packages/django/forms/utils.py b/app_env/Lib/site-packages/django/forms/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/forms/utils.py
rename to app_env/Lib/site-packages/django/forms/utils.py
diff --git a/venv/Lib/site-packages/django/forms/widgets.py b/app_env/Lib/site-packages/django/forms/widgets.py
similarity index 100%
rename from venv/Lib/site-packages/django/forms/widgets.py
rename to app_env/Lib/site-packages/django/forms/widgets.py
diff --git a/venv/Lib/site-packages/django/http/__init__.py b/app_env/Lib/site-packages/django/http/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/http/__init__.py
rename to app_env/Lib/site-packages/django/http/__init__.py
diff --git a/app_env/Lib/site-packages/django/http/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/http/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..d1825805
Binary files /dev/null and b/app_env/Lib/site-packages/django/http/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/http/__pycache__/cookie.cpython-310.pyc b/app_env/Lib/site-packages/django/http/__pycache__/cookie.cpython-310.pyc
new file mode 100644
index 00000000..1ade6808
Binary files /dev/null and b/app_env/Lib/site-packages/django/http/__pycache__/cookie.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/http/__pycache__/multipartparser.cpython-310.pyc b/app_env/Lib/site-packages/django/http/__pycache__/multipartparser.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/http/__pycache__/multipartparser.cpython-310.pyc
rename to app_env/Lib/site-packages/django/http/__pycache__/multipartparser.cpython-310.pyc
index 37590c86..fc687275 100644
Binary files a/venv/Lib/site-packages/django/http/__pycache__/multipartparser.cpython-310.pyc and b/app_env/Lib/site-packages/django/http/__pycache__/multipartparser.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/http/__pycache__/request.cpython-310.pyc b/app_env/Lib/site-packages/django/http/__pycache__/request.cpython-310.pyc
new file mode 100644
index 00000000..3d5a4caa
Binary files /dev/null and b/app_env/Lib/site-packages/django/http/__pycache__/request.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/http/__pycache__/response.cpython-310.pyc b/app_env/Lib/site-packages/django/http/__pycache__/response.cpython-310.pyc
new file mode 100644
index 00000000..6279b375
Binary files /dev/null and b/app_env/Lib/site-packages/django/http/__pycache__/response.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/http/cookie.py b/app_env/Lib/site-packages/django/http/cookie.py
similarity index 100%
rename from venv/Lib/site-packages/django/http/cookie.py
rename to app_env/Lib/site-packages/django/http/cookie.py
diff --git a/venv/Lib/site-packages/django/http/multipartparser.py b/app_env/Lib/site-packages/django/http/multipartparser.py
similarity index 100%
rename from venv/Lib/site-packages/django/http/multipartparser.py
rename to app_env/Lib/site-packages/django/http/multipartparser.py
diff --git a/venv/Lib/site-packages/django/http/request.py b/app_env/Lib/site-packages/django/http/request.py
similarity index 100%
rename from venv/Lib/site-packages/django/http/request.py
rename to app_env/Lib/site-packages/django/http/request.py
diff --git a/venv/Lib/site-packages/django/http/response.py b/app_env/Lib/site-packages/django/http/response.py
similarity index 100%
rename from venv/Lib/site-packages/django/http/response.py
rename to app_env/Lib/site-packages/django/http/response.py
diff --git a/venv/Lib/site-packages/django/middleware/__init__.py b/app_env/Lib/site-packages/django/middleware/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/middleware/__init__.py
rename to app_env/Lib/site-packages/django/middleware/__init__.py
diff --git a/app_env/Lib/site-packages/django/middleware/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/middleware/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..578d2013
Binary files /dev/null and b/app_env/Lib/site-packages/django/middleware/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/middleware/__pycache__/cache.cpython-310.pyc b/app_env/Lib/site-packages/django/middleware/__pycache__/cache.cpython-310.pyc
new file mode 100644
index 00000000..07180817
Binary files /dev/null and b/app_env/Lib/site-packages/django/middleware/__pycache__/cache.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/middleware/__pycache__/clickjacking.cpython-310.pyc b/app_env/Lib/site-packages/django/middleware/__pycache__/clickjacking.cpython-310.pyc
new file mode 100644
index 00000000..c7db9d98
Binary files /dev/null and b/app_env/Lib/site-packages/django/middleware/__pycache__/clickjacking.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/middleware/__pycache__/common.cpython-310.pyc b/app_env/Lib/site-packages/django/middleware/__pycache__/common.cpython-310.pyc
new file mode 100644
index 00000000..1355e8be
Binary files /dev/null and b/app_env/Lib/site-packages/django/middleware/__pycache__/common.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/middleware/__pycache__/csrf.cpython-310.pyc b/app_env/Lib/site-packages/django/middleware/__pycache__/csrf.cpython-310.pyc
new file mode 100644
index 00000000..f96b3e99
Binary files /dev/null and b/app_env/Lib/site-packages/django/middleware/__pycache__/csrf.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/middleware/__pycache__/gzip.cpython-310.pyc b/app_env/Lib/site-packages/django/middleware/__pycache__/gzip.cpython-310.pyc
new file mode 100644
index 00000000..7361f867
Binary files /dev/null and b/app_env/Lib/site-packages/django/middleware/__pycache__/gzip.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/middleware/__pycache__/http.cpython-310.pyc b/app_env/Lib/site-packages/django/middleware/__pycache__/http.cpython-310.pyc
new file mode 100644
index 00000000..5fe36914
Binary files /dev/null and b/app_env/Lib/site-packages/django/middleware/__pycache__/http.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/middleware/__pycache__/locale.cpython-310.pyc b/app_env/Lib/site-packages/django/middleware/__pycache__/locale.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/django/middleware/__pycache__/locale.cpython-310.pyc
rename to app_env/Lib/site-packages/django/middleware/__pycache__/locale.cpython-310.pyc
index 49fc8c49..e0ddc1f8 100644
Binary files a/venv/Lib/site-packages/django/middleware/__pycache__/locale.cpython-310.pyc and b/app_env/Lib/site-packages/django/middleware/__pycache__/locale.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/middleware/__pycache__/security.cpython-310.pyc b/app_env/Lib/site-packages/django/middleware/__pycache__/security.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/middleware/__pycache__/security.cpython-310.pyc
rename to app_env/Lib/site-packages/django/middleware/__pycache__/security.cpython-310.pyc
index 483eb1ab..4a45b23d 100644
Binary files a/venv/Lib/site-packages/django/middleware/__pycache__/security.cpython-310.pyc and b/app_env/Lib/site-packages/django/middleware/__pycache__/security.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/middleware/cache.py b/app_env/Lib/site-packages/django/middleware/cache.py
similarity index 100%
rename from venv/Lib/site-packages/django/middleware/cache.py
rename to app_env/Lib/site-packages/django/middleware/cache.py
diff --git a/venv/Lib/site-packages/django/middleware/clickjacking.py b/app_env/Lib/site-packages/django/middleware/clickjacking.py
similarity index 100%
rename from venv/Lib/site-packages/django/middleware/clickjacking.py
rename to app_env/Lib/site-packages/django/middleware/clickjacking.py
diff --git a/venv/Lib/site-packages/django/middleware/common.py b/app_env/Lib/site-packages/django/middleware/common.py
similarity index 100%
rename from venv/Lib/site-packages/django/middleware/common.py
rename to app_env/Lib/site-packages/django/middleware/common.py
diff --git a/venv/Lib/site-packages/django/middleware/csrf.py b/app_env/Lib/site-packages/django/middleware/csrf.py
similarity index 100%
rename from venv/Lib/site-packages/django/middleware/csrf.py
rename to app_env/Lib/site-packages/django/middleware/csrf.py
diff --git a/venv/Lib/site-packages/django/middleware/gzip.py b/app_env/Lib/site-packages/django/middleware/gzip.py
similarity index 100%
rename from venv/Lib/site-packages/django/middleware/gzip.py
rename to app_env/Lib/site-packages/django/middleware/gzip.py
diff --git a/venv/Lib/site-packages/django/middleware/http.py b/app_env/Lib/site-packages/django/middleware/http.py
similarity index 100%
rename from venv/Lib/site-packages/django/middleware/http.py
rename to app_env/Lib/site-packages/django/middleware/http.py
diff --git a/venv/Lib/site-packages/django/middleware/locale.py b/app_env/Lib/site-packages/django/middleware/locale.py
similarity index 100%
rename from venv/Lib/site-packages/django/middleware/locale.py
rename to app_env/Lib/site-packages/django/middleware/locale.py
diff --git a/venv/Lib/site-packages/django/middleware/security.py b/app_env/Lib/site-packages/django/middleware/security.py
similarity index 100%
rename from venv/Lib/site-packages/django/middleware/security.py
rename to app_env/Lib/site-packages/django/middleware/security.py
diff --git a/venv/Lib/site-packages/django/shortcuts.py b/app_env/Lib/site-packages/django/shortcuts.py
similarity index 100%
rename from venv/Lib/site-packages/django/shortcuts.py
rename to app_env/Lib/site-packages/django/shortcuts.py
diff --git a/venv/Lib/site-packages/django/template/__init__.py b/app_env/Lib/site-packages/django/template/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/__init__.py
rename to app_env/Lib/site-packages/django/template/__init__.py
diff --git a/app_env/Lib/site-packages/django/template/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..3fa4b37c
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/__pycache__/autoreload.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/autoreload.cpython-310.pyc
new file mode 100644
index 00000000..6b8e2300
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/__pycache__/autoreload.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..c15e8270
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/__pycache__/context.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/context.cpython-310.pyc
new file mode 100644
index 00000000..7463b00b
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/__pycache__/context.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/__pycache__/context_processors.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/context_processors.cpython-310.pyc
new file mode 100644
index 00000000..b5db07d3
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/__pycache__/context_processors.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/defaultfilters.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/defaultfilters.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/django/template/__pycache__/defaultfilters.cpython-310.pyc
rename to app_env/Lib/site-packages/django/template/__pycache__/defaultfilters.cpython-310.pyc
index 2d3cb8da..5c37ea01 100644
Binary files a/venv/Lib/site-packages/django/template/__pycache__/defaultfilters.cpython-310.pyc and b/app_env/Lib/site-packages/django/template/__pycache__/defaultfilters.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/defaulttags.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/defaulttags.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/django/template/__pycache__/defaulttags.cpython-310.pyc
rename to app_env/Lib/site-packages/django/template/__pycache__/defaulttags.cpython-310.pyc
index fbda7264..a58fa482 100644
Binary files a/venv/Lib/site-packages/django/template/__pycache__/defaulttags.cpython-310.pyc and b/app_env/Lib/site-packages/django/template/__pycache__/defaulttags.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/engine.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/engine.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/template/__pycache__/engine.cpython-310.pyc
rename to app_env/Lib/site-packages/django/template/__pycache__/engine.cpython-310.pyc
index abfc6808..810477d5 100644
Binary files a/venv/Lib/site-packages/django/template/__pycache__/engine.cpython-310.pyc and b/app_env/Lib/site-packages/django/template/__pycache__/engine.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..50995644
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/library.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/library.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/template/__pycache__/library.cpython-310.pyc
rename to app_env/Lib/site-packages/django/template/__pycache__/library.cpython-310.pyc
index 8061a469..730ea5a7 100644
Binary files a/venv/Lib/site-packages/django/template/__pycache__/library.cpython-310.pyc and b/app_env/Lib/site-packages/django/template/__pycache__/library.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/__pycache__/loader.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/loader.cpython-310.pyc
new file mode 100644
index 00000000..54ef8be6
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/__pycache__/loader.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/loader_tags.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/loader_tags.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/template/__pycache__/loader_tags.cpython-310.pyc
rename to app_env/Lib/site-packages/django/template/__pycache__/loader_tags.cpython-310.pyc
index 88ff3323..be224ae8 100644
Binary files a/venv/Lib/site-packages/django/template/__pycache__/loader_tags.cpython-310.pyc and b/app_env/Lib/site-packages/django/template/__pycache__/loader_tags.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/__pycache__/response.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/response.cpython-310.pyc
new file mode 100644
index 00000000..01fc7729
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/__pycache__/response.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/smartif.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/smartif.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/template/__pycache__/smartif.cpython-310.pyc
rename to app_env/Lib/site-packages/django/template/__pycache__/smartif.cpython-310.pyc
index 4136931b..9e795064 100644
Binary files a/venv/Lib/site-packages/django/template/__pycache__/smartif.cpython-310.pyc and b/app_env/Lib/site-packages/django/template/__pycache__/smartif.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/template/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..f0cd1bdd
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/autoreload.py b/app_env/Lib/site-packages/django/template/autoreload.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/autoreload.py
rename to app_env/Lib/site-packages/django/template/autoreload.py
diff --git a/venv/Lib/site-packages/django/template/backends/__init__.py b/app_env/Lib/site-packages/django/template/backends/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/backends/__init__.py
rename to app_env/Lib/site-packages/django/template/backends/__init__.py
diff --git a/app_env/Lib/site-packages/django/template/backends/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/template/backends/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..33844611
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/backends/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/backends/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/template/backends/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..252289a4
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/backends/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/backends/__pycache__/django.cpython-310.pyc b/app_env/Lib/site-packages/django/template/backends/__pycache__/django.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/template/backends/__pycache__/django.cpython-310.pyc
rename to app_env/Lib/site-packages/django/template/backends/__pycache__/django.cpython-310.pyc
index 26cbb5d8..e5ad1eed 100644
Binary files a/venv/Lib/site-packages/django/template/backends/__pycache__/django.cpython-310.pyc and b/app_env/Lib/site-packages/django/template/backends/__pycache__/django.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/backends/__pycache__/dummy.cpython-310.pyc b/app_env/Lib/site-packages/django/template/backends/__pycache__/dummy.cpython-310.pyc
new file mode 100644
index 00000000..7809fdba
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/backends/__pycache__/dummy.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/backends/__pycache__/jinja2.cpython-310.pyc b/app_env/Lib/site-packages/django/template/backends/__pycache__/jinja2.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/django/template/backends/__pycache__/jinja2.cpython-310.pyc
rename to app_env/Lib/site-packages/django/template/backends/__pycache__/jinja2.cpython-310.pyc
index 79080066..af512e5b 100644
Binary files a/venv/Lib/site-packages/django/template/backends/__pycache__/jinja2.cpython-310.pyc and b/app_env/Lib/site-packages/django/template/backends/__pycache__/jinja2.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/backends/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/template/backends/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..3469d345
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/backends/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/backends/base.py b/app_env/Lib/site-packages/django/template/backends/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/backends/base.py
rename to app_env/Lib/site-packages/django/template/backends/base.py
diff --git a/venv/Lib/site-packages/django/template/backends/django.py b/app_env/Lib/site-packages/django/template/backends/django.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/backends/django.py
rename to app_env/Lib/site-packages/django/template/backends/django.py
diff --git a/venv/Lib/site-packages/django/template/backends/dummy.py b/app_env/Lib/site-packages/django/template/backends/dummy.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/backends/dummy.py
rename to app_env/Lib/site-packages/django/template/backends/dummy.py
diff --git a/venv/Lib/site-packages/django/template/backends/jinja2.py b/app_env/Lib/site-packages/django/template/backends/jinja2.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/backends/jinja2.py
rename to app_env/Lib/site-packages/django/template/backends/jinja2.py
diff --git a/venv/Lib/site-packages/django/template/backends/utils.py b/app_env/Lib/site-packages/django/template/backends/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/backends/utils.py
rename to app_env/Lib/site-packages/django/template/backends/utils.py
diff --git a/venv/Lib/site-packages/django/template/base.py b/app_env/Lib/site-packages/django/template/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/base.py
rename to app_env/Lib/site-packages/django/template/base.py
diff --git a/venv/Lib/site-packages/django/template/context.py b/app_env/Lib/site-packages/django/template/context.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/context.py
rename to app_env/Lib/site-packages/django/template/context.py
diff --git a/venv/Lib/site-packages/django/template/context_processors.py b/app_env/Lib/site-packages/django/template/context_processors.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/context_processors.py
rename to app_env/Lib/site-packages/django/template/context_processors.py
diff --git a/venv/Lib/site-packages/django/template/defaultfilters.py b/app_env/Lib/site-packages/django/template/defaultfilters.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/defaultfilters.py
rename to app_env/Lib/site-packages/django/template/defaultfilters.py
diff --git a/venv/Lib/site-packages/django/template/defaulttags.py b/app_env/Lib/site-packages/django/template/defaulttags.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/defaulttags.py
rename to app_env/Lib/site-packages/django/template/defaulttags.py
diff --git a/venv/Lib/site-packages/django/template/engine.py b/app_env/Lib/site-packages/django/template/engine.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/engine.py
rename to app_env/Lib/site-packages/django/template/engine.py
diff --git a/venv/Lib/site-packages/django/template/exceptions.py b/app_env/Lib/site-packages/django/template/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/exceptions.py
rename to app_env/Lib/site-packages/django/template/exceptions.py
diff --git a/venv/Lib/site-packages/django/template/library.py b/app_env/Lib/site-packages/django/template/library.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/library.py
rename to app_env/Lib/site-packages/django/template/library.py
diff --git a/venv/Lib/site-packages/django/template/loader.py b/app_env/Lib/site-packages/django/template/loader.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/loader.py
rename to app_env/Lib/site-packages/django/template/loader.py
diff --git a/venv/Lib/site-packages/django/template/loader_tags.py b/app_env/Lib/site-packages/django/template/loader_tags.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/loader_tags.py
rename to app_env/Lib/site-packages/django/template/loader_tags.py
diff --git a/venv/Lib/site-packages/django/template/loaders/__init__.py b/app_env/Lib/site-packages/django/template/loaders/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/loaders/__init__.py
rename to app_env/Lib/site-packages/django/template/loaders/__init__.py
diff --git a/app_env/Lib/site-packages/django/template/loaders/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/template/loaders/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4650f400
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/loaders/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/loaders/__pycache__/app_directories.cpython-310.pyc b/app_env/Lib/site-packages/django/template/loaders/__pycache__/app_directories.cpython-310.pyc
new file mode 100644
index 00000000..03a88aa9
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/loaders/__pycache__/app_directories.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/loaders/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/template/loaders/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..a4219571
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/loaders/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/loaders/__pycache__/cached.cpython-310.pyc b/app_env/Lib/site-packages/django/template/loaders/__pycache__/cached.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/template/loaders/__pycache__/cached.cpython-310.pyc
rename to app_env/Lib/site-packages/django/template/loaders/__pycache__/cached.cpython-310.pyc
index 9239d39e..a3c6b29e 100644
Binary files a/venv/Lib/site-packages/django/template/loaders/__pycache__/cached.cpython-310.pyc and b/app_env/Lib/site-packages/django/template/loaders/__pycache__/cached.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/loaders/__pycache__/filesystem.cpython-310.pyc b/app_env/Lib/site-packages/django/template/loaders/__pycache__/filesystem.cpython-310.pyc
new file mode 100644
index 00000000..f510bd40
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/loaders/__pycache__/filesystem.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/template/loaders/__pycache__/locmem.cpython-310.pyc b/app_env/Lib/site-packages/django/template/loaders/__pycache__/locmem.cpython-310.pyc
new file mode 100644
index 00000000..e3175751
Binary files /dev/null and b/app_env/Lib/site-packages/django/template/loaders/__pycache__/locmem.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/template/loaders/app_directories.py b/app_env/Lib/site-packages/django/template/loaders/app_directories.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/loaders/app_directories.py
rename to app_env/Lib/site-packages/django/template/loaders/app_directories.py
diff --git a/venv/Lib/site-packages/django/template/loaders/base.py b/app_env/Lib/site-packages/django/template/loaders/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/loaders/base.py
rename to app_env/Lib/site-packages/django/template/loaders/base.py
diff --git a/venv/Lib/site-packages/django/template/loaders/cached.py b/app_env/Lib/site-packages/django/template/loaders/cached.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/loaders/cached.py
rename to app_env/Lib/site-packages/django/template/loaders/cached.py
diff --git a/venv/Lib/site-packages/django/template/loaders/filesystem.py b/app_env/Lib/site-packages/django/template/loaders/filesystem.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/loaders/filesystem.py
rename to app_env/Lib/site-packages/django/template/loaders/filesystem.py
diff --git a/venv/Lib/site-packages/django/template/loaders/locmem.py b/app_env/Lib/site-packages/django/template/loaders/locmem.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/loaders/locmem.py
rename to app_env/Lib/site-packages/django/template/loaders/locmem.py
diff --git a/venv/Lib/site-packages/django/template/response.py b/app_env/Lib/site-packages/django/template/response.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/response.py
rename to app_env/Lib/site-packages/django/template/response.py
diff --git a/venv/Lib/site-packages/django/template/smartif.py b/app_env/Lib/site-packages/django/template/smartif.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/smartif.py
rename to app_env/Lib/site-packages/django/template/smartif.py
diff --git a/venv/Lib/site-packages/django/template/utils.py b/app_env/Lib/site-packages/django/template/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/template/utils.py
rename to app_env/Lib/site-packages/django/template/utils.py
diff --git a/venv/Lib/site-packages/django/templatetags/__init__.py b/app_env/Lib/site-packages/django/templatetags/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/templatetags/__init__.py
rename to app_env/Lib/site-packages/django/templatetags/__init__.py
diff --git a/app_env/Lib/site-packages/django/templatetags/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/templatetags/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..74b12ee1
Binary files /dev/null and b/app_env/Lib/site-packages/django/templatetags/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/templatetags/__pycache__/cache.cpython-310.pyc b/app_env/Lib/site-packages/django/templatetags/__pycache__/cache.cpython-310.pyc
new file mode 100644
index 00000000..a254dea3
Binary files /dev/null and b/app_env/Lib/site-packages/django/templatetags/__pycache__/cache.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/templatetags/__pycache__/i18n.cpython-310.pyc b/app_env/Lib/site-packages/django/templatetags/__pycache__/i18n.cpython-310.pyc
new file mode 100644
index 00000000..4025bb49
Binary files /dev/null and b/app_env/Lib/site-packages/django/templatetags/__pycache__/i18n.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/templatetags/__pycache__/l10n.cpython-310.pyc b/app_env/Lib/site-packages/django/templatetags/__pycache__/l10n.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/django/templatetags/__pycache__/l10n.cpython-310.pyc
rename to app_env/Lib/site-packages/django/templatetags/__pycache__/l10n.cpython-310.pyc
index 2a153860..22abdc85 100644
Binary files a/venv/Lib/site-packages/django/templatetags/__pycache__/l10n.cpython-310.pyc and b/app_env/Lib/site-packages/django/templatetags/__pycache__/l10n.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/templatetags/__pycache__/static.cpython-310.pyc b/app_env/Lib/site-packages/django/templatetags/__pycache__/static.cpython-310.pyc
new file mode 100644
index 00000000..5ab255bc
Binary files /dev/null and b/app_env/Lib/site-packages/django/templatetags/__pycache__/static.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/templatetags/__pycache__/tz.cpython-310.pyc b/app_env/Lib/site-packages/django/templatetags/__pycache__/tz.cpython-310.pyc
new file mode 100644
index 00000000..15b657e2
Binary files /dev/null and b/app_env/Lib/site-packages/django/templatetags/__pycache__/tz.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/templatetags/cache.py b/app_env/Lib/site-packages/django/templatetags/cache.py
similarity index 100%
rename from venv/Lib/site-packages/django/templatetags/cache.py
rename to app_env/Lib/site-packages/django/templatetags/cache.py
diff --git a/venv/Lib/site-packages/django/templatetags/i18n.py b/app_env/Lib/site-packages/django/templatetags/i18n.py
similarity index 100%
rename from venv/Lib/site-packages/django/templatetags/i18n.py
rename to app_env/Lib/site-packages/django/templatetags/i18n.py
diff --git a/venv/Lib/site-packages/django/templatetags/l10n.py b/app_env/Lib/site-packages/django/templatetags/l10n.py
similarity index 100%
rename from venv/Lib/site-packages/django/templatetags/l10n.py
rename to app_env/Lib/site-packages/django/templatetags/l10n.py
diff --git a/venv/Lib/site-packages/django/templatetags/static.py b/app_env/Lib/site-packages/django/templatetags/static.py
similarity index 100%
rename from venv/Lib/site-packages/django/templatetags/static.py
rename to app_env/Lib/site-packages/django/templatetags/static.py
diff --git a/venv/Lib/site-packages/django/templatetags/tz.py b/app_env/Lib/site-packages/django/templatetags/tz.py
similarity index 100%
rename from venv/Lib/site-packages/django/templatetags/tz.py
rename to app_env/Lib/site-packages/django/templatetags/tz.py
diff --git a/venv/Lib/site-packages/django/test/__init__.py b/app_env/Lib/site-packages/django/test/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/test/__init__.py
rename to app_env/Lib/site-packages/django/test/__init__.py
diff --git a/app_env/Lib/site-packages/django/test/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/test/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..544d43a1
Binary files /dev/null and b/app_env/Lib/site-packages/django/test/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/test/__pycache__/client.cpython-310.pyc b/app_env/Lib/site-packages/django/test/__pycache__/client.cpython-310.pyc
new file mode 100644
index 00000000..6141b36a
Binary files /dev/null and b/app_env/Lib/site-packages/django/test/__pycache__/client.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/test/__pycache__/html.cpython-310.pyc b/app_env/Lib/site-packages/django/test/__pycache__/html.cpython-310.pyc
new file mode 100644
index 00000000..c2060e86
Binary files /dev/null and b/app_env/Lib/site-packages/django/test/__pycache__/html.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/test/__pycache__/runner.cpython-310.pyc b/app_env/Lib/site-packages/django/test/__pycache__/runner.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/test/__pycache__/runner.cpython-310.pyc
rename to app_env/Lib/site-packages/django/test/__pycache__/runner.cpython-310.pyc
index 3fccbdbe..a5c7db85 100644
Binary files a/venv/Lib/site-packages/django/test/__pycache__/runner.cpython-310.pyc and b/app_env/Lib/site-packages/django/test/__pycache__/runner.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/test/__pycache__/selenium.cpython-310.pyc b/app_env/Lib/site-packages/django/test/__pycache__/selenium.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/test/__pycache__/selenium.cpython-310.pyc
rename to app_env/Lib/site-packages/django/test/__pycache__/selenium.cpython-310.pyc
index f4bdb8f6..d777f7c0 100644
Binary files a/venv/Lib/site-packages/django/test/__pycache__/selenium.cpython-310.pyc and b/app_env/Lib/site-packages/django/test/__pycache__/selenium.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/test/__pycache__/signals.cpython-310.pyc b/app_env/Lib/site-packages/django/test/__pycache__/signals.cpython-310.pyc
new file mode 100644
index 00000000..e1ff9e40
Binary files /dev/null and b/app_env/Lib/site-packages/django/test/__pycache__/signals.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/test/__pycache__/testcases.cpython-310.pyc b/app_env/Lib/site-packages/django/test/__pycache__/testcases.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/django/test/__pycache__/testcases.cpython-310.pyc
rename to app_env/Lib/site-packages/django/test/__pycache__/testcases.cpython-310.pyc
index 8ce31e01..1d200f00 100644
Binary files a/venv/Lib/site-packages/django/test/__pycache__/testcases.cpython-310.pyc and b/app_env/Lib/site-packages/django/test/__pycache__/testcases.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/test/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/test/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..310322c4
Binary files /dev/null and b/app_env/Lib/site-packages/django/test/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/test/client.py b/app_env/Lib/site-packages/django/test/client.py
similarity index 100%
rename from venv/Lib/site-packages/django/test/client.py
rename to app_env/Lib/site-packages/django/test/client.py
diff --git a/venv/Lib/site-packages/django/test/html.py b/app_env/Lib/site-packages/django/test/html.py
similarity index 100%
rename from venv/Lib/site-packages/django/test/html.py
rename to app_env/Lib/site-packages/django/test/html.py
diff --git a/venv/Lib/site-packages/django/test/runner.py b/app_env/Lib/site-packages/django/test/runner.py
similarity index 100%
rename from venv/Lib/site-packages/django/test/runner.py
rename to app_env/Lib/site-packages/django/test/runner.py
diff --git a/venv/Lib/site-packages/django/test/selenium.py b/app_env/Lib/site-packages/django/test/selenium.py
similarity index 100%
rename from venv/Lib/site-packages/django/test/selenium.py
rename to app_env/Lib/site-packages/django/test/selenium.py
diff --git a/venv/Lib/site-packages/django/test/signals.py b/app_env/Lib/site-packages/django/test/signals.py
similarity index 100%
rename from venv/Lib/site-packages/django/test/signals.py
rename to app_env/Lib/site-packages/django/test/signals.py
diff --git a/venv/Lib/site-packages/django/test/testcases.py b/app_env/Lib/site-packages/django/test/testcases.py
similarity index 100%
rename from venv/Lib/site-packages/django/test/testcases.py
rename to app_env/Lib/site-packages/django/test/testcases.py
diff --git a/venv/Lib/site-packages/django/test/utils.py b/app_env/Lib/site-packages/django/test/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/test/utils.py
rename to app_env/Lib/site-packages/django/test/utils.py
diff --git a/venv/Lib/site-packages/django/urls/__init__.py b/app_env/Lib/site-packages/django/urls/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/urls/__init__.py
rename to app_env/Lib/site-packages/django/urls/__init__.py
diff --git a/app_env/Lib/site-packages/django/urls/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/urls/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1d4b2f99
Binary files /dev/null and b/app_env/Lib/site-packages/django/urls/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/urls/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/urls/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..99f8a79e
Binary files /dev/null and b/app_env/Lib/site-packages/django/urls/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/urls/__pycache__/conf.cpython-310.pyc b/app_env/Lib/site-packages/django/urls/__pycache__/conf.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/django/urls/__pycache__/conf.cpython-310.pyc
rename to app_env/Lib/site-packages/django/urls/__pycache__/conf.cpython-310.pyc
index 02db46ec..fe922c7a 100644
Binary files a/venv/Lib/site-packages/django/urls/__pycache__/conf.cpython-310.pyc and b/app_env/Lib/site-packages/django/urls/__pycache__/conf.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/urls/__pycache__/converters.cpython-310.pyc b/app_env/Lib/site-packages/django/urls/__pycache__/converters.cpython-310.pyc
similarity index 83%
rename from venv/Lib/site-packages/django/urls/__pycache__/converters.cpython-310.pyc
rename to app_env/Lib/site-packages/django/urls/__pycache__/converters.cpython-310.pyc
index 48a38235..5a2e87c8 100644
Binary files a/venv/Lib/site-packages/django/urls/__pycache__/converters.cpython-310.pyc and b/app_env/Lib/site-packages/django/urls/__pycache__/converters.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/urls/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/django/urls/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..dac93224
Binary files /dev/null and b/app_env/Lib/site-packages/django/urls/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/urls/__pycache__/resolvers.cpython-310.pyc b/app_env/Lib/site-packages/django/urls/__pycache__/resolvers.cpython-310.pyc
new file mode 100644
index 00000000..d103cbbe
Binary files /dev/null and b/app_env/Lib/site-packages/django/urls/__pycache__/resolvers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/urls/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/django/urls/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..743c9f78
Binary files /dev/null and b/app_env/Lib/site-packages/django/urls/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/urls/base.py b/app_env/Lib/site-packages/django/urls/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/urls/base.py
rename to app_env/Lib/site-packages/django/urls/base.py
diff --git a/venv/Lib/site-packages/django/urls/conf.py b/app_env/Lib/site-packages/django/urls/conf.py
similarity index 100%
rename from venv/Lib/site-packages/django/urls/conf.py
rename to app_env/Lib/site-packages/django/urls/conf.py
diff --git a/venv/Lib/site-packages/django/urls/converters.py b/app_env/Lib/site-packages/django/urls/converters.py
similarity index 100%
rename from venv/Lib/site-packages/django/urls/converters.py
rename to app_env/Lib/site-packages/django/urls/converters.py
diff --git a/venv/Lib/site-packages/django/urls/exceptions.py b/app_env/Lib/site-packages/django/urls/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/django/urls/exceptions.py
rename to app_env/Lib/site-packages/django/urls/exceptions.py
diff --git a/venv/Lib/site-packages/django/urls/resolvers.py b/app_env/Lib/site-packages/django/urls/resolvers.py
similarity index 100%
rename from venv/Lib/site-packages/django/urls/resolvers.py
rename to app_env/Lib/site-packages/django/urls/resolvers.py
diff --git a/venv/Lib/site-packages/django/urls/utils.py b/app_env/Lib/site-packages/django/urls/utils.py
similarity index 100%
rename from venv/Lib/site-packages/django/urls/utils.py
rename to app_env/Lib/site-packages/django/urls/utils.py
diff --git a/venv/Lib/site-packages/django/utils/__init__.py b/app_env/Lib/site-packages/django/utils/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/__init__.py
rename to app_env/Lib/site-packages/django/utils/__init__.py
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e7702a08
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/_os.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/_os.cpython-310.pyc
similarity index 85%
rename from venv/Lib/site-packages/django/utils/__pycache__/_os.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/_os.cpython-310.pyc
index 6bb249cb..35fa1c54 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/_os.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/_os.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/archive.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/archive.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/utils/__pycache__/archive.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/archive.cpython-310.pyc
index c9fdc0a3..133f870d 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/archive.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/archive.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/asyncio.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/asyncio.cpython-310.pyc
similarity index 82%
rename from venv/Lib/site-packages/django/utils/__pycache__/asyncio.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/asyncio.cpython-310.pyc
index d3a6cdac..8f91509d 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/asyncio.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/asyncio.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/autoreload.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/autoreload.cpython-310.pyc
new file mode 100644
index 00000000..c6015776
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/autoreload.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/baseconv.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/baseconv.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/utils/__pycache__/baseconv.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/baseconv.cpython-310.pyc
index 853871e0..c5f14272 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/baseconv.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/baseconv.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/cache.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/cache.cpython-310.pyc
new file mode 100644
index 00000000..8aaa2676
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/cache.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/connection.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/connection.cpython-310.pyc
new file mode 100644
index 00000000..a0e8735d
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/connection.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/crypto.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/crypto.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/utils/__pycache__/crypto.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/crypto.cpython-310.pyc
index 11f76305..cff06730 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/crypto.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/crypto.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/datastructures.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/datastructures.cpython-310.pyc
new file mode 100644
index 00000000..f4941f47
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/datastructures.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/dateformat.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/dateformat.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/utils/__pycache__/dateformat.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/dateformat.cpython-310.pyc
index 154d1ff3..4d1487eb 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/dateformat.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/dateformat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/dateparse.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/dateparse.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/utils/__pycache__/dateparse.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/dateparse.cpython-310.pyc
index 5fa3db06..10c3bb32 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/dateparse.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/dateparse.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/dates.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/dates.cpython-310.pyc
new file mode 100644
index 00000000..0a1cbaa2
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/dates.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/datetime_safe.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/datetime_safe.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/django/utils/__pycache__/datetime_safe.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/datetime_safe.cpython-310.pyc
index d9f43e05..26dbaa1f 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/datetime_safe.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/datetime_safe.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/deconstruct.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/deconstruct.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/django/utils/__pycache__/deconstruct.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/deconstruct.cpython-310.pyc
index 1ded011e..5448bc6f 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/deconstruct.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/deconstruct.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/decorators.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/decorators.cpython-310.pyc
new file mode 100644
index 00000000..29723ccd
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/decorators.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/deprecation.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/deprecation.cpython-310.pyc
new file mode 100644
index 00000000..b6b3b266
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/deprecation.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/duration.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/duration.cpython-310.pyc
new file mode 100644
index 00000000..e6092cc1
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/duration.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/encoding.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/encoding.cpython-310.pyc
new file mode 100644
index 00000000..a54cae7a
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/encoding.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/feedgenerator.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/feedgenerator.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/utils/__pycache__/feedgenerator.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/feedgenerator.cpython-310.pyc
index 978855a2..cfb29c19 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/feedgenerator.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/feedgenerator.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..4c6cdf92
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/functional.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/functional.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/utils/__pycache__/functional.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/functional.cpython-310.pyc
index 155a5868..a399eddd 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/functional.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/functional.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/hashable.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/hashable.cpython-310.pyc
similarity index 76%
rename from venv/Lib/site-packages/django/utils/__pycache__/hashable.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/hashable.cpython-310.pyc
index 122cfaec..21da92a1 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/hashable.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/hashable.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/html.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/html.cpython-310.pyc
new file mode 100644
index 00000000..bd6d321f
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/html.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/http.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/http.cpython-310.pyc
new file mode 100644
index 00000000..7a98414e
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/http.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/inspect.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/inspect.cpython-310.pyc
new file mode 100644
index 00000000..06efad0d
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/inspect.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/ipv6.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/ipv6.cpython-310.pyc
similarity index 83%
rename from venv/Lib/site-packages/django/utils/__pycache__/ipv6.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/ipv6.cpython-310.pyc
index 968a8b4a..8ec559c8 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/ipv6.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/ipv6.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/itercompat.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/itercompat.cpython-310.pyc
new file mode 100644
index 00000000..6c689f62
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/itercompat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/jslex.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/jslex.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/utils/__pycache__/jslex.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/jslex.cpython-310.pyc
index c960a47b..186a75b8 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/jslex.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/jslex.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/log.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/log.cpython-310.pyc
new file mode 100644
index 00000000..dd73e823
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/log.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/lorem_ipsum.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/lorem_ipsum.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/utils/__pycache__/lorem_ipsum.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/lorem_ipsum.cpython-310.pyc
index 203f999c..6d07feb0 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/lorem_ipsum.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/lorem_ipsum.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/module_loading.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/module_loading.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/django/utils/__pycache__/module_loading.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/module_loading.cpython-310.pyc
index 8888eb37..a7c9ca0d 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/module_loading.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/module_loading.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/numberformat.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/numberformat.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/django/utils/__pycache__/numberformat.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/numberformat.cpython-310.pyc
index 87e835f1..4641c40e 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/numberformat.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/numberformat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/regex_helper.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/regex_helper.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/utils/__pycache__/regex_helper.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/regex_helper.cpython-310.pyc
index 15bdb5e1..c82ef5fc 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/regex_helper.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/regex_helper.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/safestring.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/safestring.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/django/utils/__pycache__/safestring.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/safestring.cpython-310.pyc
index efd9e761..8e2f8176 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/safestring.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/safestring.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/termcolors.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/termcolors.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/django/utils/__pycache__/termcolors.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/termcolors.cpython-310.pyc
index 40eb89e0..82eab287 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/termcolors.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/termcolors.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/text.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/text.cpython-310.pyc
new file mode 100644
index 00000000..ca867729
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/text.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/timesince.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/timesince.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/django/utils/__pycache__/timesince.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/timesince.cpython-310.pyc
index 719aa1f4..af2eaf04 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/timesince.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/timesince.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/timezone.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/timezone.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/django/utils/__pycache__/timezone.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/timezone.cpython-310.pyc
index 199de4a2..0633ee4d 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/timezone.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/timezone.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/topological_sort.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/topological_sort.cpython-310.pyc
similarity index 78%
rename from venv/Lib/site-packages/django/utils/__pycache__/topological_sort.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/__pycache__/topological_sort.cpython-310.pyc
index b679831a..485f66ca 100644
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/topological_sort.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/__pycache__/topological_sort.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/tree.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/tree.cpython-310.pyc
new file mode 100644
index 00000000..39fa5284
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/tree.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/version.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/version.cpython-310.pyc
new file mode 100644
index 00000000..9fea7c96
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/version.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/__pycache__/xmlutils.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/__pycache__/xmlutils.cpython-310.pyc
new file mode 100644
index 00000000..d8b0c1e3
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/__pycache__/xmlutils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/_os.py b/app_env/Lib/site-packages/django/utils/_os.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/_os.py
rename to app_env/Lib/site-packages/django/utils/_os.py
diff --git a/venv/Lib/site-packages/django/utils/archive.py b/app_env/Lib/site-packages/django/utils/archive.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/archive.py
rename to app_env/Lib/site-packages/django/utils/archive.py
diff --git a/venv/Lib/site-packages/django/utils/asyncio.py b/app_env/Lib/site-packages/django/utils/asyncio.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/asyncio.py
rename to app_env/Lib/site-packages/django/utils/asyncio.py
diff --git a/venv/Lib/site-packages/django/utils/autoreload.py b/app_env/Lib/site-packages/django/utils/autoreload.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/autoreload.py
rename to app_env/Lib/site-packages/django/utils/autoreload.py
diff --git a/venv/Lib/site-packages/django/utils/baseconv.py b/app_env/Lib/site-packages/django/utils/baseconv.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/baseconv.py
rename to app_env/Lib/site-packages/django/utils/baseconv.py
diff --git a/venv/Lib/site-packages/django/utils/cache.py b/app_env/Lib/site-packages/django/utils/cache.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/cache.py
rename to app_env/Lib/site-packages/django/utils/cache.py
diff --git a/venv/Lib/site-packages/django/utils/connection.py b/app_env/Lib/site-packages/django/utils/connection.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/connection.py
rename to app_env/Lib/site-packages/django/utils/connection.py
diff --git a/venv/Lib/site-packages/django/utils/crypto.py b/app_env/Lib/site-packages/django/utils/crypto.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/crypto.py
rename to app_env/Lib/site-packages/django/utils/crypto.py
diff --git a/venv/Lib/site-packages/django/utils/datastructures.py b/app_env/Lib/site-packages/django/utils/datastructures.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/datastructures.py
rename to app_env/Lib/site-packages/django/utils/datastructures.py
diff --git a/venv/Lib/site-packages/django/utils/dateformat.py b/app_env/Lib/site-packages/django/utils/dateformat.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/dateformat.py
rename to app_env/Lib/site-packages/django/utils/dateformat.py
diff --git a/venv/Lib/site-packages/django/utils/dateparse.py b/app_env/Lib/site-packages/django/utils/dateparse.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/dateparse.py
rename to app_env/Lib/site-packages/django/utils/dateparse.py
diff --git a/venv/Lib/site-packages/django/utils/dates.py b/app_env/Lib/site-packages/django/utils/dates.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/dates.py
rename to app_env/Lib/site-packages/django/utils/dates.py
diff --git a/venv/Lib/site-packages/django/utils/datetime_safe.py b/app_env/Lib/site-packages/django/utils/datetime_safe.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/datetime_safe.py
rename to app_env/Lib/site-packages/django/utils/datetime_safe.py
diff --git a/venv/Lib/site-packages/django/utils/deconstruct.py b/app_env/Lib/site-packages/django/utils/deconstruct.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/deconstruct.py
rename to app_env/Lib/site-packages/django/utils/deconstruct.py
diff --git a/venv/Lib/site-packages/django/utils/decorators.py b/app_env/Lib/site-packages/django/utils/decorators.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/decorators.py
rename to app_env/Lib/site-packages/django/utils/decorators.py
diff --git a/venv/Lib/site-packages/django/utils/deprecation.py b/app_env/Lib/site-packages/django/utils/deprecation.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/deprecation.py
rename to app_env/Lib/site-packages/django/utils/deprecation.py
diff --git a/venv/Lib/site-packages/django/utils/duration.py b/app_env/Lib/site-packages/django/utils/duration.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/duration.py
rename to app_env/Lib/site-packages/django/utils/duration.py
diff --git a/venv/Lib/site-packages/django/utils/encoding.py b/app_env/Lib/site-packages/django/utils/encoding.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/encoding.py
rename to app_env/Lib/site-packages/django/utils/encoding.py
diff --git a/venv/Lib/site-packages/django/utils/feedgenerator.py b/app_env/Lib/site-packages/django/utils/feedgenerator.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/feedgenerator.py
rename to app_env/Lib/site-packages/django/utils/feedgenerator.py
diff --git a/venv/Lib/site-packages/django/utils/formats.py b/app_env/Lib/site-packages/django/utils/formats.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/formats.py
rename to app_env/Lib/site-packages/django/utils/formats.py
diff --git a/venv/Lib/site-packages/django/utils/functional.py b/app_env/Lib/site-packages/django/utils/functional.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/functional.py
rename to app_env/Lib/site-packages/django/utils/functional.py
diff --git a/venv/Lib/site-packages/django/utils/hashable.py b/app_env/Lib/site-packages/django/utils/hashable.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/hashable.py
rename to app_env/Lib/site-packages/django/utils/hashable.py
diff --git a/venv/Lib/site-packages/django/utils/html.py b/app_env/Lib/site-packages/django/utils/html.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/html.py
rename to app_env/Lib/site-packages/django/utils/html.py
diff --git a/venv/Lib/site-packages/django/utils/http.py b/app_env/Lib/site-packages/django/utils/http.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/http.py
rename to app_env/Lib/site-packages/django/utils/http.py
diff --git a/venv/Lib/site-packages/django/utils/inspect.py b/app_env/Lib/site-packages/django/utils/inspect.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/inspect.py
rename to app_env/Lib/site-packages/django/utils/inspect.py
diff --git a/venv/Lib/site-packages/django/utils/ipv6.py b/app_env/Lib/site-packages/django/utils/ipv6.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/ipv6.py
rename to app_env/Lib/site-packages/django/utils/ipv6.py
diff --git a/venv/Lib/site-packages/django/utils/itercompat.py b/app_env/Lib/site-packages/django/utils/itercompat.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/itercompat.py
rename to app_env/Lib/site-packages/django/utils/itercompat.py
diff --git a/venv/Lib/site-packages/django/utils/jslex.py b/app_env/Lib/site-packages/django/utils/jslex.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/jslex.py
rename to app_env/Lib/site-packages/django/utils/jslex.py
diff --git a/venv/Lib/site-packages/django/utils/log.py b/app_env/Lib/site-packages/django/utils/log.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/log.py
rename to app_env/Lib/site-packages/django/utils/log.py
diff --git a/venv/Lib/site-packages/django/utils/lorem_ipsum.py b/app_env/Lib/site-packages/django/utils/lorem_ipsum.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/lorem_ipsum.py
rename to app_env/Lib/site-packages/django/utils/lorem_ipsum.py
diff --git a/venv/Lib/site-packages/django/utils/module_loading.py b/app_env/Lib/site-packages/django/utils/module_loading.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/module_loading.py
rename to app_env/Lib/site-packages/django/utils/module_loading.py
diff --git a/venv/Lib/site-packages/django/utils/numberformat.py b/app_env/Lib/site-packages/django/utils/numberformat.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/numberformat.py
rename to app_env/Lib/site-packages/django/utils/numberformat.py
diff --git a/venv/Lib/site-packages/django/utils/regex_helper.py b/app_env/Lib/site-packages/django/utils/regex_helper.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/regex_helper.py
rename to app_env/Lib/site-packages/django/utils/regex_helper.py
diff --git a/venv/Lib/site-packages/django/utils/safestring.py b/app_env/Lib/site-packages/django/utils/safestring.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/safestring.py
rename to app_env/Lib/site-packages/django/utils/safestring.py
diff --git a/venv/Lib/site-packages/django/utils/termcolors.py b/app_env/Lib/site-packages/django/utils/termcolors.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/termcolors.py
rename to app_env/Lib/site-packages/django/utils/termcolors.py
diff --git a/venv/Lib/site-packages/django/utils/text.py b/app_env/Lib/site-packages/django/utils/text.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/text.py
rename to app_env/Lib/site-packages/django/utils/text.py
diff --git a/venv/Lib/site-packages/django/utils/timesince.py b/app_env/Lib/site-packages/django/utils/timesince.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/timesince.py
rename to app_env/Lib/site-packages/django/utils/timesince.py
diff --git a/venv/Lib/site-packages/django/utils/timezone.py b/app_env/Lib/site-packages/django/utils/timezone.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/timezone.py
rename to app_env/Lib/site-packages/django/utils/timezone.py
diff --git a/venv/Lib/site-packages/django/utils/topological_sort.py b/app_env/Lib/site-packages/django/utils/topological_sort.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/topological_sort.py
rename to app_env/Lib/site-packages/django/utils/topological_sort.py
diff --git a/venv/Lib/site-packages/django/utils/translation/__init__.py b/app_env/Lib/site-packages/django/utils/translation/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/translation/__init__.py
rename to app_env/Lib/site-packages/django/utils/translation/__init__.py
diff --git a/app_env/Lib/site-packages/django/utils/translation/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/translation/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..636c38c1
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/translation/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/translation/__pycache__/reloader.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/translation/__pycache__/reloader.cpython-310.pyc
new file mode 100644
index 00000000..85984777
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/translation/__pycache__/reloader.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/translation/__pycache__/template.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/translation/__pycache__/template.cpython-310.pyc
similarity index 85%
rename from venv/Lib/site-packages/django/utils/translation/__pycache__/template.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/translation/__pycache__/template.cpython-310.pyc
index 84a3ae17..6c9f3d59 100644
Binary files a/venv/Lib/site-packages/django/utils/translation/__pycache__/template.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/translation/__pycache__/template.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/utils/translation/__pycache__/trans_null.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/translation/__pycache__/trans_null.cpython-310.pyc
new file mode 100644
index 00000000..c111a1d0
Binary files /dev/null and b/app_env/Lib/site-packages/django/utils/translation/__pycache__/trans_null.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/translation/__pycache__/trans_real.cpython-310.pyc b/app_env/Lib/site-packages/django/utils/translation/__pycache__/trans_real.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/django/utils/translation/__pycache__/trans_real.cpython-310.pyc
rename to app_env/Lib/site-packages/django/utils/translation/__pycache__/trans_real.cpython-310.pyc
index 932bf8bb..e5e03e88 100644
Binary files a/venv/Lib/site-packages/django/utils/translation/__pycache__/trans_real.cpython-310.pyc and b/app_env/Lib/site-packages/django/utils/translation/__pycache__/trans_real.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/utils/translation/reloader.py b/app_env/Lib/site-packages/django/utils/translation/reloader.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/translation/reloader.py
rename to app_env/Lib/site-packages/django/utils/translation/reloader.py
diff --git a/venv/Lib/site-packages/django/utils/translation/template.py b/app_env/Lib/site-packages/django/utils/translation/template.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/translation/template.py
rename to app_env/Lib/site-packages/django/utils/translation/template.py
diff --git a/venv/Lib/site-packages/django/utils/translation/trans_null.py b/app_env/Lib/site-packages/django/utils/translation/trans_null.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/translation/trans_null.py
rename to app_env/Lib/site-packages/django/utils/translation/trans_null.py
diff --git a/venv/Lib/site-packages/django/utils/translation/trans_real.py b/app_env/Lib/site-packages/django/utils/translation/trans_real.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/translation/trans_real.py
rename to app_env/Lib/site-packages/django/utils/translation/trans_real.py
diff --git a/venv/Lib/site-packages/django/utils/tree.py b/app_env/Lib/site-packages/django/utils/tree.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/tree.py
rename to app_env/Lib/site-packages/django/utils/tree.py
diff --git a/venv/Lib/site-packages/django/utils/version.py b/app_env/Lib/site-packages/django/utils/version.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/version.py
rename to app_env/Lib/site-packages/django/utils/version.py
diff --git a/venv/Lib/site-packages/django/utils/xmlutils.py b/app_env/Lib/site-packages/django/utils/xmlutils.py
similarity index 100%
rename from venv/Lib/site-packages/django/utils/xmlutils.py
rename to app_env/Lib/site-packages/django/utils/xmlutils.py
diff --git a/venv/Lib/site-packages/django/views/__init__.py b/app_env/Lib/site-packages/django/views/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/__init__.py
rename to app_env/Lib/site-packages/django/views/__init__.py
diff --git a/app_env/Lib/site-packages/django/views/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/views/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b9a908e6
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/__pycache__/csrf.cpython-310.pyc b/app_env/Lib/site-packages/django/views/__pycache__/csrf.cpython-310.pyc
new file mode 100644
index 00000000..35b6880a
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/__pycache__/csrf.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/__pycache__/debug.cpython-310.pyc b/app_env/Lib/site-packages/django/views/__pycache__/debug.cpython-310.pyc
new file mode 100644
index 00000000..0a3d39a6
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/__pycache__/debug.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/views/__pycache__/defaults.cpython-310.pyc b/app_env/Lib/site-packages/django/views/__pycache__/defaults.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/django/views/__pycache__/defaults.cpython-310.pyc
rename to app_env/Lib/site-packages/django/views/__pycache__/defaults.cpython-310.pyc
index e49aa5c0..f9ba92f2 100644
Binary files a/venv/Lib/site-packages/django/views/__pycache__/defaults.cpython-310.pyc and b/app_env/Lib/site-packages/django/views/__pycache__/defaults.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/__pycache__/i18n.cpython-310.pyc b/app_env/Lib/site-packages/django/views/__pycache__/i18n.cpython-310.pyc
new file mode 100644
index 00000000..6bac248a
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/__pycache__/i18n.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/__pycache__/static.cpython-310.pyc b/app_env/Lib/site-packages/django/views/__pycache__/static.cpython-310.pyc
new file mode 100644
index 00000000..abe56adf
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/__pycache__/static.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/views/csrf.py b/app_env/Lib/site-packages/django/views/csrf.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/csrf.py
rename to app_env/Lib/site-packages/django/views/csrf.py
diff --git a/venv/Lib/site-packages/django/views/debug.py b/app_env/Lib/site-packages/django/views/debug.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/debug.py
rename to app_env/Lib/site-packages/django/views/debug.py
diff --git a/venv/Lib/site-packages/django/views/decorators/__init__.py b/app_env/Lib/site-packages/django/views/decorators/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/decorators/__init__.py
rename to app_env/Lib/site-packages/django/views/decorators/__init__.py
diff --git a/app_env/Lib/site-packages/django/views/decorators/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/views/decorators/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..30b11cae
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/decorators/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/decorators/__pycache__/cache.cpython-310.pyc b/app_env/Lib/site-packages/django/views/decorators/__pycache__/cache.cpython-310.pyc
new file mode 100644
index 00000000..42b3af95
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/decorators/__pycache__/cache.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/decorators/__pycache__/clickjacking.cpython-310.pyc b/app_env/Lib/site-packages/django/views/decorators/__pycache__/clickjacking.cpython-310.pyc
new file mode 100644
index 00000000..e64fc1af
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/decorators/__pycache__/clickjacking.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/decorators/__pycache__/common.cpython-310.pyc b/app_env/Lib/site-packages/django/views/decorators/__pycache__/common.cpython-310.pyc
new file mode 100644
index 00000000..6d59deee
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/decorators/__pycache__/common.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/decorators/__pycache__/csrf.cpython-310.pyc b/app_env/Lib/site-packages/django/views/decorators/__pycache__/csrf.cpython-310.pyc
new file mode 100644
index 00000000..80840f3c
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/decorators/__pycache__/csrf.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/decorators/__pycache__/debug.cpython-310.pyc b/app_env/Lib/site-packages/django/views/decorators/__pycache__/debug.cpython-310.pyc
new file mode 100644
index 00000000..aa25b749
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/decorators/__pycache__/debug.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/decorators/__pycache__/gzip.cpython-310.pyc b/app_env/Lib/site-packages/django/views/decorators/__pycache__/gzip.cpython-310.pyc
new file mode 100644
index 00000000..1d7d0292
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/decorators/__pycache__/gzip.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/decorators/__pycache__/http.cpython-310.pyc b/app_env/Lib/site-packages/django/views/decorators/__pycache__/http.cpython-310.pyc
new file mode 100644
index 00000000..3a2ce0fd
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/decorators/__pycache__/http.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/views/decorators/__pycache__/vary.cpython-310.pyc b/app_env/Lib/site-packages/django/views/decorators/__pycache__/vary.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/django/views/decorators/__pycache__/vary.cpython-310.pyc
rename to app_env/Lib/site-packages/django/views/decorators/__pycache__/vary.cpython-310.pyc
index 77c7bf5e..2be500c3 100644
Binary files a/venv/Lib/site-packages/django/views/decorators/__pycache__/vary.cpython-310.pyc and b/app_env/Lib/site-packages/django/views/decorators/__pycache__/vary.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/views/decorators/cache.py b/app_env/Lib/site-packages/django/views/decorators/cache.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/decorators/cache.py
rename to app_env/Lib/site-packages/django/views/decorators/cache.py
diff --git a/venv/Lib/site-packages/django/views/decorators/clickjacking.py b/app_env/Lib/site-packages/django/views/decorators/clickjacking.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/decorators/clickjacking.py
rename to app_env/Lib/site-packages/django/views/decorators/clickjacking.py
diff --git a/venv/Lib/site-packages/django/views/decorators/common.py b/app_env/Lib/site-packages/django/views/decorators/common.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/decorators/common.py
rename to app_env/Lib/site-packages/django/views/decorators/common.py
diff --git a/venv/Lib/site-packages/django/views/decorators/csrf.py b/app_env/Lib/site-packages/django/views/decorators/csrf.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/decorators/csrf.py
rename to app_env/Lib/site-packages/django/views/decorators/csrf.py
diff --git a/venv/Lib/site-packages/django/views/decorators/debug.py b/app_env/Lib/site-packages/django/views/decorators/debug.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/decorators/debug.py
rename to app_env/Lib/site-packages/django/views/decorators/debug.py
diff --git a/venv/Lib/site-packages/django/views/decorators/gzip.py b/app_env/Lib/site-packages/django/views/decorators/gzip.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/decorators/gzip.py
rename to app_env/Lib/site-packages/django/views/decorators/gzip.py
diff --git a/venv/Lib/site-packages/django/views/decorators/http.py b/app_env/Lib/site-packages/django/views/decorators/http.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/decorators/http.py
rename to app_env/Lib/site-packages/django/views/decorators/http.py
diff --git a/venv/Lib/site-packages/django/views/decorators/vary.py b/app_env/Lib/site-packages/django/views/decorators/vary.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/decorators/vary.py
rename to app_env/Lib/site-packages/django/views/decorators/vary.py
diff --git a/venv/Lib/site-packages/django/views/defaults.py b/app_env/Lib/site-packages/django/views/defaults.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/defaults.py
rename to app_env/Lib/site-packages/django/views/defaults.py
diff --git a/venv/Lib/site-packages/django/views/generic/__init__.py b/app_env/Lib/site-packages/django/views/generic/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/generic/__init__.py
rename to app_env/Lib/site-packages/django/views/generic/__init__.py
diff --git a/app_env/Lib/site-packages/django/views/generic/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django/views/generic/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ccf0110f
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/generic/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/generic/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/django/views/generic/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..c8a1c845
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/generic/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/generic/__pycache__/dates.cpython-310.pyc b/app_env/Lib/site-packages/django/views/generic/__pycache__/dates.cpython-310.pyc
new file mode 100644
index 00000000..a1aec39b
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/generic/__pycache__/dates.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/views/generic/__pycache__/detail.cpython-310.pyc b/app_env/Lib/site-packages/django/views/generic/__pycache__/detail.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/django/views/generic/__pycache__/detail.cpython-310.pyc
rename to app_env/Lib/site-packages/django/views/generic/__pycache__/detail.cpython-310.pyc
index dbf40105..2883142f 100644
Binary files a/venv/Lib/site-packages/django/views/generic/__pycache__/detail.cpython-310.pyc and b/app_env/Lib/site-packages/django/views/generic/__pycache__/detail.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/views/generic/__pycache__/edit.cpython-310.pyc b/app_env/Lib/site-packages/django/views/generic/__pycache__/edit.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/django/views/generic/__pycache__/edit.cpython-310.pyc
rename to app_env/Lib/site-packages/django/views/generic/__pycache__/edit.cpython-310.pyc
index 3e93fd9a..3f2780ab 100644
Binary files a/venv/Lib/site-packages/django/views/generic/__pycache__/edit.cpython-310.pyc and b/app_env/Lib/site-packages/django/views/generic/__pycache__/edit.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django/views/generic/__pycache__/list.cpython-310.pyc b/app_env/Lib/site-packages/django/views/generic/__pycache__/list.cpython-310.pyc
new file mode 100644
index 00000000..64aaaedf
Binary files /dev/null and b/app_env/Lib/site-packages/django/views/generic/__pycache__/list.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/django/views/generic/base.py b/app_env/Lib/site-packages/django/views/generic/base.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/generic/base.py
rename to app_env/Lib/site-packages/django/views/generic/base.py
diff --git a/venv/Lib/site-packages/django/views/generic/dates.py b/app_env/Lib/site-packages/django/views/generic/dates.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/generic/dates.py
rename to app_env/Lib/site-packages/django/views/generic/dates.py
diff --git a/venv/Lib/site-packages/django/views/generic/detail.py b/app_env/Lib/site-packages/django/views/generic/detail.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/generic/detail.py
rename to app_env/Lib/site-packages/django/views/generic/detail.py
diff --git a/venv/Lib/site-packages/django/views/generic/edit.py b/app_env/Lib/site-packages/django/views/generic/edit.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/generic/edit.py
rename to app_env/Lib/site-packages/django/views/generic/edit.py
diff --git a/venv/Lib/site-packages/django/views/generic/list.py b/app_env/Lib/site-packages/django/views/generic/list.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/generic/list.py
rename to app_env/Lib/site-packages/django/views/generic/list.py
diff --git a/venv/Lib/site-packages/django/views/i18n.py b/app_env/Lib/site-packages/django/views/i18n.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/i18n.py
rename to app_env/Lib/site-packages/django/views/i18n.py
diff --git a/venv/Lib/site-packages/django/views/static.py b/app_env/Lib/site-packages/django/views/static.py
similarity index 100%
rename from venv/Lib/site-packages/django/views/static.py
rename to app_env/Lib/site-packages/django/views/static.py
diff --git a/venv/Lib/site-packages/django/views/templates/default_urlconf.html b/app_env/Lib/site-packages/django/views/templates/default_urlconf.html
similarity index 100%
rename from venv/Lib/site-packages/django/views/templates/default_urlconf.html
rename to app_env/Lib/site-packages/django/views/templates/default_urlconf.html
diff --git a/venv/Lib/site-packages/django/views/templates/technical_404.html b/app_env/Lib/site-packages/django/views/templates/technical_404.html
similarity index 100%
rename from venv/Lib/site-packages/django/views/templates/technical_404.html
rename to app_env/Lib/site-packages/django/views/templates/technical_404.html
diff --git a/venv/Lib/site-packages/django/views/templates/technical_500.html b/app_env/Lib/site-packages/django/views/templates/technical_500.html
similarity index 100%
rename from venv/Lib/site-packages/django/views/templates/technical_500.html
rename to app_env/Lib/site-packages/django/views/templates/technical_500.html
diff --git a/venv/Lib/site-packages/django/views/templates/technical_500.txt b/app_env/Lib/site-packages/django/views/templates/technical_500.txt
similarity index 100%
rename from venv/Lib/site-packages/django/views/templates/technical_500.txt
rename to app_env/Lib/site-packages/django/views/templates/technical_500.txt
diff --git a/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/DESCRIPTION.rst b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/DESCRIPTION.rst
new file mode 100644
index 00000000..9f63a57a
--- /dev/null
+++ b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/DESCRIPTION.rst
@@ -0,0 +1,55 @@
+
+Django-Heroku (Python Library)
+==============================
+
+.. image:: https://travis-ci.org/heroku/django-heroku.svg?branch=master
+ :target: https://travis-ci.org/heroku/django-heroku
+
+This is a Django library for Heroku applications that ensures a seamless deployment and development experience.
+
+This library provides:
+
+- Settings configuration (Static files / WhiteNoise).
+- Logging configuration.
+- Test runner (important for `Heroku CI `_).
+
+--------------
+
+Django 2.0 is targeted, but older versions of Django should be compatible. Only Python 3 is supported.
+
+Usage of Django-Heroku
+----------------------
+
+In ``settings.py``, at the very bottom::
+
+ …
+ # Configure Django App for Heroku.
+ import django_heroku
+ django_heroku.settings(locals())
+
+This will automatically configure ``DATABASE_URL``, ``ALLOWED_HOSTS``, WhiteNoise (for static assets), Logging, and Heroku CI for your application.
+
+**Bonus points!** If you set the ``SECRET_KEY`` environment variable, it will automatically be used in your Django settings, too!
+
+Disabling Functionality
+///////////////////////
+
+``settings()`` also accepts keyword arguments that can be passed ``False`` as a value, which will disable automatic configuration for their specific areas of responsibility:
+
+- ``databases``
+- ``test_runner``
+- ``staticfiles``
+- ``allowed_hosts``
+- ``logging``
+- ``secret_key``
+
+-----------------------
+
+You can also just use this library to provide a test runner for your Django application, for use on Heroku CI::
+
+ import django_heroku
+ TEST_RUNNER = 'django_heroku.HerokuDiscoverRunner'
+
+✨🍰✨
+
+
diff --git a/venv/Lib/site-packages/setuptools-63.2.0.dist-info/INSTALLER b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/INSTALLER
similarity index 100%
rename from venv/Lib/site-packages/setuptools-63.2.0.dist-info/INSTALLER
rename to app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/INSTALLER
diff --git a/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/METADATA b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/METADATA
new file mode 100644
index 00000000..29b37412
--- /dev/null
+++ b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/METADATA
@@ -0,0 +1,81 @@
+Metadata-Version: 2.0
+Name: django-heroku
+Version: 0.3.1
+Summary: This is a Django library for Heroku apps.
+Home-page: https://github.com/heroku/django-heroku
+Author: Kenneth Reitz
+Author-email: kreitz@salesforce.com
+License: MIT
+Description-Content-Type: UNKNOWN
+Platform: UNKNOWN
+Classifier: License :: OSI Approved :: MIT License
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2.6
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: Implementation :: CPython
+Classifier: Programming Language :: Python :: Implementation :: PyPy
+Requires-Dist: dj-database-url (>=0.5.0)
+Requires-Dist: whitenoise
+Requires-Dist: psycopg2
+Requires-Dist: django
+
+
+Django-Heroku (Python Library)
+==============================
+
+.. image:: https://travis-ci.org/heroku/django-heroku.svg?branch=master
+ :target: https://travis-ci.org/heroku/django-heroku
+
+This is a Django library for Heroku applications that ensures a seamless deployment and development experience.
+
+This library provides:
+
+- Settings configuration (Static files / WhiteNoise).
+- Logging configuration.
+- Test runner (important for `Heroku CI `_).
+
+--------------
+
+Django 2.0 is targeted, but older versions of Django should be compatible. Only Python 3 is supported.
+
+Usage of Django-Heroku
+----------------------
+
+In ``settings.py``, at the very bottom::
+
+ …
+ # Configure Django App for Heroku.
+ import django_heroku
+ django_heroku.settings(locals())
+
+This will automatically configure ``DATABASE_URL``, ``ALLOWED_HOSTS``, WhiteNoise (for static assets), Logging, and Heroku CI for your application.
+
+**Bonus points!** If you set the ``SECRET_KEY`` environment variable, it will automatically be used in your Django settings, too!
+
+Disabling Functionality
+///////////////////////
+
+``settings()`` also accepts keyword arguments that can be passed ``False`` as a value, which will disable automatic configuration for their specific areas of responsibility:
+
+- ``databases``
+- ``test_runner``
+- ``staticfiles``
+- ``allowed_hosts``
+- ``logging``
+- ``secret_key``
+
+-----------------------
+
+You can also just use this library to provide a test runner for your Django application, for use on Heroku CI::
+
+ import django_heroku
+ TEST_RUNNER = 'django_heroku.HerokuDiscoverRunner'
+
+✨🍰✨
+
+
diff --git a/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/RECORD b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/RECORD
new file mode 100644
index 00000000..b70a6260
--- /dev/null
+++ b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/RECORD
@@ -0,0 +1,14 @@
+django_heroku-0.3.1.dist-info/DESCRIPTION.rst,sha256=VvfFmiOV4t7Fr1gRBrss4uxD7VlLn0_RKrj8JREGoi8,1664
+django_heroku-0.3.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+django_heroku-0.3.1.dist-info/METADATA,sha256=yoEI2aHJeMHHX-dl-QjeWkTyQ9PT56ta2j1u3Df62Ls,2643
+django_heroku-0.3.1.dist-info/RECORD,,
+django_heroku-0.3.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+django_heroku-0.3.1.dist-info/WHEEL,sha256=kdsN-5OJAZIiHN-iO4Rhl82KyS0bDWf4uBwMbkNafr8,110
+django_heroku-0.3.1.dist-info/metadata.json,sha256=U6oXQDXK3jPg_3s3lPfFbzprkAc-k3tuSo8yWt2xLMQ,1088
+django_heroku-0.3.1.dist-info/top_level.txt,sha256=vGvZOYk0UioCJl_6belP5Yy4Y-Hx3BdpeUvJOFFUE4M,14
+django_heroku/__init__.py,sha256=79Ih1151rfcqZdr7F8HSZSTs_iT2SKd1xCkehMsXeXs,19
+django_heroku/__pycache__/__init__.cpython-310.pyc,,
+django_heroku/__pycache__/__version__.cpython-310.pyc,,
+django_heroku/__pycache__/core.cpython-310.pyc,,
+django_heroku/__version__.py,sha256=2KwowXhmiT6-Bln7VPq9d9sRpAzJq9qLyclhp2KWmjA,21
+django_heroku/core.py,sha256=vxV3saoGkw7OYdb9g-GlWSTSgaDuVpIE4y08vkNPPN4,5750
diff --git a/venv/Lib/site-packages/pip-22.2.2.dist-info/REQUESTED b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/REQUESTED
similarity index 100%
rename from venv/Lib/site-packages/pip-22.2.2.dist-info/REQUESTED
rename to app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/REQUESTED
diff --git a/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/WHEEL b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/WHEEL
new file mode 100644
index 00000000..7332a419
--- /dev/null
+++ b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/WHEEL
@@ -0,0 +1,6 @@
+Wheel-Version: 1.0
+Generator: bdist_wheel (0.30.0)
+Root-Is-Purelib: true
+Tag: py2-none-any
+Tag: py3-none-any
+
diff --git a/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/metadata.json b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/metadata.json
new file mode 100644
index 00000000..fe3df83b
--- /dev/null
+++ b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/metadata.json
@@ -0,0 +1 @@
+{"classifiers": ["License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy"], "description_content_type": "UNKNOWN", "extensions": {"python.details": {"contacts": [{"email": "kreitz@salesforce.com", "name": "Kenneth Reitz", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://github.com/heroku/django-heroku"}}}, "extras": [], "generator": "bdist_wheel (0.30.0)", "license": "MIT", "metadata_version": "2.0", "name": "django-heroku", "run_requires": [{"requires": ["dj-database-url (>=0.5.0)", "django", "psycopg2", "whitenoise"]}], "summary": "This is a Django library for Heroku apps.", "version": "0.3.1"}
\ No newline at end of file
diff --git a/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/top_level.txt b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/top_level.txt
new file mode 100644
index 00000000..b0ecacc6
--- /dev/null
+++ b/app_env/Lib/site-packages/django_heroku-0.3.1.dist-info/top_level.txt
@@ -0,0 +1 @@
+django_heroku
diff --git a/app_env/Lib/site-packages/django_heroku/__init__.py b/app_env/Lib/site-packages/django_heroku/__init__.py
new file mode 100644
index 00000000..a8ce586c
--- /dev/null
+++ b/app_env/Lib/site-packages/django_heroku/__init__.py
@@ -0,0 +1 @@
+from .core import *
\ No newline at end of file
diff --git a/app_env/Lib/site-packages/django_heroku/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/django_heroku/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1d79c722
Binary files /dev/null and b/app_env/Lib/site-packages/django_heroku/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django_heroku/__pycache__/__version__.cpython-310.pyc b/app_env/Lib/site-packages/django_heroku/__pycache__/__version__.cpython-310.pyc
new file mode 100644
index 00000000..a21ff22d
Binary files /dev/null and b/app_env/Lib/site-packages/django_heroku/__pycache__/__version__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django_heroku/__pycache__/core.cpython-310.pyc b/app_env/Lib/site-packages/django_heroku/__pycache__/core.cpython-310.pyc
new file mode 100644
index 00000000..3a669780
Binary files /dev/null and b/app_env/Lib/site-packages/django_heroku/__pycache__/core.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/django_heroku/__version__.py b/app_env/Lib/site-packages/django_heroku/__version__.py
new file mode 100644
index 00000000..9c5adf70
--- /dev/null
+++ b/app_env/Lib/site-packages/django_heroku/__version__.py
@@ -0,0 +1 @@
+__version__ = '0.3.1'
\ No newline at end of file
diff --git a/app_env/Lib/site-packages/django_heroku/core.py b/app_env/Lib/site-packages/django_heroku/core.py
new file mode 100644
index 00000000..b7b6fb3a
--- /dev/null
+++ b/app_env/Lib/site-packages/django_heroku/core.py
@@ -0,0 +1,150 @@
+import logging
+import os
+
+import dj_database_url
+from django.test.runner import DiscoverRunner
+
+MAX_CONN_AGE = 600
+
+logger = logging.getLogger(__name__)
+
+
+class HerokuDiscoverRunner(DiscoverRunner):
+ """Test Runner for Heroku CI, which provides a database for you.
+ This requires you to set the TEST database (done for you by settings().)"""
+
+ def setup_databases(self, **kwargs):
+ if not os.environ.get('CI'):
+ raise ValueError(
+ "The CI env variable must be set to enable this functionality. WARNING: "
+ "This test runner will wipe all tables in the database it targets!")
+ self.keepdb = True
+ return super(HerokuDiscoverRunner, self).setup_databases(**kwargs)
+
+ def _wipe_tables(self, connection):
+ with connection.cursor() as cursor:
+ cursor.execute(
+ """
+ DROP SCHEMA public CASCADE;
+ CREATE SCHEMA public;
+ GRANT ALL ON SCHEMA public TO postgres;
+ GRANT ALL ON SCHEMA public TO public;
+ COMMENT ON SCHEMA public IS 'standard public schema';
+ """
+ )
+ pass
+
+ def teardown_databases(self, old_config, **kwargs):
+ self.keepdb = True
+ for connection, old_name, destroy in old_config:
+ if destroy:
+ self._wipe_tables(connection)
+ super(HerokuDiscoverRunner, self).teardown_databases(old_config, **kwargs)
+
+
+def settings(config, *, db_colors=False, databases=True, test_runner=True, staticfiles=True, allowed_hosts=True, logging=True, secret_key=True):
+
+ # Database configuration.
+ # TODO: support other database (e.g. TEAL, AMBER, etc, automatically.)
+ if databases:
+ # Integrity check.
+ if 'DATABASES' not in config:
+ config['DATABASES'] = {'default': None}
+
+ if db_colors:
+ # Support all Heroku databases.
+ # TODO: This appears to break TestRunner.
+ for (env, url) in os.environ.items():
+ if env.startswith('HEROKU_POSTGRESQL'):
+ db_color = env[len('HEROKU_POSTGRESQL_'):].split('_')[0]
+
+ logger.info('Adding ${} to DATABASES Django setting ({}).'.format(env, db_color))
+
+ config['DATABASES'][db_color] = dj_database_url.parse(url, conn_max_age=MAX_CONN_AGE, ssl_require=True)
+
+ if 'DATABASE_URL' in os.environ:
+ logger.info('Adding $DATABASE_URL to default DATABASE Django setting.')
+
+ # Configure Django for DATABASE_URL environment variable.
+ config['DATABASES']['default'] = dj_database_url.config(conn_max_age=MAX_CONN_AGE, ssl_require=True)
+
+ logger.info('Adding $DATABASE_URL to TEST default DATABASE Django setting.')
+
+ # Enable test database if found in CI environment.
+ if 'CI' in os.environ:
+ config['DATABASES']['default']['TEST'] = config['DATABASES']['default']
+
+ else:
+ logger.info('$DATABASE_URL not found, falling back to previous settings!')
+
+ if test_runner:
+ # Enable test runner if found in CI environment.
+ if 'CI' in os.environ:
+ config['TEST_RUNNER'] = 'django_heroku.HerokuDiscoverRunner'
+
+ # Staticfiles configuration.
+ if staticfiles:
+ logger.info('Applying Heroku Staticfiles configuration to Django settings.')
+
+ config['STATIC_ROOT'] = os.path.join(config['BASE_DIR'], 'staticfiles')
+ config['STATIC_URL'] = '/static/'
+
+ # Ensure STATIC_ROOT exists.
+ os.makedirs(config['STATIC_ROOT'], exist_ok=True)
+
+ # Insert Whitenoise Middleware.
+ try:
+ config['MIDDLEWARE_CLASSES'] = tuple(['whitenoise.middleware.WhiteNoiseMiddleware'] + list(config['MIDDLEWARE_CLASSES']))
+ except KeyError:
+ config['MIDDLEWARE'] = tuple(['whitenoise.middleware.WhiteNoiseMiddleware'] + list(config['MIDDLEWARE']))
+
+ # Enable GZip.
+ config['STATICFILES_STORAGE'] = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
+
+ if allowed_hosts:
+ logger.info('Applying Heroku ALLOWED_HOSTS configuration to Django settings.')
+ config['ALLOWED_HOSTS'] = ['*']
+
+ if logging:
+ logger.info('Applying Heroku logging configuration to Django settings.')
+
+ config['LOGGING'] = {
+ 'version': 1,
+ 'disable_existing_loggers': False,
+ 'formatters': {
+ 'verbose': {
+ 'format': ('%(asctime)s [%(process)d] [%(levelname)s] ' +
+ 'pathname=%(pathname)s lineno=%(lineno)s ' +
+ 'funcname=%(funcName)s %(message)s'),
+ 'datefmt': '%Y-%m-%d %H:%M:%S'
+ },
+ 'simple': {
+ 'format': '%(levelname)s %(message)s'
+ }
+ },
+ 'handlers': {
+ 'null': {
+ 'level': 'DEBUG',
+ 'class': 'logging.NullHandler',
+ },
+ 'console': {
+ 'level': 'DEBUG',
+ 'class': 'logging.StreamHandler',
+ 'formatter': 'verbose'
+ }
+ },
+ 'loggers': {
+ 'testlogger': {
+ 'handlers': ['console'],
+ 'level': 'INFO',
+ }
+ }
+ }
+
+ # SECRET_KEY configuration.
+ if secret_key:
+ if 'SECRET_KEY' in os.environ:
+ logger.info('Adding $SECRET_KEY to SECRET_KEY Django setting.')
+ # Set the Django setting from the environment variable.
+ config['SECRET_KEY'] = os.environ['SECRET_KEY']
+
diff --git a/venv/Lib/site-packages/sqlparse-0.4.2.dist-info/INSTALLER b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/INSTALLER
similarity index 100%
rename from venv/Lib/site-packages/sqlparse-0.4.2.dist-info/INSTALLER
rename to app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/INSTALLER
diff --git a/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/LICENSE b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/LICENSE
new file mode 100644
index 00000000..65865a92
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/LICENSE
@@ -0,0 +1,23 @@
+2009-2018 (c) Benoît Chesneau
+2009-2015 (c) Paul J. Davis
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
diff --git a/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/METADATA b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/METADATA
new file mode 100644
index 00000000..39eb40fd
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/METADATA
@@ -0,0 +1,120 @@
+Metadata-Version: 2.1
+Name: gunicorn
+Version: 20.1.0
+Summary: WSGI HTTP Server for UNIX
+Home-page: https://gunicorn.org
+Author: Benoit Chesneau
+Author-email: benoitc@e-engura.com
+License: MIT
+Project-URL: Documentation, https://docs.gunicorn.org
+Project-URL: Homepage, https://gunicorn.org
+Project-URL: Issue tracker, https://github.com/benoitc/gunicorn/issues
+Project-URL: Source code, https://github.com/benoitc/gunicorn
+Platform: UNKNOWN
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Environment :: Other Environment
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: MIT License
+Classifier: Operating System :: MacOS :: MacOS X
+Classifier: Operating System :: POSIX
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
+Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3 :: Only
+Classifier: Programming Language :: Python :: Implementation :: CPython
+Classifier: Programming Language :: Python :: Implementation :: PyPy
+Classifier: Topic :: Internet
+Classifier: Topic :: Utilities
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Classifier: Topic :: Internet :: WWW/HTTP
+Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
+Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
+Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
+Requires-Python: >=3.5
+Requires-Dist: setuptools (>=3.0)
+Provides-Extra: eventlet
+Requires-Dist: eventlet (>=0.24.1) ; extra == 'eventlet'
+Provides-Extra: gevent
+Requires-Dist: gevent (>=1.4.0) ; extra == 'gevent'
+Provides-Extra: gthread
+Provides-Extra: setproctitle
+Requires-Dist: setproctitle ; extra == 'setproctitle'
+Provides-Extra: tornado
+Requires-Dist: tornado (>=0.2) ; extra == 'tornado'
+
+Gunicorn
+--------
+
+.. image:: https://img.shields.io/pypi/v/gunicorn.svg?style=flat
+ :alt: PyPI version
+ :target: https://pypi.python.org/pypi/gunicorn
+
+.. image:: https://img.shields.io/pypi/pyversions/gunicorn.svg
+ :alt: Supported Python versions
+ :target: https://pypi.python.org/pypi/gunicorn
+
+.. image:: https://travis-ci.org/benoitc/gunicorn.svg?branch=master
+ :alt: Build Status
+ :target: https://travis-ci.org/benoitc/gunicorn
+
+Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a pre-fork
+worker model ported from Ruby's Unicorn_ project. The Gunicorn server is broadly
+compatible with various web frameworks, simply implemented, light on server
+resource usage, and fairly speedy.
+
+Feel free to join us in `#gunicorn`_ on Freenode_.
+
+Documentation
+-------------
+
+The documentation is hosted at https://docs.gunicorn.org.
+
+Installation
+------------
+
+Gunicorn requires **Python 3.x >= 3.5**.
+
+Install from PyPI::
+
+ $ pip install gunicorn
+
+
+Usage
+-----
+
+Basic usage::
+
+ $ gunicorn [OPTIONS] APP_MODULE
+
+Where ``APP_MODULE`` is of the pattern ``$(MODULE_NAME):$(VARIABLE_NAME)``. The
+module name can be a full dotted path. The variable name refers to a WSGI
+callable that should be found in the specified module.
+
+Example with test app::
+
+ $ cd examples
+ $ gunicorn --workers=2 test:app
+
+
+Contributing
+------------
+
+See `our complete contributor's guide `_ for more details.
+
+
+License
+-------
+
+Gunicorn is released under the MIT License. See the LICENSE_ file for more
+details.
+
+.. _Unicorn: https://bogomips.org/unicorn/
+.. _`#gunicorn`: https://webchat.freenode.net/?channels=gunicorn
+.. _Freenode: https://freenode.net/
+.. _LICENSE: https://github.com/benoitc/gunicorn/blob/master/LICENSE
+
+
diff --git a/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/RECORD b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/RECORD
new file mode 100644
index 00000000..9988294b
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/RECORD
@@ -0,0 +1,77 @@
+../../Scripts/gunicorn.exe,sha256=yx3RODfedhotEXT9NYTJaJFmUsAQe-_blL3S6LTKo_E,107949
+gunicorn-20.1.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+gunicorn-20.1.0.dist-info/LICENSE,sha256=eJ_hG5Lhyr-890S1_MOSyb1cZ5hgOk6J-SW2M3mE0d8,1136
+gunicorn-20.1.0.dist-info/METADATA,sha256=-0kZuLv3CwPyNDUH40lI3VZN4CbFt3YCalVUprINtfs,3771
+gunicorn-20.1.0.dist-info/RECORD,,
+gunicorn-20.1.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+gunicorn-20.1.0.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
+gunicorn-20.1.0.dist-info/entry_points.txt,sha256=iKqKVTg4RzByDFxtGUiHcSAFATmYSYMO0f7S5RPLK6o,130
+gunicorn-20.1.0.dist-info/top_level.txt,sha256=cdMaa2yhxb8do-WioY9qRHUCfwf55YztjwQCncaInoE,9
+gunicorn/__init__.py,sha256=cMSZ4dqEfhR1eghYtGfJ9Fw4Xw9RN6U7BzH3tRpT4fQ,279
+gunicorn/__main__.py,sha256=kv-LQeOm8rXRw_NQTj8Tg3l3jv9eKMAm6jyKzYY0Hs8,171
+gunicorn/__pycache__/__init__.cpython-310.pyc,,
+gunicorn/__pycache__/__main__.cpython-310.pyc,,
+gunicorn/__pycache__/arbiter.cpython-310.pyc,,
+gunicorn/__pycache__/config.cpython-310.pyc,,
+gunicorn/__pycache__/debug.cpython-310.pyc,,
+gunicorn/__pycache__/errors.cpython-310.pyc,,
+gunicorn/__pycache__/glogging.cpython-310.pyc,,
+gunicorn/__pycache__/pidfile.cpython-310.pyc,,
+gunicorn/__pycache__/reloader.cpython-310.pyc,,
+gunicorn/__pycache__/sock.cpython-310.pyc,,
+gunicorn/__pycache__/systemd.cpython-310.pyc,,
+gunicorn/__pycache__/util.cpython-310.pyc,,
+gunicorn/app/__init__.py,sha256=GuqstqdkizeV4HRbd8aGMBn0Q8IDOyRU1wMMNqNe5GY,127
+gunicorn/app/__pycache__/__init__.cpython-310.pyc,,
+gunicorn/app/__pycache__/base.cpython-310.pyc,,
+gunicorn/app/__pycache__/pasterapp.cpython-310.pyc,,
+gunicorn/app/__pycache__/wsgiapp.cpython-310.pyc,,
+gunicorn/app/base.py,sha256=wIDHzndfzyTcKySUMJmW_mscgLVj_K9w7UCOsUNcVFo,7150
+gunicorn/app/pasterapp.py,sha256=Bb0JwQNqZxmZ-gvvZUGWAEc9RX2BdhdhfhJ2a12Xafo,2038
+gunicorn/app/wsgiapp.py,sha256=Ktb5z0GPkCpDqQ0zS8zccYCvqJi8Su4zOekwKJulwBA,1926
+gunicorn/arbiter.py,sha256=0U6C550IKETMLzTXe1scCcNfayXPKo0ZB0nJkvRWxVA,20521
+gunicorn/config.py,sha256=IxV1P9X41D2_1tTkuOR093SUKxXf5tbYVUYpfymaygU,61423
+gunicorn/debug.py,sha256=UUw-eteLEm_OQ98D6K3XtDjx4Dya2H35zdiu8z7F7uc,2289
+gunicorn/errors.py,sha256=JlDBjag90gMiRwLHG3xzEJzDOntSl1iM32R277-U6j0,919
+gunicorn/glogging.py,sha256=k_bt1mrTczN0El0rWq9FE1pwi5cTYFJeg9xHBj_d-ZE,14913
+gunicorn/http/__init__.py,sha256=b4TF3x5F0VYOPTOeNYwRGR1EYHBaPMhZRMoNeuD5-n0,277
+gunicorn/http/__pycache__/__init__.cpython-310.pyc,,
+gunicorn/http/__pycache__/body.cpython-310.pyc,,
+gunicorn/http/__pycache__/errors.cpython-310.pyc,,
+gunicorn/http/__pycache__/message.cpython-310.pyc,,
+gunicorn/http/__pycache__/parser.cpython-310.pyc,,
+gunicorn/http/__pycache__/unreader.cpython-310.pyc,,
+gunicorn/http/__pycache__/wsgi.cpython-310.pyc,,
+gunicorn/http/body.py,sha256=X1vbGcTSM3-2UI2ubtavuTS4yOd0fpTyfeFaQZ_x92o,7297
+gunicorn/http/errors.py,sha256=sNjF2lm4m2qyZ9l95_U33FRxPXpxXzjnZyYqWS-hxd4,2850
+gunicorn/http/message.py,sha256=hmSmf8DOHkRNstcYYkhuw0eg065pTDL8BeybtPftTVc,11759
+gunicorn/http/parser.py,sha256=6eNGDUMEURYqzCXsftv3a4hYuD_fBvttZxOJuRbdKNg,1364
+gunicorn/http/unreader.py,sha256=pXVde3fNCUIO2FLOSJ0iNtEEpA0m8GH6_R2Sl-cB-J8,1943
+gunicorn/http/wsgi.py,sha256=25Q6VZlBFpt-Wqmsxwt6FLw7-ckk1dU5XBkeY7i5mmc,12328
+gunicorn/instrument/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+gunicorn/instrument/__pycache__/__init__.cpython-310.pyc,,
+gunicorn/instrument/__pycache__/statsd.cpython-310.pyc,,
+gunicorn/instrument/statsd.py,sha256=-_DKM8T-3CHaq3pyxhdS6UoV70oD21tTXyJ4bVTrVFc,4633
+gunicorn/pidfile.py,sha256=U3TpoE5_05wQxonGS4pV-aLkq8BMSvql142XJnE2olw,2367
+gunicorn/reloader.py,sha256=jDxzT3Mn2NdcKD9Jiex6HNh-XSjAlK-iw7L4R36h-L0,3777
+gunicorn/sock.py,sha256=dIpBDeH2X-pzMB94VRmc-MbMrbE_ZFTAhuasOo7QebM,6110
+gunicorn/systemd.py,sha256=k2qJb6wAEv9Vk-k8zuTr9OyHJW6K2GkqWrSNoR3zTrs,2511
+gunicorn/util.py,sha256=supyIhToKSH4QONMMqTwChHwFHovRSInR92xxURSPQg,18516
+gunicorn/workers/__init__.py,sha256=Gv_JJXKofikyiPbRAUQ0IXIchKxgt0Gu-8y-nYRN9vY,594
+gunicorn/workers/__pycache__/__init__.cpython-310.pyc,,
+gunicorn/workers/__pycache__/base.cpython-310.pyc,,
+gunicorn/workers/__pycache__/base_async.cpython-310.pyc,,
+gunicorn/workers/__pycache__/geventlet.cpython-310.pyc,,
+gunicorn/workers/__pycache__/ggevent.cpython-310.pyc,,
+gunicorn/workers/__pycache__/gthread.cpython-310.pyc,,
+gunicorn/workers/__pycache__/gtornado.cpython-310.pyc,,
+gunicorn/workers/__pycache__/sync.cpython-310.pyc,,
+gunicorn/workers/__pycache__/workertmp.cpython-310.pyc,,
+gunicorn/workers/base.py,sha256=jNF8BnkHhaFNEmvfKrH0DI2-LiOs9UbKFGAPOXoFH30,9103
+gunicorn/workers/base_async.py,sha256=Eyb-zHt6bhaVfsCVygauVGVbw6WrX0KKvk5kIK-2yZ4,5693
+gunicorn/workers/geventlet.py,sha256=DDlj1MGimp-dpovHVOJB0eEvqD45_O0xcFG06v5vnEg,5713
+gunicorn/workers/ggevent.py,sha256=qgrz1Lsfcnjh8pthi6FW8BQrbT5KqLZhGxMjC1fNtEc,5733
+gunicorn/workers/gthread.py,sha256=bteTEQkeEKJMgJbtf3GcP2oCRV8HNGx4_lfzaWblTjE,12194
+gunicorn/workers/gtornado.py,sha256=0d_MoAXbLsy1LnbKc3C2joo0AwQLYnmpCJCQupl-n-Q,5988
+gunicorn/workers/sync.py,sha256=HvyNnCDlAFH3o2Ynm6W_F3IXnYQLBAT1oSn_uQ3LhCA,7327
+gunicorn/workers/workertmp.py,sha256=4sygTmNodn5vZ5qUnSSB0dUwtfetgAxrTrhhYxgEObY,1649
diff --git a/venv/Lib/site-packages/setuptools-63.2.0.dist-info/REQUESTED b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/REQUESTED
similarity index 100%
rename from venv/Lib/site-packages/setuptools-63.2.0.dist-info/REQUESTED
rename to app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/REQUESTED
diff --git a/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/WHEEL b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/WHEEL
new file mode 100644
index 00000000..385faab0
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/WHEEL
@@ -0,0 +1,5 @@
+Wheel-Version: 1.0
+Generator: bdist_wheel (0.36.2)
+Root-Is-Purelib: true
+Tag: py3-none-any
+
diff --git a/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/entry_points.txt b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/entry_points.txt
new file mode 100644
index 00000000..f70a5bec
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/entry_points.txt
@@ -0,0 +1,7 @@
+
+ [console_scripts]
+ gunicorn=gunicorn.app.wsgiapp:run
+
+ [paste.server_runner]
+ main=gunicorn.app.pasterapp:serve
+
\ No newline at end of file
diff --git a/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/top_level.txt b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/top_level.txt
new file mode 100644
index 00000000..8f22dccf
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn-20.1.0.dist-info/top_level.txt
@@ -0,0 +1 @@
+gunicorn
diff --git a/app_env/Lib/site-packages/gunicorn/__init__.py b/app_env/Lib/site-packages/gunicorn/__init__.py
new file mode 100644
index 00000000..29edada5
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/__init__.py
@@ -0,0 +1,9 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+version_info = (20, 1, 0)
+__version__ = ".".join([str(v) for v in version_info])
+SERVER = "gunicorn"
+SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)
diff --git a/app_env/Lib/site-packages/gunicorn/__main__.py b/app_env/Lib/site-packages/gunicorn/__main__.py
new file mode 100644
index 00000000..49ba6960
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/__main__.py
@@ -0,0 +1,7 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+from gunicorn.app.wsgiapp import run
+run()
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..fc547d93
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/__main__.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/__main__.cpython-310.pyc
new file mode 100644
index 00000000..deb28dfd
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/__main__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/arbiter.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/arbiter.cpython-310.pyc
new file mode 100644
index 00000000..600f08d9
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/arbiter.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/config.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/config.cpython-310.pyc
new file mode 100644
index 00000000..8b6da856
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/config.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/debug.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/debug.cpython-310.pyc
new file mode 100644
index 00000000..5a58e48e
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/debug.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/errors.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/errors.cpython-310.pyc
new file mode 100644
index 00000000..6908b25a
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/errors.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/glogging.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/glogging.cpython-310.pyc
new file mode 100644
index 00000000..01676fea
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/glogging.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/pidfile.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/pidfile.cpython-310.pyc
new file mode 100644
index 00000000..d59a77d1
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/pidfile.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/reloader.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/reloader.cpython-310.pyc
new file mode 100644
index 00000000..eb1ed0eb
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/reloader.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/sock.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/sock.cpython-310.pyc
new file mode 100644
index 00000000..79952d18
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/sock.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/systemd.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/systemd.cpython-310.pyc
new file mode 100644
index 00000000..7e3a0b90
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/systemd.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/__pycache__/util.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/__pycache__/util.cpython-310.pyc
new file mode 100644
index 00000000..4623e42a
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/__pycache__/util.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/app/__init__.py b/app_env/Lib/site-packages/gunicorn/app/__init__.py
new file mode 100644
index 00000000..87f06117
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/app/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
diff --git a/app_env/Lib/site-packages/gunicorn/app/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/app/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..f74dab42
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/app/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/app/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/app/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..124e316d
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/app/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/app/__pycache__/pasterapp.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/app/__pycache__/pasterapp.cpython-310.pyc
new file mode 100644
index 00000000..61ef93ae
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/app/__pycache__/pasterapp.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/app/__pycache__/wsgiapp.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/app/__pycache__/wsgiapp.cpython-310.pyc
new file mode 100644
index 00000000..b9e62b89
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/app/__pycache__/wsgiapp.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/app/base.py b/app_env/Lib/site-packages/gunicorn/app/base.py
new file mode 100644
index 00000000..df8c666f
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/app/base.py
@@ -0,0 +1,231 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+import importlib.util
+import importlib.machinery
+import os
+import sys
+import traceback
+
+from gunicorn import util
+from gunicorn.arbiter import Arbiter
+from gunicorn.config import Config, get_default_config_file
+from gunicorn import debug
+
+
+class BaseApplication(object):
+ """
+ An application interface for configuring and loading
+ the various necessities for any given web framework.
+ """
+ def __init__(self, usage=None, prog=None):
+ self.usage = usage
+ self.cfg = None
+ self.callable = None
+ self.prog = prog
+ self.logger = None
+ self.do_load_config()
+
+ def do_load_config(self):
+ """
+ Loads the configuration
+ """
+ try:
+ self.load_default_config()
+ self.load_config()
+ except Exception as e:
+ print("\nError: %s" % str(e), file=sys.stderr)
+ sys.stderr.flush()
+ sys.exit(1)
+
+ def load_default_config(self):
+ # init configuration
+ self.cfg = Config(self.usage, prog=self.prog)
+
+ def init(self, parser, opts, args):
+ raise NotImplementedError
+
+ def load(self):
+ raise NotImplementedError
+
+ def load_config(self):
+ """
+ This method is used to load the configuration from one or several input(s).
+ Custom Command line, configuration file.
+ You have to override this method in your class.
+ """
+ raise NotImplementedError
+
+ def reload(self):
+ self.do_load_config()
+ if self.cfg.spew:
+ debug.spew()
+
+ def wsgi(self):
+ if self.callable is None:
+ self.callable = self.load()
+ return self.callable
+
+ def run(self):
+ try:
+ Arbiter(self).run()
+ except RuntimeError as e:
+ print("\nError: %s\n" % e, file=sys.stderr)
+ sys.stderr.flush()
+ sys.exit(1)
+
+
+class Application(BaseApplication):
+
+ # 'init' and 'load' methods are implemented by WSGIApplication.
+ # pylint: disable=abstract-method
+
+ def chdir(self):
+ # chdir to the configured path before loading,
+ # default is the current dir
+ os.chdir(self.cfg.chdir)
+
+ # add the path to sys.path
+ if self.cfg.chdir not in sys.path:
+ sys.path.insert(0, self.cfg.chdir)
+
+ def get_config_from_filename(self, filename):
+
+ if not os.path.exists(filename):
+ raise RuntimeError("%r doesn't exist" % filename)
+
+ ext = os.path.splitext(filename)[1]
+
+ try:
+ module_name = '__config__'
+ if ext in [".py", ".pyc"]:
+ spec = importlib.util.spec_from_file_location(module_name, filename)
+ else:
+ msg = "configuration file should have a valid Python extension.\n"
+ util.warn(msg)
+ loader_ = importlib.machinery.SourceFileLoader(module_name, filename)
+ spec = importlib.util.spec_from_file_location(module_name, filename, loader=loader_)
+ mod = importlib.util.module_from_spec(spec)
+ sys.modules[module_name] = mod
+ spec.loader.exec_module(mod)
+ except Exception:
+ print("Failed to read config file: %s" % filename, file=sys.stderr)
+ traceback.print_exc()
+ sys.stderr.flush()
+ sys.exit(1)
+
+ return vars(mod)
+
+ def get_config_from_module_name(self, module_name):
+ return vars(importlib.import_module(module_name))
+
+ def load_config_from_module_name_or_filename(self, location):
+ """
+ Loads the configuration file: the file is a python file, otherwise raise an RuntimeError
+ Exception or stop the process if the configuration file contains a syntax error.
+ """
+
+ if location.startswith("python:"):
+ module_name = location[len("python:"):]
+ cfg = self.get_config_from_module_name(module_name)
+ else:
+ if location.startswith("file:"):
+ filename = location[len("file:"):]
+ else:
+ filename = location
+ cfg = self.get_config_from_filename(filename)
+
+ for k, v in cfg.items():
+ # Ignore unknown names
+ if k not in self.cfg.settings:
+ continue
+ try:
+ self.cfg.set(k.lower(), v)
+ except Exception:
+ print("Invalid value for %s: %s\n" % (k, v), file=sys.stderr)
+ sys.stderr.flush()
+ raise
+
+ return cfg
+
+ def load_config_from_file(self, filename):
+ return self.load_config_from_module_name_or_filename(location=filename)
+
+ def load_config(self):
+ # parse console args
+ parser = self.cfg.parser()
+ args = parser.parse_args()
+
+ # optional settings from apps
+ cfg = self.init(parser, args, args.args)
+
+ # set up import paths and follow symlinks
+ self.chdir()
+
+ # Load up the any app specific configuration
+ if cfg:
+ for k, v in cfg.items():
+ self.cfg.set(k.lower(), v)
+
+ env_args = parser.parse_args(self.cfg.get_cmd_args_from_env())
+
+ if args.config:
+ self.load_config_from_file(args.config)
+ elif env_args.config:
+ self.load_config_from_file(env_args.config)
+ else:
+ default_config = get_default_config_file()
+ if default_config is not None:
+ self.load_config_from_file(default_config)
+
+ # Load up environment configuration
+ for k, v in vars(env_args).items():
+ if v is None:
+ continue
+ if k == "args":
+ continue
+ self.cfg.set(k.lower(), v)
+
+ # Lastly, update the configuration with any command line settings.
+ for k, v in vars(args).items():
+ if v is None:
+ continue
+ if k == "args":
+ continue
+ self.cfg.set(k.lower(), v)
+
+ # current directory might be changed by the config now
+ # set up import paths and follow symlinks
+ self.chdir()
+
+ def run(self):
+ if self.cfg.print_config:
+ print(self.cfg)
+
+ if self.cfg.print_config or self.cfg.check_config:
+ try:
+ self.load()
+ except Exception:
+ msg = "\nError while loading the application:\n"
+ print(msg, file=sys.stderr)
+ traceback.print_exc()
+ sys.stderr.flush()
+ sys.exit(1)
+ sys.exit(0)
+
+ if self.cfg.spew:
+ debug.spew()
+
+ if self.cfg.daemon:
+ util.daemonize(self.cfg.enable_stdio_inheritance)
+
+ # set python paths
+ if self.cfg.pythonpath:
+ paths = self.cfg.pythonpath.split(",")
+ for path in paths:
+ pythonpath = os.path.abspath(path)
+ if pythonpath not in sys.path:
+ sys.path.insert(0, pythonpath)
+
+ super().run()
diff --git a/app_env/Lib/site-packages/gunicorn/app/pasterapp.py b/app_env/Lib/site-packages/gunicorn/app/pasterapp.py
new file mode 100644
index 00000000..4c9fc7de
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/app/pasterapp.py
@@ -0,0 +1,75 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import configparser
+import os
+
+from paste.deploy import loadapp
+
+from gunicorn.app.wsgiapp import WSGIApplication
+from gunicorn.config import get_default_config_file
+
+
+def get_wsgi_app(config_uri, name=None, defaults=None):
+ if ':' not in config_uri:
+ config_uri = "config:%s" % config_uri
+
+ return loadapp(
+ config_uri,
+ name=name,
+ relative_to=os.getcwd(),
+ global_conf=defaults,
+ )
+
+
+def has_logging_config(config_file):
+ parser = configparser.ConfigParser()
+ parser.read([config_file])
+ return parser.has_section('loggers')
+
+
+def serve(app, global_conf, **local_conf):
+ """\
+ A Paste Deployment server runner.
+
+ Example configuration:
+
+ [server:main]
+ use = egg:gunicorn#main
+ host = 127.0.0.1
+ port = 5000
+ """
+ config_file = global_conf['__file__']
+ gunicorn_config_file = local_conf.pop('config', None)
+
+ host = local_conf.pop('host', '')
+ port = local_conf.pop('port', '')
+ if host and port:
+ local_conf['bind'] = '%s:%s' % (host, port)
+ elif host:
+ local_conf['bind'] = host.split(',')
+
+ class PasterServerApplication(WSGIApplication):
+ def load_config(self):
+ self.cfg.set("default_proc_name", config_file)
+
+ if has_logging_config(config_file):
+ self.cfg.set("logconfig", config_file)
+
+ if gunicorn_config_file:
+ self.load_config_from_file(gunicorn_config_file)
+ else:
+ default_gunicorn_config_file = get_default_config_file()
+ if default_gunicorn_config_file is not None:
+ self.load_config_from_file(default_gunicorn_config_file)
+
+ for k, v in local_conf.items():
+ if v is not None:
+ self.cfg.set(k.lower(), v)
+
+ def load(self):
+ return app
+
+ PasterServerApplication().run()
diff --git a/app_env/Lib/site-packages/gunicorn/app/wsgiapp.py b/app_env/Lib/site-packages/gunicorn/app/wsgiapp.py
new file mode 100644
index 00000000..36cfba9d
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/app/wsgiapp.py
@@ -0,0 +1,71 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import os
+
+from gunicorn.errors import ConfigError
+from gunicorn.app.base import Application
+from gunicorn import util
+
+
+class WSGIApplication(Application):
+ def init(self, parser, opts, args):
+ self.app_uri = None
+
+ if opts.paste:
+ from .pasterapp import has_logging_config
+
+ config_uri = os.path.abspath(opts.paste)
+ config_file = config_uri.split('#')[0]
+
+ if not os.path.exists(config_file):
+ raise ConfigError("%r not found" % config_file)
+
+ self.cfg.set("default_proc_name", config_file)
+ self.app_uri = config_uri
+
+ if has_logging_config(config_file):
+ self.cfg.set("logconfig", config_file)
+
+ return
+
+ if len(args) > 0:
+ self.cfg.set("default_proc_name", args[0])
+ self.app_uri = args[0]
+
+ def load_config(self):
+ super().load_config()
+
+ if self.app_uri is None:
+ if self.cfg.wsgi_app is not None:
+ self.app_uri = self.cfg.wsgi_app
+ else:
+ raise ConfigError("No application module specified.")
+
+ def load_wsgiapp(self):
+ return util.import_app(self.app_uri)
+
+ def load_pasteapp(self):
+ from .pasterapp import get_wsgi_app
+ return get_wsgi_app(self.app_uri, defaults=self.cfg.paste_global_conf)
+
+ def load(self):
+ if self.cfg.paste is not None:
+ return self.load_pasteapp()
+ else:
+ return self.load_wsgiapp()
+
+
+def run():
+ """\
+ The ``gunicorn`` command line runner for launching Gunicorn with
+ generic WSGI applications.
+ """
+ from gunicorn.app.wsgiapp import WSGIApplication
+ WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
+
+
+if __name__ == '__main__':
+ run()
diff --git a/app_env/Lib/site-packages/gunicorn/arbiter.py b/app_env/Lib/site-packages/gunicorn/arbiter.py
new file mode 100644
index 00000000..24ec3874
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/arbiter.py
@@ -0,0 +1,652 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+import errno
+import os
+import random
+import select
+import signal
+import sys
+import time
+import traceback
+
+from gunicorn.errors import HaltServer, AppImportError
+from gunicorn.pidfile import Pidfile
+from gunicorn import sock, systemd, util
+
+from gunicorn import __version__, SERVER_SOFTWARE
+
+
+class Arbiter(object):
+ """
+ Arbiter maintain the workers processes alive. It launches or
+ kills them if needed. It also manages application reloading
+ via SIGHUP/USR2.
+ """
+
+ # A flag indicating if a worker failed to
+ # to boot. If a worker process exist with
+ # this error code, the arbiter will terminate.
+ WORKER_BOOT_ERROR = 3
+
+ # A flag indicating if an application failed to be loaded
+ APP_LOAD_ERROR = 4
+
+ START_CTX = {}
+
+ LISTENERS = []
+ WORKERS = {}
+ PIPE = []
+
+ # I love dynamic languages
+ SIG_QUEUE = []
+ SIGNALS = [getattr(signal, "SIG%s" % x)
+ for x in "HUP QUIT INT TERM TTIN TTOU USR1 USR2 WINCH".split()]
+ SIG_NAMES = dict(
+ (getattr(signal, name), name[3:].lower()) for name in dir(signal)
+ if name[:3] == "SIG" and name[3] != "_"
+ )
+
+ def __init__(self, app):
+ os.environ["SERVER_SOFTWARE"] = SERVER_SOFTWARE
+
+ self._num_workers = None
+ self._last_logged_active_worker_count = None
+ self.log = None
+
+ self.setup(app)
+
+ self.pidfile = None
+ self.systemd = False
+ self.worker_age = 0
+ self.reexec_pid = 0
+ self.master_pid = 0
+ self.master_name = "Master"
+
+ cwd = util.getcwd()
+
+ args = sys.argv[:]
+ args.insert(0, sys.executable)
+
+ # init start context
+ self.START_CTX = {
+ "args": args,
+ "cwd": cwd,
+ 0: sys.executable
+ }
+
+ def _get_num_workers(self):
+ return self._num_workers
+
+ def _set_num_workers(self, value):
+ old_value = self._num_workers
+ self._num_workers = value
+ self.cfg.nworkers_changed(self, value, old_value)
+ num_workers = property(_get_num_workers, _set_num_workers)
+
+ def setup(self, app):
+ self.app = app
+ self.cfg = app.cfg
+
+ if self.log is None:
+ self.log = self.cfg.logger_class(app.cfg)
+
+ # reopen files
+ if 'GUNICORN_FD' in os.environ:
+ self.log.reopen_files()
+
+ self.worker_class = self.cfg.worker_class
+ self.address = self.cfg.address
+ self.num_workers = self.cfg.workers
+ self.timeout = self.cfg.timeout
+ self.proc_name = self.cfg.proc_name
+
+ self.log.debug('Current configuration:\n{0}'.format(
+ '\n'.join(
+ ' {0}: {1}'.format(config, value.value)
+ for config, value
+ in sorted(self.cfg.settings.items(),
+ key=lambda setting: setting[1]))))
+
+ # set enviroment' variables
+ if self.cfg.env:
+ for k, v in self.cfg.env.items():
+ os.environ[k] = v
+
+ if self.cfg.preload_app:
+ self.app.wsgi()
+
+ def start(self):
+ """\
+ Initialize the arbiter. Start listening and set pidfile if needed.
+ """
+ self.log.info("Starting gunicorn %s", __version__)
+
+ if 'GUNICORN_PID' in os.environ:
+ self.master_pid = int(os.environ.get('GUNICORN_PID'))
+ self.proc_name = self.proc_name + ".2"
+ self.master_name = "Master.2"
+
+ self.pid = os.getpid()
+ if self.cfg.pidfile is not None:
+ pidname = self.cfg.pidfile
+ if self.master_pid != 0:
+ pidname += ".2"
+ self.pidfile = Pidfile(pidname)
+ self.pidfile.create(self.pid)
+ self.cfg.on_starting(self)
+
+ self.init_signals()
+
+ if not self.LISTENERS:
+ fds = None
+ listen_fds = systemd.listen_fds()
+ if listen_fds:
+ self.systemd = True
+ fds = range(systemd.SD_LISTEN_FDS_START,
+ systemd.SD_LISTEN_FDS_START + listen_fds)
+
+ elif self.master_pid:
+ fds = []
+ for fd in os.environ.pop('GUNICORN_FD').split(','):
+ fds.append(int(fd))
+
+ self.LISTENERS = sock.create_sockets(self.cfg, self.log, fds)
+
+ listeners_str = ",".join([str(l) for l in self.LISTENERS])
+ self.log.debug("Arbiter booted")
+ self.log.info("Listening at: %s (%s)", listeners_str, self.pid)
+ self.log.info("Using worker: %s", self.cfg.worker_class_str)
+ systemd.sd_notify("READY=1\nSTATUS=Gunicorn arbiter booted", self.log)
+
+ # check worker class requirements
+ if hasattr(self.worker_class, "check_config"):
+ self.worker_class.check_config(self.cfg, self.log)
+
+ self.cfg.when_ready(self)
+
+ def init_signals(self):
+ """\
+ Initialize master signal handling. Most of the signals
+ are queued. Child signals only wake up the master.
+ """
+ # close old PIPE
+ for p in self.PIPE:
+ os.close(p)
+
+ # initialize the pipe
+ self.PIPE = pair = os.pipe()
+ for p in pair:
+ util.set_non_blocking(p)
+ util.close_on_exec(p)
+
+ self.log.close_on_exec()
+
+ # initialize all signals
+ for s in self.SIGNALS:
+ signal.signal(s, self.signal)
+ signal.signal(signal.SIGCHLD, self.handle_chld)
+
+ def signal(self, sig, frame):
+ if len(self.SIG_QUEUE) < 5:
+ self.SIG_QUEUE.append(sig)
+ self.wakeup()
+
+ def run(self):
+ "Main master loop."
+ self.start()
+ util._setproctitle("master [%s]" % self.proc_name)
+
+ try:
+ self.manage_workers()
+
+ while True:
+ self.maybe_promote_master()
+
+ sig = self.SIG_QUEUE.pop(0) if self.SIG_QUEUE else None
+ if sig is None:
+ self.sleep()
+ self.murder_workers()
+ self.manage_workers()
+ continue
+
+ if sig not in self.SIG_NAMES:
+ self.log.info("Ignoring unknown signal: %s", sig)
+ continue
+
+ signame = self.SIG_NAMES.get(sig)
+ handler = getattr(self, "handle_%s" % signame, None)
+ if not handler:
+ self.log.error("Unhandled signal: %s", signame)
+ continue
+ self.log.info("Handling signal: %s", signame)
+ handler()
+ self.wakeup()
+ except (StopIteration, KeyboardInterrupt):
+ self.halt()
+ except HaltServer as inst:
+ self.halt(reason=inst.reason, exit_status=inst.exit_status)
+ except SystemExit:
+ raise
+ except Exception:
+ self.log.info("Unhandled exception in main loop",
+ exc_info=True)
+ self.stop(False)
+ if self.pidfile is not None:
+ self.pidfile.unlink()
+ sys.exit(-1)
+
+ def handle_chld(self, sig, frame):
+ "SIGCHLD handling"
+ self.reap_workers()
+ self.wakeup()
+
+ def handle_hup(self):
+ """\
+ HUP handling.
+ - Reload configuration
+ - Start the new worker processes with a new configuration
+ - Gracefully shutdown the old worker processes
+ """
+ self.log.info("Hang up: %s", self.master_name)
+ self.reload()
+
+ def handle_term(self):
+ "SIGTERM handling"
+ raise StopIteration
+
+ def handle_int(self):
+ "SIGINT handling"
+ self.stop(False)
+ raise StopIteration
+
+ def handle_quit(self):
+ "SIGQUIT handling"
+ self.stop(False)
+ raise StopIteration
+
+ def handle_ttin(self):
+ """\
+ SIGTTIN handling.
+ Increases the number of workers by one.
+ """
+ self.num_workers += 1
+ self.manage_workers()
+
+ def handle_ttou(self):
+ """\
+ SIGTTOU handling.
+ Decreases the number of workers by one.
+ """
+ if self.num_workers <= 1:
+ return
+ self.num_workers -= 1
+ self.manage_workers()
+
+ def handle_usr1(self):
+ """\
+ SIGUSR1 handling.
+ Kill all workers by sending them a SIGUSR1
+ """
+ self.log.reopen_files()
+ self.kill_workers(signal.SIGUSR1)
+
+ def handle_usr2(self):
+ """\
+ SIGUSR2 handling.
+ Creates a new arbiter/worker set as a fork of the current
+ arbiter without affecting old workers. Use this to do live
+ deployment with the ability to backout a change.
+ """
+ self.reexec()
+
+ def handle_winch(self):
+ """SIGWINCH handling"""
+ if self.cfg.daemon:
+ self.log.info("graceful stop of workers")
+ self.num_workers = 0
+ self.kill_workers(signal.SIGTERM)
+ else:
+ self.log.debug("SIGWINCH ignored. Not daemonized")
+
+ def maybe_promote_master(self):
+ if self.master_pid == 0:
+ return
+
+ if self.master_pid != os.getppid():
+ self.log.info("Master has been promoted.")
+ # reset master infos
+ self.master_name = "Master"
+ self.master_pid = 0
+ self.proc_name = self.cfg.proc_name
+ del os.environ['GUNICORN_PID']
+ # rename the pidfile
+ if self.pidfile is not None:
+ self.pidfile.rename(self.cfg.pidfile)
+ # reset proctitle
+ util._setproctitle("master [%s]" % self.proc_name)
+
+ def wakeup(self):
+ """\
+ Wake up the arbiter by writing to the PIPE
+ """
+ try:
+ os.write(self.PIPE[1], b'.')
+ except IOError as e:
+ if e.errno not in [errno.EAGAIN, errno.EINTR]:
+ raise
+
+ def halt(self, reason=None, exit_status=0):
+ """ halt arbiter """
+ self.stop()
+ self.log.info("Shutting down: %s", self.master_name)
+ if reason is not None:
+ self.log.info("Reason: %s", reason)
+ if self.pidfile is not None:
+ self.pidfile.unlink()
+ self.cfg.on_exit(self)
+ sys.exit(exit_status)
+
+ def sleep(self):
+ """\
+ Sleep until PIPE is readable or we timeout.
+ A readable PIPE means a signal occurred.
+ """
+ try:
+ ready = select.select([self.PIPE[0]], [], [], 1.0)
+ if not ready[0]:
+ return
+ while os.read(self.PIPE[0], 1):
+ pass
+ except (select.error, OSError) as e:
+ # TODO: select.error is a subclass of OSError since Python 3.3.
+ error_number = getattr(e, 'errno', e.args[0])
+ if error_number not in [errno.EAGAIN, errno.EINTR]:
+ raise
+ except KeyboardInterrupt:
+ sys.exit()
+
+ def stop(self, graceful=True):
+ """\
+ Stop workers
+
+ :attr graceful: boolean, If True (the default) workers will be
+ killed gracefully (ie. trying to wait for the current connection)
+ """
+ unlink = (
+ self.reexec_pid == self.master_pid == 0
+ and not self.systemd
+ and not self.cfg.reuse_port
+ )
+ sock.close_sockets(self.LISTENERS, unlink)
+
+ self.LISTENERS = []
+ sig = signal.SIGTERM
+ if not graceful:
+ sig = signal.SIGQUIT
+ limit = time.time() + self.cfg.graceful_timeout
+ # instruct the workers to exit
+ self.kill_workers(sig)
+ # wait until the graceful timeout
+ while self.WORKERS and time.time() < limit:
+ time.sleep(0.1)
+
+ self.kill_workers(signal.SIGKILL)
+
+ def reexec(self):
+ """\
+ Relaunch the master and workers.
+ """
+ if self.reexec_pid != 0:
+ self.log.warning("USR2 signal ignored. Child exists.")
+ return
+
+ if self.master_pid != 0:
+ self.log.warning("USR2 signal ignored. Parent exists.")
+ return
+
+ master_pid = os.getpid()
+ self.reexec_pid = os.fork()
+ if self.reexec_pid != 0:
+ return
+
+ self.cfg.pre_exec(self)
+
+ environ = self.cfg.env_orig.copy()
+ environ['GUNICORN_PID'] = str(master_pid)
+
+ if self.systemd:
+ environ['LISTEN_PID'] = str(os.getpid())
+ environ['LISTEN_FDS'] = str(len(self.LISTENERS))
+ else:
+ environ['GUNICORN_FD'] = ','.join(
+ str(l.fileno()) for l in self.LISTENERS)
+
+ os.chdir(self.START_CTX['cwd'])
+
+ # exec the process using the original environment
+ os.execvpe(self.START_CTX[0], self.START_CTX['args'], environ)
+
+ def reload(self):
+ old_address = self.cfg.address
+
+ # reset old environment
+ for k in self.cfg.env:
+ if k in self.cfg.env_orig:
+ # reset the key to the value it had before
+ # we launched gunicorn
+ os.environ[k] = self.cfg.env_orig[k]
+ else:
+ # delete the value set by gunicorn
+ try:
+ del os.environ[k]
+ except KeyError:
+ pass
+
+ # reload conf
+ self.app.reload()
+ self.setup(self.app)
+
+ # reopen log files
+ self.log.reopen_files()
+
+ # do we need to change listener ?
+ if old_address != self.cfg.address:
+ # close all listeners
+ for l in self.LISTENERS:
+ l.close()
+ # init new listeners
+ self.LISTENERS = sock.create_sockets(self.cfg, self.log)
+ listeners_str = ",".join([str(l) for l in self.LISTENERS])
+ self.log.info("Listening at: %s", listeners_str)
+
+ # do some actions on reload
+ self.cfg.on_reload(self)
+
+ # unlink pidfile
+ if self.pidfile is not None:
+ self.pidfile.unlink()
+
+ # create new pidfile
+ if self.cfg.pidfile is not None:
+ self.pidfile = Pidfile(self.cfg.pidfile)
+ self.pidfile.create(self.pid)
+
+ # set new proc_name
+ util._setproctitle("master [%s]" % self.proc_name)
+
+ # spawn new workers
+ for _ in range(self.cfg.workers):
+ self.spawn_worker()
+
+ # manage workers
+ self.manage_workers()
+
+ def murder_workers(self):
+ """\
+ Kill unused/idle workers
+ """
+ if not self.timeout:
+ return
+ workers = list(self.WORKERS.items())
+ for (pid, worker) in workers:
+ try:
+ if time.time() - worker.tmp.last_update() <= self.timeout:
+ continue
+ except (OSError, ValueError):
+ continue
+
+ if not worker.aborted:
+ self.log.critical("WORKER TIMEOUT (pid:%s)", pid)
+ worker.aborted = True
+ self.kill_worker(pid, signal.SIGABRT)
+ else:
+ self.kill_worker(pid, signal.SIGKILL)
+
+ def reap_workers(self):
+ """\
+ Reap workers to avoid zombie processes
+ """
+ try:
+ while True:
+ wpid, status = os.waitpid(-1, os.WNOHANG)
+ if not wpid:
+ break
+ if self.reexec_pid == wpid:
+ self.reexec_pid = 0
+ else:
+ # A worker was terminated. If the termination reason was
+ # that it could not boot, we'll shut it down to avoid
+ # infinite start/stop cycles.
+ exitcode = status >> 8
+ if exitcode == self.WORKER_BOOT_ERROR:
+ reason = "Worker failed to boot."
+ raise HaltServer(reason, self.WORKER_BOOT_ERROR)
+ if exitcode == self.APP_LOAD_ERROR:
+ reason = "App failed to load."
+ raise HaltServer(reason, self.APP_LOAD_ERROR)
+ if os.WIFSIGNALED(status):
+ self.log.warning(
+ "Worker with pid %s was terminated due to signal %s",
+ wpid,
+ os.WTERMSIG(status)
+ )
+
+ worker = self.WORKERS.pop(wpid, None)
+ if not worker:
+ continue
+ worker.tmp.close()
+ self.cfg.child_exit(self, worker)
+ except OSError as e:
+ if e.errno != errno.ECHILD:
+ raise
+
+ def manage_workers(self):
+ """\
+ Maintain the number of workers by spawning or killing
+ as required.
+ """
+ if len(self.WORKERS) < self.num_workers:
+ self.spawn_workers()
+
+ workers = self.WORKERS.items()
+ workers = sorted(workers, key=lambda w: w[1].age)
+ while len(workers) > self.num_workers:
+ (pid, _) = workers.pop(0)
+ self.kill_worker(pid, signal.SIGTERM)
+
+ active_worker_count = len(workers)
+ if self._last_logged_active_worker_count != active_worker_count:
+ self._last_logged_active_worker_count = active_worker_count
+ self.log.debug("{0} workers".format(active_worker_count),
+ extra={"metric": "gunicorn.workers",
+ "value": active_worker_count,
+ "mtype": "gauge"})
+
+ def spawn_worker(self):
+ self.worker_age += 1
+ worker = self.worker_class(self.worker_age, self.pid, self.LISTENERS,
+ self.app, self.timeout / 2.0,
+ self.cfg, self.log)
+ self.cfg.pre_fork(self, worker)
+ pid = os.fork()
+ if pid != 0:
+ worker.pid = pid
+ self.WORKERS[pid] = worker
+ return pid
+
+ # Do not inherit the temporary files of other workers
+ for sibling in self.WORKERS.values():
+ sibling.tmp.close()
+
+ # Process Child
+ worker.pid = os.getpid()
+ try:
+ util._setproctitle("worker [%s]" % self.proc_name)
+ self.log.info("Booting worker with pid: %s", worker.pid)
+ self.cfg.post_fork(self, worker)
+ worker.init_process()
+ sys.exit(0)
+ except SystemExit:
+ raise
+ except AppImportError as e:
+ self.log.debug("Exception while loading the application",
+ exc_info=True)
+ print("%s" % e, file=sys.stderr)
+ sys.stderr.flush()
+ sys.exit(self.APP_LOAD_ERROR)
+ except Exception:
+ self.log.exception("Exception in worker process")
+ if not worker.booted:
+ sys.exit(self.WORKER_BOOT_ERROR)
+ sys.exit(-1)
+ finally:
+ self.log.info("Worker exiting (pid: %s)", worker.pid)
+ try:
+ worker.tmp.close()
+ self.cfg.worker_exit(self, worker)
+ except Exception:
+ self.log.warning("Exception during worker exit:\n%s",
+ traceback.format_exc())
+
+ def spawn_workers(self):
+ """\
+ Spawn new workers as needed.
+
+ This is where a worker process leaves the main loop
+ of the master process.
+ """
+
+ for _ in range(self.num_workers - len(self.WORKERS)):
+ self.spawn_worker()
+ time.sleep(0.1 * random.random())
+
+ def kill_workers(self, sig):
+ """\
+ Kill all workers with the signal `sig`
+ :attr sig: `signal.SIG*` value
+ """
+ worker_pids = list(self.WORKERS.keys())
+ for pid in worker_pids:
+ self.kill_worker(pid, sig)
+
+ def kill_worker(self, pid, sig):
+ """\
+ Kill a worker
+
+ :attr pid: int, worker pid
+ :attr sig: `signal.SIG*` value
+ """
+ try:
+ os.kill(pid, sig)
+ except OSError as e:
+ if e.errno == errno.ESRCH:
+ try:
+ worker = self.WORKERS.pop(pid)
+ worker.tmp.close()
+ self.cfg.worker_exit(self, worker)
+ return
+ except (KeyError, OSError):
+ return
+ raise
diff --git a/app_env/Lib/site-packages/gunicorn/config.py b/app_env/Lib/site-packages/gunicorn/config.py
new file mode 100644
index 00000000..bc24b700
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/config.py
@@ -0,0 +1,2190 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+# Please remember to run "make -C docs html" after update "desc" attributes.
+
+import argparse
+import copy
+import grp
+import inspect
+import os
+import pwd
+import re
+import shlex
+import ssl
+import sys
+import textwrap
+
+from gunicorn import __version__, util
+from gunicorn.errors import ConfigError
+from gunicorn.reloader import reloader_engines
+
+KNOWN_SETTINGS = []
+PLATFORM = sys.platform
+
+
+def make_settings(ignore=None):
+ settings = {}
+ ignore = ignore or ()
+ for s in KNOWN_SETTINGS:
+ setting = s()
+ if setting.name in ignore:
+ continue
+ settings[setting.name] = setting.copy()
+ return settings
+
+
+def auto_int(_, x):
+ # for compatible with octal numbers in python3
+ if re.match(r'0(\d)', x, re.IGNORECASE):
+ x = x.replace('0', '0o', 1)
+ return int(x, 0)
+
+
+class Config(object):
+
+ def __init__(self, usage=None, prog=None):
+ self.settings = make_settings()
+ self.usage = usage
+ self.prog = prog or os.path.basename(sys.argv[0])
+ self.env_orig = os.environ.copy()
+
+ def __str__(self):
+ lines = []
+ kmax = max(len(k) for k in self.settings)
+ for k in sorted(self.settings):
+ v = self.settings[k].value
+ if callable(v):
+ v = "<{}()>".format(v.__qualname__)
+ lines.append("{k:{kmax}} = {v}".format(k=k, v=v, kmax=kmax))
+ return "\n".join(lines)
+
+ def __getattr__(self, name):
+ if name not in self.settings:
+ raise AttributeError("No configuration setting for: %s" % name)
+ return self.settings[name].get()
+
+ def __setattr__(self, name, value):
+ if name != "settings" and name in self.settings:
+ raise AttributeError("Invalid access!")
+ super().__setattr__(name, value)
+
+ def set(self, name, value):
+ if name not in self.settings:
+ raise AttributeError("No configuration setting for: %s" % name)
+ self.settings[name].set(value)
+
+ def get_cmd_args_from_env(self):
+ if 'GUNICORN_CMD_ARGS' in self.env_orig:
+ return shlex.split(self.env_orig['GUNICORN_CMD_ARGS'])
+ return []
+
+ def parser(self):
+ kwargs = {
+ "usage": self.usage,
+ "prog": self.prog
+ }
+ parser = argparse.ArgumentParser(**kwargs)
+ parser.add_argument("-v", "--version",
+ action="version", default=argparse.SUPPRESS,
+ version="%(prog)s (version " + __version__ + ")\n",
+ help="show program's version number and exit")
+ parser.add_argument("args", nargs="*", help=argparse.SUPPRESS)
+
+ keys = sorted(self.settings, key=self.settings.__getitem__)
+ for k in keys:
+ self.settings[k].add_option(parser)
+
+ return parser
+
+ @property
+ def worker_class_str(self):
+ uri = self.settings['worker_class'].get()
+
+ # are we using a threaded worker?
+ is_sync = uri.endswith('SyncWorker') or uri == 'sync'
+ if is_sync and self.threads > 1:
+ return "gthread"
+ return uri
+
+ @property
+ def worker_class(self):
+ uri = self.settings['worker_class'].get()
+
+ # are we using a threaded worker?
+ is_sync = uri.endswith('SyncWorker') or uri == 'sync'
+ if is_sync and self.threads > 1:
+ uri = "gunicorn.workers.gthread.ThreadWorker"
+
+ worker_class = util.load_class(uri)
+ if hasattr(worker_class, "setup"):
+ worker_class.setup()
+ return worker_class
+
+ @property
+ def address(self):
+ s = self.settings['bind'].get()
+ return [util.parse_address(util.bytes_to_str(bind)) for bind in s]
+
+ @property
+ def uid(self):
+ return self.settings['user'].get()
+
+ @property
+ def gid(self):
+ return self.settings['group'].get()
+
+ @property
+ def proc_name(self):
+ pn = self.settings['proc_name'].get()
+ if pn is not None:
+ return pn
+ else:
+ return self.settings['default_proc_name'].get()
+
+ @property
+ def logger_class(self):
+ uri = self.settings['logger_class'].get()
+ if uri == "simple":
+ # support the default
+ uri = LoggerClass.default
+
+ # if default logger is in use, and statsd is on, automagically switch
+ # to the statsd logger
+ if uri == LoggerClass.default:
+ if 'statsd_host' in self.settings and self.settings['statsd_host'].value is not None:
+ uri = "gunicorn.instrument.statsd.Statsd"
+
+ logger_class = util.load_class(
+ uri,
+ default="gunicorn.glogging.Logger",
+ section="gunicorn.loggers")
+
+ if hasattr(logger_class, "install"):
+ logger_class.install()
+ return logger_class
+
+ @property
+ def is_ssl(self):
+ return self.certfile or self.keyfile
+
+ @property
+ def ssl_options(self):
+ opts = {}
+ for name, value in self.settings.items():
+ if value.section == 'SSL':
+ opts[name] = value.get()
+ return opts
+
+ @property
+ def env(self):
+ raw_env = self.settings['raw_env'].get()
+ env = {}
+
+ if not raw_env:
+ return env
+
+ for e in raw_env:
+ s = util.bytes_to_str(e)
+ try:
+ k, v = s.split('=', 1)
+ except ValueError:
+ raise RuntimeError("environment setting %r invalid" % s)
+
+ env[k] = v
+
+ return env
+
+ @property
+ def sendfile(self):
+ if self.settings['sendfile'].get() is not None:
+ return False
+
+ if 'SENDFILE' in os.environ:
+ sendfile = os.environ['SENDFILE'].lower()
+ return sendfile in ['y', '1', 'yes', 'true']
+
+ return True
+
+ @property
+ def reuse_port(self):
+ return self.settings['reuse_port'].get()
+
+ @property
+ def paste_global_conf(self):
+ raw_global_conf = self.settings['raw_paste_global_conf'].get()
+ if raw_global_conf is None:
+ return None
+
+ global_conf = {}
+ for e in raw_global_conf:
+ s = util.bytes_to_str(e)
+ try:
+ k, v = re.split(r'(?" % (
+ self.__class__.__module__,
+ self.__class__.__name__,
+ id(self),
+ self.value,
+ )
+
+
+Setting = SettingMeta('Setting', (Setting,), {})
+
+
+def validate_bool(val):
+ if val is None:
+ return
+
+ if isinstance(val, bool):
+ return val
+ if not isinstance(val, str):
+ raise TypeError("Invalid type for casting: %s" % val)
+ if val.lower().strip() == "true":
+ return True
+ elif val.lower().strip() == "false":
+ return False
+ else:
+ raise ValueError("Invalid boolean: %s" % val)
+
+
+def validate_dict(val):
+ if not isinstance(val, dict):
+ raise TypeError("Value is not a dictionary: %s " % val)
+ return val
+
+
+def validate_pos_int(val):
+ if not isinstance(val, int):
+ val = int(val, 0)
+ else:
+ # Booleans are ints!
+ val = int(val)
+ if val < 0:
+ raise ValueError("Value must be positive: %s" % val)
+ return val
+
+
+def validate_ssl_version(val):
+ ssl_versions = {}
+ for protocol in [p for p in dir(ssl) if p.startswith("PROTOCOL_")]:
+ ssl_versions[protocol[9:]] = getattr(ssl, protocol)
+ if val in ssl_versions:
+ # string matching PROTOCOL_...
+ return ssl_versions[val]
+
+ try:
+ intval = validate_pos_int(val)
+ if intval in ssl_versions.values():
+ # positive int matching a protocol int constant
+ return intval
+ except (ValueError, TypeError):
+ # negative integer or not an integer
+ # drop this in favour of the more descriptive ValueError below
+ pass
+
+ raise ValueError("Invalid ssl_version: %s. Valid options: %s"
+ % (val, ', '.join(ssl_versions)))
+
+
+def validate_string(val):
+ if val is None:
+ return None
+ if not isinstance(val, str):
+ raise TypeError("Not a string: %s" % val)
+ return val.strip()
+
+
+def validate_file_exists(val):
+ if val is None:
+ return None
+ if not os.path.exists(val):
+ raise ValueError("File %s does not exists." % val)
+ return val
+
+
+def validate_list_string(val):
+ if not val:
+ return []
+
+ # legacy syntax
+ if isinstance(val, str):
+ val = [val]
+
+ return [validate_string(v) for v in val]
+
+
+def validate_list_of_existing_files(val):
+ return [validate_file_exists(v) for v in validate_list_string(val)]
+
+
+def validate_string_to_list(val):
+ val = validate_string(val)
+
+ if not val:
+ return []
+
+ return [v.strip() for v in val.split(",") if v]
+
+
+def validate_class(val):
+ if inspect.isfunction(val) or inspect.ismethod(val):
+ val = val()
+ if inspect.isclass(val):
+ return val
+ return validate_string(val)
+
+
+def validate_callable(arity):
+ def _validate_callable(val):
+ if isinstance(val, str):
+ try:
+ mod_name, obj_name = val.rsplit(".", 1)
+ except ValueError:
+ raise TypeError("Value '%s' is not import string. "
+ "Format: module[.submodules...].object" % val)
+ try:
+ mod = __import__(mod_name, fromlist=[obj_name])
+ val = getattr(mod, obj_name)
+ except ImportError as e:
+ raise TypeError(str(e))
+ except AttributeError:
+ raise TypeError("Can not load '%s' from '%s'"
+ "" % (obj_name, mod_name))
+ if not callable(val):
+ raise TypeError("Value is not callable: %s" % val)
+ if arity != -1 and arity != util.get_arity(val):
+ raise TypeError("Value must have an arity of: %s" % arity)
+ return val
+ return _validate_callable
+
+
+def validate_user(val):
+ if val is None:
+ return os.geteuid()
+ if isinstance(val, int):
+ return val
+ elif val.isdigit():
+ return int(val)
+ else:
+ try:
+ return pwd.getpwnam(val).pw_uid
+ except KeyError:
+ raise ConfigError("No such user: '%s'" % val)
+
+
+def validate_group(val):
+ if val is None:
+ return os.getegid()
+
+ if isinstance(val, int):
+ return val
+ elif val.isdigit():
+ return int(val)
+ else:
+ try:
+ return grp.getgrnam(val).gr_gid
+ except KeyError:
+ raise ConfigError("No such group: '%s'" % val)
+
+
+def validate_post_request(val):
+ val = validate_callable(-1)(val)
+
+ largs = util.get_arity(val)
+ if largs == 4:
+ return val
+ elif largs == 3:
+ return lambda worker, req, env, _r: val(worker, req, env)
+ elif largs == 2:
+ return lambda worker, req, _e, _r: val(worker, req)
+ else:
+ raise TypeError("Value must have an arity of: 4")
+
+
+def validate_chdir(val):
+ # valid if the value is a string
+ val = validate_string(val)
+
+ # transform relative paths
+ path = os.path.abspath(os.path.normpath(os.path.join(util.getcwd(), val)))
+
+ # test if the path exists
+ if not os.path.exists(path):
+ raise ConfigError("can't chdir to %r" % val)
+
+ return path
+
+
+def validate_hostport(val):
+ val = validate_string(val)
+ if val is None:
+ return None
+ elements = val.split(":")
+ if len(elements) == 2:
+ return (elements[0], int(elements[1]))
+ else:
+ raise TypeError("Value must consist of: hostname:port")
+
+
+def validate_reload_engine(val):
+ if val not in reloader_engines:
+ raise ConfigError("Invalid reload_engine: %r" % val)
+
+ return val
+
+
+def get_default_config_file():
+ config_path = os.path.join(os.path.abspath(os.getcwd()),
+ 'gunicorn.conf.py')
+ if os.path.exists(config_path):
+ return config_path
+ return None
+
+
+class ConfigFile(Setting):
+ name = "config"
+ section = "Config File"
+ cli = ["-c", "--config"]
+ meta = "CONFIG"
+ validator = validate_string
+ default = "./gunicorn.conf.py"
+ desc = """\
+ The Gunicorn config file.
+
+ A string of the form ``PATH``, ``file:PATH``, or ``python:MODULE_NAME``.
+
+ Only has an effect when specified on the command line or as part of an
+ application specific configuration.
+
+ By default, a file named ``gunicorn.conf.py`` will be read from the same
+ directory where gunicorn is being run.
+
+ .. versionchanged:: 19.4
+ Loading the config from a Python module requires the ``python:``
+ prefix.
+ """
+
+class WSGIApp(Setting):
+ name = "wsgi_app"
+ section = "Config File"
+ meta = "STRING"
+ validator = validate_string
+ default = None
+ desc = """\
+ A WSGI application path in pattern ``$(MODULE_NAME):$(VARIABLE_NAME)``.
+
+ .. versionadded:: 20.1.0
+ """
+
+class Bind(Setting):
+ name = "bind"
+ action = "append"
+ section = "Server Socket"
+ cli = ["-b", "--bind"]
+ meta = "ADDRESS"
+ validator = validate_list_string
+
+ if 'PORT' in os.environ:
+ default = ['0.0.0.0:{0}'.format(os.environ.get('PORT'))]
+ else:
+ default = ['127.0.0.1:8000']
+
+ desc = """\
+ The socket to bind.
+
+ A string of the form: ``HOST``, ``HOST:PORT``, ``unix:PATH``,
+ ``fd://FD``. An IP is a valid ``HOST``.
+
+ .. versionchanged:: 20.0
+ Support for ``fd://FD`` got added.
+
+ Multiple addresses can be bound. ex.::
+
+ $ gunicorn -b 127.0.0.1:8000 -b [::1]:8000 test:app
+
+ will bind the `test:app` application on localhost both on ipv6
+ and ipv4 interfaces.
+
+ If the ``PORT`` environment variable is defined, the default
+ is ``['0.0.0.0:$PORT']``. If it is not defined, the default
+ is ``['127.0.0.1:8000']``.
+ """
+
+
+class Backlog(Setting):
+ name = "backlog"
+ section = "Server Socket"
+ cli = ["--backlog"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 2048
+ desc = """\
+ The maximum number of pending connections.
+
+ This refers to the number of clients that can be waiting to be served.
+ Exceeding this number results in the client getting an error when
+ attempting to connect. It should only affect servers under significant
+ load.
+
+ Must be a positive integer. Generally set in the 64-2048 range.
+ """
+
+
+class Workers(Setting):
+ name = "workers"
+ section = "Worker Processes"
+ cli = ["-w", "--workers"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = int(os.environ.get("WEB_CONCURRENCY", 1))
+ desc = """\
+ The number of worker processes for handling requests.
+
+ A positive integer generally in the ``2-4 x $(NUM_CORES)`` range.
+ You'll want to vary this a bit to find the best for your particular
+ application's work load.
+
+ By default, the value of the ``WEB_CONCURRENCY`` environment variable,
+ which is set by some Platform-as-a-Service providers such as Heroku. If
+ it is not defined, the default is ``1``.
+ """
+
+
+class WorkerClass(Setting):
+ name = "worker_class"
+ section = "Worker Processes"
+ cli = ["-k", "--worker-class"]
+ meta = "STRING"
+ validator = validate_class
+ default = "sync"
+ desc = """\
+ The type of workers to use.
+
+ The default class (``sync``) should handle most "normal" types of
+ workloads. You'll want to read :doc:`design` for information on when
+ you might want to choose one of the other worker classes. Required
+ libraries may be installed using setuptools' ``extras_require`` feature.
+
+ A string referring to one of the following bundled classes:
+
+ * ``sync``
+ * ``eventlet`` - Requires eventlet >= 0.24.1 (or install it via
+ ``pip install gunicorn[eventlet]``)
+ * ``gevent`` - Requires gevent >= 1.4 (or install it via
+ ``pip install gunicorn[gevent]``)
+ * ``tornado`` - Requires tornado >= 0.2 (or install it via
+ ``pip install gunicorn[tornado]``)
+ * ``gthread`` - Python 2 requires the futures package to be installed
+ (or install it via ``pip install gunicorn[gthread]``)
+
+ Optionally, you can provide your own worker by giving Gunicorn a
+ Python path to a subclass of ``gunicorn.workers.base.Worker``.
+ This alternative syntax will load the gevent class:
+ ``gunicorn.workers.ggevent.GeventWorker``.
+ """
+
+
+class WorkerThreads(Setting):
+ name = "threads"
+ section = "Worker Processes"
+ cli = ["--threads"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 1
+ desc = """\
+ The number of worker threads for handling requests.
+
+ Run each worker with the specified number of threads.
+
+ A positive integer generally in the ``2-4 x $(NUM_CORES)`` range.
+ You'll want to vary this a bit to find the best for your particular
+ application's work load.
+
+ If it is not defined, the default is ``1``.
+
+ This setting only affects the Gthread worker type.
+
+ .. note::
+ If you try to use the ``sync`` worker type and set the ``threads``
+ setting to more than 1, the ``gthread`` worker type will be used
+ instead.
+ """
+
+
+class WorkerConnections(Setting):
+ name = "worker_connections"
+ section = "Worker Processes"
+ cli = ["--worker-connections"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 1000
+ desc = """\
+ The maximum number of simultaneous clients.
+
+ This setting only affects the Eventlet and Gevent worker types.
+ """
+
+
+class MaxRequests(Setting):
+ name = "max_requests"
+ section = "Worker Processes"
+ cli = ["--max-requests"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 0
+ desc = """\
+ The maximum number of requests a worker will process before restarting.
+
+ Any value greater than zero will limit the number of requests a worker
+ will process before automatically restarting. This is a simple method
+ to help limit the damage of memory leaks.
+
+ If this is set to zero (the default) then the automatic worker
+ restarts are disabled.
+ """
+
+
+class MaxRequestsJitter(Setting):
+ name = "max_requests_jitter"
+ section = "Worker Processes"
+ cli = ["--max-requests-jitter"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 0
+ desc = """\
+ The maximum jitter to add to the *max_requests* setting.
+
+ The jitter causes the restart per worker to be randomized by
+ ``randint(0, max_requests_jitter)``. This is intended to stagger worker
+ restarts to avoid all workers restarting at the same time.
+
+ .. versionadded:: 19.2
+ """
+
+
+class Timeout(Setting):
+ name = "timeout"
+ section = "Worker Processes"
+ cli = ["-t", "--timeout"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 30
+ desc = """\
+ Workers silent for more than this many seconds are killed and restarted.
+
+ Value is a positive number or 0. Setting it to 0 has the effect of
+ infinite timeouts by disabling timeouts for all workers entirely.
+
+ Generally, the default of thirty seconds should suffice. Only set this
+ noticeably higher if you're sure of the repercussions for sync workers.
+ For the non sync workers it just means that the worker process is still
+ communicating and is not tied to the length of time required to handle a
+ single request.
+ """
+
+
+class GracefulTimeout(Setting):
+ name = "graceful_timeout"
+ section = "Worker Processes"
+ cli = ["--graceful-timeout"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 30
+ desc = """\
+ Timeout for graceful workers restart.
+
+ After receiving a restart signal, workers have this much time to finish
+ serving requests. Workers still alive after the timeout (starting from
+ the receipt of the restart signal) are force killed.
+ """
+
+
+class Keepalive(Setting):
+ name = "keepalive"
+ section = "Worker Processes"
+ cli = ["--keep-alive"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 2
+ desc = """\
+ The number of seconds to wait for requests on a Keep-Alive connection.
+
+ Generally set in the 1-5 seconds range for servers with direct connection
+ to the client (e.g. when you don't have separate load balancer). When
+ Gunicorn is deployed behind a load balancer, it often makes sense to
+ set this to a higher value.
+
+ .. note::
+ ``sync`` worker does not support persistent connections and will
+ ignore this option.
+ """
+
+
+class LimitRequestLine(Setting):
+ name = "limit_request_line"
+ section = "Security"
+ cli = ["--limit-request-line"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 4094
+ desc = """\
+ The maximum size of HTTP request line in bytes.
+
+ This parameter is used to limit the allowed size of a client's
+ HTTP request-line. Since the request-line consists of the HTTP
+ method, URI, and protocol version, this directive places a
+ restriction on the length of a request-URI allowed for a request
+ on the server. A server needs this value to be large enough to
+ hold any of its resource names, including any information that
+ might be passed in the query part of a GET request. Value is a number
+ from 0 (unlimited) to 8190.
+
+ This parameter can be used to prevent any DDOS attack.
+ """
+
+
+class LimitRequestFields(Setting):
+ name = "limit_request_fields"
+ section = "Security"
+ cli = ["--limit-request-fields"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 100
+ desc = """\
+ Limit the number of HTTP headers fields in a request.
+
+ This parameter is used to limit the number of headers in a request to
+ prevent DDOS attack. Used with the *limit_request_field_size* it allows
+ more safety. By default this value is 100 and can't be larger than
+ 32768.
+ """
+
+
+class LimitRequestFieldSize(Setting):
+ name = "limit_request_field_size"
+ section = "Security"
+ cli = ["--limit-request-field_size"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = int
+ default = 8190
+ desc = """\
+ Limit the allowed size of an HTTP request header field.
+
+ Value is a positive number or 0. Setting it to 0 will allow unlimited
+ header field sizes.
+
+ .. warning::
+ Setting this parameter to a very high or unlimited value can open
+ up for DDOS attacks.
+ """
+
+
+class Reload(Setting):
+ name = "reload"
+ section = 'Debugging'
+ cli = ['--reload']
+ validator = validate_bool
+ action = 'store_true'
+ default = False
+
+ desc = '''\
+ Restart workers when code changes.
+
+ This setting is intended for development. It will cause workers to be
+ restarted whenever application code changes.
+
+ The reloader is incompatible with application preloading. When using a
+ paste configuration be sure that the server block does not import any
+ application code or the reload will not work as designed.
+
+ The default behavior is to attempt inotify with a fallback to file
+ system polling. Generally, inotify should be preferred if available
+ because it consumes less system resources.
+
+ .. note::
+ In order to use the inotify reloader, you must have the ``inotify``
+ package installed.
+ '''
+
+
+class ReloadEngine(Setting):
+ name = "reload_engine"
+ section = "Debugging"
+ cli = ["--reload-engine"]
+ meta = "STRING"
+ validator = validate_reload_engine
+ default = "auto"
+ desc = """\
+ The implementation that should be used to power :ref:`reload`.
+
+ Valid engines are:
+
+ * ``'auto'``
+ * ``'poll'``
+ * ``'inotify'`` (requires inotify)
+
+ .. versionadded:: 19.7
+ """
+
+
+class ReloadExtraFiles(Setting):
+ name = "reload_extra_files"
+ action = "append"
+ section = "Debugging"
+ cli = ["--reload-extra-file"]
+ meta = "FILES"
+ validator = validate_list_of_existing_files
+ default = []
+ desc = """\
+ Extends :ref:`reload` option to also watch and reload on additional files
+ (e.g., templates, configurations, specifications, etc.).
+
+ .. versionadded:: 19.8
+ """
+
+
+class Spew(Setting):
+ name = "spew"
+ section = "Debugging"
+ cli = ["--spew"]
+ validator = validate_bool
+ action = "store_true"
+ default = False
+ desc = """\
+ Install a trace function that spews every line executed by the server.
+
+ This is the nuclear option.
+ """
+
+
+class ConfigCheck(Setting):
+ name = "check_config"
+ section = "Debugging"
+ cli = ["--check-config"]
+ validator = validate_bool
+ action = "store_true"
+ default = False
+ desc = """\
+ Check the configuration and exit. The exit status is 0 if the
+ configuration is correct, and 1 if the configuration is incorrect.
+ """
+
+
+class PrintConfig(Setting):
+ name = "print_config"
+ section = "Debugging"
+ cli = ["--print-config"]
+ validator = validate_bool
+ action = "store_true"
+ default = False
+ desc = """\
+ Print the configuration settings as fully resolved. Implies :ref:`check-config`.
+ """
+
+
+class PreloadApp(Setting):
+ name = "preload_app"
+ section = "Server Mechanics"
+ cli = ["--preload"]
+ validator = validate_bool
+ action = "store_true"
+ default = False
+ desc = """\
+ Load application code before the worker processes are forked.
+
+ By preloading an application you can save some RAM resources as well as
+ speed up server boot times. Although, if you defer application loading
+ to each worker process, you can reload your application code easily by
+ restarting workers.
+ """
+
+
+class Sendfile(Setting):
+ name = "sendfile"
+ section = "Server Mechanics"
+ cli = ["--no-sendfile"]
+ validator = validate_bool
+ action = "store_const"
+ const = False
+
+ desc = """\
+ Disables the use of ``sendfile()``.
+
+ If not set, the value of the ``SENDFILE`` environment variable is used
+ to enable or disable its usage.
+
+ .. versionadded:: 19.2
+ .. versionchanged:: 19.4
+ Swapped ``--sendfile`` with ``--no-sendfile`` to actually allow
+ disabling.
+ .. versionchanged:: 19.6
+ added support for the ``SENDFILE`` environment variable
+ """
+
+
+class ReusePort(Setting):
+ name = "reuse_port"
+ section = "Server Mechanics"
+ cli = ["--reuse-port"]
+ validator = validate_bool
+ action = "store_true"
+ default = False
+
+ desc = """\
+ Set the ``SO_REUSEPORT`` flag on the listening socket.
+
+ .. versionadded:: 19.8
+ """
+
+
+class Chdir(Setting):
+ name = "chdir"
+ section = "Server Mechanics"
+ cli = ["--chdir"]
+ validator = validate_chdir
+ default = util.getcwd()
+ desc = """\
+ Change directory to specified directory before loading apps.
+ """
+
+
+class Daemon(Setting):
+ name = "daemon"
+ section = "Server Mechanics"
+ cli = ["-D", "--daemon"]
+ validator = validate_bool
+ action = "store_true"
+ default = False
+ desc = """\
+ Daemonize the Gunicorn process.
+
+ Detaches the server from the controlling terminal and enters the
+ background.
+ """
+
+
+class Env(Setting):
+ name = "raw_env"
+ action = "append"
+ section = "Server Mechanics"
+ cli = ["-e", "--env"]
+ meta = "ENV"
+ validator = validate_list_string
+ default = []
+
+ desc = """\
+ Set environment variables in the execution environment.
+
+ Should be a list of strings in the ``key=value`` format.
+
+ For example on the command line:
+
+ .. code-block:: console
+
+ $ gunicorn -b 127.0.0.1:8000 --env FOO=1 test:app
+
+ Or in the configuration file:
+
+ .. code-block:: python
+
+ raw_env = ["FOO=1"]
+ """
+
+
+class Pidfile(Setting):
+ name = "pidfile"
+ section = "Server Mechanics"
+ cli = ["-p", "--pid"]
+ meta = "FILE"
+ validator = validate_string
+ default = None
+ desc = """\
+ A filename to use for the PID file.
+
+ If not set, no PID file will be written.
+ """
+
+
+class WorkerTmpDir(Setting):
+ name = "worker_tmp_dir"
+ section = "Server Mechanics"
+ cli = ["--worker-tmp-dir"]
+ meta = "DIR"
+ validator = validate_string
+ default = None
+ desc = """\
+ A directory to use for the worker heartbeat temporary file.
+
+ If not set, the default temporary directory will be used.
+
+ .. note::
+ The current heartbeat system involves calling ``os.fchmod`` on
+ temporary file handlers and may block a worker for arbitrary time
+ if the directory is on a disk-backed filesystem.
+
+ See :ref:`blocking-os-fchmod` for more detailed information
+ and a solution for avoiding this problem.
+ """
+
+
+class User(Setting):
+ name = "user"
+ section = "Server Mechanics"
+ cli = ["-u", "--user"]
+ meta = "USER"
+ validator = validate_user
+ default = os.geteuid()
+ desc = """\
+ Switch worker processes to run as this user.
+
+ A valid user id (as an integer) or the name of a user that can be
+ retrieved with a call to ``pwd.getpwnam(value)`` or ``None`` to not
+ change the worker process user.
+ """
+
+
+class Group(Setting):
+ name = "group"
+ section = "Server Mechanics"
+ cli = ["-g", "--group"]
+ meta = "GROUP"
+ validator = validate_group
+ default = os.getegid()
+ desc = """\
+ Switch worker process to run as this group.
+
+ A valid group id (as an integer) or the name of a user that can be
+ retrieved with a call to ``pwd.getgrnam(value)`` or ``None`` to not
+ change the worker processes group.
+ """
+
+
+class Umask(Setting):
+ name = "umask"
+ section = "Server Mechanics"
+ cli = ["-m", "--umask"]
+ meta = "INT"
+ validator = validate_pos_int
+ type = auto_int
+ default = 0
+ desc = """\
+ A bit mask for the file mode on files written by Gunicorn.
+
+ Note that this affects unix socket permissions.
+
+ A valid value for the ``os.umask(mode)`` call or a string compatible
+ with ``int(value, 0)`` (``0`` means Python guesses the base, so values
+ like ``0``, ``0xFF``, ``0022`` are valid for decimal, hex, and octal
+ representations)
+ """
+
+
+class Initgroups(Setting):
+ name = "initgroups"
+ section = "Server Mechanics"
+ cli = ["--initgroups"]
+ validator = validate_bool
+ action = 'store_true'
+ default = False
+
+ desc = """\
+ If true, set the worker process's group access list with all of the
+ groups of which the specified username is a member, plus the specified
+ group id.
+
+ .. versionadded:: 19.7
+ """
+
+
+class TmpUploadDir(Setting):
+ name = "tmp_upload_dir"
+ section = "Server Mechanics"
+ meta = "DIR"
+ validator = validate_string
+ default = None
+ desc = """\
+ Directory to store temporary request data as they are read.
+
+ This may disappear in the near future.
+
+ This path should be writable by the process permissions set for Gunicorn
+ workers. If not specified, Gunicorn will choose a system generated
+ temporary directory.
+ """
+
+
+class SecureSchemeHeader(Setting):
+ name = "secure_scheme_headers"
+ section = "Server Mechanics"
+ validator = validate_dict
+ default = {
+ "X-FORWARDED-PROTOCOL": "ssl",
+ "X-FORWARDED-PROTO": "https",
+ "X-FORWARDED-SSL": "on"
+ }
+ desc = """\
+
+ A dictionary containing headers and values that the front-end proxy
+ uses to indicate HTTPS requests. If the source IP is permitted by
+ ``forwarded-allow-ips`` (below), *and* at least one request header matches
+ a key-value pair listed in this dictionary, then Gunicorn will set
+ ``wsgi.url_scheme`` to ``https``, so your application can tell that the
+ request is secure.
+
+ If the other headers listed in this dictionary are not present in the request, they will be ignored,
+ but if the other headers are present and do not match the provided values, then
+ the request will fail to parse. See the note below for more detailed examples of this behaviour.
+
+ The dictionary should map upper-case header names to exact string
+ values. The value comparisons are case-sensitive, unlike the header
+ names, so make sure they're exactly what your front-end proxy sends
+ when handling HTTPS requests.
+
+ It is important that your front-end proxy configuration ensures that
+ the headers defined here can not be passed directly from the client.
+ """
+
+
+class ForwardedAllowIPS(Setting):
+ name = "forwarded_allow_ips"
+ section = "Server Mechanics"
+ cli = ["--forwarded-allow-ips"]
+ meta = "STRING"
+ validator = validate_string_to_list
+ default = os.environ.get("FORWARDED_ALLOW_IPS", "127.0.0.1")
+ desc = """\
+ Front-end's IPs from which allowed to handle set secure headers.
+ (comma separate).
+
+ Set to ``*`` to disable checking of Front-end IPs (useful for setups
+ where you don't know in advance the IP address of Front-end, but
+ you still trust the environment).
+
+ By default, the value of the ``FORWARDED_ALLOW_IPS`` environment
+ variable. If it is not defined, the default is ``"127.0.0.1"``.
+
+ .. note::
+
+ The interplay between the request headers, the value of ``forwarded_allow_ips``, and the value of
+ ``secure_scheme_headers`` is complex. Various scenarios are documented below to further elaborate. In each case, we
+ have a request from the remote address 134.213.44.18, and the default value of ``secure_scheme_headers``:
+
+ .. code::
+
+ secure_scheme_headers = {
+ 'X-FORWARDED-PROTOCOL': 'ssl',
+ 'X-FORWARDED-PROTO': 'https',
+ 'X-FORWARDED-SSL': 'on'
+ }
+
+
+ .. list-table::
+ :header-rows: 1
+ :align: center
+ :widths: auto
+
+ * - ``forwarded-allow-ips``
+ - Secure Request Headers
+ - Result
+ - Explanation
+ * - .. code::
+
+ ["127.0.0.1"]
+ - .. code::
+
+ X-Forwarded-Proto: https
+ - .. code::
+
+ wsgi.url_scheme = "http"
+ - IP address was not allowed
+ * - .. code::
+
+ "*"
+ -
+ - .. code::
+
+ wsgi.url_scheme = "http"
+ - IP address allowed, but no secure headers provided
+ * - .. code::
+
+ "*"
+ - .. code::
+
+ X-Forwarded-Proto: https
+ - .. code::
+
+ wsgi.url_scheme = "https"
+ - IP address allowed, one request header matched
+ * - .. code::
+
+ ["134.213.44.18"]
+ - .. code::
+
+ X-Forwarded-Ssl: on
+ X-Forwarded-Proto: http
+ - ``InvalidSchemeHeaders()`` raised
+ - IP address allowed, but the two secure headers disagreed on if HTTPS was used
+
+
+ """
+
+
+class AccessLog(Setting):
+ name = "accesslog"
+ section = "Logging"
+ cli = ["--access-logfile"]
+ meta = "FILE"
+ validator = validate_string
+ default = None
+ desc = """\
+ The Access log file to write to.
+
+ ``'-'`` means log to stdout.
+ """
+
+
+class DisableRedirectAccessToSyslog(Setting):
+ name = "disable_redirect_access_to_syslog"
+ section = "Logging"
+ cli = ["--disable-redirect-access-to-syslog"]
+ validator = validate_bool
+ action = 'store_true'
+ default = False
+ desc = """\
+ Disable redirect access logs to syslog.
+
+ .. versionadded:: 19.8
+ """
+
+
+class AccessLogFormat(Setting):
+ name = "access_log_format"
+ section = "Logging"
+ cli = ["--access-logformat"]
+ meta = "STRING"
+ validator = validate_string
+ default = '%(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s"'
+ desc = """\
+ The access log format.
+
+ =========== ===========
+ Identifier Description
+ =========== ===========
+ h remote address
+ l ``'-'``
+ u user name
+ t date of the request
+ r status line (e.g. ``GET / HTTP/1.1``)
+ m request method
+ U URL path without query string
+ q query string
+ H protocol
+ s status
+ B response length
+ b response length or ``'-'`` (CLF format)
+ f referer
+ a user agent
+ T request time in seconds
+ M request time in milliseconds
+ D request time in microseconds
+ L request time in decimal seconds
+ p process ID
+ {header}i request header
+ {header}o response header
+ {variable}e environment variable
+ =========== ===========
+
+ Use lowercase for header and environment variable names, and put
+ ``{...}x`` names inside ``%(...)s``. For example::
+
+ %({x-forwarded-for}i)s
+ """
+
+
+class ErrorLog(Setting):
+ name = "errorlog"
+ section = "Logging"
+ cli = ["--error-logfile", "--log-file"]
+ meta = "FILE"
+ validator = validate_string
+ default = '-'
+ desc = """\
+ The Error log file to write to.
+
+ Using ``'-'`` for FILE makes gunicorn log to stderr.
+
+ .. versionchanged:: 19.2
+ Log to stderr by default.
+
+ """
+
+
+class Loglevel(Setting):
+ name = "loglevel"
+ section = "Logging"
+ cli = ["--log-level"]
+ meta = "LEVEL"
+ validator = validate_string
+ default = "info"
+ desc = """\
+ The granularity of Error log outputs.
+
+ Valid level names are:
+
+ * ``'debug'``
+ * ``'info'``
+ * ``'warning'``
+ * ``'error'``
+ * ``'critical'``
+ """
+
+
+class CaptureOutput(Setting):
+ name = "capture_output"
+ section = "Logging"
+ cli = ["--capture-output"]
+ validator = validate_bool
+ action = 'store_true'
+ default = False
+ desc = """\
+ Redirect stdout/stderr to specified file in :ref:`errorlog`.
+
+ .. versionadded:: 19.6
+ """
+
+
+class LoggerClass(Setting):
+ name = "logger_class"
+ section = "Logging"
+ cli = ["--logger-class"]
+ meta = "STRING"
+ validator = validate_class
+ default = "gunicorn.glogging.Logger"
+ desc = """\
+ The logger you want to use to log events in Gunicorn.
+
+ The default class (``gunicorn.glogging.Logger``) handles most
+ normal usages in logging. It provides error and access logging.
+
+ You can provide your own logger by giving Gunicorn a Python path to a
+ class that quacks like ``gunicorn.glogging.Logger``.
+ """
+
+
+class LogConfig(Setting):
+ name = "logconfig"
+ section = "Logging"
+ cli = ["--log-config"]
+ meta = "FILE"
+ validator = validate_string
+ default = None
+ desc = """\
+ The log config file to use.
+ Gunicorn uses the standard Python logging module's Configuration
+ file format.
+ """
+
+
+class LogConfigDict(Setting):
+ name = "logconfig_dict"
+ section = "Logging"
+ validator = validate_dict
+ default = {}
+ desc = """\
+ The log config dictionary to use, using the standard Python
+ logging module's dictionary configuration format. This option
+ takes precedence over the :ref:`logconfig` option, which uses the
+ older file configuration format.
+
+ Format: https://docs.python.org/3/library/logging.config.html#logging.config.dictConfig
+
+ .. versionadded:: 19.8
+ """
+
+
+class SyslogTo(Setting):
+ name = "syslog_addr"
+ section = "Logging"
+ cli = ["--log-syslog-to"]
+ meta = "SYSLOG_ADDR"
+ validator = validate_string
+
+ if PLATFORM == "darwin":
+ default = "unix:///var/run/syslog"
+ elif PLATFORM in ('freebsd', 'dragonfly', ):
+ default = "unix:///var/run/log"
+ elif PLATFORM == "openbsd":
+ default = "unix:///dev/log"
+ else:
+ default = "udp://localhost:514"
+
+ desc = """\
+ Address to send syslog messages.
+
+ Address is a string of the form:
+
+ * ``unix://PATH#TYPE`` : for unix domain socket. ``TYPE`` can be ``stream``
+ for the stream driver or ``dgram`` for the dgram driver.
+ ``stream`` is the default.
+ * ``udp://HOST:PORT`` : for UDP sockets
+ * ``tcp://HOST:PORT`` : for TCP sockets
+
+ """
+
+
+class Syslog(Setting):
+ name = "syslog"
+ section = "Logging"
+ cli = ["--log-syslog"]
+ validator = validate_bool
+ action = 'store_true'
+ default = False
+ desc = """\
+ Send *Gunicorn* logs to syslog.
+
+ .. versionchanged:: 19.8
+ You can now disable sending access logs by using the
+ :ref:`disable-redirect-access-to-syslog` setting.
+ """
+
+
+class SyslogPrefix(Setting):
+ name = "syslog_prefix"
+ section = "Logging"
+ cli = ["--log-syslog-prefix"]
+ meta = "SYSLOG_PREFIX"
+ validator = validate_string
+ default = None
+ desc = """\
+ Makes Gunicorn use the parameter as program-name in the syslog entries.
+
+ All entries will be prefixed by ``gunicorn.``. By default the
+ program name is the name of the process.
+ """
+
+
+class SyslogFacility(Setting):
+ name = "syslog_facility"
+ section = "Logging"
+ cli = ["--log-syslog-facility"]
+ meta = "SYSLOG_FACILITY"
+ validator = validate_string
+ default = "user"
+ desc = """\
+ Syslog facility name
+ """
+
+
+class EnableStdioInheritance(Setting):
+ name = "enable_stdio_inheritance"
+ section = "Logging"
+ cli = ["-R", "--enable-stdio-inheritance"]
+ validator = validate_bool
+ default = False
+ action = "store_true"
+ desc = """\
+ Enable stdio inheritance.
+
+ Enable inheritance for stdio file descriptors in daemon mode.
+
+ Note: To disable the Python stdout buffering, you can to set the user
+ environment variable ``PYTHONUNBUFFERED`` .
+ """
+
+
+# statsD monitoring
+class StatsdHost(Setting):
+ name = "statsd_host"
+ section = "Logging"
+ cli = ["--statsd-host"]
+ meta = "STATSD_ADDR"
+ default = None
+ validator = validate_hostport
+ desc = """\
+ ``host:port`` of the statsd server to log to.
+
+ .. versionadded:: 19.1
+ """
+
+# Datadog Statsd (dogstatsd) tags. https://docs.datadoghq.com/developers/dogstatsd/
+class DogstatsdTags(Setting):
+ name = "dogstatsd_tags"
+ section = "Logging"
+ cli = ["--dogstatsd-tags"]
+ meta = "DOGSTATSD_TAGS"
+ default = ""
+ validator = validate_string
+ desc = """\
+ A comma-delimited list of datadog statsd (dogstatsd) tags to append to
+ statsd metrics.
+
+ .. versionadded:: 20
+ """
+
+class StatsdPrefix(Setting):
+ name = "statsd_prefix"
+ section = "Logging"
+ cli = ["--statsd-prefix"]
+ meta = "STATSD_PREFIX"
+ default = ""
+ validator = validate_string
+ desc = """\
+ Prefix to use when emitting statsd metrics (a trailing ``.`` is added,
+ if not provided).
+
+ .. versionadded:: 19.2
+ """
+
+
+class Procname(Setting):
+ name = "proc_name"
+ section = "Process Naming"
+ cli = ["-n", "--name"]
+ meta = "STRING"
+ validator = validate_string
+ default = None
+ desc = """\
+ A base to use with setproctitle for process naming.
+
+ This affects things like ``ps`` and ``top``. If you're going to be
+ running more than one instance of Gunicorn you'll probably want to set a
+ name to tell them apart. This requires that you install the setproctitle
+ module.
+
+ If not set, the *default_proc_name* setting will be used.
+ """
+
+
+class DefaultProcName(Setting):
+ name = "default_proc_name"
+ section = "Process Naming"
+ validator = validate_string
+ default = "gunicorn"
+ desc = """\
+ Internal setting that is adjusted for each type of application.
+ """
+
+
+class PythonPath(Setting):
+ name = "pythonpath"
+ section = "Server Mechanics"
+ cli = ["--pythonpath"]
+ meta = "STRING"
+ validator = validate_string
+ default = None
+ desc = """\
+ A comma-separated list of directories to add to the Python path.
+
+ e.g.
+ ``'/home/djangoprojects/myproject,/home/python/mylibrary'``.
+ """
+
+
+class Paste(Setting):
+ name = "paste"
+ section = "Server Mechanics"
+ cli = ["--paste", "--paster"]
+ meta = "STRING"
+ validator = validate_string
+ default = None
+ desc = """\
+ Load a PasteDeploy config file. The argument may contain a ``#``
+ symbol followed by the name of an app section from the config file,
+ e.g. ``production.ini#admin``.
+
+ At this time, using alternate server blocks is not supported. Use the
+ command line arguments to control server configuration instead.
+ """
+
+
+class OnStarting(Setting):
+ name = "on_starting"
+ section = "Server Hooks"
+ validator = validate_callable(1)
+ type = callable
+
+ def on_starting(server):
+ pass
+ default = staticmethod(on_starting)
+ desc = """\
+ Called just before the master process is initialized.
+
+ The callable needs to accept a single instance variable for the Arbiter.
+ """
+
+
+class OnReload(Setting):
+ name = "on_reload"
+ section = "Server Hooks"
+ validator = validate_callable(1)
+ type = callable
+
+ def on_reload(server):
+ pass
+ default = staticmethod(on_reload)
+ desc = """\
+ Called to recycle workers during a reload via SIGHUP.
+
+ The callable needs to accept a single instance variable for the Arbiter.
+ """
+
+
+class WhenReady(Setting):
+ name = "when_ready"
+ section = "Server Hooks"
+ validator = validate_callable(1)
+ type = callable
+
+ def when_ready(server):
+ pass
+ default = staticmethod(when_ready)
+ desc = """\
+ Called just after the server is started.
+
+ The callable needs to accept a single instance variable for the Arbiter.
+ """
+
+
+class Prefork(Setting):
+ name = "pre_fork"
+ section = "Server Hooks"
+ validator = validate_callable(2)
+ type = callable
+
+ def pre_fork(server, worker):
+ pass
+ default = staticmethod(pre_fork)
+ desc = """\
+ Called just before a worker is forked.
+
+ The callable needs to accept two instance variables for the Arbiter and
+ new Worker.
+ """
+
+
+class Postfork(Setting):
+ name = "post_fork"
+ section = "Server Hooks"
+ validator = validate_callable(2)
+ type = callable
+
+ def post_fork(server, worker):
+ pass
+ default = staticmethod(post_fork)
+ desc = """\
+ Called just after a worker has been forked.
+
+ The callable needs to accept two instance variables for the Arbiter and
+ new Worker.
+ """
+
+
+class PostWorkerInit(Setting):
+ name = "post_worker_init"
+ section = "Server Hooks"
+ validator = validate_callable(1)
+ type = callable
+
+ def post_worker_init(worker):
+ pass
+
+ default = staticmethod(post_worker_init)
+ desc = """\
+ Called just after a worker has initialized the application.
+
+ The callable needs to accept one instance variable for the initialized
+ Worker.
+ """
+
+
+class WorkerInt(Setting):
+ name = "worker_int"
+ section = "Server Hooks"
+ validator = validate_callable(1)
+ type = callable
+
+ def worker_int(worker):
+ pass
+
+ default = staticmethod(worker_int)
+ desc = """\
+ Called just after a worker exited on SIGINT or SIGQUIT.
+
+ The callable needs to accept one instance variable for the initialized
+ Worker.
+ """
+
+
+class WorkerAbort(Setting):
+ name = "worker_abort"
+ section = "Server Hooks"
+ validator = validate_callable(1)
+ type = callable
+
+ def worker_abort(worker):
+ pass
+
+ default = staticmethod(worker_abort)
+ desc = """\
+ Called when a worker received the SIGABRT signal.
+
+ This call generally happens on timeout.
+
+ The callable needs to accept one instance variable for the initialized
+ Worker.
+ """
+
+
+class PreExec(Setting):
+ name = "pre_exec"
+ section = "Server Hooks"
+ validator = validate_callable(1)
+ type = callable
+
+ def pre_exec(server):
+ pass
+ default = staticmethod(pre_exec)
+ desc = """\
+ Called just before a new master process is forked.
+
+ The callable needs to accept a single instance variable for the Arbiter.
+ """
+
+
+class PreRequest(Setting):
+ name = "pre_request"
+ section = "Server Hooks"
+ validator = validate_callable(2)
+ type = callable
+
+ def pre_request(worker, req):
+ worker.log.debug("%s %s" % (req.method, req.path))
+ default = staticmethod(pre_request)
+ desc = """\
+ Called just before a worker processes the request.
+
+ The callable needs to accept two instance variables for the Worker and
+ the Request.
+ """
+
+
+class PostRequest(Setting):
+ name = "post_request"
+ section = "Server Hooks"
+ validator = validate_post_request
+ type = callable
+
+ def post_request(worker, req, environ, resp):
+ pass
+ default = staticmethod(post_request)
+ desc = """\
+ Called after a worker processes the request.
+
+ The callable needs to accept two instance variables for the Worker and
+ the Request.
+ """
+
+
+class ChildExit(Setting):
+ name = "child_exit"
+ section = "Server Hooks"
+ validator = validate_callable(2)
+ type = callable
+
+ def child_exit(server, worker):
+ pass
+ default = staticmethod(child_exit)
+ desc = """\
+ Called just after a worker has been exited, in the master process.
+
+ The callable needs to accept two instance variables for the Arbiter and
+ the just-exited Worker.
+
+ .. versionadded:: 19.7
+ """
+
+
+class WorkerExit(Setting):
+ name = "worker_exit"
+ section = "Server Hooks"
+ validator = validate_callable(2)
+ type = callable
+
+ def worker_exit(server, worker):
+ pass
+ default = staticmethod(worker_exit)
+ desc = """\
+ Called just after a worker has been exited, in the worker process.
+
+ The callable needs to accept two instance variables for the Arbiter and
+ the just-exited Worker.
+ """
+
+
+class NumWorkersChanged(Setting):
+ name = "nworkers_changed"
+ section = "Server Hooks"
+ validator = validate_callable(3)
+ type = callable
+
+ def nworkers_changed(server, new_value, old_value):
+ pass
+ default = staticmethod(nworkers_changed)
+ desc = """\
+ Called just after *num_workers* has been changed.
+
+ The callable needs to accept an instance variable of the Arbiter and
+ two integers of number of workers after and before change.
+
+ If the number of workers is set for the first time, *old_value* would
+ be ``None``.
+ """
+
+
+class OnExit(Setting):
+ name = "on_exit"
+ section = "Server Hooks"
+ validator = validate_callable(1)
+
+ def on_exit(server):
+ pass
+
+ default = staticmethod(on_exit)
+ desc = """\
+ Called just before exiting Gunicorn.
+
+ The callable needs to accept a single instance variable for the Arbiter.
+ """
+
+
+class ProxyProtocol(Setting):
+ name = "proxy_protocol"
+ section = "Server Mechanics"
+ cli = ["--proxy-protocol"]
+ validator = validate_bool
+ default = False
+ action = "store_true"
+ desc = """\
+ Enable detect PROXY protocol (PROXY mode).
+
+ Allow using HTTP and Proxy together. It may be useful for work with
+ stunnel as HTTPS frontend and Gunicorn as HTTP server.
+
+ PROXY protocol: http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt
+
+ Example for stunnel config::
+
+ [https]
+ protocol = proxy
+ accept = 443
+ connect = 80
+ cert = /etc/ssl/certs/stunnel.pem
+ key = /etc/ssl/certs/stunnel.key
+ """
+
+
+class ProxyAllowFrom(Setting):
+ name = "proxy_allow_ips"
+ section = "Server Mechanics"
+ cli = ["--proxy-allow-from"]
+ validator = validate_string_to_list
+ default = "127.0.0.1"
+ desc = """\
+ Front-end's IPs from which allowed accept proxy requests (comma separate).
+
+ Set to ``*`` to disable checking of Front-end IPs (useful for setups
+ where you don't know in advance the IP address of Front-end, but
+ you still trust the environment)
+ """
+
+
+class KeyFile(Setting):
+ name = "keyfile"
+ section = "SSL"
+ cli = ["--keyfile"]
+ meta = "FILE"
+ validator = validate_string
+ default = None
+ desc = """\
+ SSL key file
+ """
+
+
+class CertFile(Setting):
+ name = "certfile"
+ section = "SSL"
+ cli = ["--certfile"]
+ meta = "FILE"
+ validator = validate_string
+ default = None
+ desc = """\
+ SSL certificate file
+ """
+
+
+class SSLVersion(Setting):
+ name = "ssl_version"
+ section = "SSL"
+ cli = ["--ssl-version"]
+ validator = validate_ssl_version
+
+ if hasattr(ssl, "PROTOCOL_TLS"):
+ default = ssl.PROTOCOL_TLS
+ else:
+ default = ssl.PROTOCOL_SSLv23
+
+ desc = """\
+ SSL version to use (see stdlib ssl module's)
+
+ .. versionchanged:: 20.0.1
+ The default value has been changed from ``ssl.PROTOCOL_SSLv23`` to
+ ``ssl.PROTOCOL_TLS`` when Python >= 3.6 .
+
+ """
+ default = ssl.PROTOCOL_SSLv23
+ desc = """\
+ SSL version to use.
+
+ ============= ============
+ --ssl-version Description
+ ============= ============
+ SSLv3 SSLv3 is not-secure and is strongly discouraged.
+ SSLv23 Alias for TLS. Deprecated in Python 3.6, use TLS.
+ TLS Negotiate highest possible version between client/server.
+ Can yield SSL. (Python 3.6+)
+ TLSv1 TLS 1.0
+ TLSv1_1 TLS 1.1 (Python 3.4+)
+ TLSv1_2 TLS 1.2 (Python 3.4+)
+ TLS_SERVER Auto-negotiate the highest protocol version like TLS,
+ but only support server-side SSLSocket connections.
+ (Python 3.6+)
+ ============= ============
+
+ .. versionchanged:: 19.7
+ The default value has been changed from ``ssl.PROTOCOL_TLSv1`` to
+ ``ssl.PROTOCOL_SSLv23``.
+ .. versionchanged:: 20.0
+ This setting now accepts string names based on ``ssl.PROTOCOL_``
+ constants.
+ """
+
+
+class CertReqs(Setting):
+ name = "cert_reqs"
+ section = "SSL"
+ cli = ["--cert-reqs"]
+ validator = validate_pos_int
+ default = ssl.CERT_NONE
+ desc = """\
+ Whether client certificate is required (see stdlib ssl module's)
+ """
+
+
+class CACerts(Setting):
+ name = "ca_certs"
+ section = "SSL"
+ cli = ["--ca-certs"]
+ meta = "FILE"
+ validator = validate_string
+ default = None
+ desc = """\
+ CA certificates file
+ """
+
+
+class SuppressRaggedEOFs(Setting):
+ name = "suppress_ragged_eofs"
+ section = "SSL"
+ cli = ["--suppress-ragged-eofs"]
+ action = "store_true"
+ default = True
+ validator = validate_bool
+ desc = """\
+ Suppress ragged EOFs (see stdlib ssl module's)
+ """
+
+
+class DoHandshakeOnConnect(Setting):
+ name = "do_handshake_on_connect"
+ section = "SSL"
+ cli = ["--do-handshake-on-connect"]
+ validator = validate_bool
+ action = "store_true"
+ default = False
+ desc = """\
+ Whether to perform SSL handshake on socket connect (see stdlib ssl module's)
+ """
+
+
+class Ciphers(Setting):
+ name = "ciphers"
+ section = "SSL"
+ cli = ["--ciphers"]
+ validator = validate_string
+ default = None
+ desc = """\
+ SSL Cipher suite to use, in the format of an OpenSSL cipher list.
+
+ By default we use the default cipher list from Python's ``ssl`` module,
+ which contains ciphers considered strong at the time of each Python
+ release.
+
+ As a recommended alternative, the Open Web App Security Project (OWASP)
+ offers `a vetted set of strong cipher strings rated A+ to C-
+ `_.
+ OWASP provides details on user-agent compatibility at each security level.
+
+ See the `OpenSSL Cipher List Format Documentation
+ `_
+ for details on the format of an OpenSSL cipher list.
+ """
+
+
+class PasteGlobalConf(Setting):
+ name = "raw_paste_global_conf"
+ action = "append"
+ section = "Server Mechanics"
+ cli = ["--paste-global"]
+ meta = "CONF"
+ validator = validate_list_string
+ default = []
+
+ desc = """\
+ Set a PasteDeploy global config variable in ``key=value`` form.
+
+ The option can be specified multiple times.
+
+ The variables are passed to the the PasteDeploy entrypoint. Example::
+
+ $ gunicorn -b 127.0.0.1:8000 --paste development.ini --paste-global FOO=1 --paste-global BAR=2
+
+ .. versionadded:: 19.7
+ """
+
+
+class StripHeaderSpaces(Setting):
+ name = "strip_header_spaces"
+ section = "Server Mechanics"
+ cli = ["--strip-header-spaces"]
+ validator = validate_bool
+ action = "store_true"
+ default = False
+ desc = """\
+ Strip spaces present between the header name and the the ``:``.
+
+ This is known to induce vulnerabilities and is not compliant with the HTTP/1.1 standard.
+ See https://portswigger.net/research/http-desync-attacks-request-smuggling-reborn.
+
+ Use with care and only if necessary.
+ """
diff --git a/app_env/Lib/site-packages/gunicorn/debug.py b/app_env/Lib/site-packages/gunicorn/debug.py
new file mode 100644
index 00000000..996fe1b4
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/debug.py
@@ -0,0 +1,69 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+"""The debug module contains utilities and functions for better
+debugging Gunicorn."""
+
+import sys
+import linecache
+import re
+import inspect
+
+__all__ = ['spew', 'unspew']
+
+_token_spliter = re.compile(r'\W+')
+
+
+class Spew(object):
+
+ def __init__(self, trace_names=None, show_values=True):
+ self.trace_names = trace_names
+ self.show_values = show_values
+
+ def __call__(self, frame, event, arg):
+ if event == 'line':
+ lineno = frame.f_lineno
+ if '__file__' in frame.f_globals:
+ filename = frame.f_globals['__file__']
+ if (filename.endswith('.pyc') or
+ filename.endswith('.pyo')):
+ filename = filename[:-1]
+ name = frame.f_globals['__name__']
+ line = linecache.getline(filename, lineno)
+ else:
+ name = '[unknown]'
+ try:
+ src = inspect.getsourcelines(frame)
+ line = src[lineno]
+ except IOError:
+ line = 'Unknown code named [%s]. VM instruction #%d' % (
+ frame.f_code.co_name, frame.f_lasti)
+ if self.trace_names is None or name in self.trace_names:
+ print('%s:%s: %s' % (name, lineno, line.rstrip()))
+ if not self.show_values:
+ return self
+ details = []
+ tokens = _token_spliter.split(line)
+ for tok in tokens:
+ if tok in frame.f_globals:
+ details.append('%s=%r' % (tok, frame.f_globals[tok]))
+ if tok in frame.f_locals:
+ details.append('%s=%r' % (tok, frame.f_locals[tok]))
+ if details:
+ print("\t%s" % ' '.join(details))
+ return self
+
+
+def spew(trace_names=None, show_values=False):
+ """Install a trace hook which writes incredibly detailed logs
+ about what code is being executed to stdout.
+ """
+ sys.settrace(Spew(trace_names, show_values))
+
+
+def unspew():
+ """Remove the trace hook installed by spew.
+ """
+ sys.settrace(None)
diff --git a/app_env/Lib/site-packages/gunicorn/errors.py b/app_env/Lib/site-packages/gunicorn/errors.py
new file mode 100644
index 00000000..727d336a
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/errors.py
@@ -0,0 +1,29 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+# We don't need to call super() in __init__ methods of our
+# BaseException and Exception classes because we also define
+# our own __str__ methods so there is no need to pass 'message'
+# to the base class to get a meaningful output from 'str(exc)'.
+# pylint: disable=super-init-not-called
+
+
+# we inherit from BaseException here to make sure to not be caught
+# at application level
+class HaltServer(BaseException):
+ def __init__(self, reason, exit_status=1):
+ self.reason = reason
+ self.exit_status = exit_status
+
+ def __str__(self):
+ return "" % (self.reason, self.exit_status)
+
+
+class ConfigError(Exception):
+ """ Exception raised on config error """
+
+
+class AppImportError(Exception):
+ """ Exception raised when loading an application """
diff --git a/app_env/Lib/site-packages/gunicorn/glogging.py b/app_env/Lib/site-packages/gunicorn/glogging.py
new file mode 100644
index 00000000..08bc121a
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/glogging.py
@@ -0,0 +1,464 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import base64
+import binascii
+import time
+import logging
+logging.Logger.manager.emittedNoHandlerWarning = 1 # noqa
+from logging.config import dictConfig
+from logging.config import fileConfig
+import os
+import socket
+import sys
+import threading
+import traceback
+
+from gunicorn import util
+
+
+# syslog facility codes
+SYSLOG_FACILITIES = {
+ "auth": 4,
+ "authpriv": 10,
+ "cron": 9,
+ "daemon": 3,
+ "ftp": 11,
+ "kern": 0,
+ "lpr": 6,
+ "mail": 2,
+ "news": 7,
+ "security": 4, # DEPRECATED
+ "syslog": 5,
+ "user": 1,
+ "uucp": 8,
+ "local0": 16,
+ "local1": 17,
+ "local2": 18,
+ "local3": 19,
+ "local4": 20,
+ "local5": 21,
+ "local6": 22,
+ "local7": 23
+}
+
+
+CONFIG_DEFAULTS = dict(
+ version=1,
+ disable_existing_loggers=False,
+
+ root={"level": "INFO", "handlers": ["console"]},
+ loggers={
+ "gunicorn.error": {
+ "level": "INFO",
+ "handlers": ["error_console"],
+ "propagate": True,
+ "qualname": "gunicorn.error"
+ },
+
+ "gunicorn.access": {
+ "level": "INFO",
+ "handlers": ["console"],
+ "propagate": True,
+ "qualname": "gunicorn.access"
+ }
+ },
+ handlers={
+ "console": {
+ "class": "logging.StreamHandler",
+ "formatter": "generic",
+ "stream": "ext://sys.stdout"
+ },
+ "error_console": {
+ "class": "logging.StreamHandler",
+ "formatter": "generic",
+ "stream": "ext://sys.stderr"
+ },
+ },
+ formatters={
+ "generic": {
+ "format": "%(asctime)s [%(process)d] [%(levelname)s] %(message)s",
+ "datefmt": "[%Y-%m-%d %H:%M:%S %z]",
+ "class": "logging.Formatter"
+ }
+ }
+)
+
+
+def loggers():
+ """ get list of all loggers """
+ root = logging.root
+ existing = root.manager.loggerDict.keys()
+ return [logging.getLogger(name) for name in existing]
+
+
+class SafeAtoms(dict):
+
+ def __init__(self, atoms):
+ dict.__init__(self)
+ for key, value in atoms.items():
+ if isinstance(value, str):
+ self[key] = value.replace('"', '\\"')
+ else:
+ self[key] = value
+
+ def __getitem__(self, k):
+ if k.startswith("{"):
+ kl = k.lower()
+ if kl in self:
+ return super().__getitem__(kl)
+ else:
+ return "-"
+ if k in self:
+ return super().__getitem__(k)
+ else:
+ return '-'
+
+
+def parse_syslog_address(addr):
+
+ # unix domain socket type depends on backend
+ # SysLogHandler will try both when given None
+ if addr.startswith("unix://"):
+ sock_type = None
+
+ # set socket type only if explicitly requested
+ parts = addr.split("#", 1)
+ if len(parts) == 2:
+ addr = parts[0]
+ if parts[1] == "dgram":
+ sock_type = socket.SOCK_DGRAM
+
+ return (sock_type, addr.split("unix://")[1])
+
+ if addr.startswith("udp://"):
+ addr = addr.split("udp://")[1]
+ socktype = socket.SOCK_DGRAM
+ elif addr.startswith("tcp://"):
+ addr = addr.split("tcp://")[1]
+ socktype = socket.SOCK_STREAM
+ else:
+ raise RuntimeError("invalid syslog address")
+
+ if '[' in addr and ']' in addr:
+ host = addr.split(']')[0][1:].lower()
+ elif ':' in addr:
+ host = addr.split(':')[0].lower()
+ elif addr == "":
+ host = "localhost"
+ else:
+ host = addr.lower()
+
+ addr = addr.split(']')[-1]
+ if ":" in addr:
+ port = addr.split(':', 1)[1]
+ if not port.isdigit():
+ raise RuntimeError("%r is not a valid port number." % port)
+ port = int(port)
+ else:
+ port = 514
+
+ return (socktype, (host, port))
+
+
+class Logger(object):
+
+ LOG_LEVELS = {
+ "critical": logging.CRITICAL,
+ "error": logging.ERROR,
+ "warning": logging.WARNING,
+ "info": logging.INFO,
+ "debug": logging.DEBUG
+ }
+ loglevel = logging.INFO
+
+ error_fmt = r"%(asctime)s [%(process)d] [%(levelname)s] %(message)s"
+ datefmt = r"[%Y-%m-%d %H:%M:%S %z]"
+
+ access_fmt = "%(message)s"
+ syslog_fmt = "[%(process)d] %(message)s"
+
+ atoms_wrapper_class = SafeAtoms
+
+ def __init__(self, cfg):
+ self.error_log = logging.getLogger("gunicorn.error")
+ self.error_log.propagate = False
+ self.access_log = logging.getLogger("gunicorn.access")
+ self.access_log.propagate = False
+ self.error_handlers = []
+ self.access_handlers = []
+ self.logfile = None
+ self.lock = threading.Lock()
+ self.cfg = cfg
+ self.setup(cfg)
+
+ def setup(self, cfg):
+ self.loglevel = self.LOG_LEVELS.get(cfg.loglevel.lower(), logging.INFO)
+ self.error_log.setLevel(self.loglevel)
+ self.access_log.setLevel(logging.INFO)
+
+ # set gunicorn.error handler
+ if self.cfg.capture_output and cfg.errorlog != "-":
+ for stream in sys.stdout, sys.stderr:
+ stream.flush()
+
+ self.logfile = open(cfg.errorlog, 'a+')
+ os.dup2(self.logfile.fileno(), sys.stdout.fileno())
+ os.dup2(self.logfile.fileno(), sys.stderr.fileno())
+
+ self._set_handler(self.error_log, cfg.errorlog,
+ logging.Formatter(self.error_fmt, self.datefmt))
+
+ # set gunicorn.access handler
+ if cfg.accesslog is not None:
+ self._set_handler(
+ self.access_log, cfg.accesslog,
+ fmt=logging.Formatter(self.access_fmt), stream=sys.stdout
+ )
+
+ # set syslog handler
+ if cfg.syslog:
+ self._set_syslog_handler(
+ self.error_log, cfg, self.syslog_fmt, "error"
+ )
+ if not cfg.disable_redirect_access_to_syslog:
+ self._set_syslog_handler(
+ self.access_log, cfg, self.syslog_fmt, "access"
+ )
+
+ if cfg.logconfig_dict:
+ config = CONFIG_DEFAULTS.copy()
+ config.update(cfg.logconfig_dict)
+ try:
+ dictConfig(config)
+ except (
+ AttributeError,
+ ImportError,
+ ValueError,
+ TypeError
+ ) as exc:
+ raise RuntimeError(str(exc))
+ elif cfg.logconfig:
+ if os.path.exists(cfg.logconfig):
+ defaults = CONFIG_DEFAULTS.copy()
+ defaults['__file__'] = cfg.logconfig
+ defaults['here'] = os.path.dirname(cfg.logconfig)
+ fileConfig(cfg.logconfig, defaults=defaults,
+ disable_existing_loggers=False)
+ else:
+ msg = "Error: log config '%s' not found"
+ raise RuntimeError(msg % cfg.logconfig)
+
+ def critical(self, msg, *args, **kwargs):
+ self.error_log.critical(msg, *args, **kwargs)
+
+ def error(self, msg, *args, **kwargs):
+ self.error_log.error(msg, *args, **kwargs)
+
+ def warning(self, msg, *args, **kwargs):
+ self.error_log.warning(msg, *args, **kwargs)
+
+ def info(self, msg, *args, **kwargs):
+ self.error_log.info(msg, *args, **kwargs)
+
+ def debug(self, msg, *args, **kwargs):
+ self.error_log.debug(msg, *args, **kwargs)
+
+ def exception(self, msg, *args, **kwargs):
+ self.error_log.exception(msg, *args, **kwargs)
+
+ def log(self, lvl, msg, *args, **kwargs):
+ if isinstance(lvl, str):
+ lvl = self.LOG_LEVELS.get(lvl.lower(), logging.INFO)
+ self.error_log.log(lvl, msg, *args, **kwargs)
+
+ def atoms(self, resp, req, environ, request_time):
+ """ Gets atoms for log formating.
+ """
+ status = resp.status
+ if isinstance(status, str):
+ status = status.split(None, 1)[0]
+ atoms = {
+ 'h': environ.get('REMOTE_ADDR', '-'),
+ 'l': '-',
+ 'u': self._get_user(environ) or '-',
+ 't': self.now(),
+ 'r': "%s %s %s" % (environ['REQUEST_METHOD'],
+ environ['RAW_URI'],
+ environ["SERVER_PROTOCOL"]),
+ 's': status,
+ 'm': environ.get('REQUEST_METHOD'),
+ 'U': environ.get('PATH_INFO'),
+ 'q': environ.get('QUERY_STRING'),
+ 'H': environ.get('SERVER_PROTOCOL'),
+ 'b': getattr(resp, 'sent', None) is not None and str(resp.sent) or '-',
+ 'B': getattr(resp, 'sent', None),
+ 'f': environ.get('HTTP_REFERER', '-'),
+ 'a': environ.get('HTTP_USER_AGENT', '-'),
+ 'T': request_time.seconds,
+ 'D': (request_time.seconds * 1000000) + request_time.microseconds,
+ 'M': (request_time.seconds * 1000) + int(request_time.microseconds/1000),
+ 'L': "%d.%06d" % (request_time.seconds, request_time.microseconds),
+ 'p': "<%s>" % os.getpid()
+ }
+
+ # add request headers
+ if hasattr(req, 'headers'):
+ req_headers = req.headers
+ else:
+ req_headers = req
+
+ if hasattr(req_headers, "items"):
+ req_headers = req_headers.items()
+
+ atoms.update({"{%s}i" % k.lower(): v for k, v in req_headers})
+
+ resp_headers = resp.headers
+ if hasattr(resp_headers, "items"):
+ resp_headers = resp_headers.items()
+
+ # add response headers
+ atoms.update({"{%s}o" % k.lower(): v for k, v in resp_headers})
+
+ # add environ variables
+ environ_variables = environ.items()
+ atoms.update({"{%s}e" % k.lower(): v for k, v in environ_variables})
+
+ return atoms
+
+ def access(self, resp, req, environ, request_time):
+ """ See http://httpd.apache.org/docs/2.0/logs.html#combined
+ for format details
+ """
+
+ if not (self.cfg.accesslog or self.cfg.logconfig or
+ self.cfg.logconfig_dict or
+ (self.cfg.syslog and not self.cfg.disable_redirect_access_to_syslog)):
+ return
+
+ # wrap atoms:
+ # - make sure atoms will be test case insensitively
+ # - if atom doesn't exist replace it by '-'
+ safe_atoms = self.atoms_wrapper_class(
+ self.atoms(resp, req, environ, request_time)
+ )
+
+ try:
+ self.access_log.info(self.cfg.access_log_format, safe_atoms)
+ except Exception:
+ self.error(traceback.format_exc())
+
+ def now(self):
+ """ return date in Apache Common Log Format """
+ return time.strftime('[%d/%b/%Y:%H:%M:%S %z]')
+
+ def reopen_files(self):
+ if self.cfg.capture_output and self.cfg.errorlog != "-":
+ for stream in sys.stdout, sys.stderr:
+ stream.flush()
+
+ with self.lock:
+ if self.logfile is not None:
+ self.logfile.close()
+ self.logfile = open(self.cfg.errorlog, 'a+')
+ os.dup2(self.logfile.fileno(), sys.stdout.fileno())
+ os.dup2(self.logfile.fileno(), sys.stderr.fileno())
+
+ for log in loggers():
+ for handler in log.handlers:
+ if isinstance(handler, logging.FileHandler):
+ handler.acquire()
+ try:
+ if handler.stream:
+ handler.close()
+ handler.stream = handler._open()
+ finally:
+ handler.release()
+
+ def close_on_exec(self):
+ for log in loggers():
+ for handler in log.handlers:
+ if isinstance(handler, logging.FileHandler):
+ handler.acquire()
+ try:
+ if handler.stream:
+ util.close_on_exec(handler.stream.fileno())
+ finally:
+ handler.release()
+
+ def _get_gunicorn_handler(self, log):
+ for h in log.handlers:
+ if getattr(h, "_gunicorn", False):
+ return h
+
+ def _set_handler(self, log, output, fmt, stream=None):
+ # remove previous gunicorn log handler
+ h = self._get_gunicorn_handler(log)
+ if h:
+ log.handlers.remove(h)
+
+ if output is not None:
+ if output == "-":
+ h = logging.StreamHandler(stream)
+ else:
+ util.check_is_writeable(output)
+ h = logging.FileHandler(output)
+ # make sure the user can reopen the file
+ try:
+ os.chown(h.baseFilename, self.cfg.user, self.cfg.group)
+ except OSError:
+ # it's probably OK there, we assume the user has given
+ # /dev/null as a parameter.
+ pass
+
+ h.setFormatter(fmt)
+ h._gunicorn = True
+ log.addHandler(h)
+
+ def _set_syslog_handler(self, log, cfg, fmt, name):
+ # setup format
+ prefix = cfg.syslog_prefix or cfg.proc_name.replace(":", ".")
+
+ prefix = "gunicorn.%s.%s" % (prefix, name)
+
+ # set format
+ fmt = logging.Formatter(r"%s: %s" % (prefix, fmt))
+
+ # syslog facility
+ try:
+ facility = SYSLOG_FACILITIES[cfg.syslog_facility.lower()]
+ except KeyError:
+ raise RuntimeError("unknown facility name")
+
+ # parse syslog address
+ socktype, addr = parse_syslog_address(cfg.syslog_addr)
+
+ # finally setup the syslog handler
+ h = logging.handlers.SysLogHandler(address=addr,
+ facility=facility, socktype=socktype)
+
+ h.setFormatter(fmt)
+ h._gunicorn = True
+ log.addHandler(h)
+
+ def _get_user(self, environ):
+ user = None
+ http_auth = environ.get("HTTP_AUTHORIZATION")
+ if http_auth and http_auth.lower().startswith('basic'):
+ auth = http_auth.split(" ", 1)
+ if len(auth) == 2:
+ try:
+ # b64decode doesn't accept unicode in Python < 3.3
+ # so we need to convert it to a byte string
+ auth = base64.b64decode(auth[1].strip().encode('utf-8'))
+ # b64decode returns a byte string
+ auth = auth.decode('utf-8')
+ auth = auth.split(":", 1)
+ except (TypeError, binascii.Error, UnicodeDecodeError) as exc:
+ self.debug("Couldn't get username: %s", exc)
+ return user
+ if len(auth) == 2:
+ user = auth[0]
+ return user
diff --git a/app_env/Lib/site-packages/gunicorn/http/__init__.py b/app_env/Lib/site-packages/gunicorn/http/__init__.py
new file mode 100644
index 00000000..1da6f3ec
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/http/__init__.py
@@ -0,0 +1,9 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+from gunicorn.http.message import Message, Request
+from gunicorn.http.parser import RequestParser
+
+__all__ = ['Message', 'Request', 'RequestParser']
diff --git a/app_env/Lib/site-packages/gunicorn/http/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/http/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..551e0b81
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/http/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/http/__pycache__/body.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/http/__pycache__/body.cpython-310.pyc
new file mode 100644
index 00000000..412a813c
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/http/__pycache__/body.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/http/__pycache__/errors.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/http/__pycache__/errors.cpython-310.pyc
new file mode 100644
index 00000000..ffac2b33
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/http/__pycache__/errors.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/http/__pycache__/message.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/http/__pycache__/message.cpython-310.pyc
new file mode 100644
index 00000000..3becb2e4
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/http/__pycache__/message.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/http/__pycache__/parser.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/http/__pycache__/parser.cpython-310.pyc
new file mode 100644
index 00000000..9dcb4b04
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/http/__pycache__/parser.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/http/__pycache__/unreader.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/http/__pycache__/unreader.cpython-310.pyc
new file mode 100644
index 00000000..16ddce7b
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/http/__pycache__/unreader.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/http/__pycache__/wsgi.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/http/__pycache__/wsgi.cpython-310.pyc
new file mode 100644
index 00000000..79b49dd2
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/http/__pycache__/wsgi.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/http/body.py b/app_env/Lib/site-packages/gunicorn/http/body.py
new file mode 100644
index 00000000..afde3685
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/http/body.py
@@ -0,0 +1,262 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import io
+import sys
+
+from gunicorn.http.errors import (NoMoreData, ChunkMissingTerminator,
+ InvalidChunkSize)
+
+
+class ChunkedReader(object):
+ def __init__(self, req, unreader):
+ self.req = req
+ self.parser = self.parse_chunked(unreader)
+ self.buf = io.BytesIO()
+
+ def read(self, size):
+ if not isinstance(size, int):
+ raise TypeError("size must be an integral type")
+ if size < 0:
+ raise ValueError("Size must be positive.")
+ if size == 0:
+ return b""
+
+ if self.parser:
+ while self.buf.tell() < size:
+ try:
+ self.buf.write(next(self.parser))
+ except StopIteration:
+ self.parser = None
+ break
+
+ data = self.buf.getvalue()
+ ret, rest = data[:size], data[size:]
+ self.buf = io.BytesIO()
+ self.buf.write(rest)
+ return ret
+
+ def parse_trailers(self, unreader, data):
+ buf = io.BytesIO()
+ buf.write(data)
+
+ idx = buf.getvalue().find(b"\r\n\r\n")
+ done = buf.getvalue()[:2] == b"\r\n"
+ while idx < 0 and not done:
+ self.get_data(unreader, buf)
+ idx = buf.getvalue().find(b"\r\n\r\n")
+ done = buf.getvalue()[:2] == b"\r\n"
+ if done:
+ unreader.unread(buf.getvalue()[2:])
+ return b""
+ self.req.trailers = self.req.parse_headers(buf.getvalue()[:idx])
+ unreader.unread(buf.getvalue()[idx + 4:])
+
+ def parse_chunked(self, unreader):
+ (size, rest) = self.parse_chunk_size(unreader)
+ while size > 0:
+ while size > len(rest):
+ size -= len(rest)
+ yield rest
+ rest = unreader.read()
+ if not rest:
+ raise NoMoreData()
+ yield rest[:size]
+ # Remove \r\n after chunk
+ rest = rest[size:]
+ while len(rest) < 2:
+ rest += unreader.read()
+ if rest[:2] != b'\r\n':
+ raise ChunkMissingTerminator(rest[:2])
+ (size, rest) = self.parse_chunk_size(unreader, data=rest[2:])
+
+ def parse_chunk_size(self, unreader, data=None):
+ buf = io.BytesIO()
+ if data is not None:
+ buf.write(data)
+
+ idx = buf.getvalue().find(b"\r\n")
+ while idx < 0:
+ self.get_data(unreader, buf)
+ idx = buf.getvalue().find(b"\r\n")
+
+ data = buf.getvalue()
+ line, rest_chunk = data[:idx], data[idx + 2:]
+
+ chunk_size = line.split(b";", 1)[0].strip()
+ try:
+ chunk_size = int(chunk_size, 16)
+ except ValueError:
+ raise InvalidChunkSize(chunk_size)
+
+ if chunk_size == 0:
+ try:
+ self.parse_trailers(unreader, rest_chunk)
+ except NoMoreData:
+ pass
+ return (0, None)
+ return (chunk_size, rest_chunk)
+
+ def get_data(self, unreader, buf):
+ data = unreader.read()
+ if not data:
+ raise NoMoreData()
+ buf.write(data)
+
+
+class LengthReader(object):
+ def __init__(self, unreader, length):
+ self.unreader = unreader
+ self.length = length
+
+ def read(self, size):
+ if not isinstance(size, int):
+ raise TypeError("size must be an integral type")
+
+ size = min(self.length, size)
+ if size < 0:
+ raise ValueError("Size must be positive.")
+ if size == 0:
+ return b""
+
+ buf = io.BytesIO()
+ data = self.unreader.read()
+ while data:
+ buf.write(data)
+ if buf.tell() >= size:
+ break
+ data = self.unreader.read()
+
+ buf = buf.getvalue()
+ ret, rest = buf[:size], buf[size:]
+ self.unreader.unread(rest)
+ self.length -= size
+ return ret
+
+
+class EOFReader(object):
+ def __init__(self, unreader):
+ self.unreader = unreader
+ self.buf = io.BytesIO()
+ self.finished = False
+
+ def read(self, size):
+ if not isinstance(size, int):
+ raise TypeError("size must be an integral type")
+ if size < 0:
+ raise ValueError("Size must be positive.")
+ if size == 0:
+ return b""
+
+ if self.finished:
+ data = self.buf.getvalue()
+ ret, rest = data[:size], data[size:]
+ self.buf = io.BytesIO()
+ self.buf.write(rest)
+ return ret
+
+ data = self.unreader.read()
+ while data:
+ self.buf.write(data)
+ if self.buf.tell() > size:
+ break
+ data = self.unreader.read()
+
+ if not data:
+ self.finished = True
+
+ data = self.buf.getvalue()
+ ret, rest = data[:size], data[size:]
+ self.buf = io.BytesIO()
+ self.buf.write(rest)
+ return ret
+
+
+class Body(object):
+ def __init__(self, reader):
+ self.reader = reader
+ self.buf = io.BytesIO()
+
+ def __iter__(self):
+ return self
+
+ def __next__(self):
+ ret = self.readline()
+ if not ret:
+ raise StopIteration()
+ return ret
+
+ next = __next__
+
+ def getsize(self, size):
+ if size is None:
+ return sys.maxsize
+ elif not isinstance(size, int):
+ raise TypeError("size must be an integral type")
+ elif size < 0:
+ return sys.maxsize
+ return size
+
+ def read(self, size=None):
+ size = self.getsize(size)
+ if size == 0:
+ return b""
+
+ if size < self.buf.tell():
+ data = self.buf.getvalue()
+ ret, rest = data[:size], data[size:]
+ self.buf = io.BytesIO()
+ self.buf.write(rest)
+ return ret
+
+ while size > self.buf.tell():
+ data = self.reader.read(1024)
+ if not data:
+ break
+ self.buf.write(data)
+
+ data = self.buf.getvalue()
+ ret, rest = data[:size], data[size:]
+ self.buf = io.BytesIO()
+ self.buf.write(rest)
+ return ret
+
+ def readline(self, size=None):
+ size = self.getsize(size)
+ if size == 0:
+ return b""
+
+ data = self.buf.getvalue()
+ self.buf = io.BytesIO()
+
+ ret = []
+ while 1:
+ idx = data.find(b"\n", 0, size)
+ idx = idx + 1 if idx >= 0 else size if len(data) >= size else 0
+ if idx:
+ ret.append(data[:idx])
+ self.buf.write(data[idx:])
+ break
+
+ ret.append(data)
+ size -= len(data)
+ data = self.reader.read(min(1024, size))
+ if not data:
+ break
+
+ return b"".join(ret)
+
+ def readlines(self, size=None):
+ ret = []
+ data = self.read()
+ while data:
+ pos = data.find(b"\n")
+ if pos < 0:
+ ret.append(data)
+ data = b""
+ else:
+ line, data = data[:pos + 1], data[pos + 1:]
+ ret.append(line)
+ return ret
diff --git a/app_env/Lib/site-packages/gunicorn/http/errors.py b/app_env/Lib/site-packages/gunicorn/http/errors.py
new file mode 100644
index 00000000..7839ef05
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/http/errors.py
@@ -0,0 +1,120 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+# We don't need to call super() in __init__ methods of our
+# BaseException and Exception classes because we also define
+# our own __str__ methods so there is no need to pass 'message'
+# to the base class to get a meaningful output from 'str(exc)'.
+# pylint: disable=super-init-not-called
+
+
+class ParseException(Exception):
+ pass
+
+
+class NoMoreData(IOError):
+ def __init__(self, buf=None):
+ self.buf = buf
+
+ def __str__(self):
+ return "No more data after: %r" % self.buf
+
+
+class InvalidRequestLine(ParseException):
+ def __init__(self, req):
+ self.req = req
+ self.code = 400
+
+ def __str__(self):
+ return "Invalid HTTP request line: %r" % self.req
+
+
+class InvalidRequestMethod(ParseException):
+ def __init__(self, method):
+ self.method = method
+
+ def __str__(self):
+ return "Invalid HTTP method: %r" % self.method
+
+
+class InvalidHTTPVersion(ParseException):
+ def __init__(self, version):
+ self.version = version
+
+ def __str__(self):
+ return "Invalid HTTP Version: %r" % self.version
+
+
+class InvalidHeader(ParseException):
+ def __init__(self, hdr, req=None):
+ self.hdr = hdr
+ self.req = req
+
+ def __str__(self):
+ return "Invalid HTTP Header: %r" % self.hdr
+
+
+class InvalidHeaderName(ParseException):
+ def __init__(self, hdr):
+ self.hdr = hdr
+
+ def __str__(self):
+ return "Invalid HTTP header name: %r" % self.hdr
+
+
+class InvalidChunkSize(IOError):
+ def __init__(self, data):
+ self.data = data
+
+ def __str__(self):
+ return "Invalid chunk size: %r" % self.data
+
+
+class ChunkMissingTerminator(IOError):
+ def __init__(self, term):
+ self.term = term
+
+ def __str__(self):
+ return "Invalid chunk terminator is not '\\r\\n': %r" % self.term
+
+
+class LimitRequestLine(ParseException):
+ def __init__(self, size, max_size):
+ self.size = size
+ self.max_size = max_size
+
+ def __str__(self):
+ return "Request Line is too large (%s > %s)" % (self.size, self.max_size)
+
+
+class LimitRequestHeaders(ParseException):
+ def __init__(self, msg):
+ self.msg = msg
+
+ def __str__(self):
+ return self.msg
+
+
+class InvalidProxyLine(ParseException):
+ def __init__(self, line):
+ self.line = line
+ self.code = 400
+
+ def __str__(self):
+ return "Invalid PROXY line: %r" % self.line
+
+
+class ForbiddenProxyRequest(ParseException):
+ def __init__(self, host):
+ self.host = host
+ self.code = 403
+
+ def __str__(self):
+ return "Proxy request from %r not allowed" % self.host
+
+
+class InvalidSchemeHeaders(ParseException):
+ def __str__(self):
+ return "Contradictory scheme headers"
diff --git a/app_env/Lib/site-packages/gunicorn/http/message.py b/app_env/Lib/site-packages/gunicorn/http/message.py
new file mode 100644
index 00000000..17d22402
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/http/message.py
@@ -0,0 +1,356 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import io
+import re
+import socket
+
+from gunicorn.http.body import ChunkedReader, LengthReader, EOFReader, Body
+from gunicorn.http.errors import (
+ InvalidHeader, InvalidHeaderName, NoMoreData,
+ InvalidRequestLine, InvalidRequestMethod, InvalidHTTPVersion,
+ LimitRequestLine, LimitRequestHeaders,
+)
+from gunicorn.http.errors import InvalidProxyLine, ForbiddenProxyRequest
+from gunicorn.http.errors import InvalidSchemeHeaders
+from gunicorn.util import bytes_to_str, split_request_uri
+
+MAX_REQUEST_LINE = 8190
+MAX_HEADERS = 32768
+DEFAULT_MAX_HEADERFIELD_SIZE = 8190
+
+HEADER_RE = re.compile(r"[\x00-\x1F\x7F()<>@,;:\[\]={} \t\\\"]")
+METH_RE = re.compile(r"[A-Z0-9$-_.]{3,20}")
+VERSION_RE = re.compile(r"HTTP/(\d+)\.(\d+)")
+
+
+class Message(object):
+ def __init__(self, cfg, unreader, peer_addr):
+ self.cfg = cfg
+ self.unreader = unreader
+ self.peer_addr = peer_addr
+ self.version = None
+ self.headers = []
+ self.trailers = []
+ self.body = None
+ self.scheme = "https" if cfg.is_ssl else "http"
+
+ # set headers limits
+ self.limit_request_fields = cfg.limit_request_fields
+ if (self.limit_request_fields <= 0
+ or self.limit_request_fields > MAX_HEADERS):
+ self.limit_request_fields = MAX_HEADERS
+ self.limit_request_field_size = cfg.limit_request_field_size
+ if self.limit_request_field_size < 0:
+ self.limit_request_field_size = DEFAULT_MAX_HEADERFIELD_SIZE
+
+ # set max header buffer size
+ max_header_field_size = self.limit_request_field_size or DEFAULT_MAX_HEADERFIELD_SIZE
+ self.max_buffer_headers = self.limit_request_fields * \
+ (max_header_field_size + 2) + 4
+
+ unused = self.parse(self.unreader)
+ self.unreader.unread(unused)
+ self.set_body_reader()
+
+ def parse(self, unreader):
+ raise NotImplementedError()
+
+ def parse_headers(self, data):
+ cfg = self.cfg
+ headers = []
+
+ # Split lines on \r\n keeping the \r\n on each line
+ lines = [bytes_to_str(line) + "\r\n" for line in data.split(b"\r\n")]
+
+ # handle scheme headers
+ scheme_header = False
+ secure_scheme_headers = {}
+ if ('*' in cfg.forwarded_allow_ips or
+ not isinstance(self.peer_addr, tuple)
+ or self.peer_addr[0] in cfg.forwarded_allow_ips):
+ secure_scheme_headers = cfg.secure_scheme_headers
+
+ # Parse headers into key/value pairs paying attention
+ # to continuation lines.
+ while lines:
+ if len(headers) >= self.limit_request_fields:
+ raise LimitRequestHeaders("limit request headers fields")
+
+ # Parse initial header name : value pair.
+ curr = lines.pop(0)
+ header_length = len(curr)
+ if curr.find(":") < 0:
+ raise InvalidHeader(curr.strip())
+ name, value = curr.split(":", 1)
+ if self.cfg.strip_header_spaces:
+ name = name.rstrip(" \t").upper()
+ else:
+ name = name.upper()
+ if HEADER_RE.search(name):
+ raise InvalidHeaderName(name)
+
+ name, value = name.strip(), [value.lstrip()]
+
+ # Consume value continuation lines
+ while lines and lines[0].startswith((" ", "\t")):
+ curr = lines.pop(0)
+ header_length += len(curr)
+ if header_length > self.limit_request_field_size > 0:
+ raise LimitRequestHeaders("limit request headers "
+ "fields size")
+ value.append(curr)
+ value = ''.join(value).rstrip()
+
+ if header_length > self.limit_request_field_size > 0:
+ raise LimitRequestHeaders("limit request headers fields size")
+
+ if name in secure_scheme_headers:
+ secure = value == secure_scheme_headers[name]
+ scheme = "https" if secure else "http"
+ if scheme_header:
+ if scheme != self.scheme:
+ raise InvalidSchemeHeaders()
+ else:
+ scheme_header = True
+ self.scheme = scheme
+
+ headers.append((name, value))
+
+ return headers
+
+ def set_body_reader(self):
+ chunked = False
+ content_length = None
+
+ for (name, value) in self.headers:
+ if name == "CONTENT-LENGTH":
+ if content_length is not None:
+ raise InvalidHeader("CONTENT-LENGTH", req=self)
+ content_length = value
+ elif name == "TRANSFER-ENCODING":
+ if value.lower() == "chunked":
+ chunked = True
+
+ if chunked:
+ self.body = Body(ChunkedReader(self, self.unreader))
+ elif content_length is not None:
+ try:
+ content_length = int(content_length)
+ except ValueError:
+ raise InvalidHeader("CONTENT-LENGTH", req=self)
+
+ if content_length < 0:
+ raise InvalidHeader("CONTENT-LENGTH", req=self)
+
+ self.body = Body(LengthReader(self.unreader, content_length))
+ else:
+ self.body = Body(EOFReader(self.unreader))
+
+ def should_close(self):
+ for (h, v) in self.headers:
+ if h == "CONNECTION":
+ v = v.lower().strip()
+ if v == "close":
+ return True
+ elif v == "keep-alive":
+ return False
+ break
+ return self.version <= (1, 0)
+
+
+class Request(Message):
+ def __init__(self, cfg, unreader, peer_addr, req_number=1):
+ self.method = None
+ self.uri = None
+ self.path = None
+ self.query = None
+ self.fragment = None
+
+ # get max request line size
+ self.limit_request_line = cfg.limit_request_line
+ if (self.limit_request_line < 0
+ or self.limit_request_line >= MAX_REQUEST_LINE):
+ self.limit_request_line = MAX_REQUEST_LINE
+
+ self.req_number = req_number
+ self.proxy_protocol_info = None
+ super().__init__(cfg, unreader, peer_addr)
+
+ def get_data(self, unreader, buf, stop=False):
+ data = unreader.read()
+ if not data:
+ if stop:
+ raise StopIteration()
+ raise NoMoreData(buf.getvalue())
+ buf.write(data)
+
+ def parse(self, unreader):
+ buf = io.BytesIO()
+ self.get_data(unreader, buf, stop=True)
+
+ # get request line
+ line, rbuf = self.read_line(unreader, buf, self.limit_request_line)
+
+ # proxy protocol
+ if self.proxy_protocol(bytes_to_str(line)):
+ # get next request line
+ buf = io.BytesIO()
+ buf.write(rbuf)
+ line, rbuf = self.read_line(unreader, buf, self.limit_request_line)
+
+ self.parse_request_line(line)
+ buf = io.BytesIO()
+ buf.write(rbuf)
+
+ # Headers
+ data = buf.getvalue()
+ idx = data.find(b"\r\n\r\n")
+
+ done = data[:2] == b"\r\n"
+ while True:
+ idx = data.find(b"\r\n\r\n")
+ done = data[:2] == b"\r\n"
+
+ if idx < 0 and not done:
+ self.get_data(unreader, buf)
+ data = buf.getvalue()
+ if len(data) > self.max_buffer_headers:
+ raise LimitRequestHeaders("max buffer headers")
+ else:
+ break
+
+ if done:
+ self.unreader.unread(data[2:])
+ return b""
+
+ self.headers = self.parse_headers(data[:idx])
+
+ ret = data[idx + 4:]
+ buf = None
+ return ret
+
+ def read_line(self, unreader, buf, limit=0):
+ data = buf.getvalue()
+
+ while True:
+ idx = data.find(b"\r\n")
+ if idx >= 0:
+ # check if the request line is too large
+ if idx > limit > 0:
+ raise LimitRequestLine(idx, limit)
+ break
+ if len(data) - 2 > limit > 0:
+ raise LimitRequestLine(len(data), limit)
+ self.get_data(unreader, buf)
+ data = buf.getvalue()
+
+ return (data[:idx], # request line,
+ data[idx + 2:]) # residue in the buffer, skip \r\n
+
+ def proxy_protocol(self, line):
+ """\
+ Detect, check and parse proxy protocol.
+
+ :raises: ForbiddenProxyRequest, InvalidProxyLine.
+ :return: True for proxy protocol line else False
+ """
+ if not self.cfg.proxy_protocol:
+ return False
+
+ if self.req_number != 1:
+ return False
+
+ if not line.startswith("PROXY"):
+ return False
+
+ self.proxy_protocol_access_check()
+ self.parse_proxy_protocol(line)
+
+ return True
+
+ def proxy_protocol_access_check(self):
+ # check in allow list
+ if ("*" not in self.cfg.proxy_allow_ips and
+ isinstance(self.peer_addr, tuple) and
+ self.peer_addr[0] not in self.cfg.proxy_allow_ips):
+ raise ForbiddenProxyRequest(self.peer_addr[0])
+
+ def parse_proxy_protocol(self, line):
+ bits = line.split()
+
+ if len(bits) != 6:
+ raise InvalidProxyLine(line)
+
+ # Extract data
+ proto = bits[1]
+ s_addr = bits[2]
+ d_addr = bits[3]
+
+ # Validation
+ if proto not in ["TCP4", "TCP6"]:
+ raise InvalidProxyLine("protocol '%s' not supported" % proto)
+ if proto == "TCP4":
+ try:
+ socket.inet_pton(socket.AF_INET, s_addr)
+ socket.inet_pton(socket.AF_INET, d_addr)
+ except socket.error:
+ raise InvalidProxyLine(line)
+ elif proto == "TCP6":
+ try:
+ socket.inet_pton(socket.AF_INET6, s_addr)
+ socket.inet_pton(socket.AF_INET6, d_addr)
+ except socket.error:
+ raise InvalidProxyLine(line)
+
+ try:
+ s_port = int(bits[4])
+ d_port = int(bits[5])
+ except ValueError:
+ raise InvalidProxyLine("invalid port %s" % line)
+
+ if not ((0 <= s_port <= 65535) and (0 <= d_port <= 65535)):
+ raise InvalidProxyLine("invalid port %s" % line)
+
+ # Set data
+ self.proxy_protocol_info = {
+ "proxy_protocol": proto,
+ "client_addr": s_addr,
+ "client_port": s_port,
+ "proxy_addr": d_addr,
+ "proxy_port": d_port
+ }
+
+ def parse_request_line(self, line_bytes):
+ bits = [bytes_to_str(bit) for bit in line_bytes.split(None, 2)]
+ if len(bits) != 3:
+ raise InvalidRequestLine(bytes_to_str(line_bytes))
+
+ # Method
+ if not METH_RE.match(bits[0]):
+ raise InvalidRequestMethod(bits[0])
+ self.method = bits[0].upper()
+
+ # URI
+ self.uri = bits[1]
+
+ try:
+ parts = split_request_uri(self.uri)
+ except ValueError:
+ raise InvalidRequestLine(bytes_to_str(line_bytes))
+ self.path = parts.path or ""
+ self.query = parts.query or ""
+ self.fragment = parts.fragment or ""
+
+ # Version
+ match = VERSION_RE.match(bits[2])
+ if match is None:
+ raise InvalidHTTPVersion(bits[2])
+ self.version = (int(match.group(1)), int(match.group(2)))
+
+ def set_body_reader(self):
+ super().set_body_reader()
+ if isinstance(self.body.reader, EOFReader):
+ self.body = Body(LengthReader(self.unreader, 0))
diff --git a/app_env/Lib/site-packages/gunicorn/http/parser.py b/app_env/Lib/site-packages/gunicorn/http/parser.py
new file mode 100644
index 00000000..5d689f06
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/http/parser.py
@@ -0,0 +1,52 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+from gunicorn.http.message import Request
+from gunicorn.http.unreader import SocketUnreader, IterUnreader
+
+
+class Parser(object):
+
+ mesg_class = None
+
+ def __init__(self, cfg, source, source_addr):
+ self.cfg = cfg
+ if hasattr(source, "recv"):
+ self.unreader = SocketUnreader(source)
+ else:
+ self.unreader = IterUnreader(source)
+ self.mesg = None
+ self.source_addr = source_addr
+
+ # request counter (for keepalive connetions)
+ self.req_count = 0
+
+ def __iter__(self):
+ return self
+
+ def __next__(self):
+ # Stop if HTTP dictates a stop.
+ if self.mesg and self.mesg.should_close():
+ raise StopIteration()
+
+ # Discard any unread body of the previous message
+ if self.mesg:
+ data = self.mesg.body.read(8192)
+ while data:
+ data = self.mesg.body.read(8192)
+
+ # Parse the next request
+ self.req_count += 1
+ self.mesg = self.mesg_class(self.cfg, self.unreader, self.source_addr, self.req_count)
+ if not self.mesg:
+ raise StopIteration()
+ return self.mesg
+
+ next = __next__
+
+
+class RequestParser(Parser):
+
+ mesg_class = Request
diff --git a/app_env/Lib/site-packages/gunicorn/http/unreader.py b/app_env/Lib/site-packages/gunicorn/http/unreader.py
new file mode 100644
index 00000000..273bfc31
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/http/unreader.py
@@ -0,0 +1,79 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import io
+import os
+
+# Classes that can undo reading data from
+# a given type of data source.
+
+
+class Unreader(object):
+ def __init__(self):
+ self.buf = io.BytesIO()
+
+ def chunk(self):
+ raise NotImplementedError()
+
+ def read(self, size=None):
+ if size is not None and not isinstance(size, int):
+ raise TypeError("size parameter must be an int or long.")
+
+ if size is not None:
+ if size == 0:
+ return b""
+ if size < 0:
+ size = None
+
+ self.buf.seek(0, os.SEEK_END)
+
+ if size is None and self.buf.tell():
+ ret = self.buf.getvalue()
+ self.buf = io.BytesIO()
+ return ret
+ if size is None:
+ d = self.chunk()
+ return d
+
+ while self.buf.tell() < size:
+ chunk = self.chunk()
+ if not chunk:
+ ret = self.buf.getvalue()
+ self.buf = io.BytesIO()
+ return ret
+ self.buf.write(chunk)
+ data = self.buf.getvalue()
+ self.buf = io.BytesIO()
+ self.buf.write(data[size:])
+ return data[:size]
+
+ def unread(self, data):
+ self.buf.seek(0, os.SEEK_END)
+ self.buf.write(data)
+
+
+class SocketUnreader(Unreader):
+ def __init__(self, sock, max_chunk=8192):
+ super().__init__()
+ self.sock = sock
+ self.mxchunk = max_chunk
+
+ def chunk(self):
+ return self.sock.recv(self.mxchunk)
+
+
+class IterUnreader(Unreader):
+ def __init__(self, iterable):
+ super().__init__()
+ self.iter = iter(iterable)
+
+ def chunk(self):
+ if not self.iter:
+ return b""
+ try:
+ return next(self.iter)
+ except StopIteration:
+ self.iter = None
+ return b""
diff --git a/app_env/Lib/site-packages/gunicorn/http/wsgi.py b/app_env/Lib/site-packages/gunicorn/http/wsgi.py
new file mode 100644
index 00000000..478677f4
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/http/wsgi.py
@@ -0,0 +1,393 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import io
+import logging
+import os
+import re
+import sys
+
+from gunicorn.http.message import HEADER_RE
+from gunicorn.http.errors import InvalidHeader, InvalidHeaderName
+from gunicorn import SERVER_SOFTWARE, SERVER
+import gunicorn.util as util
+
+# Send files in at most 1GB blocks as some operating systems can have problems
+# with sending files in blocks over 2GB.
+BLKSIZE = 0x3FFFFFFF
+
+HEADER_VALUE_RE = re.compile(r'[\x00-\x1F\x7F]')
+
+log = logging.getLogger(__name__)
+
+
+class FileWrapper(object):
+
+ def __init__(self, filelike, blksize=8192):
+ self.filelike = filelike
+ self.blksize = blksize
+ if hasattr(filelike, 'close'):
+ self.close = filelike.close
+
+ def __getitem__(self, key):
+ data = self.filelike.read(self.blksize)
+ if data:
+ return data
+ raise IndexError
+
+
+class WSGIErrorsWrapper(io.RawIOBase):
+
+ def __init__(self, cfg):
+ # There is no public __init__ method for RawIOBase so
+ # we don't need to call super() in the __init__ method.
+ # pylint: disable=super-init-not-called
+ errorlog = logging.getLogger("gunicorn.error")
+ handlers = errorlog.handlers
+ self.streams = []
+
+ if cfg.errorlog == "-":
+ self.streams.append(sys.stderr)
+ handlers = handlers[1:]
+
+ for h in handlers:
+ if hasattr(h, "stream"):
+ self.streams.append(h.stream)
+
+ def write(self, data):
+ for stream in self.streams:
+ try:
+ stream.write(data)
+ except UnicodeError:
+ stream.write(data.encode("UTF-8"))
+ stream.flush()
+
+
+def base_environ(cfg):
+ return {
+ "wsgi.errors": WSGIErrorsWrapper(cfg),
+ "wsgi.version": (1, 0),
+ "wsgi.multithread": False,
+ "wsgi.multiprocess": (cfg.workers > 1),
+ "wsgi.run_once": False,
+ "wsgi.file_wrapper": FileWrapper,
+ "wsgi.input_terminated": True,
+ "SERVER_SOFTWARE": SERVER_SOFTWARE,
+ }
+
+
+def default_environ(req, sock, cfg):
+ env = base_environ(cfg)
+ env.update({
+ "wsgi.input": req.body,
+ "gunicorn.socket": sock,
+ "REQUEST_METHOD": req.method,
+ "QUERY_STRING": req.query,
+ "RAW_URI": req.uri,
+ "SERVER_PROTOCOL": "HTTP/%s" % ".".join([str(v) for v in req.version])
+ })
+ return env
+
+
+def proxy_environ(req):
+ info = req.proxy_protocol_info
+
+ if not info:
+ return {}
+
+ return {
+ "PROXY_PROTOCOL": info["proxy_protocol"],
+ "REMOTE_ADDR": info["client_addr"],
+ "REMOTE_PORT": str(info["client_port"]),
+ "PROXY_ADDR": info["proxy_addr"],
+ "PROXY_PORT": str(info["proxy_port"]),
+ }
+
+
+def create(req, sock, client, server, cfg):
+ resp = Response(req, sock, cfg)
+
+ # set initial environ
+ environ = default_environ(req, sock, cfg)
+
+ # default variables
+ host = None
+ script_name = os.environ.get("SCRIPT_NAME", "")
+
+ # add the headers to the environ
+ for hdr_name, hdr_value in req.headers:
+ if hdr_name == "EXPECT":
+ # handle expect
+ if hdr_value.lower() == "100-continue":
+ sock.send(b"HTTP/1.1 100 Continue\r\n\r\n")
+ elif hdr_name == 'HOST':
+ host = hdr_value
+ elif hdr_name == "SCRIPT_NAME":
+ script_name = hdr_value
+ elif hdr_name == "CONTENT-TYPE":
+ environ['CONTENT_TYPE'] = hdr_value
+ continue
+ elif hdr_name == "CONTENT-LENGTH":
+ environ['CONTENT_LENGTH'] = hdr_value
+ continue
+
+ key = 'HTTP_' + hdr_name.replace('-', '_')
+ if key in environ:
+ hdr_value = "%s,%s" % (environ[key], hdr_value)
+ environ[key] = hdr_value
+
+ # set the url scheme
+ environ['wsgi.url_scheme'] = req.scheme
+
+ # set the REMOTE_* keys in environ
+ # authors should be aware that REMOTE_HOST and REMOTE_ADDR
+ # may not qualify the remote addr:
+ # http://www.ietf.org/rfc/rfc3875
+ if isinstance(client, str):
+ environ['REMOTE_ADDR'] = client
+ elif isinstance(client, bytes):
+ environ['REMOTE_ADDR'] = client.decode()
+ else:
+ environ['REMOTE_ADDR'] = client[0]
+ environ['REMOTE_PORT'] = str(client[1])
+
+ # handle the SERVER_*
+ # Normally only the application should use the Host header but since the
+ # WSGI spec doesn't support unix sockets, we are using it to create
+ # viable SERVER_* if possible.
+ if isinstance(server, str):
+ server = server.split(":")
+ if len(server) == 1:
+ # unix socket
+ if host:
+ server = host.split(':')
+ if len(server) == 1:
+ if req.scheme == "http":
+ server.append(80)
+ elif req.scheme == "https":
+ server.append(443)
+ else:
+ server.append('')
+ else:
+ # no host header given which means that we are not behind a
+ # proxy, so append an empty port.
+ server.append('')
+ environ['SERVER_NAME'] = server[0]
+ environ['SERVER_PORT'] = str(server[1])
+
+ # set the path and script name
+ path_info = req.path
+ if script_name:
+ path_info = path_info.split(script_name, 1)[1]
+ environ['PATH_INFO'] = util.unquote_to_wsgi_str(path_info)
+ environ['SCRIPT_NAME'] = script_name
+
+ # override the environ with the correct remote and server address if
+ # we are behind a proxy using the proxy protocol.
+ environ.update(proxy_environ(req))
+ return resp, environ
+
+
+class Response(object):
+
+ def __init__(self, req, sock, cfg):
+ self.req = req
+ self.sock = sock
+ self.version = SERVER
+ self.status = None
+ self.chunked = False
+ self.must_close = False
+ self.headers = []
+ self.headers_sent = False
+ self.response_length = None
+ self.sent = 0
+ self.upgrade = False
+ self.cfg = cfg
+
+ def force_close(self):
+ self.must_close = True
+
+ def should_close(self):
+ if self.must_close or self.req.should_close():
+ return True
+ if self.response_length is not None or self.chunked:
+ return False
+ if self.req.method == 'HEAD':
+ return False
+ if self.status_code < 200 or self.status_code in (204, 304):
+ return False
+ return True
+
+ def start_response(self, status, headers, exc_info=None):
+ if exc_info:
+ try:
+ if self.status and self.headers_sent:
+ util.reraise(exc_info[0], exc_info[1], exc_info[2])
+ finally:
+ exc_info = None
+ elif self.status is not None:
+ raise AssertionError("Response headers already set!")
+
+ self.status = status
+
+ # get the status code from the response here so we can use it to check
+ # the need for the connection header later without parsing the string
+ # each time.
+ try:
+ self.status_code = int(self.status.split()[0])
+ except ValueError:
+ self.status_code = None
+
+ self.process_headers(headers)
+ self.chunked = self.is_chunked()
+ return self.write
+
+ def process_headers(self, headers):
+ for name, value in headers:
+ if not isinstance(name, str):
+ raise TypeError('%r is not a string' % name)
+
+ if HEADER_RE.search(name):
+ raise InvalidHeaderName('%r' % name)
+
+ if not isinstance(value, str):
+ raise TypeError('%r is not a string' % value)
+
+ if HEADER_VALUE_RE.search(value):
+ raise InvalidHeader('%r' % value)
+
+ value = value.strip()
+ lname = name.lower().strip()
+ if lname == "content-length":
+ self.response_length = int(value)
+ elif util.is_hoppish(name):
+ if lname == "connection":
+ # handle websocket
+ if value.lower().strip() == "upgrade":
+ self.upgrade = True
+ elif lname == "upgrade":
+ if value.lower().strip() == "websocket":
+ self.headers.append((name.strip(), value))
+
+ # ignore hopbyhop headers
+ continue
+ self.headers.append((name.strip(), value))
+
+ def is_chunked(self):
+ # Only use chunked responses when the client is
+ # speaking HTTP/1.1 or newer and there was
+ # no Content-Length header set.
+ if self.response_length is not None:
+ return False
+ elif self.req.version <= (1, 0):
+ return False
+ elif self.req.method == 'HEAD':
+ # Responses to a HEAD request MUST NOT contain a response body.
+ return False
+ elif self.status_code in (204, 304):
+ # Do not use chunked responses when the response is guaranteed to
+ # not have a response body.
+ return False
+ return True
+
+ def default_headers(self):
+ # set the connection header
+ if self.upgrade:
+ connection = "upgrade"
+ elif self.should_close():
+ connection = "close"
+ else:
+ connection = "keep-alive"
+
+ headers = [
+ "HTTP/%s.%s %s\r\n" % (self.req.version[0],
+ self.req.version[1], self.status),
+ "Server: %s\r\n" % self.version,
+ "Date: %s\r\n" % util.http_date(),
+ "Connection: %s\r\n" % connection
+ ]
+ if self.chunked:
+ headers.append("Transfer-Encoding: chunked\r\n")
+ return headers
+
+ def send_headers(self):
+ if self.headers_sent:
+ return
+ tosend = self.default_headers()
+ tosend.extend(["%s: %s\r\n" % (k, v) for k, v in self.headers])
+
+ header_str = "%s\r\n" % "".join(tosend)
+ util.write(self.sock, util.to_bytestring(header_str, "latin-1"))
+ self.headers_sent = True
+
+ def write(self, arg):
+ self.send_headers()
+ if not isinstance(arg, bytes):
+ raise TypeError('%r is not a byte' % arg)
+ arglen = len(arg)
+ tosend = arglen
+ if self.response_length is not None:
+ if self.sent >= self.response_length:
+ # Never write more than self.response_length bytes
+ return
+
+ tosend = min(self.response_length - self.sent, tosend)
+ if tosend < arglen:
+ arg = arg[:tosend]
+
+ # Sending an empty chunk signals the end of the
+ # response and prematurely closes the response
+ if self.chunked and tosend == 0:
+ return
+
+ self.sent += tosend
+ util.write(self.sock, arg, self.chunked)
+
+ def can_sendfile(self):
+ return self.cfg.sendfile is not False
+
+ def sendfile(self, respiter):
+ if self.cfg.is_ssl or not self.can_sendfile():
+ return False
+
+ if not util.has_fileno(respiter.filelike):
+ return False
+
+ fileno = respiter.filelike.fileno()
+ try:
+ offset = os.lseek(fileno, 0, os.SEEK_CUR)
+ if self.response_length is None:
+ filesize = os.fstat(fileno).st_size
+ nbytes = filesize - offset
+ else:
+ nbytes = self.response_length
+ except (OSError, io.UnsupportedOperation):
+ return False
+
+ self.send_headers()
+
+ if self.is_chunked():
+ chunk_size = "%X\r\n" % nbytes
+ self.sock.sendall(chunk_size.encode('utf-8'))
+
+ self.sock.sendfile(respiter.filelike, count=nbytes)
+
+ if self.is_chunked():
+ self.sock.sendall(b"\r\n")
+
+ os.lseek(fileno, offset, os.SEEK_SET)
+
+ return True
+
+ def write_file(self, respiter):
+ if not self.sendfile(respiter):
+ for item in respiter:
+ self.write(item)
+
+ def close(self):
+ if not self.headers_sent:
+ self.send_headers()
+ if self.chunked:
+ util.write_chunk(self.sock, b"")
diff --git a/venv/Lib/site-packages/pip/_internal/operations/__init__.py b/app_env/Lib/site-packages/gunicorn/instrument/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/__init__.py
rename to app_env/Lib/site-packages/gunicorn/instrument/__init__.py
diff --git a/app_env/Lib/site-packages/gunicorn/instrument/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/instrument/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..f1e1f1d4
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/instrument/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/instrument/__pycache__/statsd.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/instrument/__pycache__/statsd.cpython-310.pyc
new file mode 100644
index 00000000..72ccacf4
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/instrument/__pycache__/statsd.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/instrument/statsd.py b/app_env/Lib/site-packages/gunicorn/instrument/statsd.py
new file mode 100644
index 00000000..afbfd7b4
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/instrument/statsd.py
@@ -0,0 +1,130 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+"Bare-bones implementation of statsD's protocol, client-side"
+
+import logging
+import socket
+from re import sub
+
+from gunicorn.glogging import Logger
+
+# Instrumentation constants
+METRIC_VAR = "metric"
+VALUE_VAR = "value"
+MTYPE_VAR = "mtype"
+GAUGE_TYPE = "gauge"
+COUNTER_TYPE = "counter"
+HISTOGRAM_TYPE = "histogram"
+
+
+class Statsd(Logger):
+ """statsD-based instrumentation, that passes as a logger
+ """
+ def __init__(self, cfg):
+ """host, port: statsD server
+ """
+ Logger.__init__(self, cfg)
+ self.prefix = sub(r"^(.+[^.]+)\.*$", "\\g<1>.", cfg.statsd_prefix)
+ try:
+ host, port = cfg.statsd_host
+ self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
+ self.sock.connect((host, int(port)))
+ except Exception:
+ self.sock = None
+
+ self.dogstatsd_tags = cfg.dogstatsd_tags
+
+ # Log errors and warnings
+ def critical(self, msg, *args, **kwargs):
+ Logger.critical(self, msg, *args, **kwargs)
+ self.increment("gunicorn.log.critical", 1)
+
+ def error(self, msg, *args, **kwargs):
+ Logger.error(self, msg, *args, **kwargs)
+ self.increment("gunicorn.log.error", 1)
+
+ def warning(self, msg, *args, **kwargs):
+ Logger.warning(self, msg, *args, **kwargs)
+ self.increment("gunicorn.log.warning", 1)
+
+ def exception(self, msg, *args, **kwargs):
+ Logger.exception(self, msg, *args, **kwargs)
+ self.increment("gunicorn.log.exception", 1)
+
+ # Special treatment for info, the most common log level
+ def info(self, msg, *args, **kwargs):
+ self.log(logging.INFO, msg, *args, **kwargs)
+
+ # skip the run-of-the-mill logs
+ def debug(self, msg, *args, **kwargs):
+ self.log(logging.DEBUG, msg, *args, **kwargs)
+
+ def log(self, lvl, msg, *args, **kwargs):
+ """Log a given statistic if metric, value and type are present
+ """
+ try:
+ extra = kwargs.get("extra", None)
+ if extra is not None:
+ metric = extra.get(METRIC_VAR, None)
+ value = extra.get(VALUE_VAR, None)
+ typ = extra.get(MTYPE_VAR, None)
+ if metric and value and typ:
+ if typ == GAUGE_TYPE:
+ self.gauge(metric, value)
+ elif typ == COUNTER_TYPE:
+ self.increment(metric, value)
+ elif typ == HISTOGRAM_TYPE:
+ self.histogram(metric, value)
+ else:
+ pass
+
+ # Log to parent logger only if there is something to say
+ if msg:
+ Logger.log(self, lvl, msg, *args, **kwargs)
+ except Exception:
+ Logger.warning(self, "Failed to log to statsd", exc_info=True)
+
+ # access logging
+ def access(self, resp, req, environ, request_time):
+ """Measure request duration
+ request_time is a datetime.timedelta
+ """
+ Logger.access(self, resp, req, environ, request_time)
+ duration_in_ms = request_time.seconds * 1000 + float(request_time.microseconds) / 10 ** 3
+ status = resp.status
+ if isinstance(status, str):
+ status = int(status.split(None, 1)[0])
+ self.histogram("gunicorn.request.duration", duration_in_ms)
+ self.increment("gunicorn.requests", 1)
+ self.increment("gunicorn.request.status.%d" % status, 1)
+
+ # statsD methods
+ # you can use those directly if you want
+ def gauge(self, name, value):
+ self._sock_send("{0}{1}:{2}|g".format(self.prefix, name, value))
+
+ def increment(self, name, value, sampling_rate=1.0):
+ self._sock_send("{0}{1}:{2}|c|@{3}".format(self.prefix, name, value, sampling_rate))
+
+ def decrement(self, name, value, sampling_rate=1.0):
+ self._sock_send("{0}{1}:-{2}|c|@{3}".format(self.prefix, name, value, sampling_rate))
+
+ def histogram(self, name, value):
+ self._sock_send("{0}{1}:{2}|ms".format(self.prefix, name, value))
+
+ def _sock_send(self, msg):
+ try:
+ if isinstance(msg, str):
+ msg = msg.encode("ascii")
+
+ # http://docs.datadoghq.com/guides/dogstatsd/#datagram-format
+ if self.dogstatsd_tags:
+ msg = msg + b"|#" + self.dogstatsd_tags.encode('ascii')
+
+ if self.sock:
+ self.sock.send(msg)
+ except Exception:
+ Logger.warning(self, "Error sending message to statsd", exc_info=True)
diff --git a/app_env/Lib/site-packages/gunicorn/pidfile.py b/app_env/Lib/site-packages/gunicorn/pidfile.py
new file mode 100644
index 00000000..585b02af
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/pidfile.py
@@ -0,0 +1,86 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import errno
+import os
+import tempfile
+
+
+class Pidfile(object):
+ """\
+ Manage a PID file. If a specific name is provided
+ it and '"%s.oldpid" % name' will be used. Otherwise
+ we create a temp file using os.mkstemp.
+ """
+
+ def __init__(self, fname):
+ self.fname = fname
+ self.pid = None
+
+ def create(self, pid):
+ oldpid = self.validate()
+ if oldpid:
+ if oldpid == os.getpid():
+ return
+ msg = "Already running on PID %s (or pid file '%s' is stale)"
+ raise RuntimeError(msg % (oldpid, self.fname))
+
+ self.pid = pid
+
+ # Write pidfile
+ fdir = os.path.dirname(self.fname)
+ if fdir and not os.path.isdir(fdir):
+ raise RuntimeError("%s doesn't exist. Can't create pidfile." % fdir)
+ fd, fname = tempfile.mkstemp(dir=fdir)
+ os.write(fd, ("%s\n" % self.pid).encode('utf-8'))
+ if self.fname:
+ os.rename(fname, self.fname)
+ else:
+ self.fname = fname
+ os.close(fd)
+
+ # set permissions to -rw-r--r--
+ os.chmod(self.fname, 420)
+
+ def rename(self, path):
+ self.unlink()
+ self.fname = path
+ self.create(self.pid)
+
+ def unlink(self):
+ """ delete pidfile"""
+ try:
+ with open(self.fname, "r") as f:
+ pid1 = int(f.read() or 0)
+
+ if pid1 == self.pid:
+ os.unlink(self.fname)
+ except Exception:
+ pass
+
+ def validate(self):
+ """ Validate pidfile and make it stale if needed"""
+ if not self.fname:
+ return
+ try:
+ with open(self.fname, "r") as f:
+ try:
+ wpid = int(f.read())
+ except ValueError:
+ return
+
+ try:
+ os.kill(wpid, 0)
+ return wpid
+ except OSError as e:
+ if e.args[0] == errno.EPERM:
+ return wpid
+ if e.args[0] == errno.ESRCH:
+ return
+ raise
+ except IOError as e:
+ if e.args[0] == errno.ENOENT:
+ return
+ raise
diff --git a/app_env/Lib/site-packages/gunicorn/reloader.py b/app_env/Lib/site-packages/gunicorn/reloader.py
new file mode 100644
index 00000000..c1964785
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/reloader.py
@@ -0,0 +1,132 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+# pylint: disable=no-else-continue
+
+import os
+import os.path
+import re
+import sys
+import time
+import threading
+
+COMPILED_EXT_RE = re.compile(r'py[co]$')
+
+
+class Reloader(threading.Thread):
+ def __init__(self, extra_files=None, interval=1, callback=None):
+ super().__init__()
+ self.setDaemon(True)
+ self._extra_files = set(extra_files or ())
+ self._interval = interval
+ self._callback = callback
+
+ def add_extra_file(self, filename):
+ self._extra_files.add(filename)
+
+ def get_files(self):
+ fnames = [
+ COMPILED_EXT_RE.sub('py', module.__file__)
+ for module in tuple(sys.modules.values())
+ if getattr(module, '__file__', None)
+ ]
+
+ fnames.extend(self._extra_files)
+
+ return fnames
+
+ def run(self):
+ mtimes = {}
+ while True:
+ for filename in self.get_files():
+ try:
+ mtime = os.stat(filename).st_mtime
+ except OSError:
+ continue
+ old_time = mtimes.get(filename)
+ if old_time is None:
+ mtimes[filename] = mtime
+ continue
+ elif mtime > old_time:
+ if self._callback:
+ self._callback(filename)
+ time.sleep(self._interval)
+
+
+has_inotify = False
+if sys.platform.startswith('linux'):
+ try:
+ from inotify.adapters import Inotify
+ import inotify.constants
+ has_inotify = True
+ except ImportError:
+ pass
+
+
+if has_inotify:
+
+ class InotifyReloader(threading.Thread):
+ event_mask = (inotify.constants.IN_CREATE | inotify.constants.IN_DELETE
+ | inotify.constants.IN_DELETE_SELF | inotify.constants.IN_MODIFY
+ | inotify.constants.IN_MOVE_SELF | inotify.constants.IN_MOVED_FROM
+ | inotify.constants.IN_MOVED_TO)
+
+ def __init__(self, extra_files=None, callback=None):
+ super().__init__()
+ self.setDaemon(True)
+ self._callback = callback
+ self._dirs = set()
+ self._watcher = Inotify()
+
+ for extra_file in extra_files:
+ self.add_extra_file(extra_file)
+
+ def add_extra_file(self, filename):
+ dirname = os.path.dirname(filename)
+
+ if dirname in self._dirs:
+ return
+
+ self._watcher.add_watch(dirname, mask=self.event_mask)
+ self._dirs.add(dirname)
+
+ def get_dirs(self):
+ fnames = [
+ os.path.dirname(os.path.abspath(COMPILED_EXT_RE.sub('py', module.__file__)))
+ for module in tuple(sys.modules.values())
+ if getattr(module, '__file__', None)
+ ]
+
+ return set(fnames)
+
+ def run(self):
+ self._dirs = self.get_dirs()
+
+ for dirname in self._dirs:
+ if os.path.isdir(dirname):
+ self._watcher.add_watch(dirname, mask=self.event_mask)
+
+ for event in self._watcher.event_gen():
+ if event is None:
+ continue
+
+ filename = event[3]
+
+ self._callback(filename)
+
+else:
+
+ class InotifyReloader(object):
+ def __init__(self, callback=None):
+ raise ImportError('You must have the inotify module installed to '
+ 'use the inotify reloader')
+
+
+preferred_reloader = InotifyReloader if has_inotify else Reloader
+
+reloader_engines = {
+ 'auto': preferred_reloader,
+ 'poll': Reloader,
+ 'inotify': InotifyReloader,
+}
diff --git a/app_env/Lib/site-packages/gunicorn/sock.py b/app_env/Lib/site-packages/gunicorn/sock.py
new file mode 100644
index 00000000..d4586770
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/sock.py
@@ -0,0 +1,212 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import errno
+import os
+import socket
+import stat
+import sys
+import time
+
+from gunicorn import util
+
+
+class BaseSocket(object):
+
+ def __init__(self, address, conf, log, fd=None):
+ self.log = log
+ self.conf = conf
+
+ self.cfg_addr = address
+ if fd is None:
+ sock = socket.socket(self.FAMILY, socket.SOCK_STREAM)
+ bound = False
+ else:
+ sock = socket.fromfd(fd, self.FAMILY, socket.SOCK_STREAM)
+ os.close(fd)
+ bound = True
+
+ self.sock = self.set_options(sock, bound=bound)
+
+ def __str__(self):
+ return "" % self.sock.fileno()
+
+ def __getattr__(self, name):
+ return getattr(self.sock, name)
+
+ def set_options(self, sock, bound=False):
+ sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
+ if (self.conf.reuse_port
+ and hasattr(socket, 'SO_REUSEPORT')): # pragma: no cover
+ try:
+ sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1)
+ except socket.error as err:
+ if err.errno not in (errno.ENOPROTOOPT, errno.EINVAL):
+ raise
+ if not bound:
+ self.bind(sock)
+ sock.setblocking(0)
+
+ # make sure that the socket can be inherited
+ if hasattr(sock, "set_inheritable"):
+ sock.set_inheritable(True)
+
+ sock.listen(self.conf.backlog)
+ return sock
+
+ def bind(self, sock):
+ sock.bind(self.cfg_addr)
+
+ def close(self):
+ if self.sock is None:
+ return
+
+ try:
+ self.sock.close()
+ except socket.error as e:
+ self.log.info("Error while closing socket %s", str(e))
+
+ self.sock = None
+
+
+class TCPSocket(BaseSocket):
+
+ FAMILY = socket.AF_INET
+
+ def __str__(self):
+ if self.conf.is_ssl:
+ scheme = "https"
+ else:
+ scheme = "http"
+
+ addr = self.sock.getsockname()
+ return "%s://%s:%d" % (scheme, addr[0], addr[1])
+
+ def set_options(self, sock, bound=False):
+ sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
+ return super().set_options(sock, bound=bound)
+
+
+class TCP6Socket(TCPSocket):
+
+ FAMILY = socket.AF_INET6
+
+ def __str__(self):
+ (host, port, _, _) = self.sock.getsockname()
+ return "http://[%s]:%d" % (host, port)
+
+
+class UnixSocket(BaseSocket):
+
+ FAMILY = socket.AF_UNIX
+
+ def __init__(self, addr, conf, log, fd=None):
+ if fd is None:
+ try:
+ st = os.stat(addr)
+ except OSError as e:
+ if e.args[0] != errno.ENOENT:
+ raise
+ else:
+ if stat.S_ISSOCK(st.st_mode):
+ os.remove(addr)
+ else:
+ raise ValueError("%r is not a socket" % addr)
+ super().__init__(addr, conf, log, fd=fd)
+
+ def __str__(self):
+ return "unix:%s" % self.cfg_addr
+
+ def bind(self, sock):
+ old_umask = os.umask(self.conf.umask)
+ sock.bind(self.cfg_addr)
+ util.chown(self.cfg_addr, self.conf.uid, self.conf.gid)
+ os.umask(old_umask)
+
+
+def _sock_type(addr):
+ if isinstance(addr, tuple):
+ if util.is_ipv6(addr[0]):
+ sock_type = TCP6Socket
+ else:
+ sock_type = TCPSocket
+ elif isinstance(addr, (str, bytes)):
+ sock_type = UnixSocket
+ else:
+ raise TypeError("Unable to create socket from: %r" % addr)
+ return sock_type
+
+
+def create_sockets(conf, log, fds=None):
+ """
+ Create a new socket for the configured addresses or file descriptors.
+
+ If a configured address is a tuple then a TCP socket is created.
+ If it is a string, a Unix socket is created. Otherwise, a TypeError is
+ raised.
+ """
+ listeners = []
+
+ # get it only once
+ addr = conf.address
+ fdaddr = [bind for bind in addr if isinstance(bind, int)]
+ if fds:
+ fdaddr += list(fds)
+ laddr = [bind for bind in addr if not isinstance(bind, int)]
+
+ # check ssl config early to raise the error on startup
+ # only the certfile is needed since it can contains the keyfile
+ if conf.certfile and not os.path.exists(conf.certfile):
+ raise ValueError('certfile "%s" does not exist' % conf.certfile)
+
+ if conf.keyfile and not os.path.exists(conf.keyfile):
+ raise ValueError('keyfile "%s" does not exist' % conf.keyfile)
+
+ # sockets are already bound
+ if fdaddr:
+ for fd in fdaddr:
+ sock = socket.fromfd(fd, socket.AF_UNIX, socket.SOCK_STREAM)
+ sock_name = sock.getsockname()
+ sock_type = _sock_type(sock_name)
+ listener = sock_type(sock_name, conf, log, fd=fd)
+ listeners.append(listener)
+
+ return listeners
+
+ # no sockets is bound, first initialization of gunicorn in this env.
+ for addr in laddr:
+ sock_type = _sock_type(addr)
+ sock = None
+ for i in range(5):
+ try:
+ sock = sock_type(addr, conf, log)
+ except socket.error as e:
+ if e.args[0] == errno.EADDRINUSE:
+ log.error("Connection in use: %s", str(addr))
+ if e.args[0] == errno.EADDRNOTAVAIL:
+ log.error("Invalid address: %s", str(addr))
+ if i < 5:
+ msg = "connection to {addr} failed: {error}"
+ log.debug(msg.format(addr=str(addr), error=str(e)))
+ log.error("Retrying in 1 second.")
+ time.sleep(1)
+ else:
+ break
+
+ if sock is None:
+ log.error("Can't connect to %s", str(addr))
+ sys.exit(1)
+
+ listeners.append(sock)
+
+ return listeners
+
+
+def close_sockets(listeners, unlink=True):
+ for sock in listeners:
+ sock_name = sock.getsockname()
+ sock.close()
+ if unlink and _sock_type(sock_name) is UnixSocket:
+ os.unlink(sock_name)
diff --git a/app_env/Lib/site-packages/gunicorn/systemd.py b/app_env/Lib/site-packages/gunicorn/systemd.py
new file mode 100644
index 00000000..cea48220
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/systemd.py
@@ -0,0 +1,77 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import os
+import socket
+
+SD_LISTEN_FDS_START = 3
+
+
+def listen_fds(unset_environment=True):
+ """
+ Get the number of sockets inherited from systemd socket activation.
+
+ :param unset_environment: clear systemd environment variables unless False
+ :type unset_environment: bool
+ :return: the number of sockets to inherit from systemd socket activation
+ :rtype: int
+
+ Returns zero immediately if $LISTEN_PID is not set to the current pid.
+ Otherwise, returns the number of systemd activation sockets specified by
+ $LISTEN_FDS.
+
+ When $LISTEN_PID matches the current pid, unsets the environment variables
+ unless the ``unset_environment`` flag is ``False``.
+
+ .. note::
+ Unlike the sd_listen_fds C function, this implementation does not set
+ the FD_CLOEXEC flag because the gunicorn arbiter never needs to do this.
+
+ .. seealso::
+ ``_
+
+ """
+ fds = int(os.environ.get('LISTEN_FDS', 0))
+ listen_pid = int(os.environ.get('LISTEN_PID', 0))
+
+ if listen_pid != os.getpid():
+ return 0
+
+ if unset_environment:
+ os.environ.pop('LISTEN_PID', None)
+ os.environ.pop('LISTEN_FDS', None)
+
+ return fds
+
+
+def sd_notify(state, logger, unset_environment=False):
+ """Send a notification to systemd. state is a string; see
+ the man page of sd_notify (http://www.freedesktop.org/software/systemd/man/sd_notify.html)
+ for a description of the allowable values.
+
+ If the unset_environment parameter is True, sd_notify() will unset
+ the $NOTIFY_SOCKET environment variable before returning (regardless of
+ whether the function call itself succeeded or not). Further calls to
+ sd_notify() will then fail, but the variable is no longer inherited by
+ child processes.
+ """
+
+
+ addr = os.environ.get('NOTIFY_SOCKET')
+ if addr is None:
+ # not run in a service, just a noop
+ return
+ try:
+ sock = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM | socket.SOCK_CLOEXEC)
+ if addr[0] == '@':
+ addr = '\0' + addr[1:]
+ sock.connect(addr)
+ sock.sendall(state.encode('utf-8'))
+ except:
+ logger.debug("Exception while invoking sd_notify()", exc_info=True)
+ finally:
+ if unset_environment:
+ os.environ.pop('NOTIFY_SOCKET')
+ sock.close()
diff --git a/app_env/Lib/site-packages/gunicorn/util.py b/app_env/Lib/site-packages/gunicorn/util.py
new file mode 100644
index 00000000..a821e357
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/util.py
@@ -0,0 +1,639 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+import ast
+import email.utils
+import errno
+import fcntl
+import html
+import importlib
+import inspect
+import io
+import logging
+import os
+import pwd
+import random
+import re
+import socket
+import sys
+import textwrap
+import time
+import traceback
+import warnings
+
+import pkg_resources
+
+from gunicorn.errors import AppImportError
+from gunicorn.workers import SUPPORTED_WORKERS
+import urllib.parse
+
+REDIRECT_TO = getattr(os, 'devnull', '/dev/null')
+
+# Server and Date aren't technically hop-by-hop
+# headers, but they are in the purview of the
+# origin server which the WSGI spec says we should
+# act like. So we drop them and add our own.
+#
+# In the future, concatenation server header values
+# might be better, but nothing else does it and
+# dropping them is easier.
+hop_headers = set("""
+ connection keep-alive proxy-authenticate proxy-authorization
+ te trailers transfer-encoding upgrade
+ server date
+ """.split())
+
+try:
+ from setproctitle import setproctitle
+
+ def _setproctitle(title):
+ setproctitle("gunicorn: %s" % title)
+except ImportError:
+ def _setproctitle(title):
+ pass
+
+
+def load_class(uri, default="gunicorn.workers.sync.SyncWorker",
+ section="gunicorn.workers"):
+ if inspect.isclass(uri):
+ return uri
+ if uri.startswith("egg:"):
+ # uses entry points
+ entry_str = uri.split("egg:")[1]
+ try:
+ dist, name = entry_str.rsplit("#", 1)
+ except ValueError:
+ dist = entry_str
+ name = default
+
+ try:
+ return pkg_resources.load_entry_point(dist, section, name)
+ except Exception:
+ exc = traceback.format_exc()
+ msg = "class uri %r invalid or not found: \n\n[%s]"
+ raise RuntimeError(msg % (uri, exc))
+ else:
+ components = uri.split('.')
+ if len(components) == 1:
+ while True:
+ if uri.startswith("#"):
+ uri = uri[1:]
+
+ if uri in SUPPORTED_WORKERS:
+ components = SUPPORTED_WORKERS[uri].split(".")
+ break
+
+ try:
+ return pkg_resources.load_entry_point(
+ "gunicorn", section, uri
+ )
+ except Exception:
+ exc = traceback.format_exc()
+ msg = "class uri %r invalid or not found: \n\n[%s]"
+ raise RuntimeError(msg % (uri, exc))
+
+ klass = components.pop(-1)
+
+ try:
+ mod = importlib.import_module('.'.join(components))
+ except:
+ exc = traceback.format_exc()
+ msg = "class uri %r invalid or not found: \n\n[%s]"
+ raise RuntimeError(msg % (uri, exc))
+ return getattr(mod, klass)
+
+
+positionals = (
+ inspect.Parameter.POSITIONAL_ONLY,
+ inspect.Parameter.POSITIONAL_OR_KEYWORD,
+)
+
+
+def get_arity(f):
+ sig = inspect.signature(f)
+ arity = 0
+
+ for param in sig.parameters.values():
+ if param.kind in positionals:
+ arity += 1
+
+ return arity
+
+
+def get_username(uid):
+ """ get the username for a user id"""
+ return pwd.getpwuid(uid).pw_name
+
+
+def set_owner_process(uid, gid, initgroups=False):
+ """ set user and group of workers processes """
+
+ if gid:
+ if uid:
+ try:
+ username = get_username(uid)
+ except KeyError:
+ initgroups = False
+
+ # versions of python < 2.6.2 don't manage unsigned int for
+ # groups like on osx or fedora
+ gid = abs(gid) & 0x7FFFFFFF
+
+ if initgroups:
+ os.initgroups(username, gid)
+ elif gid != os.getgid():
+ os.setgid(gid)
+
+ if uid:
+ os.setuid(uid)
+
+
+def chown(path, uid, gid):
+ os.chown(path, uid, gid)
+
+
+if sys.platform.startswith("win"):
+ def _waitfor(func, pathname, waitall=False):
+ # Perform the operation
+ func(pathname)
+ # Now setup the wait loop
+ if waitall:
+ dirname = pathname
+ else:
+ dirname, name = os.path.split(pathname)
+ dirname = dirname or '.'
+ # Check for `pathname` to be removed from the filesystem.
+ # The exponential backoff of the timeout amounts to a total
+ # of ~1 second after which the deletion is probably an error
+ # anyway.
+ # Testing on a i7@4.3GHz shows that usually only 1 iteration is
+ # required when contention occurs.
+ timeout = 0.001
+ while timeout < 1.0:
+ # Note we are only testing for the existence of the file(s) in
+ # the contents of the directory regardless of any security or
+ # access rights. If we have made it this far, we have sufficient
+ # permissions to do that much using Python's equivalent of the
+ # Windows API FindFirstFile.
+ # Other Windows APIs can fail or give incorrect results when
+ # dealing with files that are pending deletion.
+ L = os.listdir(dirname)
+ if not L if waitall else name in L:
+ return
+ # Increase the timeout and try again
+ time.sleep(timeout)
+ timeout *= 2
+ warnings.warn('tests may fail, delete still pending for ' + pathname,
+ RuntimeWarning, stacklevel=4)
+
+ def _unlink(filename):
+ _waitfor(os.unlink, filename)
+else:
+ _unlink = os.unlink
+
+
+def unlink(filename):
+ try:
+ _unlink(filename)
+ except OSError as error:
+ # The filename need not exist.
+ if error.errno not in (errno.ENOENT, errno.ENOTDIR):
+ raise
+
+
+def is_ipv6(addr):
+ try:
+ socket.inet_pton(socket.AF_INET6, addr)
+ except socket.error: # not a valid address
+ return False
+ except ValueError: # ipv6 not supported on this platform
+ return False
+ return True
+
+
+def parse_address(netloc, default_port='8000'):
+ if re.match(r'unix:(//)?', netloc):
+ return re.split(r'unix:(//)?', netloc)[-1]
+
+ if netloc.startswith("fd://"):
+ fd = netloc[5:]
+ try:
+ return int(fd)
+ except ValueError:
+ raise RuntimeError("%r is not a valid file descriptor." % fd) from None
+
+ if netloc.startswith("tcp://"):
+ netloc = netloc.split("tcp://")[1]
+ host, port = netloc, default_port
+
+ if '[' in netloc and ']' in netloc:
+ host = netloc.split(']')[0][1:]
+ port = (netloc.split(']:') + [default_port])[1]
+ elif ':' in netloc:
+ host, port = (netloc.split(':') + [default_port])[:2]
+ elif netloc == "":
+ host, port = "0.0.0.0", default_port
+
+ try:
+ port = int(port)
+ except ValueError:
+ raise RuntimeError("%r is not a valid port number." % port)
+
+ return host.lower(), port
+
+
+def close_on_exec(fd):
+ flags = fcntl.fcntl(fd, fcntl.F_GETFD)
+ flags |= fcntl.FD_CLOEXEC
+ fcntl.fcntl(fd, fcntl.F_SETFD, flags)
+
+
+def set_non_blocking(fd):
+ flags = fcntl.fcntl(fd, fcntl.F_GETFL) | os.O_NONBLOCK
+ fcntl.fcntl(fd, fcntl.F_SETFL, flags)
+
+
+def close(sock):
+ try:
+ sock.close()
+ except socket.error:
+ pass
+
+
+try:
+ from os import closerange
+except ImportError:
+ def closerange(fd_low, fd_high):
+ # Iterate through and close all file descriptors.
+ for fd in range(fd_low, fd_high):
+ try:
+ os.close(fd)
+ except OSError: # ERROR, fd wasn't open to begin with (ignored)
+ pass
+
+
+def write_chunk(sock, data):
+ if isinstance(data, str):
+ data = data.encode('utf-8')
+ chunk_size = "%X\r\n" % len(data)
+ chunk = b"".join([chunk_size.encode('utf-8'), data, b"\r\n"])
+ sock.sendall(chunk)
+
+
+def write(sock, data, chunked=False):
+ if chunked:
+ return write_chunk(sock, data)
+ sock.sendall(data)
+
+
+def write_nonblock(sock, data, chunked=False):
+ timeout = sock.gettimeout()
+ if timeout != 0.0:
+ try:
+ sock.setblocking(0)
+ return write(sock, data, chunked)
+ finally:
+ sock.setblocking(1)
+ else:
+ return write(sock, data, chunked)
+
+
+def write_error(sock, status_int, reason, mesg):
+ html_error = textwrap.dedent("""\
+
+
+ %(reason)s
+
+
+ %(reason)s
+ %(mesg)s
+
+
+ """) % {"reason": reason, "mesg": html.escape(mesg)}
+
+ http = textwrap.dedent("""\
+ HTTP/1.1 %s %s\r
+ Connection: close\r
+ Content-Type: text/html\r
+ Content-Length: %d\r
+ \r
+ %s""") % (str(status_int), reason, len(html_error), html_error)
+ write_nonblock(sock, http.encode('latin1'))
+
+
+def _called_with_wrong_args(f):
+ """Check whether calling a function raised a ``TypeError`` because
+ the call failed or because something in the function raised the
+ error.
+
+ :param f: The function that was called.
+ :return: ``True`` if the call failed.
+ """
+ tb = sys.exc_info()[2]
+
+ try:
+ while tb is not None:
+ if tb.tb_frame.f_code is f.__code__:
+ # In the function, it was called successfully.
+ return False
+
+ tb = tb.tb_next
+
+ # Didn't reach the function.
+ return True
+ finally:
+ # Delete tb to break a circular reference in Python 2.
+ # https://docs.python.org/2/library/sys.html#sys.exc_info
+ del tb
+
+
+def import_app(module):
+ parts = module.split(":", 1)
+ if len(parts) == 1:
+ obj = "application"
+ else:
+ module, obj = parts[0], parts[1]
+
+ try:
+ mod = importlib.import_module(module)
+ except ImportError:
+ if module.endswith(".py") and os.path.exists(module):
+ msg = "Failed to find application, did you mean '%s:%s'?"
+ raise ImportError(msg % (module.rsplit(".", 1)[0], obj))
+ raise
+
+ # Parse obj as a single expression to determine if it's a valid
+ # attribute name or function call.
+ try:
+ expression = ast.parse(obj, mode="eval").body
+ except SyntaxError:
+ raise AppImportError(
+ "Failed to parse %r as an attribute name or function call." % obj
+ )
+
+ if isinstance(expression, ast.Name):
+ name = expression.id
+ args = kwargs = None
+ elif isinstance(expression, ast.Call):
+ # Ensure the function name is an attribute name only.
+ if not isinstance(expression.func, ast.Name):
+ raise AppImportError("Function reference must be a simple name: %r" % obj)
+
+ name = expression.func.id
+
+ # Parse the positional and keyword arguments as literals.
+ try:
+ args = [ast.literal_eval(arg) for arg in expression.args]
+ kwargs = {kw.arg: ast.literal_eval(kw.value) for kw in expression.keywords}
+ except ValueError:
+ # literal_eval gives cryptic error messages, show a generic
+ # message with the full expression instead.
+ raise AppImportError(
+ "Failed to parse arguments as literal values: %r" % obj
+ )
+ else:
+ raise AppImportError(
+ "Failed to parse %r as an attribute name or function call." % obj
+ )
+
+ is_debug = logging.root.level == logging.DEBUG
+ try:
+ app = getattr(mod, name)
+ except AttributeError:
+ if is_debug:
+ traceback.print_exception(*sys.exc_info())
+ raise AppImportError("Failed to find attribute %r in %r." % (name, module))
+
+ # If the expression was a function call, call the retrieved object
+ # to get the real application.
+ if args is not None:
+ try:
+ app = app(*args, **kwargs)
+ except TypeError as e:
+ # If the TypeError was due to bad arguments to the factory
+ # function, show Python's nice error message without a
+ # traceback.
+ if _called_with_wrong_args(app):
+ raise AppImportError(
+ "".join(traceback.format_exception_only(TypeError, e)).strip()
+ )
+
+ # Otherwise it was raised from within the function, show the
+ # full traceback.
+ raise
+
+ if app is None:
+ raise AppImportError("Failed to find application object: %r" % obj)
+
+ if not callable(app):
+ raise AppImportError("Application object must be callable.")
+ return app
+
+
+def getcwd():
+ # get current path, try to use PWD env first
+ try:
+ a = os.stat(os.environ['PWD'])
+ b = os.stat(os.getcwd())
+ if a.st_ino == b.st_ino and a.st_dev == b.st_dev:
+ cwd = os.environ['PWD']
+ else:
+ cwd = os.getcwd()
+ except Exception:
+ cwd = os.getcwd()
+ return cwd
+
+
+def http_date(timestamp=None):
+ """Return the current date and time formatted for a message header."""
+ if timestamp is None:
+ timestamp = time.time()
+ s = email.utils.formatdate(timestamp, localtime=False, usegmt=True)
+ return s
+
+
+def is_hoppish(header):
+ return header.lower().strip() in hop_headers
+
+
+def daemonize(enable_stdio_inheritance=False):
+ """\
+ Standard daemonization of a process.
+ http://www.svbug.com/documentation/comp.unix.programmer-FAQ/faq_2.html#SEC16
+ """
+ if 'GUNICORN_FD' not in os.environ:
+ if os.fork():
+ os._exit(0)
+ os.setsid()
+
+ if os.fork():
+ os._exit(0)
+
+ os.umask(0o22)
+
+ # In both the following any file descriptors above stdin
+ # stdout and stderr are left untouched. The inheritance
+ # option simply allows one to have output go to a file
+ # specified by way of shell redirection when not wanting
+ # to use --error-log option.
+
+ if not enable_stdio_inheritance:
+ # Remap all of stdin, stdout and stderr on to
+ # /dev/null. The expectation is that users have
+ # specified the --error-log option.
+
+ closerange(0, 3)
+
+ fd_null = os.open(REDIRECT_TO, os.O_RDWR)
+
+ if fd_null != 0:
+ os.dup2(fd_null, 0)
+
+ os.dup2(fd_null, 1)
+ os.dup2(fd_null, 2)
+
+ else:
+ fd_null = os.open(REDIRECT_TO, os.O_RDWR)
+
+ # Always redirect stdin to /dev/null as we would
+ # never expect to need to read interactive input.
+
+ if fd_null != 0:
+ os.close(0)
+ os.dup2(fd_null, 0)
+
+ # If stdout and stderr are still connected to
+ # their original file descriptors we check to see
+ # if they are associated with terminal devices.
+ # When they are we map them to /dev/null so that
+ # are still detached from any controlling terminal
+ # properly. If not we preserve them as they are.
+ #
+ # If stdin and stdout were not hooked up to the
+ # original file descriptors, then all bets are
+ # off and all we can really do is leave them as
+ # they were.
+ #
+ # This will allow 'gunicorn ... > output.log 2>&1'
+ # to work with stdout/stderr going to the file
+ # as expected.
+ #
+ # Note that if using --error-log option, the log
+ # file specified through shell redirection will
+ # only be used up until the log file specified
+ # by the option takes over. As it replaces stdout
+ # and stderr at the file descriptor level, then
+ # anything using stdout or stderr, including having
+ # cached a reference to them, will still work.
+
+ def redirect(stream, fd_expect):
+ try:
+ fd = stream.fileno()
+ if fd == fd_expect and stream.isatty():
+ os.close(fd)
+ os.dup2(fd_null, fd)
+ except AttributeError:
+ pass
+
+ redirect(sys.stdout, 1)
+ redirect(sys.stderr, 2)
+
+
+def seed():
+ try:
+ random.seed(os.urandom(64))
+ except NotImplementedError:
+ random.seed('%s.%s' % (time.time(), os.getpid()))
+
+
+def check_is_writeable(path):
+ try:
+ f = open(path, 'a')
+ except IOError as e:
+ raise RuntimeError("Error: '%s' isn't writable [%r]" % (path, e))
+ f.close()
+
+
+def to_bytestring(value, encoding="utf8"):
+ """Converts a string argument to a byte string"""
+ if isinstance(value, bytes):
+ return value
+ if not isinstance(value, str):
+ raise TypeError('%r is not a string' % value)
+
+ return value.encode(encoding)
+
+
+def has_fileno(obj):
+ if not hasattr(obj, "fileno"):
+ return False
+
+ # check BytesIO case and maybe others
+ try:
+ obj.fileno()
+ except (AttributeError, IOError, io.UnsupportedOperation):
+ return False
+
+ return True
+
+
+def warn(msg):
+ print("!!!", file=sys.stderr)
+
+ lines = msg.splitlines()
+ for i, line in enumerate(lines):
+ if i == 0:
+ line = "WARNING: %s" % line
+ print("!!! %s" % line, file=sys.stderr)
+
+ print("!!!\n", file=sys.stderr)
+ sys.stderr.flush()
+
+
+def make_fail_app(msg):
+ msg = to_bytestring(msg)
+
+ def app(environ, start_response):
+ start_response("500 Internal Server Error", [
+ ("Content-Type", "text/plain"),
+ ("Content-Length", str(len(msg)))
+ ])
+ return [msg]
+
+ return app
+
+
+def split_request_uri(uri):
+ if uri.startswith("//"):
+ # When the path starts with //, urlsplit considers it as a
+ # relative uri while the RFC says we should consider it as abs_path
+ # http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.2
+ # We use temporary dot prefix to workaround this behaviour
+ parts = urllib.parse.urlsplit("." + uri)
+ return parts._replace(path=parts.path[1:])
+
+ return urllib.parse.urlsplit(uri)
+
+
+# From six.reraise
+def reraise(tp, value, tb=None):
+ try:
+ if value is None:
+ value = tp()
+ if value.__traceback__ is not tb:
+ raise value.with_traceback(tb)
+ raise value
+ finally:
+ value = None
+ tb = None
+
+
+def bytes_to_str(b):
+ if isinstance(b, str):
+ return b
+ return str(b, 'latin1')
+
+
+def unquote_to_wsgi_str(string):
+ return urllib.parse.unquote_to_bytes(string).decode('latin-1')
diff --git a/app_env/Lib/site-packages/gunicorn/workers/__init__.py b/app_env/Lib/site-packages/gunicorn/workers/__init__.py
new file mode 100644
index 00000000..ae753e1c
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/workers/__init__.py
@@ -0,0 +1,15 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+# supported gunicorn workers.
+SUPPORTED_WORKERS = {
+ "sync": "gunicorn.workers.sync.SyncWorker",
+ "eventlet": "gunicorn.workers.geventlet.EventletWorker",
+ "gevent": "gunicorn.workers.ggevent.GeventWorker",
+ "gevent_wsgi": "gunicorn.workers.ggevent.GeventPyWSGIWorker",
+ "gevent_pywsgi": "gunicorn.workers.ggevent.GeventPyWSGIWorker",
+ "tornado": "gunicorn.workers.gtornado.TornadoWorker",
+ "gthread": "gunicorn.workers.gthread.ThreadWorker",
+}
diff --git a/app_env/Lib/site-packages/gunicorn/workers/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..add244ed
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/workers/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..e9699f9f
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/workers/__pycache__/base_async.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/base_async.cpython-310.pyc
new file mode 100644
index 00000000..e70832fe
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/base_async.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/workers/__pycache__/geventlet.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/geventlet.cpython-310.pyc
new file mode 100644
index 00000000..6a241015
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/geventlet.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/workers/__pycache__/ggevent.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/ggevent.cpython-310.pyc
new file mode 100644
index 00000000..92a1bed9
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/ggevent.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/workers/__pycache__/gthread.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/gthread.cpython-310.pyc
new file mode 100644
index 00000000..70436230
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/gthread.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/workers/__pycache__/gtornado.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/gtornado.cpython-310.pyc
new file mode 100644
index 00000000..babc9208
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/gtornado.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/workers/__pycache__/sync.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/sync.cpython-310.pyc
new file mode 100644
index 00000000..994b3ea5
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/sync.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/workers/__pycache__/workertmp.cpython-310.pyc b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/workertmp.cpython-310.pyc
new file mode 100644
index 00000000..8123dda9
Binary files /dev/null and b/app_env/Lib/site-packages/gunicorn/workers/__pycache__/workertmp.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/gunicorn/workers/base.py b/app_env/Lib/site-packages/gunicorn/workers/base.py
new file mode 100644
index 00000000..a6d84bd2
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/workers/base.py
@@ -0,0 +1,273 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import io
+import os
+import signal
+import sys
+import time
+import traceback
+from datetime import datetime
+from random import randint
+from ssl import SSLError
+
+from gunicorn import util
+from gunicorn.http.errors import (
+ ForbiddenProxyRequest, InvalidHeader,
+ InvalidHeaderName, InvalidHTTPVersion,
+ InvalidProxyLine, InvalidRequestLine,
+ InvalidRequestMethod, InvalidSchemeHeaders,
+ LimitRequestHeaders, LimitRequestLine,
+)
+from gunicorn.http.wsgi import Response, default_environ
+from gunicorn.reloader import reloader_engines
+from gunicorn.workers.workertmp import WorkerTmp
+
+
+class Worker(object):
+
+ SIGNALS = [getattr(signal, "SIG%s" % x) for x in (
+ "ABRT HUP QUIT INT TERM USR1 USR2 WINCH CHLD".split()
+ )]
+
+ PIPE = []
+
+ def __init__(self, age, ppid, sockets, app, timeout, cfg, log):
+ """\
+ This is called pre-fork so it shouldn't do anything to the
+ current process. If there's a need to make process wide
+ changes you'll want to do that in ``self.init_process()``.
+ """
+ self.age = age
+ self.pid = "[booting]"
+ self.ppid = ppid
+ self.sockets = sockets
+ self.app = app
+ self.timeout = timeout
+ self.cfg = cfg
+ self.booted = False
+ self.aborted = False
+ self.reloader = None
+
+ self.nr = 0
+
+ if cfg.max_requests > 0:
+ jitter = randint(0, cfg.max_requests_jitter)
+ self.max_requests = cfg.max_requests + jitter
+ else:
+ self.max_requests = sys.maxsize
+
+ self.alive = True
+ self.log = log
+ self.tmp = WorkerTmp(cfg)
+
+ def __str__(self):
+ return "" % self.pid
+
+ def notify(self):
+ """\
+ Your worker subclass must arrange to have this method called
+ once every ``self.timeout`` seconds. If you fail in accomplishing
+ this task, the master process will murder your workers.
+ """
+ self.tmp.notify()
+
+ def run(self):
+ """\
+ This is the mainloop of a worker process. You should override
+ this method in a subclass to provide the intended behaviour
+ for your particular evil schemes.
+ """
+ raise NotImplementedError()
+
+ def init_process(self):
+ """\
+ If you override this method in a subclass, the last statement
+ in the function should be to call this method with
+ super().init_process() so that the ``run()`` loop is initiated.
+ """
+
+ # set environment' variables
+ if self.cfg.env:
+ for k, v in self.cfg.env.items():
+ os.environ[k] = v
+
+ util.set_owner_process(self.cfg.uid, self.cfg.gid,
+ initgroups=self.cfg.initgroups)
+
+ # Reseed the random number generator
+ util.seed()
+
+ # For waking ourselves up
+ self.PIPE = os.pipe()
+ for p in self.PIPE:
+ util.set_non_blocking(p)
+ util.close_on_exec(p)
+
+ # Prevent fd inheritance
+ for s in self.sockets:
+ util.close_on_exec(s)
+ util.close_on_exec(self.tmp.fileno())
+
+ self.wait_fds = self.sockets + [self.PIPE[0]]
+
+ self.log.close_on_exec()
+
+ self.init_signals()
+
+ # start the reloader
+ if self.cfg.reload:
+ def changed(fname):
+ self.log.info("Worker reloading: %s modified", fname)
+ self.alive = False
+ os.write(self.PIPE[1], b"1")
+ self.cfg.worker_int(self)
+ time.sleep(0.1)
+ sys.exit(0)
+
+ reloader_cls = reloader_engines[self.cfg.reload_engine]
+ self.reloader = reloader_cls(extra_files=self.cfg.reload_extra_files,
+ callback=changed)
+
+ self.load_wsgi()
+ if self.reloader:
+ self.reloader.start()
+
+ self.cfg.post_worker_init(self)
+
+ # Enter main run loop
+ self.booted = True
+ self.run()
+
+ def load_wsgi(self):
+ try:
+ self.wsgi = self.app.wsgi()
+ except SyntaxError as e:
+ if not self.cfg.reload:
+ raise
+
+ self.log.exception(e)
+
+ # fix from PR #1228
+ # storing the traceback into exc_tb will create a circular reference.
+ # per https://docs.python.org/2/library/sys.html#sys.exc_info warning,
+ # delete the traceback after use.
+ try:
+ _, exc_val, exc_tb = sys.exc_info()
+ self.reloader.add_extra_file(exc_val.filename)
+
+ tb_string = io.StringIO()
+ traceback.print_tb(exc_tb, file=tb_string)
+ self.wsgi = util.make_fail_app(tb_string.getvalue())
+ finally:
+ del exc_tb
+
+ def init_signals(self):
+ # reset signaling
+ for s in self.SIGNALS:
+ signal.signal(s, signal.SIG_DFL)
+ # init new signaling
+ signal.signal(signal.SIGQUIT, self.handle_quit)
+ signal.signal(signal.SIGTERM, self.handle_exit)
+ signal.signal(signal.SIGINT, self.handle_quit)
+ signal.signal(signal.SIGWINCH, self.handle_winch)
+ signal.signal(signal.SIGUSR1, self.handle_usr1)
+ signal.signal(signal.SIGABRT, self.handle_abort)
+
+ # Don't let SIGTERM and SIGUSR1 disturb active requests
+ # by interrupting system calls
+ signal.siginterrupt(signal.SIGTERM, False)
+ signal.siginterrupt(signal.SIGUSR1, False)
+
+ if hasattr(signal, 'set_wakeup_fd'):
+ signal.set_wakeup_fd(self.PIPE[1])
+
+ def handle_usr1(self, sig, frame):
+ self.log.reopen_files()
+
+ def handle_exit(self, sig, frame):
+ self.alive = False
+
+ def handle_quit(self, sig, frame):
+ self.alive = False
+ # worker_int callback
+ self.cfg.worker_int(self)
+ time.sleep(0.1)
+ sys.exit(0)
+
+ def handle_abort(self, sig, frame):
+ self.alive = False
+ self.cfg.worker_abort(self)
+ sys.exit(1)
+
+ def handle_error(self, req, client, addr, exc):
+ request_start = datetime.now()
+ addr = addr or ('', -1) # unix socket case
+ if isinstance(exc, (
+ InvalidRequestLine, InvalidRequestMethod,
+ InvalidHTTPVersion, InvalidHeader, InvalidHeaderName,
+ LimitRequestLine, LimitRequestHeaders,
+ InvalidProxyLine, ForbiddenProxyRequest,
+ InvalidSchemeHeaders,
+ SSLError,
+ )):
+
+ status_int = 400
+ reason = "Bad Request"
+
+ if isinstance(exc, InvalidRequestLine):
+ mesg = "Invalid Request Line '%s'" % str(exc)
+ elif isinstance(exc, InvalidRequestMethod):
+ mesg = "Invalid Method '%s'" % str(exc)
+ elif isinstance(exc, InvalidHTTPVersion):
+ mesg = "Invalid HTTP Version '%s'" % str(exc)
+ elif isinstance(exc, (InvalidHeaderName, InvalidHeader,)):
+ mesg = "%s" % str(exc)
+ if not req and hasattr(exc, "req"):
+ req = exc.req # for access log
+ elif isinstance(exc, LimitRequestLine):
+ mesg = "%s" % str(exc)
+ elif isinstance(exc, LimitRequestHeaders):
+ mesg = "Error parsing headers: '%s'" % str(exc)
+ elif isinstance(exc, InvalidProxyLine):
+ mesg = "'%s'" % str(exc)
+ elif isinstance(exc, ForbiddenProxyRequest):
+ reason = "Forbidden"
+ mesg = "Request forbidden"
+ status_int = 403
+ elif isinstance(exc, InvalidSchemeHeaders):
+ mesg = "%s" % str(exc)
+ elif isinstance(exc, SSLError):
+ reason = "Forbidden"
+ mesg = "'%s'" % str(exc)
+ status_int = 403
+
+ msg = "Invalid request from ip={ip}: {error}"
+ self.log.debug(msg.format(ip=addr[0], error=str(exc)))
+ else:
+ if hasattr(req, "uri"):
+ self.log.exception("Error handling request %s", req.uri)
+ status_int = 500
+ reason = "Internal Server Error"
+ mesg = ""
+
+ if req is not None:
+ request_time = datetime.now() - request_start
+ environ = default_environ(req, client, self.cfg)
+ environ['REMOTE_ADDR'] = addr[0]
+ environ['REMOTE_PORT'] = str(addr[1])
+ resp = Response(req, client, self.cfg)
+ resp.status = "%s %s" % (status_int, reason)
+ resp.response_length = len(mesg)
+ self.log.access(resp, req, environ, request_time)
+
+ try:
+ util.write_error(client, status_int, reason, mesg)
+ except Exception:
+ self.log.debug("Failed to send error message.")
+
+ def handle_winch(self, sig, fname):
+ # Ignore SIGWINCH in worker. Fixes a crash on OpenBSD.
+ self.log.debug("worker: SIGWINCH ignored.")
diff --git a/app_env/Lib/site-packages/gunicorn/workers/base_async.py b/app_env/Lib/site-packages/gunicorn/workers/base_async.py
new file mode 100644
index 00000000..73c3f6c1
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/workers/base_async.py
@@ -0,0 +1,148 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+from datetime import datetime
+import errno
+import socket
+import ssl
+import sys
+
+import gunicorn.http as http
+import gunicorn.http.wsgi as wsgi
+import gunicorn.util as util
+import gunicorn.workers.base as base
+
+ALREADY_HANDLED = object()
+
+
+class AsyncWorker(base.Worker):
+
+ def __init__(self, *args, **kwargs):
+ super().__init__(*args, **kwargs)
+ self.worker_connections = self.cfg.worker_connections
+
+ def timeout_ctx(self):
+ raise NotImplementedError()
+
+ def is_already_handled(self, respiter):
+ # some workers will need to overload this function to raise a StopIteration
+ return respiter == ALREADY_HANDLED
+
+ def handle(self, listener, client, addr):
+ req = None
+ try:
+ parser = http.RequestParser(self.cfg, client, addr)
+ try:
+ listener_name = listener.getsockname()
+ if not self.cfg.keepalive:
+ req = next(parser)
+ self.handle_request(listener_name, req, client, addr)
+ else:
+ # keepalive loop
+ proxy_protocol_info = {}
+ while True:
+ req = None
+ with self.timeout_ctx():
+ req = next(parser)
+ if not req:
+ break
+ if req.proxy_protocol_info:
+ proxy_protocol_info = req.proxy_protocol_info
+ else:
+ req.proxy_protocol_info = proxy_protocol_info
+ self.handle_request(listener_name, req, client, addr)
+ except http.errors.NoMoreData as e:
+ self.log.debug("Ignored premature client disconnection. %s", e)
+ except StopIteration as e:
+ self.log.debug("Closing connection. %s", e)
+ except ssl.SSLError:
+ # pass to next try-except level
+ util.reraise(*sys.exc_info())
+ except EnvironmentError:
+ # pass to next try-except level
+ util.reraise(*sys.exc_info())
+ except Exception as e:
+ self.handle_error(req, client, addr, e)
+ except ssl.SSLError as e:
+ if e.args[0] == ssl.SSL_ERROR_EOF:
+ self.log.debug("ssl connection closed")
+ client.close()
+ else:
+ self.log.debug("Error processing SSL request.")
+ self.handle_error(req, client, addr, e)
+ except EnvironmentError as e:
+ if e.errno not in (errno.EPIPE, errno.ECONNRESET, errno.ENOTCONN):
+ self.log.exception("Socket error processing request.")
+ else:
+ if e.errno == errno.ECONNRESET:
+ self.log.debug("Ignoring connection reset")
+ elif e.errno == errno.ENOTCONN:
+ self.log.debug("Ignoring socket not connected")
+ else:
+ self.log.debug("Ignoring EPIPE")
+ except Exception as e:
+ self.handle_error(req, client, addr, e)
+ finally:
+ util.close(client)
+
+ def handle_request(self, listener_name, req, sock, addr):
+ request_start = datetime.now()
+ environ = {}
+ resp = None
+ try:
+ self.cfg.pre_request(self, req)
+ resp, environ = wsgi.create(req, sock, addr,
+ listener_name, self.cfg)
+ environ["wsgi.multithread"] = True
+ self.nr += 1
+ if self.nr >= self.max_requests:
+ if self.alive:
+ self.log.info("Autorestarting worker after current request.")
+ self.alive = False
+
+ if not self.alive or not self.cfg.keepalive:
+ resp.force_close()
+
+ respiter = self.wsgi(environ, resp.start_response)
+ if self.is_already_handled(respiter):
+ return False
+ try:
+ if isinstance(respiter, environ['wsgi.file_wrapper']):
+ resp.write_file(respiter)
+ else:
+ for item in respiter:
+ resp.write(item)
+ resp.close()
+ request_time = datetime.now() - request_start
+ self.log.access(resp, req, environ, request_time)
+ finally:
+ if hasattr(respiter, "close"):
+ respiter.close()
+ if resp.should_close():
+ raise StopIteration()
+ except StopIteration:
+ raise
+ except EnvironmentError:
+ # If the original exception was a socket.error we delegate
+ # handling it to the caller (where handle() might ignore it)
+ util.reraise(*sys.exc_info())
+ except Exception:
+ if resp and resp.headers_sent:
+ # If the requests have already been sent, we should close the
+ # connection to indicate the error.
+ self.log.exception("Error handling request")
+ try:
+ sock.shutdown(socket.SHUT_RDWR)
+ sock.close()
+ except EnvironmentError:
+ pass
+ raise StopIteration()
+ raise
+ finally:
+ try:
+ self.cfg.post_request(self, req, environ, resp)
+ except Exception:
+ self.log.exception("Exception in post_request hook")
+ return True
diff --git a/app_env/Lib/site-packages/gunicorn/workers/geventlet.py b/app_env/Lib/site-packages/gunicorn/workers/geventlet.py
new file mode 100644
index 00000000..ffdb206c
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/workers/geventlet.py
@@ -0,0 +1,179 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+from functools import partial
+import sys
+
+try:
+ import eventlet
+except ImportError:
+ raise RuntimeError("eventlet worker requires eventlet 0.24.1 or higher")
+else:
+ from pkg_resources import parse_version
+ if parse_version(eventlet.__version__) < parse_version('0.24.1'):
+ raise RuntimeError("eventlet worker requires eventlet 0.24.1 or higher")
+
+from eventlet import hubs, greenthread
+from eventlet.greenio import GreenSocket
+from eventlet.wsgi import ALREADY_HANDLED as EVENTLET_ALREADY_HANDLED
+import greenlet
+
+from gunicorn.workers.base_async import AsyncWorker
+
+
+def _eventlet_socket_sendfile(self, file, offset=0, count=None):
+ # Based on the implementation in gevent which in turn is slightly
+ # modified from the standard library implementation.
+ if self.gettimeout() == 0:
+ raise ValueError("non-blocking sockets are not supported")
+ if offset:
+ file.seek(offset)
+ blocksize = min(count, 8192) if count else 8192
+ total_sent = 0
+ # localize variable access to minimize overhead
+ file_read = file.read
+ sock_send = self.send
+ try:
+ while True:
+ if count:
+ blocksize = min(count - total_sent, blocksize)
+ if blocksize <= 0:
+ break
+ data = memoryview(file_read(blocksize))
+ if not data:
+ break # EOF
+ while True:
+ try:
+ sent = sock_send(data)
+ except BlockingIOError:
+ continue
+ else:
+ total_sent += sent
+ if sent < len(data):
+ data = data[sent:]
+ else:
+ break
+ return total_sent
+ finally:
+ if total_sent > 0 and hasattr(file, 'seek'):
+ file.seek(offset + total_sent)
+
+
+
+def _eventlet_serve(sock, handle, concurrency):
+ """
+ Serve requests forever.
+
+ This code is nearly identical to ``eventlet.convenience.serve`` except
+ that it attempts to join the pool at the end, which allows for gunicorn
+ graceful shutdowns.
+ """
+ pool = eventlet.greenpool.GreenPool(concurrency)
+ server_gt = eventlet.greenthread.getcurrent()
+
+ while True:
+ try:
+ conn, addr = sock.accept()
+ gt = pool.spawn(handle, conn, addr)
+ gt.link(_eventlet_stop, server_gt, conn)
+ conn, addr, gt = None, None, None
+ except eventlet.StopServe:
+ sock.close()
+ pool.waitall()
+ return
+
+
+def _eventlet_stop(client, server, conn):
+ """
+ Stop a greenlet handling a request and close its connection.
+
+ This code is lifted from eventlet so as not to depend on undocumented
+ functions in the library.
+ """
+ try:
+ try:
+ client.wait()
+ finally:
+ conn.close()
+ except greenlet.GreenletExit:
+ pass
+ except Exception:
+ greenthread.kill(server, *sys.exc_info())
+
+
+def patch_sendfile():
+ # As of eventlet 0.25.1, GreenSocket.sendfile doesn't exist,
+ # meaning the native implementations of socket.sendfile will be used.
+ # If os.sendfile exists, it will attempt to use that, failing explicitly
+ # if the socket is in non-blocking mode, which the underlying
+ # socket object /is/. Even the regular _sendfile_use_send will
+ # fail in that way; plus, it would use the underlying socket.send which isn't
+ # properly cooperative. So we have to monkey-patch a working socket.sendfile()
+ # into GreenSocket; in this method, `self.send` will be the GreenSocket's
+ # send method which is properly cooperative.
+ if not hasattr(GreenSocket, 'sendfile'):
+ GreenSocket.sendfile = _eventlet_socket_sendfile
+
+
+class EventletWorker(AsyncWorker):
+
+ def patch(self):
+ hubs.use_hub()
+ eventlet.monkey_patch()
+ patch_sendfile()
+
+ def is_already_handled(self, respiter):
+ if respiter == EVENTLET_ALREADY_HANDLED:
+ raise StopIteration()
+ return super().is_already_handled(respiter)
+
+ def init_process(self):
+ self.patch()
+ super().init_process()
+
+ def handle_quit(self, sig, frame):
+ eventlet.spawn(super().handle_quit, sig, frame)
+
+ def handle_usr1(self, sig, frame):
+ eventlet.spawn(super().handle_usr1, sig, frame)
+
+ def timeout_ctx(self):
+ return eventlet.Timeout(self.cfg.keepalive or None, False)
+
+ def handle(self, listener, client, addr):
+ if self.cfg.is_ssl:
+ client = eventlet.wrap_ssl(client, server_side=True,
+ **self.cfg.ssl_options)
+
+ super().handle(listener, client, addr)
+
+ def run(self):
+ acceptors = []
+ for sock in self.sockets:
+ gsock = GreenSocket(sock)
+ gsock.setblocking(1)
+ hfun = partial(self.handle, gsock)
+ acceptor = eventlet.spawn(_eventlet_serve, gsock, hfun,
+ self.worker_connections)
+
+ acceptors.append(acceptor)
+ eventlet.sleep(0.0)
+
+ while self.alive:
+ self.notify()
+ eventlet.sleep(1.0)
+
+ self.notify()
+ try:
+ with eventlet.Timeout(self.cfg.graceful_timeout) as t:
+ for a in acceptors:
+ a.kill(eventlet.StopServe())
+ for a in acceptors:
+ a.wait()
+ except eventlet.Timeout as te:
+ if te != t:
+ raise
+ for a in acceptors:
+ a.kill()
diff --git a/app_env/Lib/site-packages/gunicorn/workers/ggevent.py b/app_env/Lib/site-packages/gunicorn/workers/ggevent.py
new file mode 100644
index 00000000..3941814f
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/workers/ggevent.py
@@ -0,0 +1,189 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import os
+import sys
+from datetime import datetime
+from functools import partial
+import time
+
+try:
+ import gevent
+except ImportError:
+ raise RuntimeError("gevent worker requires gevent 1.4 or higher")
+else:
+ from pkg_resources import parse_version
+ if parse_version(gevent.__version__) < parse_version('1.4'):
+ raise RuntimeError("gevent worker requires gevent 1.4 or higher")
+
+from gevent.pool import Pool
+from gevent.server import StreamServer
+from gevent import hub, monkey, socket, pywsgi
+
+import gunicorn
+from gunicorn.http.wsgi import base_environ
+from gunicorn.workers.base_async import AsyncWorker
+
+VERSION = "gevent/%s gunicorn/%s" % (gevent.__version__, gunicorn.__version__)
+
+
+class GeventWorker(AsyncWorker):
+
+ server_class = None
+ wsgi_handler = None
+
+ def patch(self):
+ monkey.patch_all()
+
+ # patch sockets
+ sockets = []
+ for s in self.sockets:
+ sockets.append(socket.socket(s.FAMILY, socket.SOCK_STREAM,
+ fileno=s.sock.fileno()))
+ self.sockets = sockets
+
+ def notify(self):
+ super().notify()
+ if self.ppid != os.getppid():
+ self.log.info("Parent changed, shutting down: %s", self)
+ sys.exit(0)
+
+ def timeout_ctx(self):
+ return gevent.Timeout(self.cfg.keepalive, False)
+
+ def run(self):
+ servers = []
+ ssl_args = {}
+
+ if self.cfg.is_ssl:
+ ssl_args = dict(server_side=True, **self.cfg.ssl_options)
+
+ for s in self.sockets:
+ s.setblocking(1)
+ pool = Pool(self.worker_connections)
+ if self.server_class is not None:
+ environ = base_environ(self.cfg)
+ environ.update({
+ "wsgi.multithread": True,
+ "SERVER_SOFTWARE": VERSION,
+ })
+ server = self.server_class(
+ s, application=self.wsgi, spawn=pool, log=self.log,
+ handler_class=self.wsgi_handler, environ=environ,
+ **ssl_args)
+ else:
+ hfun = partial(self.handle, s)
+ server = StreamServer(s, handle=hfun, spawn=pool, **ssl_args)
+ if self.cfg.workers > 1:
+ server.max_accept = 1
+
+ server.start()
+ servers.append(server)
+
+ while self.alive:
+ self.notify()
+ gevent.sleep(1.0)
+
+ try:
+ # Stop accepting requests
+ for server in servers:
+ if hasattr(server, 'close'): # gevent 1.0
+ server.close()
+ if hasattr(server, 'kill'): # gevent < 1.0
+ server.kill()
+
+ # Handle current requests until graceful_timeout
+ ts = time.time()
+ while time.time() - ts <= self.cfg.graceful_timeout:
+ accepting = 0
+ for server in servers:
+ if server.pool.free_count() != server.pool.size:
+ accepting += 1
+
+ # if no server is accepting a connection, we can exit
+ if not accepting:
+ return
+
+ self.notify()
+ gevent.sleep(1.0)
+
+ # Force kill all active the handlers
+ self.log.warning("Worker graceful timeout (pid:%s)" % self.pid)
+ for server in servers:
+ server.stop(timeout=1)
+ except Exception:
+ pass
+
+ def handle(self, listener, client, addr):
+ # Connected socket timeout defaults to socket.getdefaulttimeout().
+ # This forces to blocking mode.
+ client.setblocking(1)
+ super().handle(listener, client, addr)
+
+ def handle_request(self, listener_name, req, sock, addr):
+ try:
+ super().handle_request(listener_name, req, sock, addr)
+ except gevent.GreenletExit:
+ pass
+ except SystemExit:
+ pass
+
+ def handle_quit(self, sig, frame):
+ # Move this out of the signal handler so we can use
+ # blocking calls. See #1126
+ gevent.spawn(super().handle_quit, sig, frame)
+
+ def handle_usr1(self, sig, frame):
+ # Make the gevent workers handle the usr1 signal
+ # by deferring to a new greenlet. See #1645
+ gevent.spawn(super().handle_usr1, sig, frame)
+
+ def init_process(self):
+ self.patch()
+ hub.reinit()
+ super().init_process()
+
+
+class GeventResponse(object):
+
+ status = None
+ headers = None
+ sent = None
+
+ def __init__(self, status, headers, clength):
+ self.status = status
+ self.headers = headers
+ self.sent = clength
+
+
+class PyWSGIHandler(pywsgi.WSGIHandler):
+
+ def log_request(self):
+ start = datetime.fromtimestamp(self.time_start)
+ finish = datetime.fromtimestamp(self.time_finish)
+ response_time = finish - start
+ resp_headers = getattr(self, 'response_headers', {})
+ resp = GeventResponse(self.status, resp_headers, self.response_length)
+ if hasattr(self, 'headers'):
+ req_headers = self.headers.items()
+ else:
+ req_headers = []
+ self.server.log.access(resp, req_headers, self.environ, response_time)
+
+ def get_environ(self):
+ env = super().get_environ()
+ env['gunicorn.sock'] = self.socket
+ env['RAW_URI'] = self.path
+ return env
+
+
+class PyWSGIServer(pywsgi.WSGIServer):
+ pass
+
+
+class GeventPyWSGIWorker(GeventWorker):
+ "The Gevent StreamServer based workers."
+ server_class = PyWSGIServer
+ wsgi_handler = PyWSGIHandler
diff --git a/app_env/Lib/site-packages/gunicorn/workers/gthread.py b/app_env/Lib/site-packages/gunicorn/workers/gthread.py
new file mode 100644
index 00000000..d5318115
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/workers/gthread.py
@@ -0,0 +1,362 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+# design:
+# A threaded worker accepts connections in the main loop, accepted
+# connections are added to the thread pool as a connection job.
+# Keepalive connections are put back in the loop waiting for an event.
+# If no event happen after the keep alive timeout, the connection is
+# closed.
+# pylint: disable=no-else-break
+
+import concurrent.futures as futures
+import errno
+import os
+import selectors
+import socket
+import ssl
+import sys
+import time
+from collections import deque
+from datetime import datetime
+from functools import partial
+from threading import RLock
+
+from . import base
+from .. import http
+from .. import util
+from ..http import wsgi
+
+
+class TConn(object):
+
+ def __init__(self, cfg, sock, client, server):
+ self.cfg = cfg
+ self.sock = sock
+ self.client = client
+ self.server = server
+
+ self.timeout = None
+ self.parser = None
+
+ # set the socket to non blocking
+ self.sock.setblocking(False)
+
+ def init(self):
+ self.sock.setblocking(True)
+ if self.parser is None:
+ # wrap the socket if needed
+ if self.cfg.is_ssl:
+ self.sock = ssl.wrap_socket(self.sock, server_side=True,
+ **self.cfg.ssl_options)
+
+ # initialize the parser
+ self.parser = http.RequestParser(self.cfg, self.sock, self.client)
+
+ def set_timeout(self):
+ # set the timeout
+ self.timeout = time.time() + self.cfg.keepalive
+
+ def close(self):
+ util.close(self.sock)
+
+
+class ThreadWorker(base.Worker):
+
+ def __init__(self, *args, **kwargs):
+ super().__init__(*args, **kwargs)
+ self.worker_connections = self.cfg.worker_connections
+ self.max_keepalived = self.cfg.worker_connections - self.cfg.threads
+ # initialise the pool
+ self.tpool = None
+ self.poller = None
+ self._lock = None
+ self.futures = deque()
+ self._keep = deque()
+ self.nr_conns = 0
+
+ @classmethod
+ def check_config(cls, cfg, log):
+ max_keepalived = cfg.worker_connections - cfg.threads
+
+ if max_keepalived <= 0 and cfg.keepalive:
+ log.warning("No keepalived connections can be handled. " +
+ "Check the number of worker connections and threads.")
+
+ def init_process(self):
+ self.tpool = self.get_thread_pool()
+ self.poller = selectors.DefaultSelector()
+ self._lock = RLock()
+ super().init_process()
+
+ def get_thread_pool(self):
+ """Override this method to customize how the thread pool is created"""
+ return futures.ThreadPoolExecutor(max_workers=self.cfg.threads)
+
+ def handle_quit(self, sig, frame):
+ self.alive = False
+ # worker_int callback
+ self.cfg.worker_int(self)
+ self.tpool.shutdown(False)
+ time.sleep(0.1)
+ sys.exit(0)
+
+ def _wrap_future(self, fs, conn):
+ fs.conn = conn
+ self.futures.append(fs)
+ fs.add_done_callback(self.finish_request)
+
+ def enqueue_req(self, conn):
+ conn.init()
+ # submit the connection to a worker
+ fs = self.tpool.submit(self.handle, conn)
+ self._wrap_future(fs, conn)
+
+ def accept(self, server, listener):
+ try:
+ sock, client = listener.accept()
+ # initialize the connection object
+ conn = TConn(self.cfg, sock, client, server)
+ self.nr_conns += 1
+ # enqueue the job
+ self.enqueue_req(conn)
+ except EnvironmentError as e:
+ if e.errno not in (errno.EAGAIN, errno.ECONNABORTED,
+ errno.EWOULDBLOCK):
+ raise
+
+ def reuse_connection(self, conn, client):
+ with self._lock:
+ # unregister the client from the poller
+ self.poller.unregister(client)
+ # remove the connection from keepalive
+ try:
+ self._keep.remove(conn)
+ except ValueError:
+ # race condition
+ return
+
+ # submit the connection to a worker
+ self.enqueue_req(conn)
+
+ def murder_keepalived(self):
+ now = time.time()
+ while True:
+ with self._lock:
+ try:
+ # remove the connection from the queue
+ conn = self._keep.popleft()
+ except IndexError:
+ break
+
+ delta = conn.timeout - now
+ if delta > 0:
+ # add the connection back to the queue
+ with self._lock:
+ self._keep.appendleft(conn)
+ break
+ else:
+ self.nr_conns -= 1
+ # remove the socket from the poller
+ with self._lock:
+ try:
+ self.poller.unregister(conn.sock)
+ except EnvironmentError as e:
+ if e.errno != errno.EBADF:
+ raise
+ except KeyError:
+ # already removed by the system, continue
+ pass
+
+ # close the socket
+ conn.close()
+
+ def is_parent_alive(self):
+ # If our parent changed then we shut down.
+ if self.ppid != os.getppid():
+ self.log.info("Parent changed, shutting down: %s", self)
+ return False
+ return True
+
+ def run(self):
+ # init listeners, add them to the event loop
+ for sock in self.sockets:
+ sock.setblocking(False)
+ # a race condition during graceful shutdown may make the listener
+ # name unavailable in the request handler so capture it once here
+ server = sock.getsockname()
+ acceptor = partial(self.accept, server)
+ self.poller.register(sock, selectors.EVENT_READ, acceptor)
+
+ while self.alive:
+ # notify the arbiter we are alive
+ self.notify()
+
+ # can we accept more connections?
+ if self.nr_conns < self.worker_connections:
+ # wait for an event
+ events = self.poller.select(1.0)
+ for key, _ in events:
+ callback = key.data
+ callback(key.fileobj)
+
+ # check (but do not wait) for finished requests
+ result = futures.wait(self.futures, timeout=0,
+ return_when=futures.FIRST_COMPLETED)
+ else:
+ # wait for a request to finish
+ result = futures.wait(self.futures, timeout=1.0,
+ return_when=futures.FIRST_COMPLETED)
+
+ # clean up finished requests
+ for fut in result.done:
+ self.futures.remove(fut)
+
+ if not self.is_parent_alive():
+ break
+
+ # handle keepalive timeouts
+ self.murder_keepalived()
+
+ self.tpool.shutdown(False)
+ self.poller.close()
+
+ for s in self.sockets:
+ s.close()
+
+ futures.wait(self.futures, timeout=self.cfg.graceful_timeout)
+
+ def finish_request(self, fs):
+ if fs.cancelled():
+ self.nr_conns -= 1
+ fs.conn.close()
+ return
+
+ try:
+ (keepalive, conn) = fs.result()
+ # if the connection should be kept alived add it
+ # to the eventloop and record it
+ if keepalive and self.alive:
+ # flag the socket as non blocked
+ conn.sock.setblocking(False)
+
+ # register the connection
+ conn.set_timeout()
+ with self._lock:
+ self._keep.append(conn)
+
+ # add the socket to the event loop
+ self.poller.register(conn.sock, selectors.EVENT_READ,
+ partial(self.reuse_connection, conn))
+ else:
+ self.nr_conns -= 1
+ conn.close()
+ except Exception:
+ # an exception happened, make sure to close the
+ # socket.
+ self.nr_conns -= 1
+ fs.conn.close()
+
+ def handle(self, conn):
+ keepalive = False
+ req = None
+ try:
+ req = next(conn.parser)
+ if not req:
+ return (False, conn)
+
+ # handle the request
+ keepalive = self.handle_request(req, conn)
+ if keepalive:
+ return (keepalive, conn)
+ except http.errors.NoMoreData as e:
+ self.log.debug("Ignored premature client disconnection. %s", e)
+
+ except StopIteration as e:
+ self.log.debug("Closing connection. %s", e)
+ except ssl.SSLError as e:
+ if e.args[0] == ssl.SSL_ERROR_EOF:
+ self.log.debug("ssl connection closed")
+ conn.sock.close()
+ else:
+ self.log.debug("Error processing SSL request.")
+ self.handle_error(req, conn.sock, conn.client, e)
+
+ except EnvironmentError as e:
+ if e.errno not in (errno.EPIPE, errno.ECONNRESET, errno.ENOTCONN):
+ self.log.exception("Socket error processing request.")
+ else:
+ if e.errno == errno.ECONNRESET:
+ self.log.debug("Ignoring connection reset")
+ elif e.errno == errno.ENOTCONN:
+ self.log.debug("Ignoring socket not connected")
+ else:
+ self.log.debug("Ignoring connection epipe")
+ except Exception as e:
+ self.handle_error(req, conn.sock, conn.client, e)
+
+ return (False, conn)
+
+ def handle_request(self, req, conn):
+ environ = {}
+ resp = None
+ try:
+ self.cfg.pre_request(self, req)
+ request_start = datetime.now()
+ resp, environ = wsgi.create(req, conn.sock, conn.client,
+ conn.server, self.cfg)
+ environ["wsgi.multithread"] = True
+ self.nr += 1
+ if self.nr >= self.max_requests:
+ if self.alive:
+ self.log.info("Autorestarting worker after current request.")
+ self.alive = False
+ resp.force_close()
+
+ if not self.alive or not self.cfg.keepalive:
+ resp.force_close()
+ elif len(self._keep) >= self.max_keepalived:
+ resp.force_close()
+
+ respiter = self.wsgi(environ, resp.start_response)
+ try:
+ if isinstance(respiter, environ['wsgi.file_wrapper']):
+ resp.write_file(respiter)
+ else:
+ for item in respiter:
+ resp.write(item)
+
+ resp.close()
+ request_time = datetime.now() - request_start
+ self.log.access(resp, req, environ, request_time)
+ finally:
+ if hasattr(respiter, "close"):
+ respiter.close()
+
+ if resp.should_close():
+ self.log.debug("Closing connection.")
+ return False
+ except EnvironmentError:
+ # pass to next try-except level
+ util.reraise(*sys.exc_info())
+ except Exception:
+ if resp and resp.headers_sent:
+ # If the requests have already been sent, we should close the
+ # connection to indicate the error.
+ self.log.exception("Error handling request")
+ try:
+ conn.sock.shutdown(socket.SHUT_RDWR)
+ conn.sock.close()
+ except EnvironmentError:
+ pass
+ raise StopIteration()
+ raise
+ finally:
+ try:
+ self.cfg.post_request(self, req, environ, resp)
+ except Exception:
+ self.log.exception("Exception in post_request hook")
+
+ return True
diff --git a/app_env/Lib/site-packages/gunicorn/workers/gtornado.py b/app_env/Lib/site-packages/gunicorn/workers/gtornado.py
new file mode 100644
index 00000000..9dd3d7bc
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/workers/gtornado.py
@@ -0,0 +1,171 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import copy
+import os
+import sys
+
+try:
+ import tornado
+except ImportError:
+ raise RuntimeError("You need tornado installed to use this worker.")
+import tornado.web
+import tornado.httpserver
+from tornado.ioloop import IOLoop, PeriodicCallback
+from tornado.wsgi import WSGIContainer
+from gunicorn.workers.base import Worker
+from gunicorn import __version__ as gversion
+
+
+# Tornado 5.0 updated its IOLoop, and the `io_loop` arguments to many
+# Tornado functions have been removed in Tornado 5.0. Also, they no
+# longer store PeriodCallbacks in ioloop._callbacks. Instead we store
+# them on our side, and use stop() on them when stopping the worker.
+# See https://www.tornadoweb.org/en/stable/releases/v5.0.0.html#backwards-compatibility-notes
+# for more details.
+TORNADO5 = tornado.version_info >= (5, 0, 0)
+
+
+class TornadoWorker(Worker):
+
+ @classmethod
+ def setup(cls):
+ web = sys.modules.pop("tornado.web")
+ old_clear = web.RequestHandler.clear
+
+ def clear(self):
+ old_clear(self)
+ if "Gunicorn" not in self._headers["Server"]:
+ self._headers["Server"] += " (Gunicorn/%s)" % gversion
+ web.RequestHandler.clear = clear
+ sys.modules["tornado.web"] = web
+
+ def handle_exit(self, sig, frame):
+ if self.alive:
+ super().handle_exit(sig, frame)
+
+ def handle_request(self):
+ self.nr += 1
+ if self.alive and self.nr >= self.max_requests:
+ self.log.info("Autorestarting worker after current request.")
+ self.alive = False
+
+ def watchdog(self):
+ if self.alive:
+ self.notify()
+
+ if self.ppid != os.getppid():
+ self.log.info("Parent changed, shutting down: %s", self)
+ self.alive = False
+
+ def heartbeat(self):
+ if not self.alive:
+ if self.server_alive:
+ if hasattr(self, 'server'):
+ try:
+ self.server.stop()
+ except Exception:
+ pass
+ self.server_alive = False
+ else:
+ if TORNADO5:
+ for callback in self.callbacks:
+ callback.stop()
+ self.ioloop.stop()
+ else:
+ if not self.ioloop._callbacks:
+ self.ioloop.stop()
+
+ def init_process(self):
+ # IOLoop cannot survive a fork or be shared across processes
+ # in any way. When multiple processes are being used, each process
+ # should create its own IOLoop. We should clear current IOLoop
+ # if exists before os.fork.
+ IOLoop.clear_current()
+ super().init_process()
+
+ def run(self):
+ self.ioloop = IOLoop.instance()
+ self.alive = True
+ self.server_alive = False
+
+ if TORNADO5:
+ self.callbacks = []
+ self.callbacks.append(PeriodicCallback(self.watchdog, 1000))
+ self.callbacks.append(PeriodicCallback(self.heartbeat, 1000))
+ for callback in self.callbacks:
+ callback.start()
+ else:
+ PeriodicCallback(self.watchdog, 1000, io_loop=self.ioloop).start()
+ PeriodicCallback(self.heartbeat, 1000, io_loop=self.ioloop).start()
+
+ # Assume the app is a WSGI callable if its not an
+ # instance of tornado.web.Application or is an
+ # instance of tornado.wsgi.WSGIApplication
+ app = self.wsgi
+
+ if tornado.version_info[0] < 6:
+ if not isinstance(app, tornado.web.Application) or \
+ isinstance(app, tornado.wsgi.WSGIApplication):
+ app = WSGIContainer(app)
+ elif not isinstance(app, WSGIContainer):
+ app = WSGIContainer(app)
+
+ # Monkey-patching HTTPConnection.finish to count the
+ # number of requests being handled by Tornado. This
+ # will help gunicorn shutdown the worker if max_requests
+ # is exceeded.
+ httpserver = sys.modules["tornado.httpserver"]
+ if hasattr(httpserver, 'HTTPConnection'):
+ old_connection_finish = httpserver.HTTPConnection.finish
+
+ def finish(other):
+ self.handle_request()
+ old_connection_finish(other)
+ httpserver.HTTPConnection.finish = finish
+ sys.modules["tornado.httpserver"] = httpserver
+
+ server_class = tornado.httpserver.HTTPServer
+ else:
+
+ class _HTTPServer(tornado.httpserver.HTTPServer):
+
+ def on_close(instance, server_conn):
+ self.handle_request()
+ super(_HTTPServer, instance).on_close(server_conn)
+
+ server_class = _HTTPServer
+
+ if self.cfg.is_ssl:
+ _ssl_opt = copy.deepcopy(self.cfg.ssl_options)
+ # tornado refuses initialization if ssl_options contains following
+ # options
+ del _ssl_opt["do_handshake_on_connect"]
+ del _ssl_opt["suppress_ragged_eofs"]
+ if TORNADO5:
+ server = server_class(app, ssl_options=_ssl_opt)
+ else:
+ server = server_class(app, io_loop=self.ioloop,
+ ssl_options=_ssl_opt)
+ else:
+ if TORNADO5:
+ server = server_class(app)
+ else:
+ server = server_class(app, io_loop=self.ioloop)
+
+ self.server = server
+ self.server_alive = True
+
+ for s in self.sockets:
+ s.setblocking(0)
+ if hasattr(server, "add_socket"): # tornado > 2.0
+ server.add_socket(s)
+ elif hasattr(server, "_sockets"): # tornado 2.0
+ server._sockets[s.fileno()] = s
+
+ server.no_keep_alive = self.cfg.keepalive <= 0
+ server.start(num_processes=1)
+
+ self.ioloop.start()
diff --git a/app_env/Lib/site-packages/gunicorn/workers/sync.py b/app_env/Lib/site-packages/gunicorn/workers/sync.py
new file mode 100644
index 00000000..eeb7f633
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/workers/sync.py
@@ -0,0 +1,211 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+#
+
+from datetime import datetime
+import errno
+import os
+import select
+import socket
+import ssl
+import sys
+
+import gunicorn.http as http
+import gunicorn.http.wsgi as wsgi
+import gunicorn.util as util
+import gunicorn.workers.base as base
+
+
+class StopWaiting(Exception):
+ """ exception raised to stop waiting for a connection """
+
+
+class SyncWorker(base.Worker):
+
+ def accept(self, listener):
+ client, addr = listener.accept()
+ client.setblocking(1)
+ util.close_on_exec(client)
+ self.handle(listener, client, addr)
+
+ def wait(self, timeout):
+ try:
+ self.notify()
+ ret = select.select(self.wait_fds, [], [], timeout)
+ if ret[0]:
+ if self.PIPE[0] in ret[0]:
+ os.read(self.PIPE[0], 1)
+ return ret[0]
+
+ except select.error as e:
+ if e.args[0] == errno.EINTR:
+ return self.sockets
+ if e.args[0] == errno.EBADF:
+ if self.nr < 0:
+ return self.sockets
+ else:
+ raise StopWaiting
+ raise
+
+ def is_parent_alive(self):
+ # If our parent changed then we shut down.
+ if self.ppid != os.getppid():
+ self.log.info("Parent changed, shutting down: %s", self)
+ return False
+ return True
+
+ def run_for_one(self, timeout):
+ listener = self.sockets[0]
+ while self.alive:
+ self.notify()
+
+ # Accept a connection. If we get an error telling us
+ # that no connection is waiting we fall down to the
+ # select which is where we'll wait for a bit for new
+ # workers to come give us some love.
+ try:
+ self.accept(listener)
+ # Keep processing clients until no one is waiting. This
+ # prevents the need to select() for every client that we
+ # process.
+ continue
+
+ except EnvironmentError as e:
+ if e.errno not in (errno.EAGAIN, errno.ECONNABORTED,
+ errno.EWOULDBLOCK):
+ raise
+
+ if not self.is_parent_alive():
+ return
+
+ try:
+ self.wait(timeout)
+ except StopWaiting:
+ return
+
+ def run_for_multiple(self, timeout):
+ while self.alive:
+ self.notify()
+
+ try:
+ ready = self.wait(timeout)
+ except StopWaiting:
+ return
+
+ if ready is not None:
+ for listener in ready:
+ if listener == self.PIPE[0]:
+ continue
+
+ try:
+ self.accept(listener)
+ except EnvironmentError as e:
+ if e.errno not in (errno.EAGAIN, errno.ECONNABORTED,
+ errno.EWOULDBLOCK):
+ raise
+
+ if not self.is_parent_alive():
+ return
+
+ def run(self):
+ # if no timeout is given the worker will never wait and will
+ # use the CPU for nothing. This minimal timeout prevent it.
+ timeout = self.timeout or 0.5
+
+ # self.socket appears to lose its blocking status after
+ # we fork in the arbiter. Reset it here.
+ for s in self.sockets:
+ s.setblocking(0)
+
+ if len(self.sockets) > 1:
+ self.run_for_multiple(timeout)
+ else:
+ self.run_for_one(timeout)
+
+ def handle(self, listener, client, addr):
+ req = None
+ try:
+ if self.cfg.is_ssl:
+ client = ssl.wrap_socket(client, server_side=True,
+ **self.cfg.ssl_options)
+
+ parser = http.RequestParser(self.cfg, client, addr)
+ req = next(parser)
+ self.handle_request(listener, req, client, addr)
+ except http.errors.NoMoreData as e:
+ self.log.debug("Ignored premature client disconnection. %s", e)
+ except StopIteration as e:
+ self.log.debug("Closing connection. %s", e)
+ except ssl.SSLError as e:
+ if e.args[0] == ssl.SSL_ERROR_EOF:
+ self.log.debug("ssl connection closed")
+ client.close()
+ else:
+ self.log.debug("Error processing SSL request.")
+ self.handle_error(req, client, addr, e)
+ except EnvironmentError as e:
+ if e.errno not in (errno.EPIPE, errno.ECONNRESET, errno.ENOTCONN):
+ self.log.exception("Socket error processing request.")
+ else:
+ if e.errno == errno.ECONNRESET:
+ self.log.debug("Ignoring connection reset")
+ elif e.errno == errno.ENOTCONN:
+ self.log.debug("Ignoring socket not connected")
+ else:
+ self.log.debug("Ignoring EPIPE")
+ except Exception as e:
+ self.handle_error(req, client, addr, e)
+ finally:
+ util.close(client)
+
+ def handle_request(self, listener, req, client, addr):
+ environ = {}
+ resp = None
+ try:
+ self.cfg.pre_request(self, req)
+ request_start = datetime.now()
+ resp, environ = wsgi.create(req, client, addr,
+ listener.getsockname(), self.cfg)
+ # Force the connection closed until someone shows
+ # a buffering proxy that supports Keep-Alive to
+ # the backend.
+ resp.force_close()
+ self.nr += 1
+ if self.nr >= self.max_requests:
+ self.log.info("Autorestarting worker after current request.")
+ self.alive = False
+ respiter = self.wsgi(environ, resp.start_response)
+ try:
+ if isinstance(respiter, environ['wsgi.file_wrapper']):
+ resp.write_file(respiter)
+ else:
+ for item in respiter:
+ resp.write(item)
+ resp.close()
+ request_time = datetime.now() - request_start
+ self.log.access(resp, req, environ, request_time)
+ finally:
+ if hasattr(respiter, "close"):
+ respiter.close()
+ except EnvironmentError:
+ # pass to next try-except level
+ util.reraise(*sys.exc_info())
+ except Exception:
+ if resp and resp.headers_sent:
+ # If the requests have already been sent, we should close the
+ # connection to indicate the error.
+ self.log.exception("Error handling request")
+ try:
+ client.shutdown(socket.SHUT_RDWR)
+ client.close()
+ except EnvironmentError:
+ pass
+ raise StopIteration()
+ raise
+ finally:
+ try:
+ self.cfg.post_request(self, req, environ, resp)
+ except Exception:
+ self.log.exception("Exception in post_request hook")
diff --git a/app_env/Lib/site-packages/gunicorn/workers/workertmp.py b/app_env/Lib/site-packages/gunicorn/workers/workertmp.py
new file mode 100644
index 00000000..65bbe54f
--- /dev/null
+++ b/app_env/Lib/site-packages/gunicorn/workers/workertmp.py
@@ -0,0 +1,55 @@
+# -*- coding: utf-8 -
+#
+# This file is part of gunicorn released under the MIT license.
+# See the NOTICE for more information.
+
+import os
+import platform
+import tempfile
+
+from gunicorn import util
+
+PLATFORM = platform.system()
+IS_CYGWIN = PLATFORM.startswith('CYGWIN')
+
+
+class WorkerTmp(object):
+
+ def __init__(self, cfg):
+ old_umask = os.umask(cfg.umask)
+ fdir = cfg.worker_tmp_dir
+ if fdir and not os.path.isdir(fdir):
+ raise RuntimeError("%s doesn't exist. Can't create workertmp." % fdir)
+ fd, name = tempfile.mkstemp(prefix="wgunicorn-", dir=fdir)
+ os.umask(old_umask)
+
+ # change the owner and group of the file if the worker will run as
+ # a different user or group, so that the worker can modify the file
+ if cfg.uid != os.geteuid() or cfg.gid != os.getegid():
+ util.chown(name, cfg.uid, cfg.gid)
+
+ # unlink the file so we don't leak tempory files
+ try:
+ if not IS_CYGWIN:
+ util.unlink(name)
+ # In Python 3.8, open() emits RuntimeWarning if buffering=1 for binary mode.
+ # Because we never write to this file, pass 0 to switch buffering off.
+ self._tmp = os.fdopen(fd, 'w+b', 0)
+ except Exception:
+ os.close(fd)
+ raise
+
+ self.spinner = 0
+
+ def notify(self):
+ self.spinner = (self.spinner + 1) % 2
+ os.fchmod(self._tmp.fileno(), self.spinner)
+
+ def last_update(self):
+ return os.fstat(self._tmp.fileno()).st_ctime
+
+ def fileno(self):
+ return self._tmp.fileno()
+
+ def close(self):
+ return self._tmp.close()
diff --git a/venv/Lib/site-packages/tzdata-2022.2.dist-info/INSTALLER b/app_env/Lib/site-packages/pip-22.2.2.dist-info/INSTALLER
similarity index 100%
rename from venv/Lib/site-packages/tzdata-2022.2.dist-info/INSTALLER
rename to app_env/Lib/site-packages/pip-22.2.2.dist-info/INSTALLER
diff --git a/venv/Lib/site-packages/pip-22.2.2.dist-info/LICENSE.txt b/app_env/Lib/site-packages/pip-22.2.2.dist-info/LICENSE.txt
similarity index 100%
rename from venv/Lib/site-packages/pip-22.2.2.dist-info/LICENSE.txt
rename to app_env/Lib/site-packages/pip-22.2.2.dist-info/LICENSE.txt
diff --git a/venv/Lib/site-packages/pip-22.2.2.dist-info/METADATA b/app_env/Lib/site-packages/pip-22.2.2.dist-info/METADATA
similarity index 100%
rename from venv/Lib/site-packages/pip-22.2.2.dist-info/METADATA
rename to app_env/Lib/site-packages/pip-22.2.2.dist-info/METADATA
diff --git a/app_env/Lib/site-packages/pip-22.2.2.dist-info/RECORD b/app_env/Lib/site-packages/pip-22.2.2.dist-info/RECORD
new file mode 100644
index 00000000..9695e9e9
--- /dev/null
+++ b/app_env/Lib/site-packages/pip-22.2.2.dist-info/RECORD
@@ -0,0 +1,992 @@
+../../Scripts/pip.exe,sha256=kfGan6FzyHwW3ZQIr-nWRKZ0ZEKlDz_3iDACBi61J08,107953
+../../Scripts/pip3.10.exe,sha256=kfGan6FzyHwW3ZQIr-nWRKZ0ZEKlDz_3iDACBi61J08,107953
+../../Scripts/pip3.exe,sha256=kfGan6FzyHwW3ZQIr-nWRKZ0ZEKlDz_3iDACBi61J08,107953
+pip-22.2.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+pip-22.2.2.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093
+pip-22.2.2.dist-info/METADATA,sha256=1THNkoBHocZtVQ8SixJH12wuSXHJIQb4Vu7RzzEjfKQ,4197
+pip-22.2.2.dist-info/RECORD,,
+pip-22.2.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip-22.2.2.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
+pip-22.2.2.dist-info/entry_points.txt,sha256=_ZUyZpzz1RdotcszCitH_lQ6yiWAKmaOcIkCEmkrePU,124
+pip-22.2.2.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+pip/__init__.py,sha256=RKJ102-F8id9kMdMic9j7MD2OvtK6CP0CK1Erl6PtyU,357
+pip/__main__.py,sha256=mXwWDftNLMKfwVqKFWGE_uuBZvGSIiUELhLkeysIuZc,1198
+pip/__pip-runner__.py,sha256=7S_j7iwRDWb9mahaaEiVL6fct6fWouB2V8W_S8FY0ME,1037
+pip/__pycache__/__init__.cpython-310.pyc,,
+pip/__pycache__/__main__.cpython-310.pyc,,
+pip/__pycache__/__pip-runner__.cpython-310.pyc,,
+pip/_internal/__init__.py,sha256=nnFCuxrPMgALrIDxSoy-H6Zj4W4UY60D-uL1aJyq0pc,573
+pip/_internal/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/__pycache__/build_env.cpython-310.pyc,,
+pip/_internal/__pycache__/cache.cpython-310.pyc,,
+pip/_internal/__pycache__/configuration.cpython-310.pyc,,
+pip/_internal/__pycache__/exceptions.cpython-310.pyc,,
+pip/_internal/__pycache__/main.cpython-310.pyc,,
+pip/_internal/__pycache__/pyproject.cpython-310.pyc,,
+pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc,,
+pip/_internal/__pycache__/wheel_builder.cpython-310.pyc,,
+pip/_internal/build_env.py,sha256=Io06wf8aNlP1FkDYCbbuVFPGWAMJNys7l_p7r9CmEKE,9535
+pip/_internal/cache.py,sha256=-FXxS81WOM-amtx3w7N8s20PfFIlHPX8X27FfOBql-I,10623
+pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132
+pip/_internal/cli/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/base_command.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/command_context.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/main.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/parser.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/req_command.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/spinners.cpython-310.pyc,,
+pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc,,
+pip/_internal/cli/autocompletion.py,sha256=wY2JPZY2Eji1vhR7bVo-yCBPJ9LCy6P80iOAhZD1Vi8,6676
+pip/_internal/cli/base_command.py,sha256=EiHzq1RBubmgYkhsVgJLNc4Y18koPUS1TzMVJwpnYxc,8146
+pip/_internal/cli/cmdoptions.py,sha256=LKKpinHThNt7wtHqxwkWJpgCUcyQeTX0GUCqyXImAbc,29985
+pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774
+pip/_internal/cli/main.py,sha256=ioJ8IVlb2K1qLOxR-tXkee9lURhYV89CDM71MKag7YY,2472
+pip/_internal/cli/main_parser.py,sha256=Q9TnytfuC5Z2JSjBFWVGtEdYLFy7rukNIb04movHdAo,2614
+pip/_internal/cli/parser.py,sha256=tWP-K1uSxnJyXu3WE0kkH3niAYRBeuUaxeydhzOdhL4,10817
+pip/_internal/cli/progress_bars.py,sha256=So4mPoSjXkXiSHiTzzquH3VVyVD_njXlHJSExYPXAow,1968
+pip/_internal/cli/req_command.py,sha256=ypTutLv4j_efxC2f6C6aCQufxre-zaJdi5m_tWlLeBk,18172
+pip/_internal/cli/spinners.py,sha256=rs_NveD0wCoJ9GiJJmOjGC1UPVK8isOQpQsFVE899zQ,5098
+pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116
+pip/_internal/commands/__init__.py,sha256=5oRO9O3dM2vGuh0bFw4HOVletryrz5HHMmmPWwJrH9U,3882
+pip/_internal/commands/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/cache.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/check.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/completion.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/configuration.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/debug.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/download.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/freeze.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/hash.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/help.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/index.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/inspect.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/install.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/list.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/search.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/show.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc,,
+pip/_internal/commands/__pycache__/wheel.cpython-310.pyc,,
+pip/_internal/commands/cache.py,sha256=muaT0mbL-ZUpn6AaushVAipzTiMwE4nV2BLbJBwt_KQ,7582
+pip/_internal/commands/check.py,sha256=0gjXR7j36xJT5cs2heYU_dfOfpnFfzX8OoPNNoKhqdM,1685
+pip/_internal/commands/completion.py,sha256=H0TJvGrdsoleuIyQKzJbicLFppYx2OZA0BLNpQDeFjI,4129
+pip/_internal/commands/configuration.py,sha256=ZJRO2YMzI5vPA2ADTWZrSsvGd4q880CylCUzEUJziZY,9500
+pip/_internal/commands/debug.py,sha256=kVjn-O1ixLk0webD0w9vfFFq_GCTUTd2hmLOnYtDCig,6573
+pip/_internal/commands/download.py,sha256=vLtEY3QqIAddjAOGvJJsbaHJg7Har5TPa4UuOOL6Gn8,5058
+pip/_internal/commands/freeze.py,sha256=gCjoD6foBZPBAAYx5t8zZLkJhsF_ZRtnb3dPuD7beO8,2951
+pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703
+pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132
+pip/_internal/commands/index.py,sha256=1VVXXj5MsI2qH-N7uniQQyVkg-KCn_RdjiyiUmkUS5U,4762
+pip/_internal/commands/inspect.py,sha256=mRJ9aIkBQN0IJ7Um8pzaxAzVPIgL8KfWHx1fWKJgUAQ,3374
+pip/_internal/commands/install.py,sha256=nyZCUv7Oi8rScPe4WENgQ8Vd5n3OHzBuj2tw6khg4Ss,30315
+pip/_internal/commands/list.py,sha256=wF2g5i4j_JyoRckO9FAeB7KhcFAnLboy0dL-G9fn7Eo,12148
+pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697
+pip/_internal/commands/show.py,sha256=CJI8q4SSY0X346K1hi4Th8Nbyhl4nxPTBJUuzOlTaYE,6129
+pip/_internal/commands/uninstall.py,sha256=0JQhifYxecNrJAwoILFwjm9V1V3liXzNT-y4bgRXXPw,3680
+pip/_internal/commands/wheel.py,sha256=dar33wNjUyTN6Cy8PVxV5TerJS1u7pZmKoqgoYiQh7g,6307
+pip/_internal/configuration.py,sha256=uBKTus43pDIO6IzT2mLWQeROmHhtnoabhniKNjPYvD0,13529
+pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858
+pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/distributions/__pycache__/base.cpython-310.pyc,,
+pip/_internal/distributions/__pycache__/installed.cpython-310.pyc,,
+pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc,,
+pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc,,
+pip/_internal/distributions/base.py,sha256=jrF1Vi7eGyqFqMHrieh1PIOrGU7KeCxhYPZnbvtmvGY,1221
+pip/_internal/distributions/installed.py,sha256=NI2OgsgH9iBq9l5vB-56vOg5YsybOy-AU4VE5CSCO2I,729
+pip/_internal/distributions/sdist.py,sha256=SQBdkatXSigKGG_SaD0U0p1Jwdfrg26UCNcHgkXZfdA,6494
+pip/_internal/distributions/wheel.py,sha256=m-J4XO-gvFerlYsFzzSXYDvrx8tLZlJFTCgDxctn8ig,1164
+pip/_internal/exceptions.py,sha256=U-dV1ixkSz6NAU6Aw9dosKi2EzZ5D3BA7ilYZuTLKeU,20912
+pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30
+pip/_internal/index/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/index/__pycache__/collector.cpython-310.pyc,,
+pip/_internal/index/__pycache__/package_finder.cpython-310.pyc,,
+pip/_internal/index/__pycache__/sources.cpython-310.pyc,,
+pip/_internal/index/collector.py,sha256=wLRu5q9a7oVAMATsg1O4P9UT1jfjC6KaxwYf3GWI7Wk,20316
+pip/_internal/index/package_finder.py,sha256=kmcMu5_i-BP6v3NQGY0_am1ezxM2Gk4t00arZMmm4sc,37596
+pip/_internal/index/sources.py,sha256=SVyPitv08-Qalh2_Bk5diAJ9GAA_d-a93koouQodAG0,6557
+pip/_internal/locations/__init__.py,sha256=QhB-Y6TNyaU010cimm2T4wM5loe8oRdjLwJ6xmsGc-k,17552
+pip/_internal/locations/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc,,
+pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc,,
+pip/_internal/locations/__pycache__/base.cpython-310.pyc,,
+pip/_internal/locations/_distutils.py,sha256=AUJcoQ88zfYs9V57GsBlbhqCpyxxsAlLV1t6oqv55Xc,6272
+pip/_internal/locations/_sysconfig.py,sha256=nM-DiVHXWTxippdmN0MGVl5r7OIfIMy3vgDMlo8c_oo,7867
+pip/_internal/locations/base.py,sha256=ufyDqPwZ4jLbScD44u8AwTVI-3ft8O78UGrroQI5f68,2573
+pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340
+pip/_internal/metadata/__init__.py,sha256=IeqRXbTeSreqClORmjA_4CMjkWA-trWdss7Oyimwosw,3535
+pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/metadata/__pycache__/_json.cpython-310.pyc,,
+pip/_internal/metadata/__pycache__/base.cpython-310.pyc,,
+pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc,,
+pip/_internal/metadata/_json.py,sha256=BTkWfFDrWFwuSodImjtbAh8wCL3isecbnjTb5E6UUDI,2595
+pip/_internal/metadata/base.py,sha256=gOjhT0Mk4f6hCa8hzZIQKynIwpHzydnm6krwGTHTVhI,24596
+pip/_internal/metadata/importlib/__init__.py,sha256=9ZVO8BoE7NEZPmoHp5Ap_NJo0HgNIezXXg-TFTtt3Z4,107
+pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc,,
+pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc,,
+pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc,,
+pip/_internal/metadata/importlib/_compat.py,sha256=B_qZlMBcbf2VrjHw4Pz9gfk-c-W1Mzp2u_GAzoWWuLE,1493
+pip/_internal/metadata/importlib/_dists.py,sha256=iEu6KvMdFIfq3ujQvsS0fvI9jDbp1qFC9SmOySfn_fY,7456
+pip/_internal/metadata/importlib/_envs.py,sha256=-4O0PiYmxydf0e6upJ7X-_BR4DB46I_szlgx53hnJLs,7195
+pip/_internal/metadata/pkg_resources.py,sha256=RfU--nYrkHAYJXfpoviyBHJA5b9Mw3Dc5HpeYwki1gE,9289
+pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63
+pip/_internal/models/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/models/__pycache__/candidate.cpython-310.pyc,,
+pip/_internal/models/__pycache__/direct_url.cpython-310.pyc,,
+pip/_internal/models/__pycache__/format_control.cpython-310.pyc,,
+pip/_internal/models/__pycache__/index.cpython-310.pyc,,
+pip/_internal/models/__pycache__/installation_report.cpython-310.pyc,,
+pip/_internal/models/__pycache__/link.cpython-310.pyc,,
+pip/_internal/models/__pycache__/scheme.cpython-310.pyc,,
+pip/_internal/models/__pycache__/search_scope.cpython-310.pyc,,
+pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc,,
+pip/_internal/models/__pycache__/target_python.cpython-310.pyc,,
+pip/_internal/models/__pycache__/wheel.cpython-310.pyc,,
+pip/_internal/models/candidate.py,sha256=6pcABsaR7CfIHlbJbr2_kMkVJFL_yrYjTx6SVWUnCPQ,990
+pip/_internal/models/direct_url.py,sha256=HLO0sL2aYB6n45bwmd72TDN05sLHJlOQI8M01l2SH3I,5877
+pip/_internal/models/format_control.py,sha256=DJpMYjxeYKKQdwNcML2_F0vtAh-qnKTYe-CpTxQe-4g,2520
+pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030
+pip/_internal/models/installation_report.py,sha256=ad1arqtxrSFBvWnm6mRqmG12HLV3pZZcZcHrlTFIiqU,2617
+pip/_internal/models/link.py,sha256=_5okBLOR7vshRltnD11SC3cyD0aSxOa0lMpKWIwQ5UY,10490
+pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738
+pip/_internal/models/search_scope.py,sha256=LwloG0PJAmtI1hFXIypsD95kWE9xfR5hf_a2v1Vw7sk,4520
+pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907
+pip/_internal/models/target_python.py,sha256=qKpZox7J8NAaPmDs5C_aniwfPDxzvpkrCKqfwndG87k,3858
+pip/_internal/models/wheel.py,sha256=X_fakLR3OGF7HhrhwVXCUN-1wBwVCT2Lz0o3NguT_GQ,3575
+pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50
+pip/_internal/network/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/network/__pycache__/auth.cpython-310.pyc,,
+pip/_internal/network/__pycache__/cache.cpython-310.pyc,,
+pip/_internal/network/__pycache__/download.cpython-310.pyc,,
+pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc,,
+pip/_internal/network/__pycache__/session.cpython-310.pyc,,
+pip/_internal/network/__pycache__/utils.cpython-310.pyc,,
+pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc,,
+pip/_internal/network/auth.py,sha256=a3C7Xaa8kTJjXkdi_wrUjqaySc8Z9Yz7U6QIbXfzMyc,12190
+pip/_internal/network/cache.py,sha256=hgXftU-eau4MWxHSLquTMzepYq5BPC2zhCkhN3glBy8,2145
+pip/_internal/network/download.py,sha256=HvDDq9bVqaN3jcS3DyVJHP7uTqFzbShdkf7NFSoHfkw,6096
+pip/_internal/network/lazy_wheel.py,sha256=7YsbcpwOLyXbwCbR484ikhG9-C1FbUVABekVSBS0zHc,7637
+pip/_internal/network/session.py,sha256=BpDOJ7_Xw5VkgPYWsePzcaqOfcyRZcB2AW7W0HGBST0,18443
+pip/_internal/network/utils.py,sha256=6A5SrUJEEUHxbGtbscwU2NpCyz-3ztiDlGWHpRRhsJ8,4073
+pip/_internal/network/xmlrpc.py,sha256=AzQgG4GgS152_cqmGr_Oz2MIXsCal-xfsis7fA7nmU0,1791
+pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_internal/operations/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/operations/__pycache__/check.cpython-310.pyc,,
+pip/_internal/operations/__pycache__/freeze.cpython-310.pyc,,
+pip/_internal/operations/__pycache__/prepare.cpython-310.pyc,,
+pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc,,
+pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc,,
+pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc,,
+pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc,,
+pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc,,
+pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc,,
+pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc,,
+pip/_internal/operations/build/build_tracker.py,sha256=vf81EwomN3xe9G8qRJED0VGqNikmRQRQoobNsxi5Xrs,4133
+pip/_internal/operations/build/metadata.py,sha256=ES_uRmAvhrNm_nDTpZxshBfUsvnXtkj-g_4rZrH9Rww,1404
+pip/_internal/operations/build/metadata_editable.py,sha256=_Rai0VZjxoeJUkjkuICrq45LtjwFoDOveosMYH43rKc,1456
+pip/_internal/operations/build/metadata_legacy.py,sha256=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198
+pip/_internal/operations/build/wheel.py,sha256=AO9XnTGhTgHtZmU8Dkbfo1OGr41rBuSDjIgAa4zUKgE,1063
+pip/_internal/operations/build/wheel_editable.py,sha256=TVETY-L_M_dSEKBhTIcQOP75zKVXw8tuq1U354Mm30A,1405
+pip/_internal/operations/build/wheel_legacy.py,sha256=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064
+pip/_internal/operations/check.py,sha256=ca4O9CkPt9Em9sLCf3H0iVt1GIcW7M8C0U5XooaBuT4,5109
+pip/_internal/operations/freeze.py,sha256=mwTZ2uML8aQgo3k8MR79a7SZmmmvdAJqdyaknKbavmg,9784
+pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51
+pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc,,
+pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc,,
+pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc,,
+pip/_internal/operations/install/editable_legacy.py,sha256=ee4kfJHNuzTdKItbfAsNOSEwq_vD7DRPGkBdK48yBhU,1354
+pip/_internal/operations/install/legacy.py,sha256=cHdcHebyzf8w7OaOLwcsTNSMSSV8WBoAPFLay_9CjE8,4105
+pip/_internal/operations/install/wheel.py,sha256=ZbmrarCh74tariXY8rgI56jbZ1BJ2Z6u5fZt4nt3Gmw,27379
+pip/_internal/operations/prepare.py,sha256=kvL-s1ZUs53g1JIzmJ62j8FwCO_fKWXN45pAtVuz0xE,22962
+pip/_internal/pyproject.py,sha256=ob0Gb0l12YLZNxjdpZGRfWHgjqhZTnSVv96RuJyNOfs,7074
+pip/_internal/req/__init__.py,sha256=rUQ9d_Sh3E5kNYqX9pkN0D06YL-LrtcbJQ-LiIonq08,2807
+pip/_internal/req/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/req/__pycache__/constructors.cpython-310.pyc,,
+pip/_internal/req/__pycache__/req_file.cpython-310.pyc,,
+pip/_internal/req/__pycache__/req_install.cpython-310.pyc,,
+pip/_internal/req/__pycache__/req_set.cpython-310.pyc,,
+pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc,,
+pip/_internal/req/constructors.py,sha256=ypjtq1mOQ3d2mFkFPMf_6Mr8SLKeHQk3tUKHA1ddG0U,16611
+pip/_internal/req/req_file.py,sha256=Qgqx7qLfDO3ai72oO2U1u928_6Idajun5VFRWPZg3XM,17502
+pip/_internal/req/req_install.py,sha256=bOtpOZnDgmEst_QuWZRXViaPW1JJ1iAvO6vVFgFf0PI,33506
+pip/_internal/req/req_set.py,sha256=j3esG0s6SzoVReX9rWn4rpYNtyET_fwxbwJPRimvRxo,2858
+pip/_internal/req/req_uninstall.py,sha256=ZFQfgSNz6H1BMsgl87nQNr2iaQCcbFcmXpW8rKVQcic,24045
+pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/resolution/__pycache__/base.cpython-310.pyc,,
+pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583
+pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc,,
+pip/_internal/resolution/legacy/resolver.py,sha256=9em8D5TcSsEN4xZM1WreaRShOnyM4LlvhMSHpUPsocE,24129
+pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc,,
+pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc,,
+pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc,,
+pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc,,
+pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc,,
+pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc,,
+pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc,,
+pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc,,
+pip/_internal/resolution/resolvelib/base.py,sha256=u1O4fkvCO4mhmu5i32xrDv9AX5NgUci_eYVyBDQhTIM,5220
+pip/_internal/resolution/resolvelib/candidates.py,sha256=6kQZeMzwibnL4lO6bW0hUQQjNEvXfADdFphRRkRvOtc,18963
+pip/_internal/resolution/resolvelib/factory.py,sha256=OnjkLIgyk5Tol7uOOqapA1D4qiRHWmPU18DF1yN5N8o,27878
+pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705
+pip/_internal/resolution/resolvelib/provider.py,sha256=Vd4jW_NnyifB-HMkPYtZIO70M3_RM0MbL5YV6XyBM-w,9914
+pip/_internal/resolution/resolvelib/reporter.py,sha256=3ZVVYrs5PqvLFJkGLcuXoMK5mTInFzl31xjUpDBpZZk,2526
+pip/_internal/resolution/resolvelib/requirements.py,sha256=B1ndvKPSuyyyTEXt9sKhbwminViSWnBrJa7qO2ln4Z0,5455
+pip/_internal/resolution/resolvelib/resolver.py,sha256=nYZ9bTFXj5c1ILKnkSgU7tUCTYyo5V5J-J0sKoA7Wzg,11533
+pip/_internal/self_outdated_check.py,sha256=R3MmjCyUt_lkUNMc6p3xVSx7vX28XiDh3VDs5OrYn6Q,8020
+pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_internal/utils/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/_log.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/compat.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/datetime.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/encoding.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/glibc.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/hashes.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/logging.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/misc.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/models.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/packaging.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/urls.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc,,
+pip/_internal/utils/__pycache__/wheel.cpython-310.pyc,,
+pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015
+pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665
+pip/_internal/utils/compat.py,sha256=ACyBfLgj3_XG-iA5omEDrXqDM0cQKzi8h8HRBInzG6Q,1884
+pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377
+pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242
+pip/_internal/utils/deprecation.py,sha256=NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8,3627
+pip/_internal/utils/direct_url_helpers.py,sha256=6F1tc2rcKaCZmgfVwsE6ObIe_Pux23mUVYA-2D9wCFc,3206
+pip/_internal/utils/distutils_args.py,sha256=bYUt4wfFJRaeGO4VHia6FNaA8HlYXMcKuEq1zYijY5g,1115
+pip/_internal/utils/egg_link.py,sha256=5MVlpz5LirT4iLQq86OYzjXaYF0D4Qk1dprEI7ThST4,2203
+pip/_internal/utils/encoding.py,sha256=qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK-dIzb6-XJsL0,1169
+pip/_internal/utils/entrypoints.py,sha256=GgeG2FUbbYhQ0sYgG2AtM-a4d1P8MJYdmEl5IhQ-WeM,2900
+pip/_internal/utils/filesystem.py,sha256=RhMIXUaNVMGjc3rhsDahWQ4MavvEQDdqXqgq-F6fpw8,5122
+pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716
+pip/_internal/utils/glibc.py,sha256=tDfwVYnJCOC0BNVpItpy8CGLP9BjkxFHdl0mTS0J7fc,3110
+pip/_internal/utils/hashes.py,sha256=EPVx_I0UI8Gvu_skgLwpJA90pHZ5Ev1qNaZagYOub7I,4811
+pip/_internal/utils/inject_securetransport.py,sha256=o-QRVMGiENrTJxw3fAhA7uxpdEdw6M41TjHYtSVRrcg,795
+pip/_internal/utils/logging.py,sha256=U2q0i1n8hPS2gQh8qcocAg5dovGAa_bR24akmXMzrk4,11632
+pip/_internal/utils/misc.py,sha256=49Rs2NgrD4JGTKFt0farCm7FIAi-rjyoxgioArhCW_0,21617
+pip/_internal/utils/models.py,sha256=5GoYU586SrxURMvDn_jBMJInitviJg4O5-iOU-6I0WY,1193
+pip/_internal/utils/packaging.py,sha256=5Wm6_x7lKrlqVjPI5MBN_RurcRHwVYoQ7Ksrs84de7s,2108
+pip/_internal/utils/setuptools_build.py,sha256=vNH9hQB9wT6d-h1hVQhBKw91jNeT42meHpVeii-urOI,5652
+pip/_internal/utils/subprocess.py,sha256=MYySbvY7qBevRxq_RFfOsDqG4vMqrB4vDoL_eyPE6Bo,9197
+pip/_internal/utils/temp_dir.py,sha256=aCX489gRa4Nu0dMKRFyGhV6maJr60uEynu5uCbKR4Qg,7702
+pip/_internal/utils/unpacking.py,sha256=SBb2iV1crb89MDRTEKY86R4A_UOWApTQn9VQVcMDOlE,8821
+pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759
+pip/_internal/utils/virtualenv.py,sha256=4_48qMzCwB_F5jIK5BC_ua7uiAMVifmQWU9NdaGUoVA,3459
+pip/_internal/utils/wheel.py,sha256=lXOgZyTlOm5HmK8tw5iw0A3_5A6wRzsXHOaQkIvvloU,4549
+pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596
+pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc,,
+pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc,,
+pip/_internal/vcs/__pycache__/git.cpython-310.pyc,,
+pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc,,
+pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc,,
+pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc,,
+pip/_internal/vcs/bazaar.py,sha256=IGb5ca1xSZfgegRD2_JeyoZPrQQHs7lEYEIgpVsKpoU,3047
+pip/_internal/vcs/git.py,sha256=mjhwudCx9WlLNkxZ6_kOKmueF0rLoU2i1xeASKF6yiQ,18116
+pip/_internal/vcs/mercurial.py,sha256=Bzbd518Jsx-EJI0IhIobiQqiRsUv5TWYnrmRIFWE0Gw,5238
+pip/_internal/vcs/subversion.py,sha256=TEMRdwECvMcXakZX0pTNUep79kmBYkWDkWFkrYmcmac,11718
+pip/_internal/vcs/versioncontrol.py,sha256=KUOc-hN51em9jrqxKwUR3JnkgSE-xSOqMiiJcSaL6B8,22811
+pip/_internal/wheel_builder.py,sha256=S-_i83q75xGqKjBenUl4uaTkLyXcZf7jFgChcCNi0xc,12712
+pip/_vendor/__init__.py,sha256=fNxOSVD0auElsD8fN9tuq5psfgMQ-RFBtD4X5gjlRkg,4966
+pip/_vendor/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/__pycache__/six.cpython-310.pyc,,
+pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc,,
+pip/_vendor/cachecontrol/__init__.py,sha256=hrxlv3q7upsfyMw8k3gQ9vagBax1pYHSGGqYlZ0Zk0M,465
+pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc,,
+pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc,,
+pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc,,
+pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc,,
+pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc,,
+pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc,,
+pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc,,
+pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc,,
+pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc,,
+pip/_vendor/cachecontrol/_cmd.py,sha256=lxUXqfNTVx84zf6tcWbkLZHA6WVBRtJRpfeA9ZqhaAY,1379
+pip/_vendor/cachecontrol/adapter.py,sha256=ew9OYEQHEOjvGl06ZsuX8W3DAvHWsQKHwWAxISyGug8,5033
+pip/_vendor/cachecontrol/cache.py,sha256=Tty45fOjH40fColTGkqKQvQQmbYsMpk-nCyfLcv2vG4,1535
+pip/_vendor/cachecontrol/caches/__init__.py,sha256=h-1cUmOz6mhLsjTjOrJ8iPejpGdLCyG4lzTftfGZvLg,242
+pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc,,
+pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc,,
+pip/_vendor/cachecontrol/caches/file_cache.py,sha256=GpexcE29LoY4MaZwPUTcUBZaDdcsjqyLxZFznk8Hbr4,5271
+pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=mp-QWonP40I3xJGK3XVO-Gs9a3UjzlqqEmp9iLJH9F4,1033
+pip/_vendor/cachecontrol/compat.py,sha256=LNx7vqBndYdHU8YuJt53ab_8rzMGTXVrvMb7CZJkxG0,778
+pip/_vendor/cachecontrol/controller.py,sha256=bAYrt7x_VH4toNpI066LQxbHpYGpY1MxxmZAhspplvw,16416
+pip/_vendor/cachecontrol/filewrapper.py,sha256=X4BAQOO26GNOR7nH_fhTzAfeuct2rBQcx_15MyFBpcs,3946
+pip/_vendor/cachecontrol/heuristics.py,sha256=8kAyuZLSCyEIgQr6vbUwfhpqg9ows4mM0IV6DWazevI,4154
+pip/_vendor/cachecontrol/serialize.py,sha256=_U1NU_C-SDgFzkbAxAsPDgMTHeTWZZaHCQnZN_jh0U8,7105
+pip/_vendor/cachecontrol/wrapper.py,sha256=X3-KMZ20Ho3VtqyVaXclpeQpFzokR5NE8tZSfvKVaB8,774
+pip/_vendor/certifi/__init__.py,sha256=SuZ3iYmzdRyUv-PiaZkquUgXtWZ16ICUKgymlEBspx0,94
+pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255
+pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc,,
+pip/_vendor/certifi/__pycache__/core.cpython-310.pyc,,
+pip/_vendor/certifi/cacert.pem,sha256=pZ_eiDoO-ddKudrQCWieABc9KFlbV0FsmLLugygMbkw,285222
+pip/_vendor/certifi/core.py,sha256=g6EYcIFUAhYv5CB9B94iKRgMfGj8f82MF0CRdTDovxM,3052
+pip/_vendor/chardet/__init__.py,sha256=9-r0i294avRciob2HKVcKf6GJmXPHpgMqIijVrqHBDU,3705
+pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc,,
+pip/_vendor/chardet/__pycache__/version.cpython-310.pyc,,
+pip/_vendor/chardet/big5freq.py,sha256=ltcfP-3PjlNHCoo5e4a7C4z-2DhBTXRfY6jbMbB7P30,31274
+pip/_vendor/chardet/big5prober.py,sha256=neUXIlq35507yibstiznZWFzyNcMn6EXrqJaUJVPWKg,1741
+pip/_vendor/chardet/chardistribution.py,sha256=M9NTKdM72KieFKy4TT5eml4PP0WaVcXuY5PpWSFD0FA,9608
+pip/_vendor/chardet/charsetgroupprober.py,sha256=CaIBAmNitEsYuSgMvgAsMREN4cLxMj5OYwMhVo6MAxk,3817
+pip/_vendor/chardet/charsetprober.py,sha256=Eo3w8sCmbvnVKOGNW1iy50KATVs8xV-gF7cQ0VG85dQ,4801
+pip/_vendor/chardet/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc,,
+pip/_vendor/chardet/cli/chardetect.py,sha256=1qMxT3wrp5vP6ugSf1-Zz3BWwlbCWJ0jzeCuhgX85vw,2406
+pip/_vendor/chardet/codingstatemachine.py,sha256=BiGR9kgTYbS4gJI5qBmE52HMOBOR_roDvXf7aIehdEk,3559
+pip/_vendor/chardet/cp949prober.py,sha256=kCQEaOCzMntqv7pAyXEobWTRgIUxYfoiUr0btXO1nI8,1838
+pip/_vendor/chardet/enums.py,sha256=Rodw4p61Vg9U-oCo6eUuT7uDzKwIbCaA15HwbvCoCNk,1619
+pip/_vendor/chardet/escprober.py,sha256=girD61r3NsQLnMQXsWWBU4hHuRJzTH3V7-VfTUr-nQY,3864
+pip/_vendor/chardet/escsm.py,sha256=0Vs4iPPovberMoSxxnK5pI161Xf-mtKgOl14g5Xc7zg,12021
+pip/_vendor/chardet/eucjpprober.py,sha256=pGgs4lINwCEDV2bxqIZ6hXpaj2j4l2oLsMx6kuOK_zQ,3676
+pip/_vendor/chardet/euckrfreq.py,sha256=3mHuRvXfsq_QcQysDQFb8qSudvTiol71C6Ic2w57tKM,13566
+pip/_vendor/chardet/euckrprober.py,sha256=qBuSS2zXWaoUmGdzz3owAnD1GNhuKR_8bYzDC3yxe6I,1731
+pip/_vendor/chardet/euctwfreq.py,sha256=2alILE1Lh5eqiFJZjzRkMQXolNJRHY5oBQd-vmZYFFM,36913
+pip/_vendor/chardet/euctwprober.py,sha256=SLnCoJC94jZL8PJio60Q8PZACJA1rVPtUdWMa1W8Pwk,1731
+pip/_vendor/chardet/gb2312freq.py,sha256=49OrdXzD-HXqwavkqjo8Z7gvs58hONNzDhAyMENNkvY,20735
+pip/_vendor/chardet/gb2312prober.py,sha256=NS_i52jZE0TnWGkKqFduvu9fzW0nMcS2XbYJ8qSX8hY,1737
+pip/_vendor/chardet/hebrewprober.py,sha256=1l1hXF8-2IWDrPkf85UvAO1GVtMfY1r11kDgOqa-gU4,13919
+pip/_vendor/chardet/jisfreq.py,sha256=mm8tfrwqhpOd3wzZKS4NJqkYBQVcDfTM2JiQ5aW932E,25796
+pip/_vendor/chardet/johabfreq.py,sha256=dBpOYG34GRX6SL8k_LbS9rxZPMjLjoMlgZ03Pz5Hmqc,42498
+pip/_vendor/chardet/johabprober.py,sha256=C18osd4vMPfy9facw-Y1Lor_9UrW0PeV-zxM2fu441c,1730
+pip/_vendor/chardet/jpcntx.py,sha256=m1gDpPkRca4EDwym8XSL5YdoILFnFsDbNBYMQV7_-NE,26797
+pip/_vendor/chardet/langbulgarianmodel.py,sha256=vmbvYFP8SZkSxoBvLkFqKiH1sjma5ihk3PTpdy71Rr4,104562
+pip/_vendor/chardet/langgreekmodel.py,sha256=JfB7bupjjJH2w3X_mYnQr9cJA_7EuITC2cRW13fUjeI,98484
+pip/_vendor/chardet/langhebrewmodel.py,sha256=3HXHaLQPNAGcXnJjkIJfozNZLTvTJmf4W5Awi6zRRKc,98196
+pip/_vendor/chardet/langhungarianmodel.py,sha256=WxbeQIxkv8YtApiNqxQcvj-tMycsoI4Xy-fwkDHpP_Y,101363
+pip/_vendor/chardet/langrussianmodel.py,sha256=s395bTZ87ESTrZCOdgXbEjZ9P1iGPwCl_8xSsac_DLY,128035
+pip/_vendor/chardet/langthaimodel.py,sha256=7bJlQitRpTnVGABmbSznHnJwOHDy3InkTvtFUx13WQI,102774
+pip/_vendor/chardet/langturkishmodel.py,sha256=XY0eGdTIy4eQ9Xg1LVPZacb-UBhHBR-cq0IpPVHowKc,95372
+pip/_vendor/chardet/latin1prober.py,sha256=u_iGcQMUcZLXvj4B_WXx4caA0C5oaE2Qj1KTpz_RQ1I,5260
+pip/_vendor/chardet/mbcharsetprober.py,sha256=iKKuB6o_FF80NynRLBDT0UtwOnpLqmL_OspRPMib7CM,3367
+pip/_vendor/chardet/mbcsgroupprober.py,sha256=1D_kp9nv2_NQRddq9I2WDvB35OJh7Tfpo-OYTnL3B5o,2056
+pip/_vendor/chardet/mbcssm.py,sha256=EfORNu1WXgnFvpFarU8uJHS8KFif63xmgrHOB4DdDdY,30068
+pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc,,
+pip/_vendor/chardet/metadata/languages.py,sha256=HcaBygWtZq3gR8prIkJp_etvkhm2V4pUIToqjPZhgrc,13280
+pip/_vendor/chardet/sbcharsetprober.py,sha256=VvtWiNRLbHDZ5xgnofsmP1u8VQIkkaAuw3Ir9m1zDzQ,6199
+pip/_vendor/chardet/sbcsgroupprober.py,sha256=mekr4E3hgT4onmwi8oi1iEGW1CN-Z-BArG6kOtCunJw,4129
+pip/_vendor/chardet/sjisprober.py,sha256=sLfWS25PVFr5cDGhEf6h_s-RJsyeSteA-4ynsTl_UvA,3749
+pip/_vendor/chardet/universaldetector.py,sha256=BHeNWt1kn0yQgnR6xNtLAjiNmEQpSHYlKEvuZ9QyR1k,13288
+pip/_vendor/chardet/utf1632prober.py,sha256=N42YJEOkVDB67c38t5aJhXMG1QvnyWWDMNY5ERzniU0,8289
+pip/_vendor/chardet/utf8prober.py,sha256=mnLaSBV4gg-amt2WmxKFKWy4vVBedMNgjdbvgzBo0Dc,2709
+pip/_vendor/chardet/version.py,sha256=u_QYi-DXU1s7fyC_Rwa0I0-UcxMVmH7Co6c7QGKbe3g,242
+pip/_vendor/colorama/__init__.py,sha256=ihDoWQOkapwF7sqQ99AoDoEF3vGYm40OtmgW211cLZw,239
+pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc,,
+pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc,,
+pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc,,
+pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc,,
+pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc,,
+pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522
+pip/_vendor/colorama/ansitowin32.py,sha256=gGrO7MVtwc-j1Sq3jKfZpERT1JWmYSOsTVDiTnFbZU4,10830
+pip/_vendor/colorama/initialise.py,sha256=PprovDNxMTrvoNHFcL2NZjpH2XzDc8BLxLxiErfUl4k,1915
+pip/_vendor/colorama/win32.py,sha256=bJ8Il9jwaBN5BJ8bmN6FoYZ1QYuMKv2j8fGrXh7TJjw,5404
+pip/_vendor/colorama/winterm.py,sha256=2y_2b7Zsv34feAsP67mLOVc-Bgq51mdYGo571VprlrM,6438
+pip/_vendor/distlib/__init__.py,sha256=kshNHF2XFPxmBv57X7Jsj7c6VzF5r9naVwGePP-s5Wc,581
+pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/database.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/index.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/util.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/version.cpython-310.pyc,,
+pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc,,
+pip/_vendor/distlib/compat.py,sha256=tfoMrj6tujk7G4UC2owL6ArgDuCKabgBxuJRGZSmpko,41259
+pip/_vendor/distlib/database.py,sha256=o_mw0fAr93NDAHHHfqG54Y1Hi9Rkfrp2BX15XWZYK50,51697
+pip/_vendor/distlib/index.py,sha256=HFiDG7LMoaBs829WuotrfIwcErOOExUOR_AeBtw_TCU,20834
+pip/_vendor/distlib/locators.py,sha256=wNzG-zERzS_XGls-nBPVVyLRHa2skUlkn0-5n0trMWA,51991
+pip/_vendor/distlib/manifest.py,sha256=nQEhYmgoreaBZzyFzwYsXxJARu3fo4EkunU163U16iE,14811
+pip/_vendor/distlib/markers.py,sha256=TpHHHLgkzyT7YHbwj-2i6weRaq-Ivy2-MUnrDkjau-U,5058
+pip/_vendor/distlib/metadata.py,sha256=g_DIiu8nBXRzA-mWPRpatHGbmFZqaFoss7z9TG7QSUU,39801
+pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820
+pip/_vendor/distlib/scripts.py,sha256=BmkTKmiTk4m2cj-iueliatwz3ut_9SsABBW51vnQnZU,18102
+pip/_vendor/distlib/t32.exe,sha256=lD3IWCwZiYZ9onypJifi2R1sGS-S24t3mYupsEAOKyA,97792
+pip/_vendor/distlib/t64-arm.exe,sha256=3hjLTLg7XBVHwDxgzZpkiHXXp4IJQMLvg_ZlGGpKZDI,182784
+pip/_vendor/distlib/t64.exe,sha256=vvS31h4-SnumthypJJKAWBeBh7cxSJ8AwGmbqumM05k,107520
+pip/_vendor/distlib/util.py,sha256=31dPXn3Rfat0xZLeVoFpuniyhe6vsbl9_QN-qd9Lhlk,66262
+pip/_vendor/distlib/version.py,sha256=WG__LyAa2GwmA6qSoEJtvJE8REA1LZpbSizy8WvhJLk,23513
+pip/_vendor/distlib/w32.exe,sha256=-a9nfgVZClK_mGnbQtXVLbn7xtPYw3xDKTddKnu2AJ8,91648
+pip/_vendor/distlib/w64-arm.exe,sha256=LW-JyIIGblDOp8Psy8igJXDvcg_YpJIINvN0tRjfv18,168448
+pip/_vendor/distlib/w64.exe,sha256=XvKqAoQzca86ERd2-KV5Vo1RSOBM28I2a35sPQONrYI,101888
+pip/_vendor/distlib/wheel.py,sha256=Rgqs658VsJ3R2845qwnZD8XQryV2CzWw2mghwLvxxsI,43898
+pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981
+pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64
+pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc,,
+pip/_vendor/distro/__pycache__/distro.cpython-310.pyc,,
+pip/_vendor/distro/distro.py,sha256=UYQG_9H_iSOt422uasA92HlY7aXeTnWKdV-IhsSAdwQ,48841
+pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849
+pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/idna/__pycache__/codec.cpython-310.pyc,,
+pip/_vendor/idna/__pycache__/compat.cpython-310.pyc,,
+pip/_vendor/idna/__pycache__/core.cpython-310.pyc,,
+pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc,,
+pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc,,
+pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc,,
+pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc,,
+pip/_vendor/idna/codec.py,sha256=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374
+pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321
+pip/_vendor/idna/core.py,sha256=RFIkY-HhFZaDoBEFjGwyGd_vWI04uOAQjnzueMWqwOU,12795
+pip/_vendor/idna/idnadata.py,sha256=fzMzkCea2xieVxcrjngJ-2pLsKQNejPCZFlBajIuQdw,44025
+pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881
+pip/_vendor/idna/package_data.py,sha256=szxQhV0ZD0nKJ84Kuobw3l8q4_KeCyXjFRdpwIpKZmw,21
+pip/_vendor/idna/uts46data.py,sha256=o-D7V-a0fOLZNd7tvxof6MYfUd0TBZzE2bLR5XO67xU,204400
+pip/_vendor/msgpack/__init__.py,sha256=NryGaKLDk_Egd58ZxXpnuI7OWO27AXz7S6CBFRM3sAY,1132
+pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc,,
+pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc,,
+pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc,,
+pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081
+pip/_vendor/msgpack/ext.py,sha256=TuldJPkYu8Wo_Xh0tFGL2l06-gY88NSR8tOje9fo2Wg,6080
+pip/_vendor/msgpack/fallback.py,sha256=OORDn86-fHBPlu-rPlMdM10KzkH6S_Rx9CHN1b7o4cg,34557
+pip/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661
+pip/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497
+pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc,,
+pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc,,
+pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc,,
+pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc,,
+pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc,,
+pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc,,
+pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc,,
+pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc,,
+pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc,,
+pip/_vendor/packaging/__pycache__/version.cpython-310.pyc,,
+pip/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488
+pip/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378
+pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431
+pip/_vendor/packaging/markers.py,sha256=AJBOcY8Oq0kYc570KuuPTkvuqjAlhufaE2c9sCUbm64,8487
+pip/_vendor/packaging/requirements.py,sha256=NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA-Xb4m5NA,4676
+pip/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110
+pip/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699
+pip/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200
+pip/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665
+pip/_vendor/pep517/__init__.py,sha256=Y1bATL2qbFNN6M_DQa4yyrwqjpIiL-j9T6kBmR0DS14,130
+pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/pep517/__pycache__/build.cpython-310.pyc,,
+pip/_vendor/pep517/__pycache__/check.cpython-310.pyc,,
+pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc,,
+pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc,,
+pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc,,
+pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc,,
+pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc,,
+pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc,,
+pip/_vendor/pep517/build.py,sha256=2bar6EdjwIz2Dlfy94qdxn3oA9mVnnny40mfoT5f-qI,3457
+pip/_vendor/pep517/check.py,sha256=bCORq1WrHjhpTONa-zpAqG0EB9rHNuhO1ORu6DsDuL8,6084
+pip/_vendor/pep517/colorlog.py,sha256=Tk9AuYm_cLF3BKTBoSTJt9bRryn0aFojIQOwbfVUTxQ,4098
+pip/_vendor/pep517/compat.py,sha256=NmLImE5oiDT3gbEhJ4w7xeoMFcpAPrGu_NltBytSJUY,1253
+pip/_vendor/pep517/dirtools.py,sha256=2mkAkAL0mRz_elYFjRKuekTJVipH1zTn4tbf1EDev84,1129
+pip/_vendor/pep517/envbuild.py,sha256=zFde--rmzjXMLXcm7SA_3hDtgk5VCTA8hjpk88RbF6E,6100
+pip/_vendor/pep517/in_process/__init__.py,sha256=MyWoAi8JHdcBv7yXuWpUSVADbx6LSB9rZh7kTIgdA8Y,563
+pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc,,
+pip/_vendor/pep517/in_process/_in_process.py,sha256=D3waguyNSGcwosociD5USfcycYr2RCzCjYtxX5UHQmQ,11201
+pip/_vendor/pep517/meta.py,sha256=8mnM5lDnT4zXQpBTliJbRGfesH7iioHwozbDxALPS9Y,2463
+pip/_vendor/pep517/wrappers.py,sha256=impq7Cz_LL1iDF1iiOzYWB4MaEu6O6Gps7TJ5qsJz1Q,13429
+pip/_vendor/pkg_resources/__init__.py,sha256=NnpQ3g6BCHzpMgOR_OLBmYtniY4oOzdKpwqghfq_6ug,108287
+pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc,,
+pip/_vendor/pkg_resources/py31compat.py,sha256=CRk8fkiPRDLsbi5pZcKsHI__Pbmh_94L8mr9Qy9Ab2U,562
+pip/_vendor/platformdirs/__init__.py,sha256=x0aUmmovXXuRFVrVQBtwIiovX12B7rUkdV4F9UlLz0Y,12831
+pip/_vendor/platformdirs/__main__.py,sha256=ZmsnTxEOxtTvwa-Y_Vfab_JN3X4XCVeN8X0yyy9-qnc,1176
+pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc,,
+pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc,,
+pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc,,
+pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc,,
+pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc,,
+pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc,,
+pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc,,
+pip/_vendor/platformdirs/android.py,sha256=GKizhyS7ESRiU67u8UnBJLm46goau9937EchXWbPBlk,4068
+pip/_vendor/platformdirs/api.py,sha256=MXKHXOL3eh_-trSok-JUTjAR_zjmmKF3rjREVABjP8s,4910
+pip/_vendor/platformdirs/macos.py,sha256=-3UXQewbT0yMhMdkzRXfXGAntmLIH7Qt4a9Hlf8I5_Y,2655
+pip/_vendor/platformdirs/unix.py,sha256=b4aVYTz0qZ50HntwOXo8r6tp82jAa3qTjxw-WlnC2yc,6910
+pip/_vendor/platformdirs/version.py,sha256=tsBKKPDX3LLh39yHXeTYauGRbRd-AmOJr9SwKldlFIU,78
+pip/_vendor/platformdirs/windows.py,sha256=ISruopR5UGBePC0BxCxXevkZYfjJsIZc49YWU5iYfQ4,6439
+pip/_vendor/pygments/__init__.py,sha256=M4yPkVb6x8OkEb4tHfVU8p6B3DBEsshB_8a2gZvr4FE,3002
+pip/_vendor/pygments/__main__.py,sha256=p0_rz3JZmNZMNZBOqDojaEx1cr9wmA9FQZX_TYl74lQ,353
+pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/console.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/style.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/token.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc,,
+pip/_vendor/pygments/__pycache__/util.cpython-310.pyc,,
+pip/_vendor/pygments/cmdline.py,sha256=HYs14dbtMgL7t_BJ7B84NXlFjOzMYgW7Z0ZSxkTJun4,23408
+pip/_vendor/pygments/console.py,sha256=hQfqCFuOlGk7DW2lPQYepsw-wkOH1iNt9ylNA1eRymM,1697
+pip/_vendor/pygments/filter.py,sha256=NglMmMPTRRv-zuRSE_QbWid7JXd2J4AvwjCW2yWALXU,1938
+pip/_vendor/pygments/filters/__init__.py,sha256=F8WwJguaJLs3bomEH8LyVATQfpULTpSpTd4PRPONR5A,40292
+pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/pygments/formatter.py,sha256=6-TS2Y8pUMeWIUolWwr1O8ruC-U6HydWDwOdbAiJgJQ,2917
+pip/_vendor/pygments/formatters/__init__.py,sha256=5LfCZThsbVVtZU5OyavkRPwC0MV7tB6pqcJ793PWi6E,5119
+pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc,,
+pip/_vendor/pygments/formatters/_mapping.py,sha256=QLyYZ7Cv9W7YcM8seq0XqR3MXW3MzoFZSyHd7BDNU84,6517
+pip/_vendor/pygments/formatters/bbcode.py,sha256=JrL4ITjN-KzPcuQpPMBf1pm33eW2sDUNr8WzSoAJsJA,3314
+pip/_vendor/pygments/formatters/groff.py,sha256=xrOFoLbafSA9uHsSLRogy79_Zc4GWJ8tMK2hCdTJRsw,5086
+pip/_vendor/pygments/formatters/html.py,sha256=QNt9prPgxmbKx2M-nfDwoR1bIg06-sNouQuWnE434Wc,35441
+pip/_vendor/pygments/formatters/img.py,sha256=j3hHU1fhbBEIKEtWTV-vc-z-5c2nqoobOty3QqeQbpk,21819
+pip/_vendor/pygments/formatters/irc.py,sha256=iwk5tDJOxbCV64SCmOFyvk__x6RD60ay0nUn7ko9n7U,5871
+pip/_vendor/pygments/formatters/latex.py,sha256=thPbytJCIs2AUXsO3NZwqKtXJ-upOlcXP4CXsx94G4w,19351
+pip/_vendor/pygments/formatters/other.py,sha256=PczqK1Rms43lz6iucOLPeBMxIncPKOGBt-195w1ynII,5073
+pip/_vendor/pygments/formatters/pangomarkup.py,sha256=ZZzMsKJKXrsDniFeMTkIpe7aQ4VZYRHu0idWmSiUJ2U,2212
+pip/_vendor/pygments/formatters/rtf.py,sha256=abrKlWjipBkQvhIICxtjYTUNv6WME0iJJObFvqVuudE,5014
+pip/_vendor/pygments/formatters/svg.py,sha256=6MM9YyO8NhU42RTQfTWBiagWMnsf9iG5gwhqSriHORE,7335
+pip/_vendor/pygments/formatters/terminal.py,sha256=NpEGvwkC6LgMLQTjVzGrJXji3XcET1sb5JCunSCzoRo,4674
+pip/_vendor/pygments/formatters/terminal256.py,sha256=4v4OVizvsxtwWBpIy_Po30zeOzE5oJg_mOc1-rCjMDk,11753
+pip/_vendor/pygments/lexer.py,sha256=ZPB_TGn_qzrXodRFwEdPzzJk6LZBo9BlfSy3lacc6zg,32005
+pip/_vendor/pygments/lexers/__init__.py,sha256=Gku6kqn9IvgIdvV50gISPo0mmyyMNYRoUliEwhw6eNY,11491
+pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc,,
+pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc,,
+pip/_vendor/pygments/lexers/_mapping.py,sha256=sExOsmEbtg7hKwXgSz6M3L77cKPaOgskzxOCdw_GxVc,72083
+pip/_vendor/pygments/lexers/python.py,sha256=QWj4ud4brZCj0-LXjR7IcO0kL6lqM2HzM_DzZZxMRjg,52792
+pip/_vendor/pygments/modeline.py,sha256=gIbMSYrjSWPk0oATz7W9vMBYkUyTK2OcdVyKjioDRvA,986
+pip/_vendor/pygments/plugin.py,sha256=tIRWetjR4dokpgbbFnsx7jjfN57T4-Z4errH1eVgGYw,1727
+pip/_vendor/pygments/regexopt.py,sha256=c6xcXGpGgvCET_3VWawJJqAnOp0QttFpQEdOPNY2Py0,3072
+pip/_vendor/pygments/scanner.py,sha256=F2T2G6cpkj-yZtzGQr-sOBw5w5-96UrJWveZN6va2aM,3092
+pip/_vendor/pygments/sphinxext.py,sha256=F8L0211sPnXaiWutN0lkSUajWBwlgDMIEFFAbMWOvZY,4630
+pip/_vendor/pygments/style.py,sha256=RRnussX1YiK9Z7HipIvKorImxu3-HnkdpPCO4u925T0,6257
+pip/_vendor/pygments/styles/__init__.py,sha256=eVJlJqbmc-TYSQEEl-2yhbtnW6INfuvlayJOiXrt9ro,3252
+pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/pygments/token.py,sha256=naybicpgOtSlh3vMGvbbx2T_6qEdGWYEH_RJ4gacIcc,6143
+pip/_vendor/pygments/unistring.py,sha256=gP3gK-6C4oAFjjo9HvoahsqzuV4Qz0jl0E0OxfDerHI,63187
+pip/_vendor/pygments/util.py,sha256=KgwpWWC3By5AiNwxGTI7oI9aXupH2TyZWukafBJe0Mg,9110
+pip/_vendor/pyparsing/__init__.py,sha256=ZPdI7pPo4IYXcABw-51AcqOzsxVvDtqnQbyn_qYWZvo,9171
+pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc,,
+pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc,,
+pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc,,
+pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc,,
+pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc,,
+pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc,,
+pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc,,
+pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc,,
+pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc,,
+pip/_vendor/pyparsing/actions.py,sha256=wU9i32e0y1ymxKE3OUwSHO-SFIrt1h_wv6Ws0GQjpNU,6426
+pip/_vendor/pyparsing/common.py,sha256=lFL97ooIeR75CmW5hjURZqwDCTgruqltcTCZ-ulLO2Q,12936
+pip/_vendor/pyparsing/core.py,sha256=AzTm1KFT1FIhiw2zvXZJmrpQoAwB0wOmeDCiR6SYytw,213344
+pip/_vendor/pyparsing/diagram/__init__.py,sha256=KW0PV_TvWKnL7jysz0pQbZ24nzWWu2ZfNaeyUIIywIg,23685
+pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/pyparsing/exceptions.py,sha256=3LbSafD32NYb1Tzt85GHNkhEAU1eZkTtNSk24cPMemo,9023
+pip/_vendor/pyparsing/helpers.py,sha256=QpUOjW0-psvueMwWb9bQpU2noqKCv98_wnw1VSzSdVo,39129
+pip/_vendor/pyparsing/results.py,sha256=HgNvWVXBdQP-Q6PtJfoCEeOJk2nwEvG-2KVKC5sGA30,25341
+pip/_vendor/pyparsing/testing.py,sha256=7tu4Abp4uSeJV0N_yEPRmmNUhpd18ZQP3CrX41DM814,13402
+pip/_vendor/pyparsing/unicode.py,sha256=fwuhMj30SQ165Cv7HJpu-rSxGbRm93kN9L4Ei7VGc1Y,10787
+pip/_vendor/pyparsing/util.py,sha256=kq772O5YSeXOSdP-M31EWpbH_ayj7BMHImBYo9xPD5M,6805
+pip/_vendor/requests/__init__.py,sha256=3XN75ZS4slWy3TQsEGF7-Q6l2R146teU-s2_rXNhxhU,5178
+pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/api.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/auth.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/certs.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/compat.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/help.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/models.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/packages.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/structures.cpython-310.pyc,,
+pip/_vendor/requests/__pycache__/utils.cpython-310.pyc,,
+pip/_vendor/requests/__version__.py,sha256=nJVa3ef2yRyeYMhy7yHnRyjjpnNTDykZsE4Sp9irBC4,440
+pip/_vendor/requests/_internal_utils.py,sha256=aSPlF4uDhtfKxEayZJJ7KkAxtormeTfpwKSBSwtmAUw,1397
+pip/_vendor/requests/adapters.py,sha256=GFEz5koZaMZD86v0SHXKVB5SE9MgslEjkCQzldkNwVM,21443
+pip/_vendor/requests/api.py,sha256=dyvkDd5itC9z2g0wHl_YfD1yf6YwpGWLO7__8e21nks,6377
+pip/_vendor/requests/auth.py,sha256=h-HLlVx9j8rKV5hfSAycP2ApOSglTz77R0tz7qCbbEE,10187
+pip/_vendor/requests/certs.py,sha256=kHDlkK_beuHXeMPc5jta2wgl8gdKeUWt5f2nTDVrvt8,441
+pip/_vendor/requests/compat.py,sha256=IhK9quyX0RRuWTNcg6d2JGSAOUbM6mym2p_2XjLTwf4,1286
+pip/_vendor/requests/cookies.py,sha256=kD3kNEcCj-mxbtf5fJsSaT86eGoEYpD3X0CSgpzl7BM,18560
+pip/_vendor/requests/exceptions.py,sha256=FA-_kVwBZ2jhXauRctN_ewHVK25b-fj0Azyz1THQ0Kk,3823
+pip/_vendor/requests/help.py,sha256=FnAAklv8MGm_qb2UilDQgS6l0cUttiCFKUjx0zn2XNA,3879
+pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733
+pip/_vendor/requests/models.py,sha256=GZRMMrGwDOLVvVfFHLUq0qTfIWDla3NcFHa1f5xs9Q8,35287
+pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695
+pip/_vendor/requests/sessions.py,sha256=KUqJcRRLovNefUs7ScOXSUVCcfSayTFWtbiJ7gOSlTI,30180
+pip/_vendor/requests/status_codes.py,sha256=FvHmT5uH-_uimtRz5hH9VCbt7VV-Nei2J9upbej6j8g,4235
+pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912
+pip/_vendor/requests/utils.py,sha256=0gzSOcx9Ya4liAbHnHuwt4jM78lzCZZoDFgkmsInNUg,33240
+pip/_vendor/resolvelib/__init__.py,sha256=UL-B2BDI0_TRIqkfGwLHKLxY-LjBlomz7941wDqzB1I,537
+pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc,,
+pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc,,
+pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc,,
+pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc,,
+pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc,,
+pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156
+pip/_vendor/resolvelib/providers.py,sha256=roVmFBItQJ0TkhNua65h8LdNny7rmeqVEXZu90QiP4o,5872
+pip/_vendor/resolvelib/reporters.py,sha256=fW91NKf-lK8XN7i6Yd_rczL5QeOT3sc6AKhpaTEnP3E,1583
+pip/_vendor/resolvelib/resolvers.py,sha256=2wYzVGBGerbmcIpH8cFmgSKgLSETz8jmwBMGjCBMHG4,17592
+pip/_vendor/resolvelib/structs.py,sha256=IVIYof6sA_N4ZEiE1C1UhzTX495brCNnyCdgq6CYq28,4794
+pip/_vendor/rich/__init__.py,sha256=zREyQ22R3zKg8gMdhiikczdVQYtZNeayHNrbBg5scm0,5944
+pip/_vendor/rich/__main__.py,sha256=BmTmBWI93ytq75IEPi1uAAdeRYzFfDbgaAXjsX1ogig,8808
+pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/abc.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/align.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/bar.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/box.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/cells.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/color.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/columns.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/console.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/containers.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/control.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/errors.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/json.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/layout.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/live.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/logging.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/markup.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/measure.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/padding.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/pager.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/palette.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/panel.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/progress.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/region.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/repr.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/rule.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/scope.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/screen.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/segment.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/status.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/style.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/styled.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/table.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/text.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/theme.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/themes.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc,,
+pip/_vendor/rich/__pycache__/tree.cpython-310.pyc,,
+pip/_vendor/rich/_cell_widths.py,sha256=2n4EiJi3X9sqIq0O16kUZ_zy6UYMd3xFfChlKfnW1Hc,10096
+pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235
+pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064
+pip/_vendor/rich/_export_format.py,sha256=nHArqOljIlYn6NruhWsAsh-fHo7oJC3y9BDJyAa-QYQ,2114
+pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265
+pip/_vendor/rich/_inspect.py,sha256=oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk,9695
+pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225
+pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236
+pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063
+pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423
+pip/_vendor/rich/_ratio.py,sha256=2lLSliL025Y-YMfdfGbutkQDevhcyDqc-DtUYW9mU70,5472
+pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919
+pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351
+pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417
+pip/_vendor/rich/_win32_console.py,sha256=P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24_gug,22820
+pip/_vendor/rich/_windows.py,sha256=dvNl9TmfPzNVxiKk5WDFihErZ5796g2UC9-KGGyfXmk,1926
+pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783
+pip/_vendor/rich/_wrap.py,sha256=xfV_9t0Sg6rzimmrDru8fCVmUlalYAcHLDfrJZnbbwQ,1840
+pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890
+pip/_vendor/rich/align.py,sha256=FV6_GS-8uhIyViMng3hkIWSFaTgMohK1Oqyjl8I8mGE,10368
+pip/_vendor/rich/ansi.py,sha256=HtaPG7dvgL6_yo0sQmx5CM05DJ4_1goY5SWXXOYNaKs,6820
+pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264
+pip/_vendor/rich/box.py,sha256=1Iv1sUWqjtp5XwLwGH-AJ8HgyXZ7dRFUkO0z3M_bRl8,9864
+pip/_vendor/rich/cells.py,sha256=zMjFI15wCpgjLR14lHdfFMVC6qMDi5OsKIB0PYZBBMk,4503
+pip/_vendor/rich/color.py,sha256=kp87L8V4-3qayE6CUxtW_nP8Ujfew_-DAhNwYMXBMOY,17957
+pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054
+pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131
+pip/_vendor/rich/console.py,sha256=bTT9DNX03V4cQXefg22d-gLSs_e_ZY2zdCvLIlEyU2Q,95885
+pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288
+pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497
+pip/_vendor/rich/control.py,sha256=DSkHTUQLorfSERAKE_oTAEUFefZnZp4bQb4q8rHbKws,6630
+pip/_vendor/rich/default_styles.py,sha256=WqVh-RPNEsx0Wxf3fhS_fCn-wVqgJ6Qfo-Zg7CoCsLE,7954
+pip/_vendor/rich/diagnose.py,sha256=an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24,972
+pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501
+pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642
+pip/_vendor/rich/file_proxy.py,sha256=4gCbGRXg0rW35Plaf0UVvj3dfENHuzc_n8I_dBqxI7o,1616
+pip/_vendor/rich/filesize.py,sha256=yShoVpARafJBreyZFaAhC4OhnJ6ydC1WXR-Ez4wU_YQ,2507
+pip/_vendor/rich/highlighter.py,sha256=3WW6PACGlq0e3YDjfqiMBQ0dYZwu7pcoFYUgJy01nb0,9585
+pip/_vendor/rich/json.py,sha256=RCm4lXBXrjvXHpqrWPH8wdGP0jEo4IohLmkddlhRY18,5051
+pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252
+pip/_vendor/rich/layout.py,sha256=E3xJ4fomizUADwime3VA0lBXoMSPl9blEokIzVBjO0Q,14074
+pip/_vendor/rich/live.py,sha256=emVaLUua-FKSYqZXmtJJjBIstO99CqMOuA6vMAKVkO0,14172
+pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667
+pip/_vendor/rich/logging.py,sha256=10j13lPr-QuYqEEBz_2aRJp8gNYvSN2wmCUlUqJcPLM,11471
+pip/_vendor/rich/markup.py,sha256=xzF4uAafiEeEYDJYt_vUnJOGoTU8RrH-PH7WcWYXjCg,8198
+pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305
+pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970
+pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828
+pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396
+pip/_vendor/rich/panel.py,sha256=CzdojkDAjxAKgvDxis47nWzUh1V2NniOqkJJQajosG8,8744
+pip/_vendor/rich/pretty.py,sha256=CalVLVW3mvTn1hvI9Pgi2v-y4S-5zUWBK-PH7SlVs-U,36576
+pip/_vendor/rich/progress.py,sha256=zjQRwd3TmDnAvSjTPsNPHFjmqE9GOEX3bf0Lj56hIL8,59746
+pip/_vendor/rich/progress_bar.py,sha256=zHHaFPEfIhW2fq6Fnl5vBY7AUpP1N0HVGElISUHsnqw,8161
+pip/_vendor/rich/prompt.py,sha256=x0mW-pIPodJM4ry6grgmmLrl8VZp99kqcmdnBe70YYA,11303
+pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391
+pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166
+pip/_vendor/rich/repr.py,sha256=Je91CIrZN_av9L3FRCKCs5yoX2LvczrCNKqUbVsjUvQ,4449
+pip/_vendor/rich/rule.py,sha256=V6AWI0wCb6DB0rvN967FRMlQrdlG7HoZdfEAHyeG8CM,4773
+pip/_vendor/rich/scope.py,sha256=HX13XsJfqzQHpPfw4Jn9JmJjCsRj9uhHxXQEqjkwyLA,2842
+pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591
+pip/_vendor/rich/segment.py,sha256=6XdX0MfL18tUCaUWDWncIqx0wpq3GiaqzhYP779JvRA,24224
+pip/_vendor/rich/spinner.py,sha256=7b8MCleS4fa46HX0AzF98zfu6ZM6fAL0UgYzPOoakF4,4374
+pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425
+pip/_vendor/rich/style.py,sha256=4WnUEkHNMp9Tfmd8cmbxWGby7QeTk2LUTQzFSs46EQc,26240
+pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258
+pip/_vendor/rich/syntax.py,sha256=_M08KbE11nNWNBPooFLKAA7lWkThPzlGUsuesxQYsuA,34697
+pip/_vendor/rich/table.py,sha256=r_lahmj45cINCWLYaIjq9yEv3gve8E6bkYTP8NDqApE,39515
+pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370
+pip/_vendor/rich/text.py,sha256=oajdGIeHcLcSdOwbC48_20ylDsHAS5fsPZD_Ih0clyA,44666
+pip/_vendor/rich/theme.py,sha256=GKNtQhDBZKAzDaY0vQVQQFzbc0uWfFe6CJXA-syT7zQ,3627
+pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102
+pip/_vendor/rich/traceback.py,sha256=MORQpXH7AvhAAThW8oIbtwffXb8M6XRkSkcJ52JuA3g,26060
+pip/_vendor/rich/tree.py,sha256=BMbUYNjS9uodNPfvtY_odmU09GA5QzcMbQ5cJZhllQI,9169
+pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549
+pip/_vendor/tenacity/__init__.py,sha256=GLLsTFD4Bd5VDgTR6mU_FxyOsrxc48qONorVaRebeD4,18257
+pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc,,
+pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc,,
+pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc,,
+pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc,,
+pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc,,
+pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc,,
+pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc,,
+pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc,,
+pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc,,
+pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc,,
+pip/_vendor/tenacity/_asyncio.py,sha256=HEb0BVJEeBJE9P-m9XBxh1KcaF96BwoeqkJCL5sbVcQ,3314
+pip/_vendor/tenacity/_utils.py,sha256=-y68scDcyoqvTJuJJ0GTfjdSCljEYlbCYvgk7nM4NdM,1944
+pip/_vendor/tenacity/after.py,sha256=dlmyxxFy2uqpLXDr838DiEd7jgv2AGthsWHGYcGYsaI,1496
+pip/_vendor/tenacity/before.py,sha256=7XtvRmO0dRWUp8SVn24OvIiGFj8-4OP5muQRUiWgLh0,1376
+pip/_vendor/tenacity/before_sleep.py,sha256=ThyDvqKU5yle_IvYQz_b6Tp6UjUS0PhVp6zgqYl9U6Y,1908
+pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383
+pip/_vendor/tenacity/retry.py,sha256=62R71W59bQjuNyFKsDM7hE2aEkEPtwNBRA0tnsEvgSk,6645
+pip/_vendor/tenacity/stop.py,sha256=sKHmHaoSaW6sKu3dTxUVKr1-stVkY7lw4Y9yjZU30zQ,2790
+pip/_vendor/tenacity/tornadoweb.py,sha256=E8lWO2nwe6dJgoB-N2HhQprYLDLB_UdSgFnv-EN6wKE,2145
+pip/_vendor/tenacity/wait.py,sha256=e_Saa6I2tsNLpCL1t9897wN2fGb0XQMQlE4bU2t9V2w,6691
+pip/_vendor/tomli/__init__.py,sha256=JhUwV66DB1g4Hvt1UQCVMdfCu-IgAV8FXmvDU9onxd4,396
+pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc,,
+pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc,,
+pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc,,
+pip/_vendor/tomli/_parser.py,sha256=g9-ENaALS-B8dokYpCuzUFalWlog7T-SIYMjLZSWrtM,22633
+pip/_vendor/tomli/_re.py,sha256=dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly-w,2943
+pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254
+pip/_vendor/typing_extensions.py,sha256=U_PyumPFBkMiR_Iq78QWZXdPprTywptECB2WRIQjDv0,75420
+pip/_vendor/urllib3/__init__.py,sha256=j3yzHIbmW7CS-IKQJ9-PPQf_YKO8EOAey_rMW0UR7us,2763
+pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc,,
+pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc,,
+pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc,,
+pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc,,
+pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc,,
+pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc,,
+pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc,,
+pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc,,
+pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc,,
+pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc,,
+pip/_vendor/urllib3/_collections.py,sha256=Rp1mVyBgc_UlAcp6M3at1skJBXR5J43NawRTvW2g_XY,10811
+pip/_vendor/urllib3/_version.py,sha256=kDAZ-bEcWgqZsVJELrYbVo4buZP5eBBOGl_X7VA0Ic4,64
+pip/_vendor/urllib3/connection.py,sha256=8976wL6sGeVMW0JnXvx5mD00yXu87uQjxtB9_VL8dx8,20070
+pip/_vendor/urllib3/connectionpool.py,sha256=vEzk1iJEw1qR2vHBo7m3Y98iDfna6rKkUz3AyK5lJKQ,39093
+pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc,,
+pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc,,
+pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc,,
+pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc,,
+pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc,,
+pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc,,
+pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957
+pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc,,
+pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc,,
+pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632
+pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922
+pip/_vendor/urllib3/contrib/appengine.py,sha256=lfzpHFmJiO82shClLEm3QB62SYgHWnjpZOH_2JhU5Tc,11034
+pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=ej9gGvfAb2Gt00lafFp45SIoRz-QwrQ4WChm6gQmAlM,4538
+pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=oR_4W0U0gaDYBN8Q5qz_VZ8xrYZsoXve52RwIKdYGbc,16899
+pip/_vendor/urllib3/contrib/securetransport.py,sha256=yhZdmVjY6PI6EeFbp7qYOp6-vp1Rkv2NMuOGaEj7pmc,34448
+pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097
+pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217
+pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579
+pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440
+pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc,,
+pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc,,
+pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417
+pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665
+pip/_vendor/urllib3/poolmanager.py,sha256=0KOOJECoeLYVjUHvv-0h4Oq3FFQQ2yb-Fnjkbj8gJO0,19786
+pip/_vendor/urllib3/request.py,sha256=ZFSIqX0C6WizixecChZ3_okyu7BEv0lZu1VT0s6h4SM,5985
+pip/_vendor/urllib3/response.py,sha256=36JUM28H4dHsuCQgIPeN91LNcK8r1wBUJGFLk3ALfJc,28156
+pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155
+pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc,,
+pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc,,
+pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901
+pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605
+pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498
+pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997
+pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510
+pip/_vendor/urllib3/util/retry.py,sha256=iESg2PvViNdXBRY4MpL4h0kqwOOkHkxmLn1kkhFHPU8,22001
+pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177
+pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758
+pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895
+pip/_vendor/urllib3/util/timeout.py,sha256=QSbBUNOB9yh6AnDn61SrLQ0hg5oz0I9-uXEG91AJuIg,10003
+pip/_vendor/urllib3/util/url.py,sha256=49HwObaTUUjqVe4qvSUvIjZyf3ghgNA6-OLm3kmkFKM,14287
+pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403
+pip/_vendor/vendor.txt,sha256=8XILGklF_LcEc20OonK8_bpFH7tG7wLotFxI0k3FMU0,469
+pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579
+pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc,,
+pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc,,
+pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc,,
+pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc,,
+pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc,,
+pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979
+pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305
+pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563
+pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307
+pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286
diff --git a/venv/Include/.gitkeep b/app_env/Lib/site-packages/pip-22.2.2.dist-info/REQUESTED
similarity index 100%
rename from venv/Include/.gitkeep
rename to app_env/Lib/site-packages/pip-22.2.2.dist-info/REQUESTED
diff --git a/venv/Lib/site-packages/setuptools-63.2.0.dist-info/WHEEL b/app_env/Lib/site-packages/pip-22.2.2.dist-info/WHEEL
similarity index 100%
rename from venv/Lib/site-packages/setuptools-63.2.0.dist-info/WHEEL
rename to app_env/Lib/site-packages/pip-22.2.2.dist-info/WHEEL
diff --git a/venv/Lib/site-packages/pip-22.2.2.dist-info/entry_points.txt b/app_env/Lib/site-packages/pip-22.2.2.dist-info/entry_points.txt
similarity index 100%
rename from venv/Lib/site-packages/pip-22.2.2.dist-info/entry_points.txt
rename to app_env/Lib/site-packages/pip-22.2.2.dist-info/entry_points.txt
diff --git a/venv/Lib/site-packages/pip-22.2.2.dist-info/top_level.txt b/app_env/Lib/site-packages/pip-22.2.2.dist-info/top_level.txt
similarity index 100%
rename from venv/Lib/site-packages/pip-22.2.2.dist-info/top_level.txt
rename to app_env/Lib/site-packages/pip-22.2.2.dist-info/top_level.txt
diff --git a/venv/Lib/site-packages/pip/__init__.py b/app_env/Lib/site-packages/pip/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/__init__.py
rename to app_env/Lib/site-packages/pip/__init__.py
diff --git a/venv/Lib/site-packages/pip/__main__.py b/app_env/Lib/site-packages/pip/__main__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/__main__.py
rename to app_env/Lib/site-packages/pip/__main__.py
diff --git a/venv/Lib/site-packages/pip/__pip-runner__.py b/app_env/Lib/site-packages/pip/__pip-runner__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/__pip-runner__.py
rename to app_env/Lib/site-packages/pip/__pip-runner__.py
diff --git a/app_env/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b3b03efc
Binary files /dev/null and b/app_env/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc b/app_env/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc
new file mode 100644
index 00000000..a68415f2
Binary files /dev/null and b/app_env/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc b/app_env/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc
index e6397f04..b21a61f6 100644
Binary files a/venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc and b/app_env/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/__init__.py b/app_env/Lib/site-packages/pip/_internal/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..392bf338
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc
index 752f9d10..e9707f7e 100644
Binary files a/venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc
new file mode 100644
index 00000000..efa70df5
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc
new file mode 100644
index 00000000..118c9679
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..adb01ef7
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc
new file mode 100644
index 00000000..cb2cc97c
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc
similarity index 83%
rename from venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc
index 119539ef..8295ce28 100644
Binary files a/venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc
index 3ec91ea7..f619c995 100644
Binary files a/venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc
index a0a9194d..bba668c9 100644
Binary files a/venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/build_env.py b/app_env/Lib/site-packages/pip/_internal/build_env.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/build_env.py
rename to app_env/Lib/site-packages/pip/_internal/build_env.py
diff --git a/venv/Lib/site-packages/pip/_internal/cache.py b/app_env/Lib/site-packages/pip/_internal/cache.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cache.py
rename to app_env/Lib/site-packages/pip/_internal/cache.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__init__.py b/app_env/Lib/site-packages/pip/_internal/cli/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/cli/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..65f2a636
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc
index cc9cdb71..ff2de48d 100644
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc
index 5eebfe6e..3af1287c 100644
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc
index f70c7f81..fd23c4b3 100644
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc
similarity index 80%
rename from venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc
index 5e219e14..53b41335 100644
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc
new file mode 100644
index 00000000..f158467a
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc
index f12628cf..41d05ee5 100644
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc
new file mode 100644
index 00000000..8c81ae91
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc
index b0e62238..7d6b3faf 100644
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc
index 09b9d04e..88886a10 100644
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc
index 34970ee2..8901e4fd 100644
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc
new file mode 100644
index 00000000..3c25f304
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/autocompletion.py b/app_env/Lib/site-packages/pip/_internal/cli/autocompletion.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/autocompletion.py
rename to app_env/Lib/site-packages/pip/_internal/cli/autocompletion.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/base_command.py b/app_env/Lib/site-packages/pip/_internal/cli/base_command.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/base_command.py
rename to app_env/Lib/site-packages/pip/_internal/cli/base_command.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py b/app_env/Lib/site-packages/pip/_internal/cli/cmdoptions.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py
rename to app_env/Lib/site-packages/pip/_internal/cli/cmdoptions.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/command_context.py b/app_env/Lib/site-packages/pip/_internal/cli/command_context.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/command_context.py
rename to app_env/Lib/site-packages/pip/_internal/cli/command_context.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/main.py b/app_env/Lib/site-packages/pip/_internal/cli/main.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/main.py
rename to app_env/Lib/site-packages/pip/_internal/cli/main.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/main_parser.py b/app_env/Lib/site-packages/pip/_internal/cli/main_parser.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/main_parser.py
rename to app_env/Lib/site-packages/pip/_internal/cli/main_parser.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/parser.py b/app_env/Lib/site-packages/pip/_internal/cli/parser.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/parser.py
rename to app_env/Lib/site-packages/pip/_internal/cli/parser.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/progress_bars.py b/app_env/Lib/site-packages/pip/_internal/cli/progress_bars.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/progress_bars.py
rename to app_env/Lib/site-packages/pip/_internal/cli/progress_bars.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/req_command.py b/app_env/Lib/site-packages/pip/_internal/cli/req_command.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/req_command.py
rename to app_env/Lib/site-packages/pip/_internal/cli/req_command.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/spinners.py b/app_env/Lib/site-packages/pip/_internal/cli/spinners.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/spinners.py
rename to app_env/Lib/site-packages/pip/_internal/cli/spinners.py
diff --git a/venv/Lib/site-packages/pip/_internal/cli/status_codes.py b/app_env/Lib/site-packages/pip/_internal/cli/status_codes.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/cli/status_codes.py
rename to app_env/Lib/site-packages/pip/_internal/cli/status_codes.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__init__.py b/app_env/Lib/site-packages/pip/_internal/commands/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/commands/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..a5e67fe1
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc
new file mode 100644
index 00000000..e59da366
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc
new file mode 100644
index 00000000..2fb8d4f2
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc
index 4d2ce481..728ed46e 100644
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc
new file mode 100644
index 00000000..d630995d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc
new file mode 100644
index 00000000..e169e3f6
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc
new file mode 100644
index 00000000..9c2a660a
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc
new file mode 100644
index 00000000..938c02eb
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc
similarity index 81%
rename from venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc
index ef304ac4..cfc319fc 100644
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc
new file mode 100644
index 00000000..9611400e
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc
new file mode 100644
index 00000000..684b35eb
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc
new file mode 100644
index 00000000..a1c50b13
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc
new file mode 100644
index 00000000..2fab604e
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc
new file mode 100644
index 00000000..9fba0341
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc
new file mode 100644
index 00000000..6c077d82
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc
index e783947b..c4ebcb09 100644
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc
index b727fdc7..528f2497 100644
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc
new file mode 100644
index 00000000..e8dfe2c3
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/cache.py b/app_env/Lib/site-packages/pip/_internal/commands/cache.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/cache.py
rename to app_env/Lib/site-packages/pip/_internal/commands/cache.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/check.py b/app_env/Lib/site-packages/pip/_internal/commands/check.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/check.py
rename to app_env/Lib/site-packages/pip/_internal/commands/check.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/completion.py b/app_env/Lib/site-packages/pip/_internal/commands/completion.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/completion.py
rename to app_env/Lib/site-packages/pip/_internal/commands/completion.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/configuration.py b/app_env/Lib/site-packages/pip/_internal/commands/configuration.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/configuration.py
rename to app_env/Lib/site-packages/pip/_internal/commands/configuration.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/debug.py b/app_env/Lib/site-packages/pip/_internal/commands/debug.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/debug.py
rename to app_env/Lib/site-packages/pip/_internal/commands/debug.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/download.py b/app_env/Lib/site-packages/pip/_internal/commands/download.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/download.py
rename to app_env/Lib/site-packages/pip/_internal/commands/download.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/freeze.py b/app_env/Lib/site-packages/pip/_internal/commands/freeze.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/freeze.py
rename to app_env/Lib/site-packages/pip/_internal/commands/freeze.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/hash.py b/app_env/Lib/site-packages/pip/_internal/commands/hash.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/hash.py
rename to app_env/Lib/site-packages/pip/_internal/commands/hash.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/help.py b/app_env/Lib/site-packages/pip/_internal/commands/help.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/help.py
rename to app_env/Lib/site-packages/pip/_internal/commands/help.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/index.py b/app_env/Lib/site-packages/pip/_internal/commands/index.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/index.py
rename to app_env/Lib/site-packages/pip/_internal/commands/index.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/inspect.py b/app_env/Lib/site-packages/pip/_internal/commands/inspect.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/inspect.py
rename to app_env/Lib/site-packages/pip/_internal/commands/inspect.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/install.py b/app_env/Lib/site-packages/pip/_internal/commands/install.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/install.py
rename to app_env/Lib/site-packages/pip/_internal/commands/install.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/list.py b/app_env/Lib/site-packages/pip/_internal/commands/list.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/list.py
rename to app_env/Lib/site-packages/pip/_internal/commands/list.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/search.py b/app_env/Lib/site-packages/pip/_internal/commands/search.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/search.py
rename to app_env/Lib/site-packages/pip/_internal/commands/search.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/show.py b/app_env/Lib/site-packages/pip/_internal/commands/show.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/show.py
rename to app_env/Lib/site-packages/pip/_internal/commands/show.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/uninstall.py b/app_env/Lib/site-packages/pip/_internal/commands/uninstall.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/uninstall.py
rename to app_env/Lib/site-packages/pip/_internal/commands/uninstall.py
diff --git a/venv/Lib/site-packages/pip/_internal/commands/wheel.py b/app_env/Lib/site-packages/pip/_internal/commands/wheel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/commands/wheel.py
rename to app_env/Lib/site-packages/pip/_internal/commands/wheel.py
diff --git a/venv/Lib/site-packages/pip/_internal/configuration.py b/app_env/Lib/site-packages/pip/_internal/configuration.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/configuration.py
rename to app_env/Lib/site-packages/pip/_internal/configuration.py
diff --git a/venv/Lib/site-packages/pip/_internal/distributions/__init__.py b/app_env/Lib/site-packages/pip/_internal/distributions/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/distributions/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/distributions/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4a6100bb
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..c3e7675b
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc
new file mode 100644
index 00000000..f6ae0235
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc
new file mode 100644
index 00000000..dda136a6
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc
new file mode 100644
index 00000000..4697a083
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/distributions/base.py b/app_env/Lib/site-packages/pip/_internal/distributions/base.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/distributions/base.py
rename to app_env/Lib/site-packages/pip/_internal/distributions/base.py
diff --git a/venv/Lib/site-packages/pip/_internal/distributions/installed.py b/app_env/Lib/site-packages/pip/_internal/distributions/installed.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/distributions/installed.py
rename to app_env/Lib/site-packages/pip/_internal/distributions/installed.py
diff --git a/venv/Lib/site-packages/pip/_internal/distributions/sdist.py b/app_env/Lib/site-packages/pip/_internal/distributions/sdist.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/distributions/sdist.py
rename to app_env/Lib/site-packages/pip/_internal/distributions/sdist.py
diff --git a/venv/Lib/site-packages/pip/_internal/distributions/wheel.py b/app_env/Lib/site-packages/pip/_internal/distributions/wheel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/distributions/wheel.py
rename to app_env/Lib/site-packages/pip/_internal/distributions/wheel.py
diff --git a/venv/Lib/site-packages/pip/_internal/exceptions.py b/app_env/Lib/site-packages/pip/_internal/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/exceptions.py
rename to app_env/Lib/site-packages/pip/_internal/exceptions.py
diff --git a/venv/Lib/site-packages/pip/_internal/index/__init__.py b/app_env/Lib/site-packages/pip/_internal/index/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/index/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/index/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..2838a3a1
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc
index 8f6557f1..d0c28068 100644
Binary files a/venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc
index 18599ea4..a8f31170 100644
Binary files a/venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc
index 6b59937e..cacbd545 100644
Binary files a/venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/index/collector.py b/app_env/Lib/site-packages/pip/_internal/index/collector.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/index/collector.py
rename to app_env/Lib/site-packages/pip/_internal/index/collector.py
diff --git a/venv/Lib/site-packages/pip/_internal/index/package_finder.py b/app_env/Lib/site-packages/pip/_internal/index/package_finder.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/index/package_finder.py
rename to app_env/Lib/site-packages/pip/_internal/index/package_finder.py
diff --git a/venv/Lib/site-packages/pip/_internal/index/sources.py b/app_env/Lib/site-packages/pip/_internal/index/sources.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/index/sources.py
rename to app_env/Lib/site-packages/pip/_internal/index/sources.py
diff --git a/venv/Lib/site-packages/pip/_internal/locations/__init__.py b/app_env/Lib/site-packages/pip/_internal/locations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/locations/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/locations/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c2cdad29
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc
similarity index 85%
rename from venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc
index 8b90987e..50d0a8d0 100644
Binary files a/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc
index 2f655800..3d6cded2 100644
Binary files a/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..ecfc363b
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/locations/_distutils.py b/app_env/Lib/site-packages/pip/_internal/locations/_distutils.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/locations/_distutils.py
rename to app_env/Lib/site-packages/pip/_internal/locations/_distutils.py
diff --git a/venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py b/app_env/Lib/site-packages/pip/_internal/locations/_sysconfig.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py
rename to app_env/Lib/site-packages/pip/_internal/locations/_sysconfig.py
diff --git a/venv/Lib/site-packages/pip/_internal/locations/base.py b/app_env/Lib/site-packages/pip/_internal/locations/base.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/locations/base.py
rename to app_env/Lib/site-packages/pip/_internal/locations/base.py
diff --git a/venv/Lib/site-packages/pip/_internal/main.py b/app_env/Lib/site-packages/pip/_internal/main.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/main.py
rename to app_env/Lib/site-packages/pip/_internal/main.py
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/__init__.py b/app_env/Lib/site-packages/pip/_internal/metadata/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/metadata/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/metadata/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9f31cfa6
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc
new file mode 100644
index 00000000..591f2255
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..ae162fee
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc
index e8e37452..510a1f79 100644
Binary files a/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/_json.py b/app_env/Lib/site-packages/pip/_internal/metadata/_json.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/metadata/_json.py
rename to app_env/Lib/site-packages/pip/_internal/metadata/_json.py
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/base.py b/app_env/Lib/site-packages/pip/_internal/metadata/base.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/metadata/base.py
rename to app_env/Lib/site-packages/pip/_internal/metadata/base.py
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..705d8de7
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc
new file mode 100644
index 00000000..46a0e327
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc
index cbc7bfe0..78628433 100644
Binary files a/venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc
index 3f43945b..2fe7b61f 100644
Binary files a/venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py
rename to app_env/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py
rename to app_env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py b/app_env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py
rename to app_env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py b/app_env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py
rename to app_env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/__init__.py b/app_env/Lib/site-packages/pip/_internal/models/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/models/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..36f0f608
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc
index 6f2080f1..d96a8dab 100644
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc
index eded3069..adcbbe9c 100644
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc
index f3070247..2986142c 100644
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc
new file mode 100644
index 00000000..cbaef4bc
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc
index 8448ba8b..0e4f4477 100644
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc
index 289bbf64..6266b8a3 100644
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc
similarity index 79%
rename from venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc
index 0df6a4f4..92e7328a 100644
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc
index 9dd8fae3..b74c92fa 100644
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc
similarity index 85%
rename from venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc
index 5286e58e..3f645862 100644
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc
index d30f369d..5fd69416 100644
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc
new file mode 100644
index 00000000..ba94316b
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/candidate.py b/app_env/Lib/site-packages/pip/_internal/models/candidate.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/candidate.py
rename to app_env/Lib/site-packages/pip/_internal/models/candidate.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/direct_url.py b/app_env/Lib/site-packages/pip/_internal/models/direct_url.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/direct_url.py
rename to app_env/Lib/site-packages/pip/_internal/models/direct_url.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/format_control.py b/app_env/Lib/site-packages/pip/_internal/models/format_control.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/format_control.py
rename to app_env/Lib/site-packages/pip/_internal/models/format_control.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/index.py b/app_env/Lib/site-packages/pip/_internal/models/index.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/index.py
rename to app_env/Lib/site-packages/pip/_internal/models/index.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/installation_report.py b/app_env/Lib/site-packages/pip/_internal/models/installation_report.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/installation_report.py
rename to app_env/Lib/site-packages/pip/_internal/models/installation_report.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/link.py b/app_env/Lib/site-packages/pip/_internal/models/link.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/link.py
rename to app_env/Lib/site-packages/pip/_internal/models/link.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/scheme.py b/app_env/Lib/site-packages/pip/_internal/models/scheme.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/scheme.py
rename to app_env/Lib/site-packages/pip/_internal/models/scheme.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/search_scope.py b/app_env/Lib/site-packages/pip/_internal/models/search_scope.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/search_scope.py
rename to app_env/Lib/site-packages/pip/_internal/models/search_scope.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/selection_prefs.py b/app_env/Lib/site-packages/pip/_internal/models/selection_prefs.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/selection_prefs.py
rename to app_env/Lib/site-packages/pip/_internal/models/selection_prefs.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/target_python.py b/app_env/Lib/site-packages/pip/_internal/models/target_python.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/target_python.py
rename to app_env/Lib/site-packages/pip/_internal/models/target_python.py
diff --git a/venv/Lib/site-packages/pip/_internal/models/wheel.py b/app_env/Lib/site-packages/pip/_internal/models/wheel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/models/wheel.py
rename to app_env/Lib/site-packages/pip/_internal/models/wheel.py
diff --git a/venv/Lib/site-packages/pip/_internal/network/__init__.py b/app_env/Lib/site-packages/pip/_internal/network/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/network/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/network/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..92889592
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc
new file mode 100644
index 00000000..0d1cfcb6
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc
new file mode 100644
index 00000000..5d431054
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc
new file mode 100644
index 00000000..0d747d77
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc
index 34040483..5ee05d4e 100644
Binary files a/venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc
new file mode 100644
index 00000000..772b0707
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..c7b90a1d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc
index 4180bc9b..89745363 100644
Binary files a/venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/network/auth.py b/app_env/Lib/site-packages/pip/_internal/network/auth.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/network/auth.py
rename to app_env/Lib/site-packages/pip/_internal/network/auth.py
diff --git a/venv/Lib/site-packages/pip/_internal/network/cache.py b/app_env/Lib/site-packages/pip/_internal/network/cache.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/network/cache.py
rename to app_env/Lib/site-packages/pip/_internal/network/cache.py
diff --git a/venv/Lib/site-packages/pip/_internal/network/download.py b/app_env/Lib/site-packages/pip/_internal/network/download.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/network/download.py
rename to app_env/Lib/site-packages/pip/_internal/network/download.py
diff --git a/venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py b/app_env/Lib/site-packages/pip/_internal/network/lazy_wheel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py
rename to app_env/Lib/site-packages/pip/_internal/network/lazy_wheel.py
diff --git a/venv/Lib/site-packages/pip/_internal/network/session.py b/app_env/Lib/site-packages/pip/_internal/network/session.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/network/session.py
rename to app_env/Lib/site-packages/pip/_internal/network/session.py
diff --git a/venv/Lib/site-packages/pip/_internal/network/utils.py b/app_env/Lib/site-packages/pip/_internal/network/utils.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/network/utils.py
rename to app_env/Lib/site-packages/pip/_internal/network/utils.py
diff --git a/venv/Lib/site-packages/pip/_internal/network/xmlrpc.py b/app_env/Lib/site-packages/pip/_internal/network/xmlrpc.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/network/xmlrpc.py
rename to app_env/Lib/site-packages/pip/_internal/network/xmlrpc.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py b/app_env/Lib/site-packages/pip/_internal/operations/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/build/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/operations/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..188a8f61
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc
new file mode 100644
index 00000000..e54595b6
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc
new file mode 100644
index 00000000..42b9e920
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc
index 9458bcc0..335a89e7 100644
Binary files a/venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/__init__.py b/app_env/Lib/site-packages/pip/_internal/operations/build/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/operations/build/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ff661049
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc
index 7100cd88..258c42dd 100644
Binary files a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc
new file mode 100644
index 00000000..090ec371
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc
new file mode 100644
index 00000000..dbd97965
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc
index 4ef99fa8..dfaceca0 100644
Binary files a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc
new file mode 100644
index 00000000..154d3f80
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc
similarity index 81%
rename from venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc
index dba5b240..d6ee8a48 100644
Binary files a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc
index 40fcae3b..54294104 100644
Binary files a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py b/app_env/Lib/site-packages/pip/_internal/operations/build/build_tracker.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py
rename to app_env/Lib/site-packages/pip/_internal/operations/build/build_tracker.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/metadata.py b/app_env/Lib/site-packages/pip/_internal/operations/build/metadata.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/build/metadata.py
rename to app_env/Lib/site-packages/pip/_internal/operations/build/metadata.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py b/app_env/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py
rename to app_env/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py b/app_env/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py
rename to app_env/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/wheel.py b/app_env/Lib/site-packages/pip/_internal/operations/build/wheel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/build/wheel.py
rename to app_env/Lib/site-packages/pip/_internal/operations/build/wheel.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py b/app_env/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py
rename to app_env/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py b/app_env/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py
rename to app_env/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/check.py b/app_env/Lib/site-packages/pip/_internal/operations/check.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/check.py
rename to app_env/Lib/site-packages/pip/_internal/operations/check.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/freeze.py b/app_env/Lib/site-packages/pip/_internal/operations/freeze.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/freeze.py
rename to app_env/Lib/site-packages/pip/_internal/operations/freeze.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/install/__init__.py b/app_env/Lib/site-packages/pip/_internal/operations/install/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/install/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/operations/install/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9bf4a2e5
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc
similarity index 79%
rename from venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc
index 2130aac1..a2311437 100644
Binary files a/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc
index 4963ad04..f2fe167e 100644
Binary files a/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc
new file mode 100644
index 00000000..e35b1253
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py b/app_env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py
rename to app_env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/install/legacy.py b/app_env/Lib/site-packages/pip/_internal/operations/install/legacy.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/install/legacy.py
rename to app_env/Lib/site-packages/pip/_internal/operations/install/legacy.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/install/wheel.py b/app_env/Lib/site-packages/pip/_internal/operations/install/wheel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/install/wheel.py
rename to app_env/Lib/site-packages/pip/_internal/operations/install/wheel.py
diff --git a/venv/Lib/site-packages/pip/_internal/operations/prepare.py b/app_env/Lib/site-packages/pip/_internal/operations/prepare.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/operations/prepare.py
rename to app_env/Lib/site-packages/pip/_internal/operations/prepare.py
diff --git a/venv/Lib/site-packages/pip/_internal/pyproject.py b/app_env/Lib/site-packages/pip/_internal/pyproject.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/pyproject.py
rename to app_env/Lib/site-packages/pip/_internal/pyproject.py
diff --git a/venv/Lib/site-packages/pip/_internal/req/__init__.py b/app_env/Lib/site-packages/pip/_internal/req/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/req/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/req/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..0229981b
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc
index f8da6211..2c3a0ff5 100644
Binary files a/venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc
index 1615a858..8716a74f 100644
Binary files a/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc
index aaef03b9..30a8f4c8 100644
Binary files a/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc
index cb56a70b..7e3af403 100644
Binary files a/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc
index 9ade007d..7ccda3cb 100644
Binary files a/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/req/constructors.py b/app_env/Lib/site-packages/pip/_internal/req/constructors.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/req/constructors.py
rename to app_env/Lib/site-packages/pip/_internal/req/constructors.py
diff --git a/venv/Lib/site-packages/pip/_internal/req/req_file.py b/app_env/Lib/site-packages/pip/_internal/req/req_file.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/req/req_file.py
rename to app_env/Lib/site-packages/pip/_internal/req/req_file.py
diff --git a/venv/Lib/site-packages/pip/_internal/req/req_install.py b/app_env/Lib/site-packages/pip/_internal/req/req_install.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/req/req_install.py
rename to app_env/Lib/site-packages/pip/_internal/req/req_install.py
diff --git a/venv/Lib/site-packages/pip/_internal/req/req_set.py b/app_env/Lib/site-packages/pip/_internal/req/req_set.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/req/req_set.py
rename to app_env/Lib/site-packages/pip/_internal/req/req_set.py
diff --git a/venv/Lib/site-packages/pip/_internal/req/req_uninstall.py b/app_env/Lib/site-packages/pip/_internal/req/req_uninstall.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/req/req_uninstall.py
rename to app_env/Lib/site-packages/pip/_internal/req/req_uninstall.py
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py b/app_env/Lib/site-packages/pip/_internal/resolution/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4e62068e
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..db026ce0
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/base.py b/app_env/Lib/site-packages/pip/_internal/resolution/base.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/base.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/base.py
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/app_env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..efeca173
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc
new file mode 100644
index 00000000..d791fb1d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py b/app_env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__init__.py b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1329fffe
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..5e364a08
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc
index 8b619a23..73aaed69 100644
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc
new file mode 100644
index 00000000..4da1dc93
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc
index 638b1592..a95d53ea 100644
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc
index 0d987a4d..c5ed7964 100644
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc
index e602eb90..5f1e9eba 100644
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc
new file mode 100644
index 00000000..d781d90f
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc
new file mode 100644
index 00000000..011513b3
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py
rename to app_env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py
diff --git a/venv/Lib/site-packages/pip/_internal/self_outdated_check.py b/app_env/Lib/site-packages/pip/_internal/self_outdated_check.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/self_outdated_check.py
rename to app_env/Lib/site-packages/pip/_internal/self_outdated_check.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py b/app_env/Lib/site-packages/pip/_internal/utils/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/utils/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ce01a886
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc
similarity index 83%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc
index c70b6a54..3b776ccc 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc
new file mode 100644
index 00000000..8d432c44
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc
new file mode 100644
index 00000000..e44d2aab
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc
index ba14184c..97943869 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc
new file mode 100644
index 00000000..7e386050
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc
new file mode 100644
index 00000000..c6babbbe
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc
similarity index 85%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc
index 6fa95927..6eb66e09 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc
similarity index 75%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc
index 6ffd4215..2f29c76d 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc
similarity index 82%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc
index c969e336..a2711886 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc
new file mode 100644
index 00000000..d2e7aa2c
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc
index 6dc96fb8..18a821b6 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc
new file mode 100644
index 00000000..7c060bc2
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc
new file mode 100644
index 00000000..a197e7ed
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc
similarity index 83%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc
index bce4c69d..5680ba46 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc
index 405f27be..429fe6c9 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc
new file mode 100644
index 00000000..23d823ba
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc
new file mode 100644
index 00000000..0e301f98
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc
new file mode 100644
index 00000000..c9db6a7d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..efd47e8e
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc
index ede1d242..9a9daaec 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc
index 81b467d5..1b2dbd85 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc
index b9652c18..7dcb5de9 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc
index 47f76ac9..8a7f03f7 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc
index e4b78f05..01f90b26 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc
new file mode 100644
index 00000000..b407c68c
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc
index 49426b9e..7d73890b 100644
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc
new file mode 100644
index 00000000..348efcf1
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/_log.py b/app_env/Lib/site-packages/pip/_internal/utils/_log.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/_log.py
rename to app_env/Lib/site-packages/pip/_internal/utils/_log.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/appdirs.py b/app_env/Lib/site-packages/pip/_internal/utils/appdirs.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/appdirs.py
rename to app_env/Lib/site-packages/pip/_internal/utils/appdirs.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/compat.py b/app_env/Lib/site-packages/pip/_internal/utils/compat.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/compat.py
rename to app_env/Lib/site-packages/pip/_internal/utils/compat.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py b/app_env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py
rename to app_env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/datetime.py b/app_env/Lib/site-packages/pip/_internal/utils/datetime.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/datetime.py
rename to app_env/Lib/site-packages/pip/_internal/utils/datetime.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/deprecation.py b/app_env/Lib/site-packages/pip/_internal/utils/deprecation.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/deprecation.py
rename to app_env/Lib/site-packages/pip/_internal/utils/deprecation.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py b/app_env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py
rename to app_env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/distutils_args.py b/app_env/Lib/site-packages/pip/_internal/utils/distutils_args.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/distutils_args.py
rename to app_env/Lib/site-packages/pip/_internal/utils/distutils_args.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/egg_link.py b/app_env/Lib/site-packages/pip/_internal/utils/egg_link.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/egg_link.py
rename to app_env/Lib/site-packages/pip/_internal/utils/egg_link.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/encoding.py b/app_env/Lib/site-packages/pip/_internal/utils/encoding.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/encoding.py
rename to app_env/Lib/site-packages/pip/_internal/utils/encoding.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/entrypoints.py b/app_env/Lib/site-packages/pip/_internal/utils/entrypoints.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/entrypoints.py
rename to app_env/Lib/site-packages/pip/_internal/utils/entrypoints.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/filesystem.py b/app_env/Lib/site-packages/pip/_internal/utils/filesystem.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/filesystem.py
rename to app_env/Lib/site-packages/pip/_internal/utils/filesystem.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/filetypes.py b/app_env/Lib/site-packages/pip/_internal/utils/filetypes.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/filetypes.py
rename to app_env/Lib/site-packages/pip/_internal/utils/filetypes.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/glibc.py b/app_env/Lib/site-packages/pip/_internal/utils/glibc.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/glibc.py
rename to app_env/Lib/site-packages/pip/_internal/utils/glibc.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/hashes.py b/app_env/Lib/site-packages/pip/_internal/utils/hashes.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/hashes.py
rename to app_env/Lib/site-packages/pip/_internal/utils/hashes.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/inject_securetransport.py b/app_env/Lib/site-packages/pip/_internal/utils/inject_securetransport.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/inject_securetransport.py
rename to app_env/Lib/site-packages/pip/_internal/utils/inject_securetransport.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/logging.py b/app_env/Lib/site-packages/pip/_internal/utils/logging.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/logging.py
rename to app_env/Lib/site-packages/pip/_internal/utils/logging.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/misc.py b/app_env/Lib/site-packages/pip/_internal/utils/misc.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/misc.py
rename to app_env/Lib/site-packages/pip/_internal/utils/misc.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/models.py b/app_env/Lib/site-packages/pip/_internal/utils/models.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/models.py
rename to app_env/Lib/site-packages/pip/_internal/utils/models.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/packaging.py b/app_env/Lib/site-packages/pip/_internal/utils/packaging.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/packaging.py
rename to app_env/Lib/site-packages/pip/_internal/utils/packaging.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py b/app_env/Lib/site-packages/pip/_internal/utils/setuptools_build.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py
rename to app_env/Lib/site-packages/pip/_internal/utils/setuptools_build.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/subprocess.py b/app_env/Lib/site-packages/pip/_internal/utils/subprocess.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/subprocess.py
rename to app_env/Lib/site-packages/pip/_internal/utils/subprocess.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/temp_dir.py b/app_env/Lib/site-packages/pip/_internal/utils/temp_dir.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/temp_dir.py
rename to app_env/Lib/site-packages/pip/_internal/utils/temp_dir.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/unpacking.py b/app_env/Lib/site-packages/pip/_internal/utils/unpacking.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/unpacking.py
rename to app_env/Lib/site-packages/pip/_internal/utils/unpacking.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/urls.py b/app_env/Lib/site-packages/pip/_internal/utils/urls.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/urls.py
rename to app_env/Lib/site-packages/pip/_internal/utils/urls.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/virtualenv.py b/app_env/Lib/site-packages/pip/_internal/utils/virtualenv.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/virtualenv.py
rename to app_env/Lib/site-packages/pip/_internal/utils/virtualenv.py
diff --git a/venv/Lib/site-packages/pip/_internal/utils/wheel.py b/app_env/Lib/site-packages/pip/_internal/utils/wheel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/utils/wheel.py
rename to app_env/Lib/site-packages/pip/_internal/utils/wheel.py
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/__init__.py b/app_env/Lib/site-packages/pip/_internal/vcs/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/vcs/__init__.py
rename to app_env/Lib/site-packages/pip/_internal/vcs/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7868e738
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc
index aa39a525..58db4de7 100644
Binary files a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc
index 200784e2..894f4475 100644
Binary files a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc
index b3db0e18..33030980 100644
Binary files a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc
index 463435f2..a9449e6d 100644
Binary files a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc
index fa0d1e9f..d4f44706 100644
Binary files a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/bazaar.py b/app_env/Lib/site-packages/pip/_internal/vcs/bazaar.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/vcs/bazaar.py
rename to app_env/Lib/site-packages/pip/_internal/vcs/bazaar.py
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/git.py b/app_env/Lib/site-packages/pip/_internal/vcs/git.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/vcs/git.py
rename to app_env/Lib/site-packages/pip/_internal/vcs/git.py
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/mercurial.py b/app_env/Lib/site-packages/pip/_internal/vcs/mercurial.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/vcs/mercurial.py
rename to app_env/Lib/site-packages/pip/_internal/vcs/mercurial.py
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/subversion.py b/app_env/Lib/site-packages/pip/_internal/vcs/subversion.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/vcs/subversion.py
rename to app_env/Lib/site-packages/pip/_internal/vcs/subversion.py
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py b/app_env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py
rename to app_env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py
diff --git a/venv/Lib/site-packages/pip/_internal/wheel_builder.py b/app_env/Lib/site-packages/pip/_internal/wheel_builder.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_internal/wheel_builder.py
rename to app_env/Lib/site-packages/pip/_internal/wheel_builder.py
diff --git a/venv/Lib/site-packages/pip/_vendor/__init__.py b/app_env/Lib/site-packages/pip/_vendor/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7dca36a3
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc
new file mode 100644
index 00000000..6c10d0c1
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc
new file mode 100644
index 00000000..0719840d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..56c1e81b
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc
similarity index 76%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc
index 0d0a443f..69b611e8 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc
new file mode 100644
index 00000000..fed0cee5
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc
new file mode 100644
index 00000000..94ba0fe3
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc
new file mode 100644
index 00000000..04bc0e0c
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc
index 904a934d..de15dba2 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc
index d21fb4bf..4532562e 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc
index 8488d8b7..c971af43 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc
index f7f3ca05..eb926d5f 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc
new file mode 100644
index 00000000..4c64e232
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..608274ff
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc
index a1d19e9a..ab98e6d1 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc
similarity index 83%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc
index 746a2edc..46546ad7 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/compat.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/compat.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/compat.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/compat.py
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py b/app_env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py
rename to app_env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py
diff --git a/venv/Lib/site-packages/pip/_vendor/certifi/__init__.py b/app_env/Lib/site-packages/pip/_vendor/certifi/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/certifi/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/certifi/__init__.py
diff --git a/venv/Lib/site-packages/pip/_vendor/certifi/__main__.py b/app_env/Lib/site-packages/pip/_vendor/certifi/__main__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/certifi/__main__.py
rename to app_env/Lib/site-packages/pip/_vendor/certifi/__main__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..cec4ae8b
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc
new file mode 100644
index 00000000..5c8e382c
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc
new file mode 100644
index 00000000..0c43d5e0
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem b/app_env/Lib/site-packages/pip/_vendor/certifi/cacert.pem
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem
rename to app_env/Lib/site-packages/pip/_vendor/certifi/cacert.pem
diff --git a/venv/Lib/site-packages/pip/_vendor/certifi/core.py b/app_env/Lib/site-packages/pip/_vendor/certifi/core.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/certifi/core.py
rename to app_env/Lib/site-packages/pip/_vendor/certifi/core.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__init__.py b/app_env/Lib/site-packages/pip/_vendor/chardet/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..23191cc4
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc
index 761a936a..d64d8ca3 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc
similarity index 76%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc
index 4de1c624..dd003c0f 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc
index ef62e6df..4bc8577e 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc
index 5eeb8c08..bfd308a3 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc
new file mode 100644
index 00000000..27b96f6a
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc
similarity index 77%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc
index 409337ad..bdc23a42 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc
similarity index 78%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc
index 2ad244f4..64b1506b 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc
new file mode 100644
index 00000000..ef3617b2
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc
similarity index 81%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc
index 63094933..6f183a51 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc
index 77521891..2c1a8acd 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc
index b3d8594b..97be03be 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc
index 62ec34a5..89e5e721 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc
similarity index 78%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc
index 4b09d113..444d1e49 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc
index 38578393..0d06b284 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc
similarity index 78%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc
index a727ead4..3856932a 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc
index 84e5707b..c2be8c06 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc
similarity index 78%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc
index 8fc57ed5..95fc0177 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc
index f1cd2c61..a1781390 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc
index 22c50b2d..7dfa1fc8 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc
index 2cfe0cf9..1fb4f835 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc
similarity index 78%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc
index ee70658e..86832448 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc
index 4f227df9..914cdcad 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc
index bc24bb3f..b2272313 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc
index 9bedc851..0dbb01db 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc
index 2f8d316b..3fac100a 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc
index ad642266..684db1d0 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc
index d19e5e8d..6fd3e643 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc
index 39553c66..862bfa9f 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc
index ab78d4be..4f33ccda 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc
index 0e2109aa..6b81abfb 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc
similarity index 81%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc
index 3fb22a3e..052da63c 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc
new file mode 100644
index 00000000..14736d0b
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc
index be9248e8..b1e77885 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc
index 9f366e56..1ac57f20 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc
index c6234eb5..4ea48d04 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc
index 0586d0fa..9998fb5e 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc
index 23483a61..89c29ede 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc
index c718b004..9ade78dc 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc
index 8119ba66..f53e2a86 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc
new file mode 100644
index 00000000..520431e9
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py b/app_env/Lib/site-packages/pip/_vendor/chardet/big5freq.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/big5freq.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/big5prober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/big5prober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/chardistribution.py b/app_env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/chardistribution.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/charsetprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/charsetprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py b/app_env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..a1da8adc
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc
index de358845..6b459137 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py b/app_env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py b/app_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/cp949prober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/cp949prober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/enums.py b/app_env/Lib/site-packages/pip/_vendor/chardet/enums.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/enums.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/enums.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/escprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/escprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/escprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/escprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/escsm.py b/app_env/Lib/site-packages/pip/_vendor/chardet/escsm.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/escsm.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/escsm.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py b/app_env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/euckrprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/euckrprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py b/app_env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/euctwprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/euctwprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py b/app_env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py b/app_env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/johabfreq.py b/app_env/Lib/site-packages/pip/_vendor/chardet/johabfreq.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/johabfreq.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/johabfreq.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/johabprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/johabprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/johabprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/johabprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py b/app_env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py b/app_env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py b/app_env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py b/app_env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py b/app_env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py b/app_env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py b/app_env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py b/app_env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/latin1prober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/latin1prober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py b/app_env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py b/app_env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..196786e5
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc
index 5bfca014..2e4503c1 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py b/app_env/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/universaldetector.py b/app_env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/universaldetector.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py b/app_env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/version.py b/app_env/Lib/site-packages/pip/_vendor/chardet/version.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/chardet/version.py
rename to app_env/Lib/site-packages/pip/_vendor/chardet/version.py
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/__init__.py b/app_env/Lib/site-packages/pip/_vendor/colorama/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/colorama/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/colorama/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e65105f2
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc
new file mode 100644
index 00000000..5655a69a
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc
index 0e2a2f58..0b0e2de4 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc
similarity index 75%
rename from venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc
index a061cf00..ec9cd62e 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc
index defa147d..f1e13bc1 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc
index 7be39c32..67a75e64 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/ansi.py b/app_env/Lib/site-packages/pip/_vendor/colorama/ansi.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/colorama/ansi.py
rename to app_env/Lib/site-packages/pip/_vendor/colorama/ansi.py
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py b/app_env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py
rename to app_env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/initialise.py b/app_env/Lib/site-packages/pip/_vendor/colorama/initialise.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/colorama/initialise.py
rename to app_env/Lib/site-packages/pip/_vendor/colorama/initialise.py
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/win32.py b/app_env/Lib/site-packages/pip/_vendor/colorama/win32.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/colorama/win32.py
rename to app_env/Lib/site-packages/pip/_vendor/colorama/win32.py
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/winterm.py b/app_env/Lib/site-packages/pip/_vendor/colorama/winterm.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/colorama/winterm.py
rename to app_env/Lib/site-packages/pip/_vendor/colorama/winterm.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__init__.py b/app_env/Lib/site-packages/pip/_vendor/distlib/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8edef3ff
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc
new file mode 100644
index 00000000..893f550c
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc
new file mode 100644
index 00000000..b4bc3d95
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc
new file mode 100644
index 00000000..48e07120
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc
index 95d6aa3f..8302314f 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc
index 9804a6f9..1e4fe6ea 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc
new file mode 100644
index 00000000..a14c78b0
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc
new file mode 100644
index 00000000..f7f17465
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc
new file mode 100644
index 00000000..5b4b9624
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc
index 934ab4cb..beb0644b 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc
new file mode 100644
index 00000000..5e5ebdec
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc
new file mode 100644
index 00000000..a7e4ef2c
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc
new file mode 100644
index 00000000..85966347
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/compat.py b/app_env/Lib/site-packages/pip/_vendor/distlib/compat.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/compat.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/compat.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/database.py b/app_env/Lib/site-packages/pip/_vendor/distlib/database.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/database.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/database.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/index.py b/app_env/Lib/site-packages/pip/_vendor/distlib/index.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/index.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/index.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/locators.py b/app_env/Lib/site-packages/pip/_vendor/distlib/locators.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/locators.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/locators.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/manifest.py b/app_env/Lib/site-packages/pip/_vendor/distlib/manifest.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/manifest.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/manifest.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/markers.py b/app_env/Lib/site-packages/pip/_vendor/distlib/markers.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/markers.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/markers.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/metadata.py b/app_env/Lib/site-packages/pip/_vendor/distlib/metadata.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/metadata.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/metadata.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/resources.py b/app_env/Lib/site-packages/pip/_vendor/distlib/resources.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/resources.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/resources.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/scripts.py b/app_env/Lib/site-packages/pip/_vendor/distlib/scripts.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/scripts.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/scripts.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe b/app_env/Lib/site-packages/pip/_vendor/distlib/t32.exe
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/t32.exe
rename to app_env/Lib/site-packages/pip/_vendor/distlib/t32.exe
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe b/app_env/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe
rename to app_env/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe b/app_env/Lib/site-packages/pip/_vendor/distlib/t64.exe
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/t64.exe
rename to app_env/Lib/site-packages/pip/_vendor/distlib/t64.exe
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/util.py b/app_env/Lib/site-packages/pip/_vendor/distlib/util.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/util.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/util.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/version.py b/app_env/Lib/site-packages/pip/_vendor/distlib/version.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/version.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/version.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe b/app_env/Lib/site-packages/pip/_vendor/distlib/w32.exe
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/w32.exe
rename to app_env/Lib/site-packages/pip/_vendor/distlib/w32.exe
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe b/app_env/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe
rename to app_env/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe b/app_env/Lib/site-packages/pip/_vendor/distlib/w64.exe
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/w64.exe
rename to app_env/Lib/site-packages/pip/_vendor/distlib/w64.exe
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/wheel.py b/app_env/Lib/site-packages/pip/_vendor/distlib/wheel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distlib/wheel.py
rename to app_env/Lib/site-packages/pip/_vendor/distlib/wheel.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distro/__init__.py b/app_env/Lib/site-packages/pip/_vendor/distro/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distro/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/distro/__init__.py
diff --git a/venv/Lib/site-packages/pip/_vendor/distro/__main__.py b/app_env/Lib/site-packages/pip/_vendor/distro/__main__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distro/__main__.py
rename to app_env/Lib/site-packages/pip/_vendor/distro/__main__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..59cc9dac
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc
new file mode 100644
index 00000000..dbf59d3c
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc
index 0ae88424..d9f7e6a4 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distro/distro.py b/app_env/Lib/site-packages/pip/_vendor/distro/distro.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/distro/distro.py
rename to app_env/Lib/site-packages/pip/_vendor/distro/distro.py
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/__init__.py b/app_env/Lib/site-packages/pip/_vendor/idna/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/idna/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/idna/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..6cbf97d8
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc
index 42dea282..b19298f5 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc
new file mode 100644
index 00000000..ebd5e1d2
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc
new file mode 100644
index 00000000..b374ecd2
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc
index 012a51c2..c191b308 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc
new file mode 100644
index 00000000..fcbe2c5f
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc
new file mode 100644
index 00000000..da19e535
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc
index a08bce13..97ca518d 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/codec.py b/app_env/Lib/site-packages/pip/_vendor/idna/codec.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/idna/codec.py
rename to app_env/Lib/site-packages/pip/_vendor/idna/codec.py
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/compat.py b/app_env/Lib/site-packages/pip/_vendor/idna/compat.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/idna/compat.py
rename to app_env/Lib/site-packages/pip/_vendor/idna/compat.py
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/core.py b/app_env/Lib/site-packages/pip/_vendor/idna/core.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/idna/core.py
rename to app_env/Lib/site-packages/pip/_vendor/idna/core.py
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/idnadata.py b/app_env/Lib/site-packages/pip/_vendor/idna/idnadata.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/idna/idnadata.py
rename to app_env/Lib/site-packages/pip/_vendor/idna/idnadata.py
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/intranges.py b/app_env/Lib/site-packages/pip/_vendor/idna/intranges.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/idna/intranges.py
rename to app_env/Lib/site-packages/pip/_vendor/idna/intranges.py
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/package_data.py b/app_env/Lib/site-packages/pip/_vendor/idna/package_data.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/idna/package_data.py
rename to app_env/Lib/site-packages/pip/_vendor/idna/package_data.py
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/uts46data.py b/app_env/Lib/site-packages/pip/_vendor/idna/uts46data.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/idna/uts46data.py
rename to app_env/Lib/site-packages/pip/_vendor/idna/uts46data.py
diff --git a/venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py b/app_env/Lib/site-packages/pip/_vendor/msgpack/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/msgpack/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4f596add
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..8591c6fe
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc
index e8e7fbb8..c0918dc7 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc
new file mode 100644
index 00000000..669e8b43
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py b/app_env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py
rename to app_env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py
diff --git a/venv/Lib/site-packages/pip/_vendor/msgpack/ext.py b/app_env/Lib/site-packages/pip/_vendor/msgpack/ext.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/msgpack/ext.py
rename to app_env/Lib/site-packages/pip/_vendor/msgpack/ext.py
diff --git a/venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py b/app_env/Lib/site-packages/pip/_vendor/msgpack/fallback.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py
rename to app_env/Lib/site-packages/pip/_vendor/msgpack/fallback.py
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__about__.py b/app_env/Lib/site-packages/pip/_vendor/packaging/__about__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/__about__.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/__about__.py
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__init__.py b/app_env/Lib/site-packages/pip/_vendor/packaging/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc
new file mode 100644
index 00000000..2e97d806
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..6bf649eb
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc
new file mode 100644
index 00000000..a43449f1
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc
new file mode 100644
index 00000000..9c0c6ff6
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc
new file mode 100644
index 00000000..4235a242
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc
new file mode 100644
index 00000000..d842667c
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc
new file mode 100644
index 00000000..83e9aacc
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc
new file mode 100644
index 00000000..df8b53c7
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc
new file mode 100644
index 00000000..1d89648d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..d1a513ff
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc
new file mode 100644
index 00000000..b384c142
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py b/app_env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py b/app_env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/_structures.py b/app_env/Lib/site-packages/pip/_vendor/packaging/_structures.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/_structures.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/_structures.py
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/markers.py b/app_env/Lib/site-packages/pip/_vendor/packaging/markers.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/markers.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/markers.py
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/requirements.py b/app_env/Lib/site-packages/pip/_vendor/packaging/requirements.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/requirements.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/requirements.py
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py b/app_env/Lib/site-packages/pip/_vendor/packaging/specifiers.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/specifiers.py
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/tags.py b/app_env/Lib/site-packages/pip/_vendor/packaging/tags.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/tags.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/tags.py
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/utils.py b/app_env/Lib/site-packages/pip/_vendor/packaging/utils.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/utils.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/utils.py
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/version.py b/app_env/Lib/site-packages/pip/_vendor/packaging/version.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/packaging/version.py
rename to app_env/Lib/site-packages/pip/_vendor/packaging/version.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/__init__.py b/app_env/Lib/site-packages/pip/_vendor/pep517/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..d5af90c7
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc
new file mode 100644
index 00000000..ec98e567
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc
new file mode 100644
index 00000000..2f2ab168
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc
index 99ec45e6..51b776ba 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc
new file mode 100644
index 00000000..f5c545cf
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc
index 5151559c..82993196 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc
index ee4eee3c..d83c8acb 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc
index b29f757f..bf01f0cf 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc
index 158271a3..8f3141f7 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/build.py b/app_env/Lib/site-packages/pip/_vendor/pep517/build.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/build.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/build.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/check.py b/app_env/Lib/site-packages/pip/_vendor/pep517/check.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/check.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/check.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py b/app_env/Lib/site-packages/pip/_vendor/pep517/colorlog.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/colorlog.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/compat.py b/app_env/Lib/site-packages/pip/_vendor/pep517/compat.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/compat.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/compat.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py b/app_env/Lib/site-packages/pip/_vendor/pep517/dirtools.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/dirtools.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py b/app_env/Lib/site-packages/pip/_vendor/pep517/envbuild.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/envbuild.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py b/app_env/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ceaf9986
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc
index 84cf83d8..337132f5 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/in_process/_in_process.py b/app_env/Lib/site-packages/pip/_vendor/pep517/in_process/_in_process.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/in_process/_in_process.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/in_process/_in_process.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/meta.py b/app_env/Lib/site-packages/pip/_vendor/pep517/meta.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/meta.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/meta.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py b/app_env/Lib/site-packages/pip/_vendor/pep517/wrappers.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py
rename to app_env/Lib/site-packages/pip/_vendor/pep517/wrappers.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py b/app_env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..f0635503
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc
new file mode 100644
index 00000000..ec3899b8
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py b/app_env/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py
rename to app_env/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/__init__.py
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9a9b3a82
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc
new file mode 100644
index 00000000..76da9c45
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc
index 6865f399..73afb9a3 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc
new file mode 100644
index 00000000..76f7c774
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc
index 0bdca754..b852e245 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc
index 7cdce065..5e7ab86f 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc
new file mode 100644
index 00000000..4b92900d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc
index bef00cc5..376331d7 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/android.py b/app_env/Lib/site-packages/pip/_vendor/platformdirs/android.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/android.py
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/android.py
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/api.py b/app_env/Lib/site-packages/pip/_vendor/platformdirs/api.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/api.py
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/api.py
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py b/app_env/Lib/site-packages/pip/_vendor/platformdirs/macos.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/macos.py
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py b/app_env/Lib/site-packages/pip/_vendor/platformdirs/unix.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/unix.py
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/version.py b/app_env/Lib/site-packages/pip/_vendor/platformdirs/version.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/version.py
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/version.py
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py b/app_env/Lib/site-packages/pip/_vendor/platformdirs/windows.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py
rename to app_env/Lib/site-packages/pip/_vendor/platformdirs/windows.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__init__.py b/app_env/Lib/site-packages/pip/_vendor/pygments/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__init__.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__main__.py b/app_env/Lib/site-packages/pip/_vendor/pygments/__main__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__main__.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__main__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1a51520e
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc
new file mode 100644
index 00000000..c8f46e2d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc
index db5b1153..d3cdeef7 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc
new file mode 100644
index 00000000..6b53bb99
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc
index fc1cab39..a7bf5d8d 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc
new file mode 100644
index 00000000..7cde8ad0
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc
new file mode 100644
index 00000000..3acc5fc3
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc
similarity index 76%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc
index 8177a87c..28f5f0c7 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc
index d6f7619a..673f9f20 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc
index f649bca0..8ce1f297 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc
index c8c3ab4e..1a7b3ea6 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc
index 10c11198..2d533bf5 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc
new file mode 100644
index 00000000..973bbac3
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc
index 2193122d..05b1d560 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc
index 673d1ca6..1fc27870 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc
new file mode 100644
index 00000000..2d6feead
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py b/app_env/Lib/site-packages/pip/_vendor/pygments/cmdline.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/cmdline.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/console.py b/app_env/Lib/site-packages/pip/_vendor/pygments/console.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/console.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/console.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/filter.py b/app_env/Lib/site-packages/pip/_vendor/pygments/filter.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/filter.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/filter.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py b/app_env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..d7311c88
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatter.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatter.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatter.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatter.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4184e114
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc
new file mode 100644
index 00000000..e3bebf82
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc
index 20a51250..6f55a606 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc
index a4ac27d0..12bfcd89 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc
new file mode 100644
index 00000000..6cce3230
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc
index fc6b92ed..a6c0fa87 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc
index 577d1532..b1e817fa 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc
index 736382f3..fc502d84 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc
index b3911b0a..15a3a344 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc
index e3b05bd1..392bf810 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc
index f04bcf76..f6b67a7f 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc
index eaa3e6b6..aa3c5044 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc
index 9a8ca64d..b4f96a66 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc
index 98eb5fbf..f63fed8d 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/img.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/img.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/other.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/other.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py b/app_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/lexer.py b/app_env/Lib/site-packages/pip/_vendor/pygments/lexer.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/lexer.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/lexer.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py b/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1c7d57a0
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc
new file mode 100644
index 00000000..e36b6f02
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc
new file mode 100644
index 00000000..98d9aaec
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py b/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py b/app_env/Lib/site-packages/pip/_vendor/pygments/lexers/python.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/lexers/python.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/modeline.py b/app_env/Lib/site-packages/pip/_vendor/pygments/modeline.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/modeline.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/modeline.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/plugin.py b/app_env/Lib/site-packages/pip/_vendor/pygments/plugin.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/plugin.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/plugin.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py b/app_env/Lib/site-packages/pip/_vendor/pygments/regexopt.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/regexopt.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/scanner.py b/app_env/Lib/site-packages/pip/_vendor/pygments/scanner.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/scanner.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/scanner.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py b/app_env/Lib/site-packages/pip/_vendor/pygments/sphinxext.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/sphinxext.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/style.py b/app_env/Lib/site-packages/pip/_vendor/pygments/style.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/style.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/style.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py b/app_env/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8a6acd64
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/token.py b/app_env/Lib/site-packages/pip/_vendor/pygments/token.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/token.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/token.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/unistring.py b/app_env/Lib/site-packages/pip/_vendor/pygments/unistring.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/unistring.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/unistring.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/util.py b/app_env/Lib/site-packages/pip/_vendor/pygments/util.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pygments/util.py
rename to app_env/Lib/site-packages/pip/_vendor/pygments/util.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__init__.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..5ede77da
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc
new file mode 100644
index 00000000..880927bc
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc
new file mode 100644
index 00000000..cae51c90
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc
new file mode 100644
index 00000000..9f0cad1d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..8f9506a0
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc
new file mode 100644
index 00000000..0a58aefa
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc
new file mode 100644
index 00000000..7fd85965
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc
new file mode 100644
index 00000000..c466a6ba
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc
new file mode 100644
index 00000000..17f4c576
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc
new file mode 100644
index 00000000..759a5321
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/actions.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/actions.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/actions.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/actions.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/common.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/common.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/common.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/common.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/core.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/core.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/core.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/core.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9e44c261
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/helpers.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/helpers.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/helpers.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/helpers.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/results.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/results.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/results.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/results.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/testing.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/testing.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/testing.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/testing.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/unicode.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/unicode.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/unicode.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/unicode.py
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/util.py b/app_env/Lib/site-packages/pip/_vendor/pyparsing/util.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/pyparsing/util.py
rename to app_env/Lib/site-packages/pip/_vendor/pyparsing/util.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__init__.py b/app_env/Lib/site-packages/pip/_vendor/requests/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..3e1034a3
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc
new file mode 100644
index 00000000..6475dfc5
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc
similarity index 85%
rename from venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc
index e7f4c395..d647c85a 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc
index 3f88fc9e..f188ab78 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc
new file mode 100644
index 00000000..497cc1c0
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc
new file mode 100644
index 00000000..c62c1397
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc
new file mode 100644
index 00000000..bc4eb288
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc
new file mode 100644
index 00000000..d671db15
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc
index 4e872e0a..8f7bb008 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..51ff58dc
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc
new file mode 100644
index 00000000..f84db779
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc
similarity index 79%
rename from venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc
index 1d9a6c96..2b18f7fe 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc
new file mode 100644
index 00000000..1dec7036
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc
new file mode 100644
index 00000000..c16511c2
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc
new file mode 100644
index 00000000..913256ef
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc
new file mode 100644
index 00000000..9dcc61dd
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc
index 4a7db114..7665ed72 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..5f7ccc2a
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__version__.py b/app_env/Lib/site-packages/pip/_vendor/requests/__version__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/__version__.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/__version__.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py b/app_env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/adapters.py b/app_env/Lib/site-packages/pip/_vendor/requests/adapters.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/adapters.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/adapters.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/api.py b/app_env/Lib/site-packages/pip/_vendor/requests/api.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/api.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/api.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/auth.py b/app_env/Lib/site-packages/pip/_vendor/requests/auth.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/auth.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/auth.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/certs.py b/app_env/Lib/site-packages/pip/_vendor/requests/certs.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/certs.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/certs.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/compat.py b/app_env/Lib/site-packages/pip/_vendor/requests/compat.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/compat.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/compat.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/cookies.py b/app_env/Lib/site-packages/pip/_vendor/requests/cookies.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/cookies.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/cookies.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/exceptions.py b/app_env/Lib/site-packages/pip/_vendor/requests/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/exceptions.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/exceptions.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/help.py b/app_env/Lib/site-packages/pip/_vendor/requests/help.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/help.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/help.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/hooks.py b/app_env/Lib/site-packages/pip/_vendor/requests/hooks.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/hooks.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/hooks.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/models.py b/app_env/Lib/site-packages/pip/_vendor/requests/models.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/models.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/models.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/packages.py b/app_env/Lib/site-packages/pip/_vendor/requests/packages.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/packages.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/packages.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/sessions.py b/app_env/Lib/site-packages/pip/_vendor/requests/sessions.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/sessions.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/sessions.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/status_codes.py b/app_env/Lib/site-packages/pip/_vendor/requests/status_codes.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/status_codes.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/status_codes.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/structures.py b/app_env/Lib/site-packages/pip/_vendor/requests/structures.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/structures.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/structures.py
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/utils.py b/app_env/Lib/site-packages/pip/_vendor/requests/utils.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/requests/utils.py
rename to app_env/Lib/site-packages/pip/_vendor/requests/utils.py
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b265933f
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc
index 7f3f1b52..bb7b7aa8 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc
index 9a984d53..a6c2c1e4 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc
new file mode 100644
index 00000000..9154f004
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc
index e5d6cd90..d1d36fe4 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py b/app_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1f61a231
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc
new file mode 100644
index 00000000..ca658597
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py b/app_env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py
rename to app_env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py b/app_env/Lib/site-packages/pip/_vendor/resolvelib/providers.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py
rename to app_env/Lib/site-packages/pip/_vendor/resolvelib/providers.py
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py b/app_env/Lib/site-packages/pip/_vendor/resolvelib/reporters.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py
rename to app_env/Lib/site-packages/pip/_vendor/resolvelib/reporters.py
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py b/app_env/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py
rename to app_env/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py b/app_env/Lib/site-packages/pip/_vendor/resolvelib/structs.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py
rename to app_env/Lib/site-packages/pip/_vendor/resolvelib/structs.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__init__.py b/app_env/Lib/site-packages/pip/_vendor/rich/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/__init__.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__main__.py b/app_env/Lib/site-packages/pip/_vendor/rich/__main__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/__main__.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/__main__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b893506d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc
new file mode 100644
index 00000000..78e2b8db
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc
index acb96991..f70e6b89 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc
index 9b6a3747..1d600934 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc
similarity index 82%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc
index f39b266e..17cac063 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc
index f58117f4..e98f5996 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc
new file mode 100644
index 00000000..92eb4476
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc
index ef4aa691..8a23ab0d 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc
index 58e68be2..46f18b30 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc
similarity index 81%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc
index 1b3cdb60..73e8bf50 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc
index c2dab876..4fea279e 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc
new file mode 100644
index 00000000..b4573ce2
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc
index 7e5c9607..e575f7e0 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc
index c1cfd877..f967f64d 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc
new file mode 100644
index 00000000..bafed7d6
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc
new file mode 100644
index 00000000..1b008410
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc
index e3ec3248..ca5ad580 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc
index 054061ad..a403dd79 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc
similarity index 88%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc
index 8a3ff268..895ce4fc 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc
index 73ab43b7..e8886bad 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc
new file mode 100644
index 00000000..776dfd9b
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc
index 93b6a1ed..2c319376 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc
new file mode 100644
index 00000000..4e320ad2
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc
index 0651cbaa..c4411878 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc
index cd91ae6d..333016b0 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc
index bb55410d..85f53848 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc
new file mode 100644
index 00000000..ace2398b
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc
similarity index 81%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc
index b47bdffc..5953d98d 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc
index c11a8517..c74c0b92 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc
new file mode 100644
index 00000000..641255f5
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc
index 4624fcfc..b52e277b 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc
index 1e940199..1d1fc97c 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc
index 2e93ea2d..a2370b27 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc
index 6fe798a3..c4e5a6da 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc
similarity index 82%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc
index 0c9b96da..81dc538e 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc
index e73f9227..b2f6a456 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc
new file mode 100644
index 00000000..15e014ec
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc
new file mode 100644
index 00000000..520239f7
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc
index 01561033..4545a4c8 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc
index bfe30fbe..12ddbc6e 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc
new file mode 100644
index 00000000..281a5dc3
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc
index 6a6c917a..8d353443 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc
index 49b461a0..405b64b0 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc
index 22cd57c9..565fbc5e 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc
index aedea9a2..4c2411e6 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc
new file mode 100644
index 00000000..082a926f
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc
index de292e0e..0d9688b8 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc
new file mode 100644
index 00000000..5c968a76
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc
index 38d68acc..12588277 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc
similarity index 83%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc
index 8c8f8084..414c5634 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc
index 50a0d544..5b95e451 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc
index a3b1c1b8..923787f2 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc
index 4399052a..44305366 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc
index 1470d272..a2b57a3d 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc
index dfae6159..14afbe76 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc
index 07161fdb..981cacb8 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc
similarity index 83%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc
index 827d714a..8c19366e 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc
new file mode 100644
index 00000000..4315e3c6
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc
similarity index 81%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc
index b1bf924e..3f8eb4f4 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc
index 13b9d7aa..452a1851 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc
index 6c7d9ef2..b3ef6ed2 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc
index 7d2ea08d..37494de7 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc
index d931d985..4bd7c2ae 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc
index 741badae..1939d29f 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc
index 8ba2b07e..36568720 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc
new file mode 100644
index 00000000..683e7561
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc
similarity index 85%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc
index 2e3daf99..6879e08f 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc
index e229dac0..1241d3e9 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc
index 0654f3b3..060aab3a 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc
index 9734c8b0..82a1f292 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc
new file mode 100644
index 00000000..8a9b015e
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc
index dcfc1d00..6ae63dd8 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc
new file mode 100644
index 00000000..5ed1d075
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc
index cdc3f4a7..7d85ceb3 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc
new file mode 100644
index 00000000..6377075e
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py b/app_env/Lib/site-packages/pip/_vendor/rich/_cell_widths.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_cell_widths.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py b/app_env/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py b/app_env/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_export_format.py b/app_env/Lib/site-packages/pip/_vendor/rich/_export_format.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_export_format.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_export_format.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_extension.py b/app_env/Lib/site-packages/pip/_vendor/rich/_extension.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_extension.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_extension.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_inspect.py b/app_env/Lib/site-packages/pip/_vendor/rich/_inspect.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_inspect.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_inspect.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_log_render.py b/app_env/Lib/site-packages/pip/_vendor/rich/_log_render.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_log_render.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_log_render.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_loop.py b/app_env/Lib/site-packages/pip/_vendor/rich/_loop.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_loop.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_loop.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_palettes.py b/app_env/Lib/site-packages/pip/_vendor/rich/_palettes.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_palettes.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_palettes.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_pick.py b/app_env/Lib/site-packages/pip/_vendor/rich/_pick.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_pick.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_pick.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_ratio.py b/app_env/Lib/site-packages/pip/_vendor/rich/_ratio.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_ratio.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_ratio.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_spinners.py b/app_env/Lib/site-packages/pip/_vendor/rich/_spinners.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_spinners.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_spinners.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_stack.py b/app_env/Lib/site-packages/pip/_vendor/rich/_stack.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_stack.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_stack.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_timer.py b/app_env/Lib/site-packages/pip/_vendor/rich/_timer.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_timer.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_timer.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py b/app_env/Lib/site-packages/pip/_vendor/rich/_win32_console.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_win32_console.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_windows.py b/app_env/Lib/site-packages/pip/_vendor/rich/_windows.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_windows.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_windows.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py b/app_env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/_wrap.py b/app_env/Lib/site-packages/pip/_vendor/rich/_wrap.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/_wrap.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/_wrap.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/abc.py b/app_env/Lib/site-packages/pip/_vendor/rich/abc.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/abc.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/abc.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/align.py b/app_env/Lib/site-packages/pip/_vendor/rich/align.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/align.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/align.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/ansi.py b/app_env/Lib/site-packages/pip/_vendor/rich/ansi.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/ansi.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/ansi.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/bar.py b/app_env/Lib/site-packages/pip/_vendor/rich/bar.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/bar.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/bar.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/box.py b/app_env/Lib/site-packages/pip/_vendor/rich/box.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/box.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/box.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/cells.py b/app_env/Lib/site-packages/pip/_vendor/rich/cells.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/cells.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/cells.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/color.py b/app_env/Lib/site-packages/pip/_vendor/rich/color.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/color.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/color.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py b/app_env/Lib/site-packages/pip/_vendor/rich/color_triplet.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/color_triplet.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/columns.py b/app_env/Lib/site-packages/pip/_vendor/rich/columns.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/columns.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/columns.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/console.py b/app_env/Lib/site-packages/pip/_vendor/rich/console.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/console.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/console.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/constrain.py b/app_env/Lib/site-packages/pip/_vendor/rich/constrain.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/constrain.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/constrain.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/containers.py b/app_env/Lib/site-packages/pip/_vendor/rich/containers.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/containers.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/containers.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/control.py b/app_env/Lib/site-packages/pip/_vendor/rich/control.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/control.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/control.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/default_styles.py b/app_env/Lib/site-packages/pip/_vendor/rich/default_styles.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/default_styles.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/default_styles.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/diagnose.py b/app_env/Lib/site-packages/pip/_vendor/rich/diagnose.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/diagnose.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/diagnose.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/emoji.py b/app_env/Lib/site-packages/pip/_vendor/rich/emoji.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/emoji.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/emoji.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/errors.py b/app_env/Lib/site-packages/pip/_vendor/rich/errors.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/errors.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/errors.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py b/app_env/Lib/site-packages/pip/_vendor/rich/file_proxy.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/file_proxy.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/filesize.py b/app_env/Lib/site-packages/pip/_vendor/rich/filesize.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/filesize.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/filesize.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/highlighter.py b/app_env/Lib/site-packages/pip/_vendor/rich/highlighter.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/highlighter.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/highlighter.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/json.py b/app_env/Lib/site-packages/pip/_vendor/rich/json.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/json.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/json.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/jupyter.py b/app_env/Lib/site-packages/pip/_vendor/rich/jupyter.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/jupyter.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/jupyter.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/layout.py b/app_env/Lib/site-packages/pip/_vendor/rich/layout.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/layout.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/layout.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/live.py b/app_env/Lib/site-packages/pip/_vendor/rich/live.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/live.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/live.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/live_render.py b/app_env/Lib/site-packages/pip/_vendor/rich/live_render.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/live_render.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/live_render.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/logging.py b/app_env/Lib/site-packages/pip/_vendor/rich/logging.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/logging.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/logging.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/markup.py b/app_env/Lib/site-packages/pip/_vendor/rich/markup.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/markup.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/markup.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/measure.py b/app_env/Lib/site-packages/pip/_vendor/rich/measure.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/measure.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/measure.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/padding.py b/app_env/Lib/site-packages/pip/_vendor/rich/padding.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/padding.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/padding.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/pager.py b/app_env/Lib/site-packages/pip/_vendor/rich/pager.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/pager.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/pager.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/palette.py b/app_env/Lib/site-packages/pip/_vendor/rich/palette.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/palette.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/palette.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/panel.py b/app_env/Lib/site-packages/pip/_vendor/rich/panel.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/panel.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/panel.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/pretty.py b/app_env/Lib/site-packages/pip/_vendor/rich/pretty.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/pretty.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/pretty.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/progress.py b/app_env/Lib/site-packages/pip/_vendor/rich/progress.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/progress.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/progress.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py b/app_env/Lib/site-packages/pip/_vendor/rich/progress_bar.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/progress_bar.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/prompt.py b/app_env/Lib/site-packages/pip/_vendor/rich/prompt.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/prompt.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/prompt.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/protocol.py b/app_env/Lib/site-packages/pip/_vendor/rich/protocol.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/protocol.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/protocol.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/region.py b/app_env/Lib/site-packages/pip/_vendor/rich/region.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/region.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/region.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/repr.py b/app_env/Lib/site-packages/pip/_vendor/rich/repr.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/repr.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/repr.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/rule.py b/app_env/Lib/site-packages/pip/_vendor/rich/rule.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/rule.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/rule.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/scope.py b/app_env/Lib/site-packages/pip/_vendor/rich/scope.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/scope.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/scope.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/screen.py b/app_env/Lib/site-packages/pip/_vendor/rich/screen.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/screen.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/screen.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/segment.py b/app_env/Lib/site-packages/pip/_vendor/rich/segment.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/segment.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/segment.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/spinner.py b/app_env/Lib/site-packages/pip/_vendor/rich/spinner.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/spinner.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/spinner.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/status.py b/app_env/Lib/site-packages/pip/_vendor/rich/status.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/status.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/status.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/style.py b/app_env/Lib/site-packages/pip/_vendor/rich/style.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/style.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/style.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/styled.py b/app_env/Lib/site-packages/pip/_vendor/rich/styled.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/styled.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/styled.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/syntax.py b/app_env/Lib/site-packages/pip/_vendor/rich/syntax.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/syntax.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/syntax.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/table.py b/app_env/Lib/site-packages/pip/_vendor/rich/table.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/table.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/table.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py b/app_env/Lib/site-packages/pip/_vendor/rich/terminal_theme.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/terminal_theme.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/text.py b/app_env/Lib/site-packages/pip/_vendor/rich/text.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/text.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/text.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/theme.py b/app_env/Lib/site-packages/pip/_vendor/rich/theme.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/theme.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/theme.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/themes.py b/app_env/Lib/site-packages/pip/_vendor/rich/themes.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/themes.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/themes.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/traceback.py b/app_env/Lib/site-packages/pip/_vendor/rich/traceback.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/traceback.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/traceback.py
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/tree.py b/app_env/Lib/site-packages/pip/_vendor/rich/tree.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/rich/tree.py
rename to app_env/Lib/site-packages/pip/_vendor/rich/tree.py
diff --git a/venv/Lib/site-packages/pip/_vendor/six.py b/app_env/Lib/site-packages/pip/_vendor/six.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/six.py
rename to app_env/Lib/site-packages/pip/_vendor/six.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__init__.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..3bfe94fe
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc
index 2c005084..4436b097 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc
new file mode 100644
index 00000000..365e1966
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc
similarity index 75%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc
index 09ce4235..e48abb5a 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc
new file mode 100644
index 00000000..6b8c6e58
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc
new file mode 100644
index 00000000..8434c655
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc
new file mode 100644
index 00000000..ba3ac150
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc
new file mode 100644
index 00000000..dec1d560
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc
index 00ca31b9..cdb37afb 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc
index 33414dfc..2a296a20 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc
new file mode 100644
index 00000000..abd6ebe0
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/_utils.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/_utils.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/_utils.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/_utils.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/after.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/after.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/after.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/after.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/before.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/before.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/before.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/before.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/nap.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/nap.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/nap.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/nap.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/retry.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/retry.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/retry.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/retry.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/stop.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/stop.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/stop.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/stop.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/wait.py b/app_env/Lib/site-packages/pip/_vendor/tenacity/wait.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tenacity/wait.py
rename to app_env/Lib/site-packages/pip/_vendor/tenacity/wait.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tomli/__init__.py b/app_env/Lib/site-packages/pip/_vendor/tomli/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tomli/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/tomli/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..5e0a1f6f
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc
new file mode 100644
index 00000000..2c593769
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc
new file mode 100644
index 00000000..94063df6
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc
new file mode 100644
index 00000000..580bc5f4
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tomli/_parser.py b/app_env/Lib/site-packages/pip/_vendor/tomli/_parser.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tomli/_parser.py
rename to app_env/Lib/site-packages/pip/_vendor/tomli/_parser.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tomli/_re.py b/app_env/Lib/site-packages/pip/_vendor/tomli/_re.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tomli/_re.py
rename to app_env/Lib/site-packages/pip/_vendor/tomli/_re.py
diff --git a/venv/Lib/site-packages/pip/_vendor/tomli/_types.py b/app_env/Lib/site-packages/pip/_vendor/tomli/_types.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/tomli/_types.py
rename to app_env/Lib/site-packages/pip/_vendor/tomli/_types.py
diff --git a/venv/Lib/site-packages/pip/_vendor/typing_extensions.py b/app_env/Lib/site-packages/pip/_vendor/typing_extensions.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/typing_extensions.py
rename to app_env/Lib/site-packages/pip/_vendor/typing_extensions.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b50816e8
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc
new file mode 100644
index 00000000..18b492b0
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc
new file mode 100644
index 00000000..6f133e5a
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc
new file mode 100644
index 00000000..99614c3f
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc
index cecb3949..578d20d2 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..78c625fa
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc
new file mode 100644
index 00000000..946e12fe
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc
index afe5981a..0948da6a 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc
index de232764..45af7ebc 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc
new file mode 100644
index 00000000..58305004
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc
new file mode 100644
index 00000000..54951789
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/_collections.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/_collections.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/_version.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/_version.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/_version.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/_version.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/connection.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/connection.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/connection.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/connection.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4dca9b9b
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc
new file mode 100644
index 00000000..44ed9b56
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc
index 8fc07ac9..d9ec32d6 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc
index 2e956383..c83360ad 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc
index 2fd5d122..25b94880 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc
index e6435e1e..9ce1af17 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc
index 170b83f0..e5a0be5a 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9520ac58
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc
index 1127d006..d8f9a1c4 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc
index 6b98b76d..980c74c6 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/fields.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/fields.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/fields.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/fields.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/filepost.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/filepost.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..f2f38148
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc
new file mode 100644
index 00000000..93fca819
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..76465ac5
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc
new file mode 100644
index 00000000..e7871517
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/request.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/request.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/request.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/request.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/response.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/response.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/response.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/response.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c55103d9
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc
new file mode 100644
index 00000000..c63bea26
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc
new file mode 100644
index 00000000..2ce596e5
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc
new file mode 100644
index 00000000..5848871c
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc
new file mode 100644
index 00000000..af67cd38
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc
new file mode 100644
index 00000000..e4136d3e
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc
new file mode 100644
index 00000000..0bc0ff8e
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc
index 847ed2b4..c4325b08 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc
index b79e94aa..1bdbe59c 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc
index 322d847a..8fa08b04 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc
new file mode 100644
index 00000000..4f767f9d
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc
index fea3f01b..c5274874 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc
new file mode 100644
index 00000000..c26205d0
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/request.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/request.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/response.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/response.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/url.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/url.py
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py b/app_env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py
rename to app_env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py
diff --git a/venv/Lib/site-packages/pip/_vendor/vendor.txt b/app_env/Lib/site-packages/pip/_vendor/vendor.txt
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/vendor.txt
rename to app_env/Lib/site-packages/pip/_vendor/vendor.txt
diff --git a/venv/Lib/site-packages/pip/_vendor/webencodings/__init__.py b/app_env/Lib/site-packages/pip/_vendor/webencodings/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/webencodings/__init__.py
rename to app_env/Lib/site-packages/pip/_vendor/webencodings/__init__.py
diff --git a/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..66c011b5
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc
index 90347812..843b6031 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc
similarity index 79%
rename from venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc
index b444620f..280c31cb 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc
new file mode 100644
index 00000000..3776b955
Binary files /dev/null and b/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc b/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc
rename to app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc
index c019195e..6f026beb 100644
Binary files a/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc and b/app_env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pip/_vendor/webencodings/labels.py b/app_env/Lib/site-packages/pip/_vendor/webencodings/labels.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/webencodings/labels.py
rename to app_env/Lib/site-packages/pip/_vendor/webencodings/labels.py
diff --git a/venv/Lib/site-packages/pip/_vendor/webencodings/mklabels.py b/app_env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/webencodings/mklabels.py
rename to app_env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py
diff --git a/venv/Lib/site-packages/pip/_vendor/webencodings/tests.py b/app_env/Lib/site-packages/pip/_vendor/webencodings/tests.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/webencodings/tests.py
rename to app_env/Lib/site-packages/pip/_vendor/webencodings/tests.py
diff --git a/venv/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py b/app_env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py
similarity index 100%
rename from venv/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py
rename to app_env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py
diff --git a/venv/Lib/site-packages/pip/py.typed b/app_env/Lib/site-packages/pip/py.typed
similarity index 100%
rename from venv/Lib/site-packages/pip/py.typed
rename to app_env/Lib/site-packages/pip/py.typed
diff --git a/venv/Lib/site-packages/pkg_resources/__init__.py b/app_env/Lib/site-packages/pkg_resources/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/__init__.py
rename to app_env/Lib/site-packages/pkg_resources/__init__.py
diff --git a/app_env/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..635f7952
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py b/app_env/Lib/site-packages/pkg_resources/_vendor/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/__init__.py
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9fc2bf78
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc
new file mode 100644
index 00000000..3021fe77
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-310.pyc
new file mode 100644
index 00000000..a8140f6f
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/appdirs.py b/app_env/Lib/site-packages/pkg_resources/_vendor/appdirs.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/appdirs.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/appdirs.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..684905a5
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc
new file mode 100644
index 00000000..fc130a44
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc
new file mode 100644
index 00000000..91751e2d
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc
new file mode 100644
index 00000000..e1257cd8
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc
new file mode 100644
index 00000000..25088360
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc
new file mode 100644
index 00000000..56f26cf0
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc
new file mode 100644
index 00000000..238ed97f
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc
new file mode 100644
index 00000000..da814e55
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc
new file mode 100644
index 00000000..51730cb0
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py b/app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/__init__.py b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/__init__.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1e8e5ae6
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-310.pyc
new file mode 100644
index 00000000..f1221369
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-310.pyc
new file mode 100644
index 00000000..a8c74660
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..3b52c052
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py b/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..9598f336
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-310.pyc
new file mode 100644
index 00000000..c403a23d
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc
new file mode 100644
index 00000000..b7c5e94d
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py b/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py b/app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc
new file mode 100644
index 00000000..ac3e38b4
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..70b3dc3f
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc
new file mode 100644
index 00000000..6f857f5d
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc
new file mode 100644
index 00000000..5822cb05
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc
new file mode 100644
index 00000000..7e7cd860
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc
new file mode 100644
index 00000000..c06e6cb9
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc
new file mode 100644
index 00000000..abeb3ea3
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc
new file mode 100644
index 00000000..df2d9047
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc
new file mode 100644
index 00000000..349cfe82
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..cb851108
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc
new file mode 100644
index 00000000..d3440b15
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/version.py b/app_env/Lib/site-packages/pkg_resources/_vendor/packaging/version.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/packaging/version.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/packaging/version.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__init__.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__init__.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__init__.py
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ce490c4f
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc
new file mode 100644
index 00000000..8cb2b255
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/common.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/common.cpython-310.pyc
new file mode 100644
index 00000000..0664c888
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/common.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/core.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/core.cpython-310.pyc
new file mode 100644
index 00000000..860a7353
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/core.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..e5eb95e4
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc
new file mode 100644
index 00000000..7ffc8687
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/results.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/results.cpython-310.pyc
new file mode 100644
index 00000000..274071fa
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/results.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc
new file mode 100644
index 00000000..9a22ce60
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc
new file mode 100644
index 00000000..2b4a67ff
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/util.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/util.cpython-310.pyc
new file mode 100644
index 00000000..7070d238
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/util.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/actions.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/actions.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/actions.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/actions.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/common.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/common.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/common.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/common.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/core.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/core.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/core.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/core.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py
diff --git a/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8e97ee84
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/helpers.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/helpers.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/helpers.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/helpers.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/results.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/results.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/results.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/results.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/testing.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/testing.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/testing.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/testing.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/unicode.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/unicode.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/unicode.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/unicode.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/util.py b/app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/util.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/util.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/pyparsing/util.py
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/zipp.py b/app_env/Lib/site-packages/pkg_resources/_vendor/zipp.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/_vendor/zipp.py
rename to app_env/Lib/site-packages/pkg_resources/_vendor/zipp.py
diff --git a/venv/Lib/site-packages/pkg_resources/extern/__init__.py b/app_env/Lib/site-packages/pkg_resources/extern/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/pkg_resources/extern/__init__.py
rename to app_env/Lib/site-packages/pkg_resources/extern/__init__.py
diff --git a/app_env/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..3054d795
Binary files /dev/null and b/app_env/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/INSTALLER b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/INSTALLER
new file mode 100644
index 00000000..a1b589e3
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/INSTALLER
@@ -0,0 +1 @@
+pip
diff --git a/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/LICENSE b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/LICENSE
new file mode 100644
index 00000000..9029e70f
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/LICENSE
@@ -0,0 +1,49 @@
+psycopg2 and the LGPL
+---------------------
+
+psycopg2 is free software: you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as published
+by the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+License for more details.
+
+In addition, as a special exception, the copyright holders give
+permission to link this program with the OpenSSL library (or with
+modified versions of OpenSSL that use the same license as OpenSSL),
+and distribute linked combinations including the two.
+
+You must obey the GNU Lesser General Public License in all respects for
+all of the code used other than OpenSSL. If you modify file(s) with this
+exception, you may extend this exception to your version of the file(s),
+but you are not obligated to do so. If you do not wish to do so, delete
+this exception statement from your version. If you delete this exception
+statement from all source files in the program, then also delete it here.
+
+You should have received a copy of the GNU Lesser General Public License
+along with psycopg2 (see the doc/ directory.)
+If not, see .
+
+
+Alternative licenses
+--------------------
+
+The following BSD-like license applies (at your option) to the files following
+the pattern ``psycopg/adapter*.{h,c}`` and ``psycopg/microprotocol*.{h,c}``:
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this
+ software in a product, an acknowledgment in the product documentation
+ would be appreciated but is not required.
+
+ 2. Altered source versions must be plainly marked as such, and must not
+ be misrepresented as being the original software.
+
+ 3. This notice may not be removed or altered from any source distribution.
diff --git a/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/METADATA b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/METADATA
new file mode 100644
index 00000000..0b4b3784
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/METADATA
@@ -0,0 +1,111 @@
+Metadata-Version: 2.1
+Name: psycopg2
+Version: 2.9.3
+Summary: psycopg2 - Python-PostgreSQL Database Adapter
+Home-page: https://psycopg.org/
+Author: Federico Di Gregorio
+Author-email: fog@initd.org
+Maintainer: Daniele Varrazzo
+Maintainer-email: daniele.varrazzo@gmail.com
+License: LGPL with exceptions
+Project-URL: Homepage, https://psycopg.org/
+Project-URL: Documentation, https://www.psycopg.org/docs/
+Project-URL: Code, https://github.com/psycopg/psycopg2
+Project-URL: Issue Tracker, https://github.com/psycopg/psycopg2/issues
+Project-URL: Download, https://pypi.org/project/psycopg2/
+Platform: any
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
+Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3 :: Only
+Classifier: Programming Language :: Python :: Implementation :: CPython
+Classifier: Programming Language :: C
+Classifier: Programming Language :: SQL
+Classifier: Topic :: Database
+Classifier: Topic :: Database :: Front-Ends
+Classifier: Topic :: Software Development
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Classifier: Operating System :: Microsoft :: Windows
+Classifier: Operating System :: Unix
+Requires-Python: >=3.6
+License-File: LICENSE
+
+Psycopg is the most popular PostgreSQL database adapter for the Python
+programming language. Its main features are the complete implementation of
+the Python DB API 2.0 specification and the thread safety (several threads can
+share the same connection). It was designed for heavily multi-threaded
+applications that create and destroy lots of cursors and make a large number
+of concurrent "INSERT"s or "UPDATE"s.
+
+Psycopg 2 is mostly implemented in C as a libpq wrapper, resulting in being
+both efficient and secure. It features client-side and server-side cursors,
+asynchronous communication and notifications, "COPY TO/COPY FROM" support.
+Many Python types are supported out-of-the-box and adapted to matching
+PostgreSQL data types; adaptation can be extended and customized thanks to a
+flexible objects adaptation system.
+
+Psycopg 2 is both Unicode and Python 3 friendly.
+
+
+Documentation
+-------------
+
+Documentation is included in the ``doc`` directory and is `available online`__.
+
+.. __: https://www.psycopg.org/docs/
+
+For any other resource (source code repository, bug tracker, mailing list)
+please check the `project homepage`__.
+
+.. __: https://psycopg.org/
+
+
+Installation
+------------
+
+Building Psycopg requires a few prerequisites (a C compiler, some development
+packages): please check the install_ and the faq_ documents in the ``doc`` dir
+or online for the details.
+
+If prerequisites are met, you can install psycopg like any other Python
+package, using ``pip`` to download it from PyPI_::
+
+ $ pip install psycopg2
+
+or using ``setup.py`` if you have downloaded the source package locally::
+
+ $ python setup.py build
+ $ sudo python setup.py install
+
+You can also obtain a stand-alone package, not requiring a compiler or
+external libraries, by installing the `psycopg2-binary`_ package from PyPI::
+
+ $ pip install psycopg2-binary
+
+The binary package is a practical choice for development and testing but in
+production it is advised to use the package built from sources.
+
+.. _PyPI: https://pypi.org/project/psycopg2/
+.. _psycopg2-binary: https://pypi.org/project/psycopg2-binary/
+.. _install: https://www.psycopg.org/docs/install.html#install-from-source
+.. _faq: https://www.psycopg.org/docs/faq.html#faq-compile
+
+:Linux/OSX: |gh-actions|
+:Windows: |appveyor|
+
+.. |gh-actions| image:: https://github.com/psycopg/psycopg2/actions/workflows/tests.yml/badge.svg
+ :target: https://github.com/psycopg/psycopg2/actions/workflows/tests.yml
+ :alt: Linux and OSX build status
+
+.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/psycopg/psycopg2?branch=master&svg=true
+ :target: https://ci.appveyor.com/project/psycopg/psycopg2/branch/master
+ :alt: Windows build status
+
+
diff --git a/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/RECORD b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/RECORD
new file mode 100644
index 00000000..a9cdf815
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/RECORD
@@ -0,0 +1,29 @@
+psycopg2-2.9.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+psycopg2-2.9.3.dist-info/LICENSE,sha256=lhS4XfyacsWyyjMUTB1-HtOxwpdFnZ-yimpXYsLo1xs,2238
+psycopg2-2.9.3.dist-info/METADATA,sha256=Sish-dLl2ZCiRt1XXmu9I4SqZAh8WA8m5MH_EenlYas,4388
+psycopg2-2.9.3.dist-info/RECORD,,
+psycopg2-2.9.3.dist-info/WHEEL,sha256=W26pYN7HLsBT1jrDSL9udgf_mdNKJmYmL23sIP-FcgM,102
+psycopg2-2.9.3.dist-info/top_level.txt,sha256=7dHGpLqQ3w-vGmGEVn-7uK90qU9fyrGdWWi7S-gTcnM,9
+psycopg2/__init__.py,sha256=9mo5Qd0uWHiEBx2CdogGos2kNqtlNNGzbtYlGC0hWS8,4768
+psycopg2/__pycache__/__init__.cpython-310.pyc,,
+psycopg2/__pycache__/_ipaddress.cpython-310.pyc,,
+psycopg2/__pycache__/_json.cpython-310.pyc,,
+psycopg2/__pycache__/_range.cpython-310.pyc,,
+psycopg2/__pycache__/errorcodes.cpython-310.pyc,,
+psycopg2/__pycache__/errors.cpython-310.pyc,,
+psycopg2/__pycache__/extensions.cpython-310.pyc,,
+psycopg2/__pycache__/extras.cpython-310.pyc,,
+psycopg2/__pycache__/pool.cpython-310.pyc,,
+psycopg2/__pycache__/sql.cpython-310.pyc,,
+psycopg2/__pycache__/tz.cpython-310.pyc,,
+psycopg2/_ipaddress.py,sha256=jkuyhLgqUGRBcLNWDM8QJysV6q1Npc_RYH4_kE7JZPU,2922
+psycopg2/_json.py,sha256=XPn4PnzbTg1Dcqz7n1JMv5dKhB5VFV6834GEtxSawt0,7153
+psycopg2/_psycopg.cp310-win_amd64.pyd,sha256=5iuLV74BT3PZnoBD_yH53tO5K33KkG6-IGfGZE7biEk,2440704
+psycopg2/_range.py,sha256=79xD6i5_aIVYTj_q6lrqfQEz00y3V16nJ5kbScLqy6U,17608
+psycopg2/errorcodes.py,sha256=pfy0UuIGsjMi6UjPSwyh17XGTXZVTZ4W-FPFLgx3Sbo,14308
+psycopg2/errors.py,sha256=aAS4dJyTg1bsDzJDCRQAMB_s7zv-Q4yB6Yvih26I-0M,1425
+psycopg2/extensions.py,sha256=CG0kG5vL8Ot503UGlDXXJJFdFWLg4HE2_c1-lLOLc8M,6797
+psycopg2/extras.py,sha256=XOQ6YkyaLeypg2_POPXt8c_MUbuSthdMYywGn9rMNfo,42863
+psycopg2/pool.py,sha256=UGEt8IdP3xNc2PGYNlG4sQvg8nhf4aeCnz39hTR0H8I,6316
+psycopg2/sql.py,sha256=OcFEAmpe2aMfrx0MEk4Lx00XvXXJCmvllaOVbJY-yoE,14779
+psycopg2/tz.py,sha256=r95kK7eGSpOYr_luCyYsznHMzjl52sLjsnSPXkXLzRI,4870
diff --git a/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/WHEEL b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/WHEEL
new file mode 100644
index 00000000..93f1ef46
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/WHEEL
@@ -0,0 +1,5 @@
+Wheel-Version: 1.0
+Generator: bdist_wheel (0.37.1)
+Root-Is-Purelib: false
+Tag: cp310-cp310-win_amd64
+
diff --git a/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/top_level.txt b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/top_level.txt
new file mode 100644
index 00000000..658130bb
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2-2.9.3.dist-info/top_level.txt
@@ -0,0 +1 @@
+psycopg2
diff --git a/app_env/Lib/site-packages/psycopg2/__init__.py b/app_env/Lib/site-packages/psycopg2/__init__.py
new file mode 100644
index 00000000..59a89386
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/__init__.py
@@ -0,0 +1,126 @@
+"""A Python driver for PostgreSQL
+
+psycopg is a PostgreSQL_ database adapter for the Python_ programming
+language. This is version 2, a complete rewrite of the original code to
+provide new-style classes for connection and cursor objects and other sweet
+candies. Like the original, psycopg 2 was written with the aim of being very
+small and fast, and stable as a rock.
+
+Homepage: https://psycopg.org/
+
+.. _PostgreSQL: https://www.postgresql.org/
+.. _Python: https://www.python.org/
+
+:Groups:
+ * `Connections creation`: connect
+ * `Value objects constructors`: Binary, Date, DateFromTicks, Time,
+ TimeFromTicks, Timestamp, TimestampFromTicks
+"""
+# psycopg/__init__.py - initialization of the psycopg module
+#
+# Copyright (C) 2003-2019 Federico Di Gregorio
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+
+# Import modules needed by _psycopg to allow tools like py2exe to do
+# their work without bothering about the module dependencies.
+
+# Note: the first internal import should be _psycopg, otherwise the real cause
+# of a failed loading of the C module may get hidden, see
+# https://archives.postgresql.org/psycopg/2011-02/msg00044.php
+
+# Import the DBAPI-2.0 stuff into top-level module.
+
+from psycopg2._psycopg import ( # noqa
+ BINARY, NUMBER, STRING, DATETIME, ROWID,
+
+ Binary, Date, Time, Timestamp,
+ DateFromTicks, TimeFromTicks, TimestampFromTicks,
+
+ Error, Warning, DataError, DatabaseError, ProgrammingError, IntegrityError,
+ InterfaceError, InternalError, NotSupportedError, OperationalError,
+
+ _connect, apilevel, threadsafety, paramstyle,
+ __version__, __libpq_version__,
+)
+
+
+# Register default adapters.
+
+from psycopg2 import extensions as _ext
+_ext.register_adapter(tuple, _ext.SQL_IN)
+_ext.register_adapter(type(None), _ext.NoneAdapter)
+
+# Register the Decimal adapter here instead of in the C layer.
+# This way a new class is registered for each sub-interpreter.
+# See ticket #52
+from decimal import Decimal # noqa
+from psycopg2._psycopg import Decimal as Adapter # noqa
+_ext.register_adapter(Decimal, Adapter)
+del Decimal, Adapter
+
+
+def connect(dsn=None, connection_factory=None, cursor_factory=None, **kwargs):
+ """
+ Create a new database connection.
+
+ The connection parameters can be specified as a string:
+
+ conn = psycopg2.connect("dbname=test user=postgres password=secret")
+
+ or using a set of keyword arguments:
+
+ conn = psycopg2.connect(database="test", user="postgres", password="secret")
+
+ Or as a mix of both. The basic connection parameters are:
+
+ - *dbname*: the database name
+ - *database*: the database name (only as keyword argument)
+ - *user*: user name used to authenticate
+ - *password*: password used to authenticate
+ - *host*: database host address (defaults to UNIX socket if not provided)
+ - *port*: connection port number (defaults to 5432 if not provided)
+
+ Using the *connection_factory* parameter a different class or connections
+ factory can be specified. It should be a callable object taking a dsn
+ argument.
+
+ Using the *cursor_factory* parameter, a new default cursor factory will be
+ used by cursor().
+
+ Using *async*=True an asynchronous connection will be created. *async_* is
+ a valid alias (for Python versions where ``async`` is a keyword).
+
+ Any other keyword parameter will be passed to the underlying client
+ library: the list of supported parameters depends on the library version.
+
+ """
+ kwasync = {}
+ if 'async' in kwargs:
+ kwasync['async'] = kwargs.pop('async')
+ if 'async_' in kwargs:
+ kwasync['async_'] = kwargs.pop('async_')
+
+ dsn = _ext.make_dsn(dsn, **kwargs)
+ conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
+ if cursor_factory is not None:
+ conn.cursor_factory = cursor_factory
+
+ return conn
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..68c8582e
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/_ipaddress.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/_ipaddress.cpython-310.pyc
new file mode 100644
index 00000000..2775cf58
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/_ipaddress.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/_json.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/_json.cpython-310.pyc
new file mode 100644
index 00000000..19e2bb24
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/_json.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/_range.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/_range.cpython-310.pyc
new file mode 100644
index 00000000..70125d19
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/_range.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/errorcodes.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/errorcodes.cpython-310.pyc
new file mode 100644
index 00000000..7a9151bc
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/errorcodes.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/errors.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/errors.cpython-310.pyc
new file mode 100644
index 00000000..64dc5cf7
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/errors.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/extensions.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/extensions.cpython-310.pyc
new file mode 100644
index 00000000..bbb42ae5
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/extensions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/extras.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/extras.cpython-310.pyc
new file mode 100644
index 00000000..6f61cefb
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/extras.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/pool.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/pool.cpython-310.pyc
new file mode 100644
index 00000000..d07ba8cc
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/pool.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/sql.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/sql.cpython-310.pyc
new file mode 100644
index 00000000..3a09f8f9
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/sql.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/__pycache__/tz.cpython-310.pyc b/app_env/Lib/site-packages/psycopg2/__pycache__/tz.cpython-310.pyc
new file mode 100644
index 00000000..48f2fae2
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/__pycache__/tz.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/psycopg2/_ipaddress.py b/app_env/Lib/site-packages/psycopg2/_ipaddress.py
new file mode 100644
index 00000000..d38566c8
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/_ipaddress.py
@@ -0,0 +1,90 @@
+"""Implementation of the ipaddres-based network types adaptation
+"""
+
+# psycopg/_ipaddress.py - Ipaddres-based network types adaptation
+#
+# Copyright (C) 2016-2019 Daniele Varrazzo
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+
+from psycopg2.extensions import (
+ new_type, new_array_type, register_type, register_adapter, QuotedString)
+
+# The module is imported on register_ipaddress
+ipaddress = None
+
+# The typecasters are created only once
+_casters = None
+
+
+def register_ipaddress(conn_or_curs=None):
+ """
+ Register conversion support between `ipaddress` objects and `network types`__.
+
+ :param conn_or_curs: the scope where to register the type casters.
+ If `!None` register them globally.
+
+ After the function is called, PostgreSQL :sql:`inet` values will be
+ converted into `~ipaddress.IPv4Interface` or `~ipaddress.IPv6Interface`
+ objects, :sql:`cidr` values into into `~ipaddress.IPv4Network` or
+ `~ipaddress.IPv6Network`.
+
+ .. __: https://www.postgresql.org/docs/current/static/datatype-net-types.html
+ """
+ global ipaddress
+ import ipaddress
+
+ global _casters
+ if _casters is None:
+ _casters = _make_casters()
+
+ for c in _casters:
+ register_type(c, conn_or_curs)
+
+ for t in [ipaddress.IPv4Interface, ipaddress.IPv6Interface,
+ ipaddress.IPv4Network, ipaddress.IPv6Network]:
+ register_adapter(t, adapt_ipaddress)
+
+
+def _make_casters():
+ inet = new_type((869,), 'INET', cast_interface)
+ ainet = new_array_type((1041,), 'INET[]', inet)
+
+ cidr = new_type((650,), 'CIDR', cast_network)
+ acidr = new_array_type((651,), 'CIDR[]', cidr)
+
+ return [inet, ainet, cidr, acidr]
+
+
+def cast_interface(s, cur=None):
+ if s is None:
+ return None
+ # Py2 version force the use of unicode. meh.
+ return ipaddress.ip_interface(str(s))
+
+
+def cast_network(s, cur=None):
+ if s is None:
+ return None
+ return ipaddress.ip_network(str(s))
+
+
+def adapt_ipaddress(obj):
+ return QuotedString(str(obj))
diff --git a/app_env/Lib/site-packages/psycopg2/_json.py b/app_env/Lib/site-packages/psycopg2/_json.py
new file mode 100644
index 00000000..95024223
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/_json.py
@@ -0,0 +1,199 @@
+"""Implementation of the JSON adaptation objects
+
+This module exists to avoid a circular import problem: pyscopg2.extras depends
+on psycopg2.extension, so I can't create the default JSON typecasters in
+extensions importing register_json from extras.
+"""
+
+# psycopg/_json.py - Implementation of the JSON adaptation objects
+#
+# Copyright (C) 2012-2019 Daniele Varrazzo
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+
+import json
+
+from psycopg2._psycopg import ISQLQuote, QuotedString
+from psycopg2._psycopg import new_type, new_array_type, register_type
+
+
+# oids from PostgreSQL 9.2
+JSON_OID = 114
+JSONARRAY_OID = 199
+
+# oids from PostgreSQL 9.4
+JSONB_OID = 3802
+JSONBARRAY_OID = 3807
+
+
+class Json:
+ """
+ An `~psycopg2.extensions.ISQLQuote` wrapper to adapt a Python object to
+ :sql:`json` data type.
+
+ `!Json` can be used to wrap any object supported by the provided *dumps*
+ function. If none is provided, the standard :py:func:`json.dumps()` is
+ used.
+
+ """
+ def __init__(self, adapted, dumps=None):
+ self.adapted = adapted
+ self._conn = None
+ self._dumps = dumps or json.dumps
+
+ def __conform__(self, proto):
+ if proto is ISQLQuote:
+ return self
+
+ def dumps(self, obj):
+ """Serialize *obj* in JSON format.
+
+ The default is to call `!json.dumps()` or the *dumps* function
+ provided in the constructor. You can override this method to create a
+ customized JSON wrapper.
+ """
+ return self._dumps(obj)
+
+ def prepare(self, conn):
+ self._conn = conn
+
+ def getquoted(self):
+ s = self.dumps(self.adapted)
+ qs = QuotedString(s)
+ if self._conn is not None:
+ qs.prepare(self._conn)
+ return qs.getquoted()
+
+ def __str__(self):
+ # getquoted is binary
+ return self.getquoted().decode('ascii', 'replace')
+
+
+def register_json(conn_or_curs=None, globally=False, loads=None,
+ oid=None, array_oid=None, name='json'):
+ """Create and register typecasters converting :sql:`json` type to Python objects.
+
+ :param conn_or_curs: a connection or cursor used to find the :sql:`json`
+ and :sql:`json[]` oids; the typecasters are registered in a scope
+ limited to this object, unless *globally* is set to `!True`. It can be
+ `!None` if the oids are provided
+ :param globally: if `!False` register the typecasters only on
+ *conn_or_curs*, otherwise register them globally
+ :param loads: the function used to parse the data into a Python object. If
+ `!None` use `!json.loads()`, where `!json` is the module chosen
+ according to the Python version (see above)
+ :param oid: the OID of the :sql:`json` type if known; If not, it will be
+ queried on *conn_or_curs*
+ :param array_oid: the OID of the :sql:`json[]` array type if known;
+ if not, it will be queried on *conn_or_curs*
+ :param name: the name of the data type to look for in *conn_or_curs*
+
+ The connection or cursor passed to the function will be used to query the
+ database and look for the OID of the :sql:`json` type (or an alternative
+ type if *name* if provided). No query is performed if *oid* and *array_oid*
+ are provided. Raise `~psycopg2.ProgrammingError` if the type is not found.
+
+ """
+ if oid is None:
+ oid, array_oid = _get_json_oids(conn_or_curs, name)
+
+ JSON, JSONARRAY = _create_json_typecasters(
+ oid, array_oid, loads=loads, name=name.upper())
+
+ register_type(JSON, not globally and conn_or_curs or None)
+
+ if JSONARRAY is not None:
+ register_type(JSONARRAY, not globally and conn_or_curs or None)
+
+ return JSON, JSONARRAY
+
+
+def register_default_json(conn_or_curs=None, globally=False, loads=None):
+ """
+ Create and register :sql:`json` typecasters for PostgreSQL 9.2 and following.
+
+ Since PostgreSQL 9.2 :sql:`json` is a builtin type, hence its oid is known
+ and fixed. This function allows specifying a customized *loads* function
+ for the default :sql:`json` type without querying the database.
+ All the parameters have the same meaning of `register_json()`.
+ """
+ return register_json(conn_or_curs=conn_or_curs, globally=globally,
+ loads=loads, oid=JSON_OID, array_oid=JSONARRAY_OID)
+
+
+def register_default_jsonb(conn_or_curs=None, globally=False, loads=None):
+ """
+ Create and register :sql:`jsonb` typecasters for PostgreSQL 9.4 and following.
+
+ As in `register_default_json()`, the function allows to register a
+ customized *loads* function for the :sql:`jsonb` type at its known oid for
+ PostgreSQL 9.4 and following versions. All the parameters have the same
+ meaning of `register_json()`.
+ """
+ return register_json(conn_or_curs=conn_or_curs, globally=globally,
+ loads=loads, oid=JSONB_OID, array_oid=JSONBARRAY_OID, name='jsonb')
+
+
+def _create_json_typecasters(oid, array_oid, loads=None, name='JSON'):
+ """Create typecasters for json data type."""
+ if loads is None:
+ loads = json.loads
+
+ def typecast_json(s, cur):
+ if s is None:
+ return None
+ return loads(s)
+
+ JSON = new_type((oid, ), name, typecast_json)
+ if array_oid is not None:
+ JSONARRAY = new_array_type((array_oid, ), f"{name}ARRAY", JSON)
+ else:
+ JSONARRAY = None
+
+ return JSON, JSONARRAY
+
+
+def _get_json_oids(conn_or_curs, name='json'):
+ # lazy imports
+ from psycopg2.extensions import STATUS_IN_TRANSACTION
+ from psycopg2.extras import _solve_conn_curs
+
+ conn, curs = _solve_conn_curs(conn_or_curs)
+
+ # Store the transaction status of the connection to revert it after use
+ conn_status = conn.status
+
+ # column typarray not available before PG 8.3
+ typarray = conn.info.server_version >= 80300 and "typarray" or "NULL"
+
+ # get the oid for the hstore
+ curs.execute(
+ "SELECT t.oid, %s FROM pg_type t WHERE t.typname = %%s;"
+ % typarray, (name,))
+ r = curs.fetchone()
+
+ # revert the status of the connection as before the command
+ if conn_status != STATUS_IN_TRANSACTION and not conn.autocommit:
+ conn.rollback()
+
+ if not r:
+ raise conn.ProgrammingError(f"{name} data type not found")
+
+ return r
diff --git a/app_env/Lib/site-packages/psycopg2/_psycopg.cp310-win_amd64.pyd b/app_env/Lib/site-packages/psycopg2/_psycopg.cp310-win_amd64.pyd
new file mode 100644
index 00000000..d4a5740d
Binary files /dev/null and b/app_env/Lib/site-packages/psycopg2/_psycopg.cp310-win_amd64.pyd differ
diff --git a/app_env/Lib/site-packages/psycopg2/_range.py b/app_env/Lib/site-packages/psycopg2/_range.py
new file mode 100644
index 00000000..19a05d3c
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/_range.py
@@ -0,0 +1,537 @@
+"""Implementation of the Range type and adaptation
+
+"""
+
+# psycopg/_range.py - Implementation of the Range type and adaptation
+#
+# Copyright (C) 2012-2019 Daniele Varrazzo
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+
+import re
+
+from psycopg2._psycopg import ProgrammingError, InterfaceError
+from psycopg2.extensions import ISQLQuote, adapt, register_adapter
+from psycopg2.extensions import new_type, new_array_type, register_type
+
+
+class Range:
+ """Python representation for a PostgreSQL |range|_ type.
+
+ :param lower: lower bound for the range. `!None` means unbound
+ :param upper: upper bound for the range. `!None` means unbound
+ :param bounds: one of the literal strings ``()``, ``[)``, ``(]``, ``[]``,
+ representing whether the lower or upper bounds are included
+ :param empty: if `!True`, the range is empty
+
+ """
+ __slots__ = ('_lower', '_upper', '_bounds')
+
+ def __init__(self, lower=None, upper=None, bounds='[)', empty=False):
+ if not empty:
+ if bounds not in ('[)', '(]', '()', '[]'):
+ raise ValueError(f"bound flags not valid: {bounds!r}")
+
+ self._lower = lower
+ self._upper = upper
+ self._bounds = bounds
+ else:
+ self._lower = self._upper = self._bounds = None
+
+ def __repr__(self):
+ if self._bounds is None:
+ return f"{self.__class__.__name__}(empty=True)"
+ else:
+ return "{}({!r}, {!r}, {!r})".format(self.__class__.__name__,
+ self._lower, self._upper, self._bounds)
+
+ def __str__(self):
+ if self._bounds is None:
+ return 'empty'
+
+ items = [
+ self._bounds[0],
+ str(self._lower),
+ ', ',
+ str(self._upper),
+ self._bounds[1]
+ ]
+ return ''.join(items)
+
+ @property
+ def lower(self):
+ """The lower bound of the range. `!None` if empty or unbound."""
+ return self._lower
+
+ @property
+ def upper(self):
+ """The upper bound of the range. `!None` if empty or unbound."""
+ return self._upper
+
+ @property
+ def isempty(self):
+ """`!True` if the range is empty."""
+ return self._bounds is None
+
+ @property
+ def lower_inf(self):
+ """`!True` if the range doesn't have a lower bound."""
+ if self._bounds is None:
+ return False
+ return self._lower is None
+
+ @property
+ def upper_inf(self):
+ """`!True` if the range doesn't have an upper bound."""
+ if self._bounds is None:
+ return False
+ return self._upper is None
+
+ @property
+ def lower_inc(self):
+ """`!True` if the lower bound is included in the range."""
+ if self._bounds is None or self._lower is None:
+ return False
+ return self._bounds[0] == '['
+
+ @property
+ def upper_inc(self):
+ """`!True` if the upper bound is included in the range."""
+ if self._bounds is None or self._upper is None:
+ return False
+ return self._bounds[1] == ']'
+
+ def __contains__(self, x):
+ if self._bounds is None:
+ return False
+
+ if self._lower is not None:
+ if self._bounds[0] == '[':
+ if x < self._lower:
+ return False
+ else:
+ if x <= self._lower:
+ return False
+
+ if self._upper is not None:
+ if self._bounds[1] == ']':
+ if x > self._upper:
+ return False
+ else:
+ if x >= self._upper:
+ return False
+
+ return True
+
+ def __bool__(self):
+ return self._bounds is not None
+
+ def __nonzero__(self):
+ # Python 2 compatibility
+ return type(self).__bool__(self)
+
+ def __eq__(self, other):
+ if not isinstance(other, Range):
+ return False
+ return (self._lower == other._lower
+ and self._upper == other._upper
+ and self._bounds == other._bounds)
+
+ def __ne__(self, other):
+ return not self.__eq__(other)
+
+ def __hash__(self):
+ return hash((self._lower, self._upper, self._bounds))
+
+ # as the postgres docs describe for the server-side stuff,
+ # ordering is rather arbitrary, but will remain stable
+ # and consistent.
+
+ def __lt__(self, other):
+ if not isinstance(other, Range):
+ return NotImplemented
+ for attr in ('_lower', '_upper', '_bounds'):
+ self_value = getattr(self, attr)
+ other_value = getattr(other, attr)
+ if self_value == other_value:
+ pass
+ elif self_value is None:
+ return True
+ elif other_value is None:
+ return False
+ else:
+ return self_value < other_value
+ return False
+
+ def __le__(self, other):
+ if self == other:
+ return True
+ else:
+ return self.__lt__(other)
+
+ def __gt__(self, other):
+ if isinstance(other, Range):
+ return other.__lt__(self)
+ else:
+ return NotImplemented
+
+ def __ge__(self, other):
+ if self == other:
+ return True
+ else:
+ return self.__gt__(other)
+
+ def __getstate__(self):
+ return {slot: getattr(self, slot)
+ for slot in self.__slots__ if hasattr(self, slot)}
+
+ def __setstate__(self, state):
+ for slot, value in state.items():
+ setattr(self, slot, value)
+
+
+def register_range(pgrange, pyrange, conn_or_curs, globally=False):
+ """Create and register an adapter and the typecasters to convert between
+ a PostgreSQL |range|_ type and a PostgreSQL `Range` subclass.
+
+ :param pgrange: the name of the PostgreSQL |range| type. Can be
+ schema-qualified
+ :param pyrange: a `Range` strict subclass, or just a name to give to a new
+ class
+ :param conn_or_curs: a connection or cursor used to find the oid of the
+ range and its subtype; the typecaster is registered in a scope limited
+ to this object, unless *globally* is set to `!True`
+ :param globally: if `!False` (default) register the typecaster only on
+ *conn_or_curs*, otherwise register it globally
+ :return: `RangeCaster` instance responsible for the conversion
+
+ If a string is passed to *pyrange*, a new `Range` subclass is created
+ with such name and will be available as the `~RangeCaster.range` attribute
+ of the returned `RangeCaster` object.
+
+ The function queries the database on *conn_or_curs* to inspect the
+ *pgrange* type and raises `~psycopg2.ProgrammingError` if the type is not
+ found. If querying the database is not advisable, use directly the
+ `RangeCaster` class and register the adapter and typecasters using the
+ provided functions.
+
+ """
+ caster = RangeCaster._from_db(pgrange, pyrange, conn_or_curs)
+ caster._register(not globally and conn_or_curs or None)
+ return caster
+
+
+class RangeAdapter:
+ """`ISQLQuote` adapter for `Range` subclasses.
+
+ This is an abstract class: concrete classes must set a `name` class
+ attribute or override `getquoted()`.
+ """
+ name = None
+
+ def __init__(self, adapted):
+ self.adapted = adapted
+
+ def __conform__(self, proto):
+ if self._proto is ISQLQuote:
+ return self
+
+ def prepare(self, conn):
+ self._conn = conn
+
+ def getquoted(self):
+ if self.name is None:
+ raise NotImplementedError(
+ 'RangeAdapter must be subclassed overriding its name '
+ 'or the getquoted() method')
+
+ r = self.adapted
+ if r.isempty:
+ return b"'empty'::" + self.name.encode('utf8')
+
+ if r.lower is not None:
+ a = adapt(r.lower)
+ if hasattr(a, 'prepare'):
+ a.prepare(self._conn)
+ lower = a.getquoted()
+ else:
+ lower = b'NULL'
+
+ if r.upper is not None:
+ a = adapt(r.upper)
+ if hasattr(a, 'prepare'):
+ a.prepare(self._conn)
+ upper = a.getquoted()
+ else:
+ upper = b'NULL'
+
+ return self.name.encode('utf8') + b'(' + lower + b', ' + upper \
+ + b", '" + r._bounds.encode('utf8') + b"')"
+
+
+class RangeCaster:
+ """Helper class to convert between `Range` and PostgreSQL range types.
+
+ Objects of this class are usually created by `register_range()`. Manual
+ creation could be useful if querying the database is not advisable: in
+ this case the oids must be provided.
+ """
+ def __init__(self, pgrange, pyrange, oid, subtype_oid, array_oid=None):
+ self.subtype_oid = subtype_oid
+ self._create_ranges(pgrange, pyrange)
+
+ name = self.adapter.name or self.adapter.__class__.__name__
+
+ self.typecaster = new_type((oid,), name, self.parse)
+
+ if array_oid is not None:
+ self.array_typecaster = new_array_type(
+ (array_oid,), name + "ARRAY", self.typecaster)
+ else:
+ self.array_typecaster = None
+
+ def _create_ranges(self, pgrange, pyrange):
+ """Create Range and RangeAdapter classes if needed."""
+ # if got a string create a new RangeAdapter concrete type (with a name)
+ # else take it as an adapter. Passing an adapter should be considered
+ # an implementation detail and is not documented. It is currently used
+ # for the numeric ranges.
+ self.adapter = None
+ if isinstance(pgrange, str):
+ self.adapter = type(pgrange, (RangeAdapter,), {})
+ self.adapter.name = pgrange
+ else:
+ try:
+ if issubclass(pgrange, RangeAdapter) \
+ and pgrange is not RangeAdapter:
+ self.adapter = pgrange
+ except TypeError:
+ pass
+
+ if self.adapter is None:
+ raise TypeError(
+ 'pgrange must be a string or a RangeAdapter strict subclass')
+
+ self.range = None
+ try:
+ if isinstance(pyrange, str):
+ self.range = type(pyrange, (Range,), {})
+ if issubclass(pyrange, Range) and pyrange is not Range:
+ self.range = pyrange
+ except TypeError:
+ pass
+
+ if self.range is None:
+ raise TypeError(
+ 'pyrange must be a type or a Range strict subclass')
+
+ @classmethod
+ def _from_db(self, name, pyrange, conn_or_curs):
+ """Return a `RangeCaster` instance for the type *pgrange*.
+
+ Raise `ProgrammingError` if the type is not found.
+ """
+ from psycopg2.extensions import STATUS_IN_TRANSACTION
+ from psycopg2.extras import _solve_conn_curs
+ conn, curs = _solve_conn_curs(conn_or_curs)
+
+ if conn.info.server_version < 90200:
+ raise ProgrammingError("range types not available in version %s"
+ % conn.info.server_version)
+
+ # Store the transaction status of the connection to revert it after use
+ conn_status = conn.status
+
+ # Use the correct schema
+ if '.' in name:
+ schema, tname = name.split('.', 1)
+ else:
+ tname = name
+ schema = 'public'
+
+ # get the type oid and attributes
+ try:
+ curs.execute("""\
+select rngtypid, rngsubtype,
+ (select typarray from pg_type where oid = rngtypid)
+from pg_range r
+join pg_type t on t.oid = rngtypid
+join pg_namespace ns on ns.oid = typnamespace
+where typname = %s and ns.nspname = %s;
+""", (tname, schema))
+
+ except ProgrammingError:
+ if not conn.autocommit:
+ conn.rollback()
+ raise
+ else:
+ rec = curs.fetchone()
+
+ # revert the status of the connection as before the command
+ if (conn_status != STATUS_IN_TRANSACTION
+ and not conn.autocommit):
+ conn.rollback()
+
+ if not rec:
+ raise ProgrammingError(
+ f"PostgreSQL type '{name}' not found")
+
+ type, subtype, array = rec
+
+ return RangeCaster(name, pyrange,
+ oid=type, subtype_oid=subtype, array_oid=array)
+
+ _re_range = re.compile(r"""
+ ( \(|\[ ) # lower bound flag
+ (?: # lower bound:
+ " ( (?: [^"] | "")* ) " # - a quoted string
+ | ( [^",]+ ) # - or an unquoted string
+ )? # - or empty (not catched)
+ ,
+ (?: # upper bound:
+ " ( (?: [^"] | "")* ) " # - a quoted string
+ | ( [^"\)\]]+ ) # - or an unquoted string
+ )? # - or empty (not catched)
+ ( \)|\] ) # upper bound flag
+ """, re.VERBOSE)
+
+ _re_undouble = re.compile(r'(["\\])\1')
+
+ def parse(self, s, cur=None):
+ if s is None:
+ return None
+
+ if s == 'empty':
+ return self.range(empty=True)
+
+ m = self._re_range.match(s)
+ if m is None:
+ raise InterfaceError(f"failed to parse range: '{s}'")
+
+ lower = m.group(3)
+ if lower is None:
+ lower = m.group(2)
+ if lower is not None:
+ lower = self._re_undouble.sub(r"\1", lower)
+
+ upper = m.group(5)
+ if upper is None:
+ upper = m.group(4)
+ if upper is not None:
+ upper = self._re_undouble.sub(r"\1", upper)
+
+ if cur is not None:
+ lower = cur.cast(self.subtype_oid, lower)
+ upper = cur.cast(self.subtype_oid, upper)
+
+ bounds = m.group(1) + m.group(6)
+
+ return self.range(lower, upper, bounds)
+
+ def _register(self, scope=None):
+ register_type(self.typecaster, scope)
+ if self.array_typecaster is not None:
+ register_type(self.array_typecaster, scope)
+
+ register_adapter(self.range, self.adapter)
+
+
+class NumericRange(Range):
+ """A `Range` suitable to pass Python numeric types to a PostgreSQL range.
+
+ PostgreSQL types :sql:`int4range`, :sql:`int8range`, :sql:`numrange` are
+ casted into `!NumericRange` instances.
+ """
+ pass
+
+
+class DateRange(Range):
+ """Represents :sql:`daterange` values."""
+ pass
+
+
+class DateTimeRange(Range):
+ """Represents :sql:`tsrange` values."""
+ pass
+
+
+class DateTimeTZRange(Range):
+ """Represents :sql:`tstzrange` values."""
+ pass
+
+
+# Special adaptation for NumericRange. Allows to pass number range regardless
+# of whether they are ints, floats and what size of ints are, which are
+# pointless in Python world. On the way back, no numeric range is casted to
+# NumericRange, but only to their subclasses
+
+class NumberRangeAdapter(RangeAdapter):
+ """Adapt a range if the subtype doesn't need quotes."""
+ def getquoted(self):
+ r = self.adapted
+ if r.isempty:
+ return b"'empty'"
+
+ if not r.lower_inf:
+ # not exactly: we are relying that none of these object is really
+ # quoted (they are numbers). Also, I'm lazy and not preparing the
+ # adapter because I assume encoding doesn't matter for these
+ # objects.
+ lower = adapt(r.lower).getquoted().decode('ascii')
+ else:
+ lower = ''
+
+ if not r.upper_inf:
+ upper = adapt(r.upper).getquoted().decode('ascii')
+ else:
+ upper = ''
+
+ return (f"'{r._bounds[0]}{lower},{upper}{r._bounds[1]}'").encode('ascii')
+
+
+# TODO: probably won't work with infs, nans and other tricky cases.
+register_adapter(NumericRange, NumberRangeAdapter)
+
+# Register globally typecasters and adapters for builtin range types.
+
+# note: the adapter is registered more than once, but this is harmless.
+int4range_caster = RangeCaster(NumberRangeAdapter, NumericRange,
+ oid=3904, subtype_oid=23, array_oid=3905)
+int4range_caster._register()
+
+int8range_caster = RangeCaster(NumberRangeAdapter, NumericRange,
+ oid=3926, subtype_oid=20, array_oid=3927)
+int8range_caster._register()
+
+numrange_caster = RangeCaster(NumberRangeAdapter, NumericRange,
+ oid=3906, subtype_oid=1700, array_oid=3907)
+numrange_caster._register()
+
+daterange_caster = RangeCaster('daterange', DateRange,
+ oid=3912, subtype_oid=1082, array_oid=3913)
+daterange_caster._register()
+
+tsrange_caster = RangeCaster('tsrange', DateTimeRange,
+ oid=3908, subtype_oid=1114, array_oid=3909)
+tsrange_caster._register()
+
+tstzrange_caster = RangeCaster('tstzrange', DateTimeTZRange,
+ oid=3910, subtype_oid=1184, array_oid=3911)
+tstzrange_caster._register()
diff --git a/app_env/Lib/site-packages/psycopg2/errorcodes.py b/app_env/Lib/site-packages/psycopg2/errorcodes.py
new file mode 100644
index 00000000..b76eb149
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/errorcodes.py
@@ -0,0 +1,448 @@
+"""Error codes for PostgreSQL
+
+This module contains symbolic names for all PostgreSQL error codes.
+"""
+# psycopg2/errorcodes.py - PostgreSQL error codes
+#
+# Copyright (C) 2006-2019 Johan Dahlin
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+#
+# Based on:
+#
+# https://www.postgresql.org/docs/current/static/errcodes-appendix.html
+#
+
+
+def lookup(code, _cache={}):
+ """Lookup an error code or class code and return its symbolic name.
+
+ Raise `KeyError` if the code is not found.
+ """
+ if _cache:
+ return _cache[code]
+
+ # Generate the lookup map at first usage.
+ tmp = {}
+ for k, v in globals().items():
+ if isinstance(v, str) and len(v) in (2, 5):
+ # Strip trailing underscore used to disambiguate duplicate values
+ tmp[v] = k.rstrip("_")
+
+ assert tmp
+
+ # Atomic update, to avoid race condition on import (bug #382)
+ _cache.update(tmp)
+
+ return _cache[code]
+
+
+# autogenerated data: do not edit below this point.
+
+# Error classes
+CLASS_SUCCESSFUL_COMPLETION = '00'
+CLASS_WARNING = '01'
+CLASS_NO_DATA = '02'
+CLASS_SQL_STATEMENT_NOT_YET_COMPLETE = '03'
+CLASS_CONNECTION_EXCEPTION = '08'
+CLASS_TRIGGERED_ACTION_EXCEPTION = '09'
+CLASS_FEATURE_NOT_SUPPORTED = '0A'
+CLASS_INVALID_TRANSACTION_INITIATION = '0B'
+CLASS_LOCATOR_EXCEPTION = '0F'
+CLASS_INVALID_GRANTOR = '0L'
+CLASS_INVALID_ROLE_SPECIFICATION = '0P'
+CLASS_DIAGNOSTICS_EXCEPTION = '0Z'
+CLASS_CASE_NOT_FOUND = '20'
+CLASS_CARDINALITY_VIOLATION = '21'
+CLASS_DATA_EXCEPTION = '22'
+CLASS_INTEGRITY_CONSTRAINT_VIOLATION = '23'
+CLASS_INVALID_CURSOR_STATE = '24'
+CLASS_INVALID_TRANSACTION_STATE = '25'
+CLASS_INVALID_SQL_STATEMENT_NAME = '26'
+CLASS_TRIGGERED_DATA_CHANGE_VIOLATION = '27'
+CLASS_INVALID_AUTHORIZATION_SPECIFICATION = '28'
+CLASS_DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST = '2B'
+CLASS_INVALID_TRANSACTION_TERMINATION = '2D'
+CLASS_SQL_ROUTINE_EXCEPTION = '2F'
+CLASS_INVALID_CURSOR_NAME = '34'
+CLASS_EXTERNAL_ROUTINE_EXCEPTION = '38'
+CLASS_EXTERNAL_ROUTINE_INVOCATION_EXCEPTION = '39'
+CLASS_SAVEPOINT_EXCEPTION = '3B'
+CLASS_INVALID_CATALOG_NAME = '3D'
+CLASS_INVALID_SCHEMA_NAME = '3F'
+CLASS_TRANSACTION_ROLLBACK = '40'
+CLASS_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION = '42'
+CLASS_WITH_CHECK_OPTION_VIOLATION = '44'
+CLASS_INSUFFICIENT_RESOURCES = '53'
+CLASS_PROGRAM_LIMIT_EXCEEDED = '54'
+CLASS_OBJECT_NOT_IN_PREREQUISITE_STATE = '55'
+CLASS_OPERATOR_INTERVENTION = '57'
+CLASS_SYSTEM_ERROR = '58'
+CLASS_SNAPSHOT_FAILURE = '72'
+CLASS_CONFIGURATION_FILE_ERROR = 'F0'
+CLASS_FOREIGN_DATA_WRAPPER_ERROR = 'HV'
+CLASS_PL_PGSQL_ERROR = 'P0'
+CLASS_INTERNAL_ERROR = 'XX'
+
+# Class 00 - Successful Completion
+SUCCESSFUL_COMPLETION = '00000'
+
+# Class 01 - Warning
+WARNING = '01000'
+NULL_VALUE_ELIMINATED_IN_SET_FUNCTION = '01003'
+STRING_DATA_RIGHT_TRUNCATION_ = '01004'
+PRIVILEGE_NOT_REVOKED = '01006'
+PRIVILEGE_NOT_GRANTED = '01007'
+IMPLICIT_ZERO_BIT_PADDING = '01008'
+DYNAMIC_RESULT_SETS_RETURNED = '0100C'
+DEPRECATED_FEATURE = '01P01'
+
+# Class 02 - No Data (this is also a warning class per the SQL standard)
+NO_DATA = '02000'
+NO_ADDITIONAL_DYNAMIC_RESULT_SETS_RETURNED = '02001'
+
+# Class 03 - SQL Statement Not Yet Complete
+SQL_STATEMENT_NOT_YET_COMPLETE = '03000'
+
+# Class 08 - Connection Exception
+CONNECTION_EXCEPTION = '08000'
+SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION = '08001'
+CONNECTION_DOES_NOT_EXIST = '08003'
+SQLSERVER_REJECTED_ESTABLISHMENT_OF_SQLCONNECTION = '08004'
+CONNECTION_FAILURE = '08006'
+TRANSACTION_RESOLUTION_UNKNOWN = '08007'
+PROTOCOL_VIOLATION = '08P01'
+
+# Class 09 - Triggered Action Exception
+TRIGGERED_ACTION_EXCEPTION = '09000'
+
+# Class 0A - Feature Not Supported
+FEATURE_NOT_SUPPORTED = '0A000'
+
+# Class 0B - Invalid Transaction Initiation
+INVALID_TRANSACTION_INITIATION = '0B000'
+
+# Class 0F - Locator Exception
+LOCATOR_EXCEPTION = '0F000'
+INVALID_LOCATOR_SPECIFICATION = '0F001'
+
+# Class 0L - Invalid Grantor
+INVALID_GRANTOR = '0L000'
+INVALID_GRANT_OPERATION = '0LP01'
+
+# Class 0P - Invalid Role Specification
+INVALID_ROLE_SPECIFICATION = '0P000'
+
+# Class 0Z - Diagnostics Exception
+DIAGNOSTICS_EXCEPTION = '0Z000'
+STACKED_DIAGNOSTICS_ACCESSED_WITHOUT_ACTIVE_HANDLER = '0Z002'
+
+# Class 20 - Case Not Found
+CASE_NOT_FOUND = '20000'
+
+# Class 21 - Cardinality Violation
+CARDINALITY_VIOLATION = '21000'
+
+# Class 22 - Data Exception
+DATA_EXCEPTION = '22000'
+STRING_DATA_RIGHT_TRUNCATION = '22001'
+NULL_VALUE_NO_INDICATOR_PARAMETER = '22002'
+NUMERIC_VALUE_OUT_OF_RANGE = '22003'
+NULL_VALUE_NOT_ALLOWED_ = '22004'
+ERROR_IN_ASSIGNMENT = '22005'
+INVALID_DATETIME_FORMAT = '22007'
+DATETIME_FIELD_OVERFLOW = '22008'
+INVALID_TIME_ZONE_DISPLACEMENT_VALUE = '22009'
+ESCAPE_CHARACTER_CONFLICT = '2200B'
+INVALID_USE_OF_ESCAPE_CHARACTER = '2200C'
+INVALID_ESCAPE_OCTET = '2200D'
+ZERO_LENGTH_CHARACTER_STRING = '2200F'
+MOST_SPECIFIC_TYPE_MISMATCH = '2200G'
+SEQUENCE_GENERATOR_LIMIT_EXCEEDED = '2200H'
+NOT_AN_XML_DOCUMENT = '2200L'
+INVALID_XML_DOCUMENT = '2200M'
+INVALID_XML_CONTENT = '2200N'
+INVALID_XML_COMMENT = '2200S'
+INVALID_XML_PROCESSING_INSTRUCTION = '2200T'
+INVALID_INDICATOR_PARAMETER_VALUE = '22010'
+SUBSTRING_ERROR = '22011'
+DIVISION_BY_ZERO = '22012'
+INVALID_PRECEDING_OR_FOLLOWING_SIZE = '22013'
+INVALID_ARGUMENT_FOR_NTILE_FUNCTION = '22014'
+INTERVAL_FIELD_OVERFLOW = '22015'
+INVALID_ARGUMENT_FOR_NTH_VALUE_FUNCTION = '22016'
+INVALID_CHARACTER_VALUE_FOR_CAST = '22018'
+INVALID_ESCAPE_CHARACTER = '22019'
+INVALID_REGULAR_EXPRESSION = '2201B'
+INVALID_ARGUMENT_FOR_LOGARITHM = '2201E'
+INVALID_ARGUMENT_FOR_POWER_FUNCTION = '2201F'
+INVALID_ARGUMENT_FOR_WIDTH_BUCKET_FUNCTION = '2201G'
+INVALID_ROW_COUNT_IN_LIMIT_CLAUSE = '2201W'
+INVALID_ROW_COUNT_IN_RESULT_OFFSET_CLAUSE = '2201X'
+INVALID_LIMIT_VALUE = '22020'
+CHARACTER_NOT_IN_REPERTOIRE = '22021'
+INDICATOR_OVERFLOW = '22022'
+INVALID_PARAMETER_VALUE = '22023'
+UNTERMINATED_C_STRING = '22024'
+INVALID_ESCAPE_SEQUENCE = '22025'
+STRING_DATA_LENGTH_MISMATCH = '22026'
+TRIM_ERROR = '22027'
+ARRAY_SUBSCRIPT_ERROR = '2202E'
+INVALID_TABLESAMPLE_REPEAT = '2202G'
+INVALID_TABLESAMPLE_ARGUMENT = '2202H'
+DUPLICATE_JSON_OBJECT_KEY_VALUE = '22030'
+INVALID_ARGUMENT_FOR_SQL_JSON_DATETIME_FUNCTION = '22031'
+INVALID_JSON_TEXT = '22032'
+INVALID_SQL_JSON_SUBSCRIPT = '22033'
+MORE_THAN_ONE_SQL_JSON_ITEM = '22034'
+NO_SQL_JSON_ITEM = '22035'
+NON_NUMERIC_SQL_JSON_ITEM = '22036'
+NON_UNIQUE_KEYS_IN_A_JSON_OBJECT = '22037'
+SINGLETON_SQL_JSON_ITEM_REQUIRED = '22038'
+SQL_JSON_ARRAY_NOT_FOUND = '22039'
+SQL_JSON_MEMBER_NOT_FOUND = '2203A'
+SQL_JSON_NUMBER_NOT_FOUND = '2203B'
+SQL_JSON_OBJECT_NOT_FOUND = '2203C'
+TOO_MANY_JSON_ARRAY_ELEMENTS = '2203D'
+TOO_MANY_JSON_OBJECT_MEMBERS = '2203E'
+SQL_JSON_SCALAR_REQUIRED = '2203F'
+FLOATING_POINT_EXCEPTION = '22P01'
+INVALID_TEXT_REPRESENTATION = '22P02'
+INVALID_BINARY_REPRESENTATION = '22P03'
+BAD_COPY_FILE_FORMAT = '22P04'
+UNTRANSLATABLE_CHARACTER = '22P05'
+NONSTANDARD_USE_OF_ESCAPE_CHARACTER = '22P06'
+
+# Class 23 - Integrity Constraint Violation
+INTEGRITY_CONSTRAINT_VIOLATION = '23000'
+RESTRICT_VIOLATION = '23001'
+NOT_NULL_VIOLATION = '23502'
+FOREIGN_KEY_VIOLATION = '23503'
+UNIQUE_VIOLATION = '23505'
+CHECK_VIOLATION = '23514'
+EXCLUSION_VIOLATION = '23P01'
+
+# Class 24 - Invalid Cursor State
+INVALID_CURSOR_STATE = '24000'
+
+# Class 25 - Invalid Transaction State
+INVALID_TRANSACTION_STATE = '25000'
+ACTIVE_SQL_TRANSACTION = '25001'
+BRANCH_TRANSACTION_ALREADY_ACTIVE = '25002'
+INAPPROPRIATE_ACCESS_MODE_FOR_BRANCH_TRANSACTION = '25003'
+INAPPROPRIATE_ISOLATION_LEVEL_FOR_BRANCH_TRANSACTION = '25004'
+NO_ACTIVE_SQL_TRANSACTION_FOR_BRANCH_TRANSACTION = '25005'
+READ_ONLY_SQL_TRANSACTION = '25006'
+SCHEMA_AND_DATA_STATEMENT_MIXING_NOT_SUPPORTED = '25007'
+HELD_CURSOR_REQUIRES_SAME_ISOLATION_LEVEL = '25008'
+NO_ACTIVE_SQL_TRANSACTION = '25P01'
+IN_FAILED_SQL_TRANSACTION = '25P02'
+IDLE_IN_TRANSACTION_SESSION_TIMEOUT = '25P03'
+
+# Class 26 - Invalid SQL Statement Name
+INVALID_SQL_STATEMENT_NAME = '26000'
+
+# Class 27 - Triggered Data Change Violation
+TRIGGERED_DATA_CHANGE_VIOLATION = '27000'
+
+# Class 28 - Invalid Authorization Specification
+INVALID_AUTHORIZATION_SPECIFICATION = '28000'
+INVALID_PASSWORD = '28P01'
+
+# Class 2B - Dependent Privilege Descriptors Still Exist
+DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST = '2B000'
+DEPENDENT_OBJECTS_STILL_EXIST = '2BP01'
+
+# Class 2D - Invalid Transaction Termination
+INVALID_TRANSACTION_TERMINATION = '2D000'
+
+# Class 2F - SQL Routine Exception
+SQL_ROUTINE_EXCEPTION = '2F000'
+MODIFYING_SQL_DATA_NOT_PERMITTED_ = '2F002'
+PROHIBITED_SQL_STATEMENT_ATTEMPTED_ = '2F003'
+READING_SQL_DATA_NOT_PERMITTED_ = '2F004'
+FUNCTION_EXECUTED_NO_RETURN_STATEMENT = '2F005'
+
+# Class 34 - Invalid Cursor Name
+INVALID_CURSOR_NAME = '34000'
+
+# Class 38 - External Routine Exception
+EXTERNAL_ROUTINE_EXCEPTION = '38000'
+CONTAINING_SQL_NOT_PERMITTED = '38001'
+MODIFYING_SQL_DATA_NOT_PERMITTED = '38002'
+PROHIBITED_SQL_STATEMENT_ATTEMPTED = '38003'
+READING_SQL_DATA_NOT_PERMITTED = '38004'
+
+# Class 39 - External Routine Invocation Exception
+EXTERNAL_ROUTINE_INVOCATION_EXCEPTION = '39000'
+INVALID_SQLSTATE_RETURNED = '39001'
+NULL_VALUE_NOT_ALLOWED = '39004'
+TRIGGER_PROTOCOL_VIOLATED = '39P01'
+SRF_PROTOCOL_VIOLATED = '39P02'
+EVENT_TRIGGER_PROTOCOL_VIOLATED = '39P03'
+
+# Class 3B - Savepoint Exception
+SAVEPOINT_EXCEPTION = '3B000'
+INVALID_SAVEPOINT_SPECIFICATION = '3B001'
+
+# Class 3D - Invalid Catalog Name
+INVALID_CATALOG_NAME = '3D000'
+
+# Class 3F - Invalid Schema Name
+INVALID_SCHEMA_NAME = '3F000'
+
+# Class 40 - Transaction Rollback
+TRANSACTION_ROLLBACK = '40000'
+SERIALIZATION_FAILURE = '40001'
+TRANSACTION_INTEGRITY_CONSTRAINT_VIOLATION = '40002'
+STATEMENT_COMPLETION_UNKNOWN = '40003'
+DEADLOCK_DETECTED = '40P01'
+
+# Class 42 - Syntax Error or Access Rule Violation
+SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION = '42000'
+INSUFFICIENT_PRIVILEGE = '42501'
+SYNTAX_ERROR = '42601'
+INVALID_NAME = '42602'
+INVALID_COLUMN_DEFINITION = '42611'
+NAME_TOO_LONG = '42622'
+DUPLICATE_COLUMN = '42701'
+AMBIGUOUS_COLUMN = '42702'
+UNDEFINED_COLUMN = '42703'
+UNDEFINED_OBJECT = '42704'
+DUPLICATE_OBJECT = '42710'
+DUPLICATE_ALIAS = '42712'
+DUPLICATE_FUNCTION = '42723'
+AMBIGUOUS_FUNCTION = '42725'
+GROUPING_ERROR = '42803'
+DATATYPE_MISMATCH = '42804'
+WRONG_OBJECT_TYPE = '42809'
+INVALID_FOREIGN_KEY = '42830'
+CANNOT_COERCE = '42846'
+UNDEFINED_FUNCTION = '42883'
+GENERATED_ALWAYS = '428C9'
+RESERVED_NAME = '42939'
+UNDEFINED_TABLE = '42P01'
+UNDEFINED_PARAMETER = '42P02'
+DUPLICATE_CURSOR = '42P03'
+DUPLICATE_DATABASE = '42P04'
+DUPLICATE_PREPARED_STATEMENT = '42P05'
+DUPLICATE_SCHEMA = '42P06'
+DUPLICATE_TABLE = '42P07'
+AMBIGUOUS_PARAMETER = '42P08'
+AMBIGUOUS_ALIAS = '42P09'
+INVALID_COLUMN_REFERENCE = '42P10'
+INVALID_CURSOR_DEFINITION = '42P11'
+INVALID_DATABASE_DEFINITION = '42P12'
+INVALID_FUNCTION_DEFINITION = '42P13'
+INVALID_PREPARED_STATEMENT_DEFINITION = '42P14'
+INVALID_SCHEMA_DEFINITION = '42P15'
+INVALID_TABLE_DEFINITION = '42P16'
+INVALID_OBJECT_DEFINITION = '42P17'
+INDETERMINATE_DATATYPE = '42P18'
+INVALID_RECURSION = '42P19'
+WINDOWING_ERROR = '42P20'
+COLLATION_MISMATCH = '42P21'
+INDETERMINATE_COLLATION = '42P22'
+
+# Class 44 - WITH CHECK OPTION Violation
+WITH_CHECK_OPTION_VIOLATION = '44000'
+
+# Class 53 - Insufficient Resources
+INSUFFICIENT_RESOURCES = '53000'
+DISK_FULL = '53100'
+OUT_OF_MEMORY = '53200'
+TOO_MANY_CONNECTIONS = '53300'
+CONFIGURATION_LIMIT_EXCEEDED = '53400'
+
+# Class 54 - Program Limit Exceeded
+PROGRAM_LIMIT_EXCEEDED = '54000'
+STATEMENT_TOO_COMPLEX = '54001'
+TOO_MANY_COLUMNS = '54011'
+TOO_MANY_ARGUMENTS = '54023'
+
+# Class 55 - Object Not In Prerequisite State
+OBJECT_NOT_IN_PREREQUISITE_STATE = '55000'
+OBJECT_IN_USE = '55006'
+CANT_CHANGE_RUNTIME_PARAM = '55P02'
+LOCK_NOT_AVAILABLE = '55P03'
+UNSAFE_NEW_ENUM_VALUE_USAGE = '55P04'
+
+# Class 57 - Operator Intervention
+OPERATOR_INTERVENTION = '57000'
+QUERY_CANCELED = '57014'
+ADMIN_SHUTDOWN = '57P01'
+CRASH_SHUTDOWN = '57P02'
+CANNOT_CONNECT_NOW = '57P03'
+DATABASE_DROPPED = '57P04'
+IDLE_SESSION_TIMEOUT = '57P05'
+
+# Class 58 - System Error (errors external to PostgreSQL itself)
+SYSTEM_ERROR = '58000'
+IO_ERROR = '58030'
+UNDEFINED_FILE = '58P01'
+DUPLICATE_FILE = '58P02'
+
+# Class 72 - Snapshot Failure
+SNAPSHOT_TOO_OLD = '72000'
+
+# Class F0 - Configuration File Error
+CONFIG_FILE_ERROR = 'F0000'
+LOCK_FILE_EXISTS = 'F0001'
+
+# Class HV - Foreign Data Wrapper Error (SQL/MED)
+FDW_ERROR = 'HV000'
+FDW_OUT_OF_MEMORY = 'HV001'
+FDW_DYNAMIC_PARAMETER_VALUE_NEEDED = 'HV002'
+FDW_INVALID_DATA_TYPE = 'HV004'
+FDW_COLUMN_NAME_NOT_FOUND = 'HV005'
+FDW_INVALID_DATA_TYPE_DESCRIPTORS = 'HV006'
+FDW_INVALID_COLUMN_NAME = 'HV007'
+FDW_INVALID_COLUMN_NUMBER = 'HV008'
+FDW_INVALID_USE_OF_NULL_POINTER = 'HV009'
+FDW_INVALID_STRING_FORMAT = 'HV00A'
+FDW_INVALID_HANDLE = 'HV00B'
+FDW_INVALID_OPTION_INDEX = 'HV00C'
+FDW_INVALID_OPTION_NAME = 'HV00D'
+FDW_OPTION_NAME_NOT_FOUND = 'HV00J'
+FDW_REPLY_HANDLE = 'HV00K'
+FDW_UNABLE_TO_CREATE_EXECUTION = 'HV00L'
+FDW_UNABLE_TO_CREATE_REPLY = 'HV00M'
+FDW_UNABLE_TO_ESTABLISH_CONNECTION = 'HV00N'
+FDW_NO_SCHEMAS = 'HV00P'
+FDW_SCHEMA_NOT_FOUND = 'HV00Q'
+FDW_TABLE_NOT_FOUND = 'HV00R'
+FDW_FUNCTION_SEQUENCE_ERROR = 'HV010'
+FDW_TOO_MANY_HANDLES = 'HV014'
+FDW_INCONSISTENT_DESCRIPTOR_INFORMATION = 'HV021'
+FDW_INVALID_ATTRIBUTE_VALUE = 'HV024'
+FDW_INVALID_STRING_LENGTH_OR_BUFFER_LENGTH = 'HV090'
+FDW_INVALID_DESCRIPTOR_FIELD_IDENTIFIER = 'HV091'
+
+# Class P0 - PL/pgSQL Error
+PLPGSQL_ERROR = 'P0000'
+RAISE_EXCEPTION = 'P0001'
+NO_DATA_FOUND = 'P0002'
+TOO_MANY_ROWS = 'P0003'
+ASSERT_FAILURE = 'P0004'
+
+# Class XX - Internal Error
+INTERNAL_ERROR = 'XX000'
+DATA_CORRUPTED = 'XX001'
+INDEX_CORRUPTED = 'XX002'
diff --git a/app_env/Lib/site-packages/psycopg2/errors.py b/app_env/Lib/site-packages/psycopg2/errors.py
new file mode 100644
index 00000000..e4e47f5b
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/errors.py
@@ -0,0 +1,38 @@
+"""Error classes for PostgreSQL error codes
+"""
+
+# psycopg/errors.py - SQLSTATE and DB-API exceptions
+#
+# Copyright (C) 2018-2019 Daniele Varrazzo
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+
+#
+# NOTE: the exceptions are injected into this module by the C extention.
+#
+
+
+def lookup(code):
+ """Lookup an error code and return its exception class.
+
+ Raise `!KeyError` if the code is not found.
+ """
+ from psycopg2._psycopg import sqlstate_errors # avoid circular import
+ return sqlstate_errors[code]
diff --git a/app_env/Lib/site-packages/psycopg2/extensions.py b/app_env/Lib/site-packages/psycopg2/extensions.py
new file mode 100644
index 00000000..b938d0ce
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/extensions.py
@@ -0,0 +1,213 @@
+"""psycopg extensions to the DBAPI-2.0
+
+This module holds all the extensions to the DBAPI-2.0 provided by psycopg.
+
+- `connection` -- the new-type inheritable connection class
+- `cursor` -- the new-type inheritable cursor class
+- `lobject` -- the new-type inheritable large object class
+- `adapt()` -- exposes the PEP-246_ compatible adapting mechanism used
+ by psycopg to adapt Python types to PostgreSQL ones
+
+.. _PEP-246: https://www.python.org/dev/peps/pep-0246/
+"""
+# psycopg/extensions.py - DBAPI-2.0 extensions specific to psycopg
+#
+# Copyright (C) 2003-2019 Federico Di Gregorio
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+
+import re as _re
+
+from psycopg2._psycopg import ( # noqa
+ BINARYARRAY, BOOLEAN, BOOLEANARRAY, BYTES, BYTESARRAY, DATE, DATEARRAY,
+ DATETIMEARRAY, DECIMAL, DECIMALARRAY, FLOAT, FLOATARRAY, INTEGER,
+ INTEGERARRAY, INTERVAL, INTERVALARRAY, LONGINTEGER, LONGINTEGERARRAY,
+ ROWIDARRAY, STRINGARRAY, TIME, TIMEARRAY, UNICODE, UNICODEARRAY,
+ AsIs, Binary, Boolean, Float, Int, QuotedString, )
+
+from psycopg2._psycopg import ( # noqa
+ PYDATE, PYDATETIME, PYDATETIMETZ, PYINTERVAL, PYTIME, PYDATEARRAY,
+ PYDATETIMEARRAY, PYDATETIMETZARRAY, PYINTERVALARRAY, PYTIMEARRAY,
+ DateFromPy, TimeFromPy, TimestampFromPy, IntervalFromPy, )
+
+from psycopg2._psycopg import ( # noqa
+ adapt, adapters, encodings, connection, cursor,
+ lobject, Xid, libpq_version, parse_dsn, quote_ident,
+ string_types, binary_types, new_type, new_array_type, register_type,
+ ISQLQuote, Notify, Diagnostics, Column, ConnectionInfo,
+ QueryCanceledError, TransactionRollbackError,
+ set_wait_callback, get_wait_callback, encrypt_password, )
+
+
+"""Isolation level values."""
+ISOLATION_LEVEL_AUTOCOMMIT = 0
+ISOLATION_LEVEL_READ_UNCOMMITTED = 4
+ISOLATION_LEVEL_READ_COMMITTED = 1
+ISOLATION_LEVEL_REPEATABLE_READ = 2
+ISOLATION_LEVEL_SERIALIZABLE = 3
+ISOLATION_LEVEL_DEFAULT = None
+
+
+"""psycopg connection status values."""
+STATUS_SETUP = 0
+STATUS_READY = 1
+STATUS_BEGIN = 2
+STATUS_SYNC = 3 # currently unused
+STATUS_ASYNC = 4 # currently unused
+STATUS_PREPARED = 5
+
+# This is a useful mnemonic to check if the connection is in a transaction
+STATUS_IN_TRANSACTION = STATUS_BEGIN
+
+
+"""psycopg asynchronous connection polling values"""
+POLL_OK = 0
+POLL_READ = 1
+POLL_WRITE = 2
+POLL_ERROR = 3
+
+
+"""Backend transaction status values."""
+TRANSACTION_STATUS_IDLE = 0
+TRANSACTION_STATUS_ACTIVE = 1
+TRANSACTION_STATUS_INTRANS = 2
+TRANSACTION_STATUS_INERROR = 3
+TRANSACTION_STATUS_UNKNOWN = 4
+
+
+def register_adapter(typ, callable):
+ """Register 'callable' as an ISQLQuote adapter for type 'typ'."""
+ adapters[(typ, ISQLQuote)] = callable
+
+
+# The SQL_IN class is the official adapter for tuples starting from 2.0.6.
+class SQL_IN:
+ """Adapt any iterable to an SQL quotable object."""
+ def __init__(self, seq):
+ self._seq = seq
+ self._conn = None
+
+ def prepare(self, conn):
+ self._conn = conn
+
+ def getquoted(self):
+ # this is the important line: note how every object in the
+ # list is adapted and then how getquoted() is called on it
+ pobjs = [adapt(o) for o in self._seq]
+ if self._conn is not None:
+ for obj in pobjs:
+ if hasattr(obj, 'prepare'):
+ obj.prepare(self._conn)
+ qobjs = [o.getquoted() for o in pobjs]
+ return b'(' + b', '.join(qobjs) + b')'
+
+ def __str__(self):
+ return str(self.getquoted())
+
+
+class NoneAdapter:
+ """Adapt None to NULL.
+
+ This adapter is not used normally as a fast path in mogrify uses NULL,
+ but it makes easier to adapt composite types.
+ """
+ def __init__(self, obj):
+ pass
+
+ def getquoted(self, _null=b"NULL"):
+ return _null
+
+
+def make_dsn(dsn=None, **kwargs):
+ """Convert a set of keywords into a connection strings."""
+ if dsn is None and not kwargs:
+ return ''
+
+ # If no kwarg is specified don't mung the dsn, but verify it
+ if not kwargs:
+ parse_dsn(dsn)
+ return dsn
+
+ # Override the dsn with the parameters
+ if 'database' in kwargs:
+ if 'dbname' in kwargs:
+ raise TypeError(
+ "you can't specify both 'database' and 'dbname' arguments")
+ kwargs['dbname'] = kwargs.pop('database')
+
+ # Drop the None arguments
+ kwargs = {k: v for (k, v) in kwargs.items() if v is not None}
+
+ if dsn is not None:
+ tmp = parse_dsn(dsn)
+ tmp.update(kwargs)
+ kwargs = tmp
+
+ dsn = " ".join(["{}={}".format(k, _param_escape(str(v)))
+ for (k, v) in kwargs.items()])
+
+ # verify that the returned dsn is valid
+ parse_dsn(dsn)
+
+ return dsn
+
+
+def _param_escape(s,
+ re_escape=_re.compile(r"([\\'])"),
+ re_space=_re.compile(r'\s')):
+ """
+ Apply the escaping rule required by PQconnectdb
+ """
+ if not s:
+ return "''"
+
+ s = re_escape.sub(r'\\\1', s)
+ if re_space.search(s):
+ s = "'" + s + "'"
+
+ return s
+
+
+# Create default json typecasters for PostgreSQL 9.2 oids
+from psycopg2._json import register_default_json, register_default_jsonb # noqa
+
+try:
+ JSON, JSONARRAY = register_default_json()
+ JSONB, JSONBARRAY = register_default_jsonb()
+except ImportError:
+ pass
+
+del register_default_json, register_default_jsonb
+
+
+# Create default Range typecasters
+from psycopg2. _range import Range # noqa
+del Range
+
+
+# Add the "cleaned" version of the encodings to the key.
+# When the encoding is set its name is cleaned up from - and _ and turned
+# uppercase, so an encoding not respecting these rules wouldn't be found in the
+# encodings keys and would raise an exception with the unicode typecaster
+for k, v in list(encodings.items()):
+ k = k.replace('_', '').replace('-', '').upper()
+ encodings[k] = v
+
+del k, v
diff --git a/app_env/Lib/site-packages/psycopg2/extras.py b/app_env/Lib/site-packages/psycopg2/extras.py
new file mode 100644
index 00000000..f921d2d5
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/extras.py
@@ -0,0 +1,1306 @@
+"""Miscellaneous goodies for psycopg2
+
+This module is a generic place used to hold little helper functions
+and classes until a better place in the distribution is found.
+"""
+# psycopg/extras.py - miscellaneous extra goodies for psycopg
+#
+# Copyright (C) 2003-2019 Federico Di Gregorio
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+
+import os as _os
+import time as _time
+import re as _re
+from collections import namedtuple, OrderedDict
+
+import logging as _logging
+
+import psycopg2
+from psycopg2 import extensions as _ext
+from .extensions import cursor as _cursor
+from .extensions import connection as _connection
+from .extensions import adapt as _A, quote_ident
+from functools import lru_cache
+
+from psycopg2._psycopg import ( # noqa
+ REPLICATION_PHYSICAL, REPLICATION_LOGICAL,
+ ReplicationConnection as _replicationConnection,
+ ReplicationCursor as _replicationCursor,
+ ReplicationMessage)
+
+
+# expose the json adaptation stuff into the module
+from psycopg2._json import ( # noqa
+ json, Json, register_json, register_default_json, register_default_jsonb)
+
+
+# Expose range-related objects
+from psycopg2._range import ( # noqa
+ Range, NumericRange, DateRange, DateTimeRange, DateTimeTZRange,
+ register_range, RangeAdapter, RangeCaster)
+
+
+# Expose ipaddress-related objects
+from psycopg2._ipaddress import register_ipaddress # noqa
+
+
+class DictCursorBase(_cursor):
+ """Base class for all dict-like cursors."""
+
+ def __init__(self, *args, **kwargs):
+ if 'row_factory' in kwargs:
+ row_factory = kwargs['row_factory']
+ del kwargs['row_factory']
+ else:
+ raise NotImplementedError(
+ "DictCursorBase can't be instantiated without a row factory.")
+ super().__init__(*args, **kwargs)
+ self._query_executed = False
+ self._prefetch = False
+ self.row_factory = row_factory
+
+ def fetchone(self):
+ if self._prefetch:
+ res = super().fetchone()
+ if self._query_executed:
+ self._build_index()
+ if not self._prefetch:
+ res = super().fetchone()
+ return res
+
+ def fetchmany(self, size=None):
+ if self._prefetch:
+ res = super().fetchmany(size)
+ if self._query_executed:
+ self._build_index()
+ if not self._prefetch:
+ res = super().fetchmany(size)
+ return res
+
+ def fetchall(self):
+ if self._prefetch:
+ res = super().fetchall()
+ if self._query_executed:
+ self._build_index()
+ if not self._prefetch:
+ res = super().fetchall()
+ return res
+
+ def __iter__(self):
+ try:
+ if self._prefetch:
+ res = super().__iter__()
+ first = next(res)
+ if self._query_executed:
+ self._build_index()
+ if not self._prefetch:
+ res = super().__iter__()
+ first = next(res)
+
+ yield first
+ while True:
+ yield next(res)
+ except StopIteration:
+ return
+
+
+class DictConnection(_connection):
+ """A connection that uses `DictCursor` automatically."""
+ def cursor(self, *args, **kwargs):
+ kwargs.setdefault('cursor_factory', self.cursor_factory or DictCursor)
+ return super().cursor(*args, **kwargs)
+
+
+class DictCursor(DictCursorBase):
+ """A cursor that keeps a list of column name -> index mappings__.
+
+ .. __: https://docs.python.org/glossary.html#term-mapping
+ """
+
+ def __init__(self, *args, **kwargs):
+ kwargs['row_factory'] = DictRow
+ super().__init__(*args, **kwargs)
+ self._prefetch = True
+
+ def execute(self, query, vars=None):
+ self.index = OrderedDict()
+ self._query_executed = True
+ return super().execute(query, vars)
+
+ def callproc(self, procname, vars=None):
+ self.index = OrderedDict()
+ self._query_executed = True
+ return super().callproc(procname, vars)
+
+ def _build_index(self):
+ if self._query_executed and self.description:
+ for i in range(len(self.description)):
+ self.index[self.description[i][0]] = i
+ self._query_executed = False
+
+
+class DictRow(list):
+ """A row object that allow by-column-name access to data."""
+
+ __slots__ = ('_index',)
+
+ def __init__(self, cursor):
+ self._index = cursor.index
+ self[:] = [None] * len(cursor.description)
+
+ def __getitem__(self, x):
+ if not isinstance(x, (int, slice)):
+ x = self._index[x]
+ return super().__getitem__(x)
+
+ def __setitem__(self, x, v):
+ if not isinstance(x, (int, slice)):
+ x = self._index[x]
+ super().__setitem__(x, v)
+
+ def items(self):
+ g = super().__getitem__
+ return ((n, g(self._index[n])) for n in self._index)
+
+ def keys(self):
+ return iter(self._index)
+
+ def values(self):
+ g = super().__getitem__
+ return (g(self._index[n]) for n in self._index)
+
+ def get(self, x, default=None):
+ try:
+ return self[x]
+ except Exception:
+ return default
+
+ def copy(self):
+ return OrderedDict(self.items())
+
+ def __contains__(self, x):
+ return x in self._index
+
+ def __reduce__(self):
+ # this is apparently useless, but it fixes #1073
+ return super().__reduce__()
+
+ def __getstate__(self):
+ return self[:], self._index.copy()
+
+ def __setstate__(self, data):
+ self[:] = data[0]
+ self._index = data[1]
+
+
+class RealDictConnection(_connection):
+ """A connection that uses `RealDictCursor` automatically."""
+ def cursor(self, *args, **kwargs):
+ kwargs.setdefault('cursor_factory', self.cursor_factory or RealDictCursor)
+ return super().cursor(*args, **kwargs)
+
+
+class RealDictCursor(DictCursorBase):
+ """A cursor that uses a real dict as the base type for rows.
+
+ Note that this cursor is extremely specialized and does not allow
+ the normal access (using integer indices) to fetched data. If you need
+ to access database rows both as a dictionary and a list, then use
+ the generic `DictCursor` instead of `!RealDictCursor`.
+ """
+ def __init__(self, *args, **kwargs):
+ kwargs['row_factory'] = RealDictRow
+ super().__init__(*args, **kwargs)
+
+ def execute(self, query, vars=None):
+ self.column_mapping = []
+ self._query_executed = True
+ return super().execute(query, vars)
+
+ def callproc(self, procname, vars=None):
+ self.column_mapping = []
+ self._query_executed = True
+ return super().callproc(procname, vars)
+
+ def _build_index(self):
+ if self._query_executed and self.description:
+ self.column_mapping = [d[0] for d in self.description]
+ self._query_executed = False
+
+
+class RealDictRow(OrderedDict):
+ """A `!dict` subclass representing a data record."""
+
+ def __init__(self, *args, **kwargs):
+ if args and isinstance(args[0], _cursor):
+ cursor = args[0]
+ args = args[1:]
+ else:
+ cursor = None
+
+ super().__init__(*args, **kwargs)
+
+ if cursor is not None:
+ # Required for named cursors
+ if cursor.description and not cursor.column_mapping:
+ cursor._build_index()
+
+ # Store the cols mapping in the dict itself until the row is fully
+ # populated, so we don't need to add attributes to the class
+ # (hence keeping its maintenance, special pickle support, etc.)
+ self[RealDictRow] = cursor.column_mapping
+
+ def __setitem__(self, key, value):
+ if RealDictRow in self:
+ # We are in the row building phase
+ mapping = self[RealDictRow]
+ super().__setitem__(mapping[key], value)
+ if key == len(mapping) - 1:
+ # Row building finished
+ del self[RealDictRow]
+ return
+
+ super().__setitem__(key, value)
+
+
+class NamedTupleConnection(_connection):
+ """A connection that uses `NamedTupleCursor` automatically."""
+ def cursor(self, *args, **kwargs):
+ kwargs.setdefault('cursor_factory', self.cursor_factory or NamedTupleCursor)
+ return super().cursor(*args, **kwargs)
+
+
+class NamedTupleCursor(_cursor):
+ """A cursor that generates results as `~collections.namedtuple`.
+
+ `!fetch*()` methods will return named tuples instead of regular tuples, so
+ their elements can be accessed both as regular numeric items as well as
+ attributes.
+
+ >>> nt_cur = conn.cursor(cursor_factory=psycopg2.extras.NamedTupleCursor)
+ >>> rec = nt_cur.fetchone()
+ >>> rec
+ Record(id=1, num=100, data="abc'def")
+ >>> rec[1]
+ 100
+ >>> rec.data
+ "abc'def"
+ """
+ Record = None
+ MAX_CACHE = 1024
+
+ def execute(self, query, vars=None):
+ self.Record = None
+ return super().execute(query, vars)
+
+ def executemany(self, query, vars):
+ self.Record = None
+ return super().executemany(query, vars)
+
+ def callproc(self, procname, vars=None):
+ self.Record = None
+ return super().callproc(procname, vars)
+
+ def fetchone(self):
+ t = super().fetchone()
+ if t is not None:
+ nt = self.Record
+ if nt is None:
+ nt = self.Record = self._make_nt()
+ return nt._make(t)
+
+ def fetchmany(self, size=None):
+ ts = super().fetchmany(size)
+ nt = self.Record
+ if nt is None:
+ nt = self.Record = self._make_nt()
+ return list(map(nt._make, ts))
+
+ def fetchall(self):
+ ts = super().fetchall()
+ nt = self.Record
+ if nt is None:
+ nt = self.Record = self._make_nt()
+ return list(map(nt._make, ts))
+
+ def __iter__(self):
+ try:
+ it = super().__iter__()
+ t = next(it)
+
+ nt = self.Record
+ if nt is None:
+ nt = self.Record = self._make_nt()
+
+ yield nt._make(t)
+
+ while True:
+ yield nt._make(next(it))
+ except StopIteration:
+ return
+
+ # ascii except alnum and underscore
+ _re_clean = _re.compile(
+ '[' + _re.escape(' !"#$%&\'()*+,-./:;<=>?@[\\]^`{|}~') + ']')
+
+ def _make_nt(self):
+ key = tuple(d[0] for d in self.description) if self.description else ()
+ return self._cached_make_nt(key)
+
+ @classmethod
+ def _do_make_nt(cls, key):
+ fields = []
+ for s in key:
+ s = cls._re_clean.sub('_', s)
+ # Python identifier cannot start with numbers, namedtuple fields
+ # cannot start with underscore. So...
+ if s[0] == '_' or '0' <= s[0] <= '9':
+ s = 'f' + s
+ fields.append(s)
+
+ nt = namedtuple("Record", fields)
+ return nt
+
+
+@lru_cache(512)
+def _cached_make_nt(cls, key):
+ return cls._do_make_nt(key)
+
+
+# Exposed for testability, and if someone wants to monkeypatch to tweak
+# the cache size.
+NamedTupleCursor._cached_make_nt = classmethod(_cached_make_nt)
+
+
+class LoggingConnection(_connection):
+ """A connection that logs all queries to a file or logger__ object.
+
+ .. __: https://docs.python.org/library/logging.html
+ """
+
+ def initialize(self, logobj):
+ """Initialize the connection to log to `!logobj`.
+
+ The `!logobj` parameter can be an open file object or a Logger/LoggerAdapter
+ instance from the standard logging module.
+ """
+ self._logobj = logobj
+ if _logging and isinstance(
+ logobj, (_logging.Logger, _logging.LoggerAdapter)):
+ self.log = self._logtologger
+ else:
+ self.log = self._logtofile
+
+ def filter(self, msg, curs):
+ """Filter the query before logging it.
+
+ This is the method to overwrite to filter unwanted queries out of the
+ log or to add some extra data to the output. The default implementation
+ just does nothing.
+ """
+ return msg
+
+ def _logtofile(self, msg, curs):
+ msg = self.filter(msg, curs)
+ if msg:
+ if isinstance(msg, bytes):
+ msg = msg.decode(_ext.encodings[self.encoding], 'replace')
+ self._logobj.write(msg + _os.linesep)
+
+ def _logtologger(self, msg, curs):
+ msg = self.filter(msg, curs)
+ if msg:
+ self._logobj.debug(msg)
+
+ def _check(self):
+ if not hasattr(self, '_logobj'):
+ raise self.ProgrammingError(
+ "LoggingConnection object has not been initialize()d")
+
+ def cursor(self, *args, **kwargs):
+ self._check()
+ kwargs.setdefault('cursor_factory', self.cursor_factory or LoggingCursor)
+ return super().cursor(*args, **kwargs)
+
+
+class LoggingCursor(_cursor):
+ """A cursor that logs queries using its connection logging facilities."""
+
+ def execute(self, query, vars=None):
+ try:
+ return super().execute(query, vars)
+ finally:
+ self.connection.log(self.query, self)
+
+ def callproc(self, procname, vars=None):
+ try:
+ return super().callproc(procname, vars)
+ finally:
+ self.connection.log(self.query, self)
+
+
+class MinTimeLoggingConnection(LoggingConnection):
+ """A connection that logs queries based on execution time.
+
+ This is just an example of how to sub-class `LoggingConnection` to
+ provide some extra filtering for the logged queries. Both the
+ `initialize()` and `filter()` methods are overwritten to make sure
+ that only queries executing for more than ``mintime`` ms are logged.
+
+ Note that this connection uses the specialized cursor
+ `MinTimeLoggingCursor`.
+ """
+ def initialize(self, logobj, mintime=0):
+ LoggingConnection.initialize(self, logobj)
+ self._mintime = mintime
+
+ def filter(self, msg, curs):
+ t = (_time.time() - curs.timestamp) * 1000
+ if t > self._mintime:
+ if isinstance(msg, bytes):
+ msg = msg.decode(_ext.encodings[self.encoding], 'replace')
+ return f"{msg}{_os.linesep} (execution time: {t} ms)"
+
+ def cursor(self, *args, **kwargs):
+ kwargs.setdefault('cursor_factory',
+ self.cursor_factory or MinTimeLoggingCursor)
+ return LoggingConnection.cursor(self, *args, **kwargs)
+
+
+class MinTimeLoggingCursor(LoggingCursor):
+ """The cursor sub-class companion to `MinTimeLoggingConnection`."""
+
+ def execute(self, query, vars=None):
+ self.timestamp = _time.time()
+ return LoggingCursor.execute(self, query, vars)
+
+ def callproc(self, procname, vars=None):
+ self.timestamp = _time.time()
+ return LoggingCursor.callproc(self, procname, vars)
+
+
+class LogicalReplicationConnection(_replicationConnection):
+
+ def __init__(self, *args, **kwargs):
+ kwargs['replication_type'] = REPLICATION_LOGICAL
+ super().__init__(*args, **kwargs)
+
+
+class PhysicalReplicationConnection(_replicationConnection):
+
+ def __init__(self, *args, **kwargs):
+ kwargs['replication_type'] = REPLICATION_PHYSICAL
+ super().__init__(*args, **kwargs)
+
+
+class StopReplication(Exception):
+ """
+ Exception used to break out of the endless loop in
+ `~ReplicationCursor.consume_stream()`.
+
+ Subclass of `~exceptions.Exception`. Intentionally *not* inherited from
+ `~psycopg2.Error` as occurrence of this exception does not indicate an
+ error.
+ """
+ pass
+
+
+class ReplicationCursor(_replicationCursor):
+ """A cursor used for communication on replication connections."""
+
+ def create_replication_slot(self, slot_name, slot_type=None, output_plugin=None):
+ """Create streaming replication slot."""
+
+ command = f"CREATE_REPLICATION_SLOT {quote_ident(slot_name, self)} "
+
+ if slot_type is None:
+ slot_type = self.connection.replication_type
+
+ if slot_type == REPLICATION_LOGICAL:
+ if output_plugin is None:
+ raise psycopg2.ProgrammingError(
+ "output plugin name is required to create "
+ "logical replication slot")
+
+ command += f"LOGICAL {quote_ident(output_plugin, self)}"
+
+ elif slot_type == REPLICATION_PHYSICAL:
+ if output_plugin is not None:
+ raise psycopg2.ProgrammingError(
+ "cannot specify output plugin name when creating "
+ "physical replication slot")
+
+ command += "PHYSICAL"
+
+ else:
+ raise psycopg2.ProgrammingError(
+ f"unrecognized replication type: {repr(slot_type)}")
+
+ self.execute(command)
+
+ def drop_replication_slot(self, slot_name):
+ """Drop streaming replication slot."""
+
+ command = f"DROP_REPLICATION_SLOT {quote_ident(slot_name, self)}"
+ self.execute(command)
+
+ def start_replication(
+ self, slot_name=None, slot_type=None, start_lsn=0,
+ timeline=0, options=None, decode=False, status_interval=10):
+ """Start replication stream."""
+
+ command = "START_REPLICATION "
+
+ if slot_type is None:
+ slot_type = self.connection.replication_type
+
+ if slot_type == REPLICATION_LOGICAL:
+ if slot_name:
+ command += f"SLOT {quote_ident(slot_name, self)} "
+ else:
+ raise psycopg2.ProgrammingError(
+ "slot name is required for logical replication")
+
+ command += "LOGICAL "
+
+ elif slot_type == REPLICATION_PHYSICAL:
+ if slot_name:
+ command += f"SLOT {quote_ident(slot_name, self)} "
+ # don't add "PHYSICAL", before 9.4 it was just START_REPLICATION XXX/XXX
+
+ else:
+ raise psycopg2.ProgrammingError(
+ f"unrecognized replication type: {repr(slot_type)}")
+
+ if type(start_lsn) is str:
+ lsn = start_lsn.split('/')
+ lsn = f"{int(lsn[0], 16):X}/{int(lsn[1], 16):08X}"
+ else:
+ lsn = f"{start_lsn >> 32 & 4294967295:X}/{start_lsn & 4294967295:08X}"
+
+ command += lsn
+
+ if timeline != 0:
+ if slot_type == REPLICATION_LOGICAL:
+ raise psycopg2.ProgrammingError(
+ "cannot specify timeline for logical replication")
+
+ command += f" TIMELINE {timeline}"
+
+ if options:
+ if slot_type == REPLICATION_PHYSICAL:
+ raise psycopg2.ProgrammingError(
+ "cannot specify output plugin options for physical replication")
+
+ command += " ("
+ for k, v in options.items():
+ if not command.endswith('('):
+ command += ", "
+ command += f"{quote_ident(k, self)} {_A(str(v))}"
+ command += ")"
+
+ self.start_replication_expert(
+ command, decode=decode, status_interval=status_interval)
+
+ # allows replication cursors to be used in select.select() directly
+ def fileno(self):
+ return self.connection.fileno()
+
+
+# a dbtype and adapter for Python UUID type
+
+class UUID_adapter:
+ """Adapt Python's uuid.UUID__ type to PostgreSQL's uuid__.
+
+ .. __: https://docs.python.org/library/uuid.html
+ .. __: https://www.postgresql.org/docs/current/static/datatype-uuid.html
+ """
+
+ def __init__(self, uuid):
+ self._uuid = uuid
+
+ def __conform__(self, proto):
+ if proto is _ext.ISQLQuote:
+ return self
+
+ def getquoted(self):
+ return (f"'{self._uuid}'::uuid").encode('utf8')
+
+ def __str__(self):
+ return f"'{self._uuid}'::uuid"
+
+
+def register_uuid(oids=None, conn_or_curs=None):
+ """Create the UUID type and an uuid.UUID adapter.
+
+ :param oids: oid for the PostgreSQL :sql:`uuid` type, or 2-items sequence
+ with oids of the type and the array. If not specified, use PostgreSQL
+ standard oids.
+ :param conn_or_curs: where to register the typecaster. If not specified,
+ register it globally.
+ """
+
+ import uuid
+
+ if not oids:
+ oid1 = 2950
+ oid2 = 2951
+ elif isinstance(oids, (list, tuple)):
+ oid1, oid2 = oids
+ else:
+ oid1 = oids
+ oid2 = 2951
+
+ _ext.UUID = _ext.new_type((oid1, ), "UUID",
+ lambda data, cursor: data and uuid.UUID(data) or None)
+ _ext.UUIDARRAY = _ext.new_array_type((oid2,), "UUID[]", _ext.UUID)
+
+ _ext.register_type(_ext.UUID, conn_or_curs)
+ _ext.register_type(_ext.UUIDARRAY, conn_or_curs)
+ _ext.register_adapter(uuid.UUID, UUID_adapter)
+
+ return _ext.UUID
+
+
+# a type, dbtype and adapter for PostgreSQL inet type
+
+class Inet:
+ """Wrap a string to allow for correct SQL-quoting of inet values.
+
+ Note that this adapter does NOT check the passed value to make
+ sure it really is an inet-compatible address but DOES call adapt()
+ on it to make sure it is impossible to execute an SQL-injection
+ by passing an evil value to the initializer.
+ """
+ def __init__(self, addr):
+ self.addr = addr
+
+ def __repr__(self):
+ return f"{self.__class__.__name__}({self.addr!r})"
+
+ def prepare(self, conn):
+ self._conn = conn
+
+ def getquoted(self):
+ obj = _A(self.addr)
+ if hasattr(obj, 'prepare'):
+ obj.prepare(self._conn)
+ return obj.getquoted() + b"::inet"
+
+ def __conform__(self, proto):
+ if proto is _ext.ISQLQuote:
+ return self
+
+ def __str__(self):
+ return str(self.addr)
+
+
+def register_inet(oid=None, conn_or_curs=None):
+ """Create the INET type and an Inet adapter.
+
+ :param oid: oid for the PostgreSQL :sql:`inet` type, or 2-items sequence
+ with oids of the type and the array. If not specified, use PostgreSQL
+ standard oids.
+ :param conn_or_curs: where to register the typecaster. If not specified,
+ register it globally.
+ """
+ import warnings
+ warnings.warn(
+ "the inet adapter is deprecated, it's not very useful",
+ DeprecationWarning)
+
+ if not oid:
+ oid1 = 869
+ oid2 = 1041
+ elif isinstance(oid, (list, tuple)):
+ oid1, oid2 = oid
+ else:
+ oid1 = oid
+ oid2 = 1041
+
+ _ext.INET = _ext.new_type((oid1, ), "INET",
+ lambda data, cursor: data and Inet(data) or None)
+ _ext.INETARRAY = _ext.new_array_type((oid2, ), "INETARRAY", _ext.INET)
+
+ _ext.register_type(_ext.INET, conn_or_curs)
+ _ext.register_type(_ext.INETARRAY, conn_or_curs)
+
+ return _ext.INET
+
+
+def wait_select(conn):
+ """Wait until a connection or cursor has data available.
+
+ The function is an example of a wait callback to be registered with
+ `~psycopg2.extensions.set_wait_callback()`. This function uses
+ :py:func:`~select.select()` to wait for data to become available, and
+ therefore is able to handle/receive SIGINT/KeyboardInterrupt.
+ """
+ import select
+ from psycopg2.extensions import POLL_OK, POLL_READ, POLL_WRITE
+
+ while True:
+ try:
+ state = conn.poll()
+ if state == POLL_OK:
+ break
+ elif state == POLL_READ:
+ select.select([conn.fileno()], [], [])
+ elif state == POLL_WRITE:
+ select.select([], [conn.fileno()], [])
+ else:
+ raise conn.OperationalError(f"bad state from poll: {state}")
+ except KeyboardInterrupt:
+ conn.cancel()
+ # the loop will be broken by a server error
+ continue
+
+
+def _solve_conn_curs(conn_or_curs):
+ """Return the connection and a DBAPI cursor from a connection or cursor."""
+ if conn_or_curs is None:
+ raise psycopg2.ProgrammingError("no connection or cursor provided")
+
+ if hasattr(conn_or_curs, 'execute'):
+ conn = conn_or_curs.connection
+ curs = conn.cursor(cursor_factory=_cursor)
+ else:
+ conn = conn_or_curs
+ curs = conn.cursor(cursor_factory=_cursor)
+
+ return conn, curs
+
+
+class HstoreAdapter:
+ """Adapt a Python dict to the hstore syntax."""
+ def __init__(self, wrapped):
+ self.wrapped = wrapped
+
+ def prepare(self, conn):
+ self.conn = conn
+
+ # use an old-style getquoted implementation if required
+ if conn.info.server_version < 90000:
+ self.getquoted = self._getquoted_8
+
+ def _getquoted_8(self):
+ """Use the operators available in PG pre-9.0."""
+ if not self.wrapped:
+ return b"''::hstore"
+
+ adapt = _ext.adapt
+ rv = []
+ for k, v in self.wrapped.items():
+ k = adapt(k)
+ k.prepare(self.conn)
+ k = k.getquoted()
+
+ if v is not None:
+ v = adapt(v)
+ v.prepare(self.conn)
+ v = v.getquoted()
+ else:
+ v = b'NULL'
+
+ # XXX this b'ing is painfully inefficient!
+ rv.append(b"(" + k + b" => " + v + b")")
+
+ return b"(" + b'||'.join(rv) + b")"
+
+ def _getquoted_9(self):
+ """Use the hstore(text[], text[]) function."""
+ if not self.wrapped:
+ return b"''::hstore"
+
+ k = _ext.adapt(list(self.wrapped.keys()))
+ k.prepare(self.conn)
+ v = _ext.adapt(list(self.wrapped.values()))
+ v.prepare(self.conn)
+ return b"hstore(" + k.getquoted() + b", " + v.getquoted() + b")"
+
+ getquoted = _getquoted_9
+
+ _re_hstore = _re.compile(r"""
+ # hstore key:
+ # a string of normal or escaped chars
+ "((?: [^"\\] | \\. )*)"
+ \s*=>\s* # hstore value
+ (?:
+ NULL # the value can be null - not catched
+ # or a quoted string like the key
+ | "((?: [^"\\] | \\. )*)"
+ )
+ (?:\s*,\s*|$) # pairs separated by comma or end of string.
+ """, _re.VERBOSE)
+
+ @classmethod
+ def parse(self, s, cur, _bsdec=_re.compile(r"\\(.)")):
+ """Parse an hstore representation in a Python string.
+
+ The hstore is represented as something like::
+
+ "a"=>"1", "b"=>"2"
+
+ with backslash-escaped strings.
+ """
+ if s is None:
+ return None
+
+ rv = {}
+ start = 0
+ for m in self._re_hstore.finditer(s):
+ if m is None or m.start() != start:
+ raise psycopg2.InterfaceError(
+ f"error parsing hstore pair at char {start}")
+ k = _bsdec.sub(r'\1', m.group(1))
+ v = m.group(2)
+ if v is not None:
+ v = _bsdec.sub(r'\1', v)
+
+ rv[k] = v
+ start = m.end()
+
+ if start < len(s):
+ raise psycopg2.InterfaceError(
+ f"error parsing hstore: unparsed data after char {start}")
+
+ return rv
+
+ @classmethod
+ def parse_unicode(self, s, cur):
+ """Parse an hstore returning unicode keys and values."""
+ if s is None:
+ return None
+
+ s = s.decode(_ext.encodings[cur.connection.encoding])
+ return self.parse(s, cur)
+
+ @classmethod
+ def get_oids(self, conn_or_curs):
+ """Return the lists of OID of the hstore and hstore[] types.
+ """
+ conn, curs = _solve_conn_curs(conn_or_curs)
+
+ # Store the transaction status of the connection to revert it after use
+ conn_status = conn.status
+
+ # column typarray not available before PG 8.3
+ typarray = conn.info.server_version >= 80300 and "typarray" or "NULL"
+
+ rv0, rv1 = [], []
+
+ # get the oid for the hstore
+ curs.execute(f"""SELECT t.oid, {typarray}
+FROM pg_type t JOIN pg_namespace ns
+ ON typnamespace = ns.oid
+WHERE typname = 'hstore';
+""")
+ for oids in curs:
+ rv0.append(oids[0])
+ rv1.append(oids[1])
+
+ # revert the status of the connection as before the command
+ if (conn_status != _ext.STATUS_IN_TRANSACTION
+ and not conn.autocommit):
+ conn.rollback()
+
+ return tuple(rv0), tuple(rv1)
+
+
+def register_hstore(conn_or_curs, globally=False, unicode=False,
+ oid=None, array_oid=None):
+ r"""Register adapter and typecaster for `!dict`\-\ |hstore| conversions.
+
+ :param conn_or_curs: a connection or cursor: the typecaster will be
+ registered only on this object unless *globally* is set to `!True`
+ :param globally: register the adapter globally, not only on *conn_or_curs*
+ :param unicode: if `!True`, keys and values returned from the database
+ will be `!unicode` instead of `!str`. The option is not available on
+ Python 3
+ :param oid: the OID of the |hstore| type if known. If not, it will be
+ queried on *conn_or_curs*.
+ :param array_oid: the OID of the |hstore| array type if known. If not, it
+ will be queried on *conn_or_curs*.
+
+ The connection or cursor passed to the function will be used to query the
+ database and look for the OID of the |hstore| type (which may be different
+ across databases). If querying is not desirable (e.g. with
+ :ref:`asynchronous connections `) you may specify it in the
+ *oid* parameter, which can be found using a query such as :sql:`SELECT
+ 'hstore'::regtype::oid`. Analogously you can obtain a value for *array_oid*
+ using a query such as :sql:`SELECT 'hstore[]'::regtype::oid`.
+
+ Note that, when passing a dictionary from Python to the database, both
+ strings and unicode keys and values are supported. Dictionaries returned
+ from the database have keys/values according to the *unicode* parameter.
+
+ The |hstore| contrib module must be already installed in the database
+ (executing the ``hstore.sql`` script in your ``contrib`` directory).
+ Raise `~psycopg2.ProgrammingError` if the type is not found.
+ """
+ if oid is None:
+ oid = HstoreAdapter.get_oids(conn_or_curs)
+ if oid is None or not oid[0]:
+ raise psycopg2.ProgrammingError(
+ "hstore type not found in the database. "
+ "please install it from your 'contrib/hstore.sql' file")
+ else:
+ array_oid = oid[1]
+ oid = oid[0]
+
+ if isinstance(oid, int):
+ oid = (oid,)
+
+ if array_oid is not None:
+ if isinstance(array_oid, int):
+ array_oid = (array_oid,)
+ else:
+ array_oid = tuple([x for x in array_oid if x])
+
+ # create and register the typecaster
+ HSTORE = _ext.new_type(oid, "HSTORE", HstoreAdapter.parse)
+ _ext.register_type(HSTORE, not globally and conn_or_curs or None)
+ _ext.register_adapter(dict, HstoreAdapter)
+
+ if array_oid:
+ HSTOREARRAY = _ext.new_array_type(array_oid, "HSTOREARRAY", HSTORE)
+ _ext.register_type(HSTOREARRAY, not globally and conn_or_curs or None)
+
+
+class CompositeCaster:
+ """Helps conversion of a PostgreSQL composite type into a Python object.
+
+ The class is usually created by the `register_composite()` function.
+ You may want to create and register manually instances of the class if
+ querying the database at registration time is not desirable (such as when
+ using an :ref:`asynchronous connections `).
+
+ """
+ def __init__(self, name, oid, attrs, array_oid=None, schema=None):
+ self.name = name
+ self.schema = schema
+ self.oid = oid
+ self.array_oid = array_oid
+
+ self.attnames = [a[0] for a in attrs]
+ self.atttypes = [a[1] for a in attrs]
+ self._create_type(name, self.attnames)
+ self.typecaster = _ext.new_type((oid,), name, self.parse)
+ if array_oid:
+ self.array_typecaster = _ext.new_array_type(
+ (array_oid,), f"{name}ARRAY", self.typecaster)
+ else:
+ self.array_typecaster = None
+
+ def parse(self, s, curs):
+ if s is None:
+ return None
+
+ tokens = self.tokenize(s)
+ if len(tokens) != len(self.atttypes):
+ raise psycopg2.DataError(
+ "expecting %d components for the type %s, %d found instead" %
+ (len(self.atttypes), self.name, len(tokens)))
+
+ values = [curs.cast(oid, token)
+ for oid, token in zip(self.atttypes, tokens)]
+
+ return self.make(values)
+
+ def make(self, values):
+ """Return a new Python object representing the data being casted.
+
+ *values* is the list of attributes, already casted into their Python
+ representation.
+
+ You can subclass this method to :ref:`customize the composite cast
+ `.
+ """
+
+ return self._ctor(values)
+
+ _re_tokenize = _re.compile(r"""
+ \(? ([,)]) # an empty token, representing NULL
+| \(? " ((?: [^"] | "")*) " [,)] # or a quoted string
+| \(? ([^",)]+) [,)] # or an unquoted string
+ """, _re.VERBOSE)
+
+ _re_undouble = _re.compile(r'(["\\])\1')
+
+ @classmethod
+ def tokenize(self, s):
+ rv = []
+ for m in self._re_tokenize.finditer(s):
+ if m is None:
+ raise psycopg2.InterfaceError(f"can't parse type: {s!r}")
+ if m.group(1) is not None:
+ rv.append(None)
+ elif m.group(2) is not None:
+ rv.append(self._re_undouble.sub(r"\1", m.group(2)))
+ else:
+ rv.append(m.group(3))
+
+ return rv
+
+ def _create_type(self, name, attnames):
+ self.type = namedtuple(name, attnames)
+ self._ctor = self.type._make
+
+ @classmethod
+ def _from_db(self, name, conn_or_curs):
+ """Return a `CompositeCaster` instance for the type *name*.
+
+ Raise `ProgrammingError` if the type is not found.
+ """
+ conn, curs = _solve_conn_curs(conn_or_curs)
+
+ # Store the transaction status of the connection to revert it after use
+ conn_status = conn.status
+
+ # Use the correct schema
+ if '.' in name:
+ schema, tname = name.split('.', 1)
+ else:
+ tname = name
+ schema = 'public'
+
+ # column typarray not available before PG 8.3
+ typarray = conn.info.server_version >= 80300 and "typarray" or "NULL"
+
+ # get the type oid and attributes
+ curs.execute("""\
+SELECT t.oid, %s, attname, atttypid
+FROM pg_type t
+JOIN pg_namespace ns ON typnamespace = ns.oid
+JOIN pg_attribute a ON attrelid = typrelid
+WHERE typname = %%s AND nspname = %%s
+ AND attnum > 0 AND NOT attisdropped
+ORDER BY attnum;
+""" % typarray, (tname, schema))
+
+ recs = curs.fetchall()
+
+ # revert the status of the connection as before the command
+ if (conn_status != _ext.STATUS_IN_TRANSACTION
+ and not conn.autocommit):
+ conn.rollback()
+
+ if not recs:
+ raise psycopg2.ProgrammingError(
+ f"PostgreSQL type '{name}' not found")
+
+ type_oid = recs[0][0]
+ array_oid = recs[0][1]
+ type_attrs = [(r[2], r[3]) for r in recs]
+
+ return self(tname, type_oid, type_attrs,
+ array_oid=array_oid, schema=schema)
+
+
+def register_composite(name, conn_or_curs, globally=False, factory=None):
+ """Register a typecaster to convert a composite type into a tuple.
+
+ :param name: the name of a PostgreSQL composite type, e.g. created using
+ the |CREATE TYPE|_ command
+ :param conn_or_curs: a connection or cursor used to find the type oid and
+ components; the typecaster is registered in a scope limited to this
+ object, unless *globally* is set to `!True`
+ :param globally: if `!False` (default) register the typecaster only on
+ *conn_or_curs*, otherwise register it globally
+ :param factory: if specified it should be a `CompositeCaster` subclass: use
+ it to :ref:`customize how to cast composite types `
+ :return: the registered `CompositeCaster` or *factory* instance
+ responsible for the conversion
+ """
+ if factory is None:
+ factory = CompositeCaster
+
+ caster = factory._from_db(name, conn_or_curs)
+ _ext.register_type(caster.typecaster, not globally and conn_or_curs or None)
+
+ if caster.array_typecaster is not None:
+ _ext.register_type(
+ caster.array_typecaster, not globally and conn_or_curs or None)
+
+ return caster
+
+
+def _paginate(seq, page_size):
+ """Consume an iterable and return it in chunks.
+
+ Every chunk is at most `page_size`. Never return an empty chunk.
+ """
+ page = []
+ it = iter(seq)
+ while True:
+ try:
+ for i in range(page_size):
+ page.append(next(it))
+ yield page
+ page = []
+ except StopIteration:
+ if page:
+ yield page
+ return
+
+
+def execute_batch(cur, sql, argslist, page_size=100):
+ r"""Execute groups of statements in fewer server roundtrips.
+
+ Execute *sql* several times, against all parameters set (sequences or
+ mappings) found in *argslist*.
+
+ The function is semantically similar to
+
+ .. parsed-literal::
+
+ *cur*\.\ `~cursor.executemany`\ (\ *sql*\ , *argslist*\ )
+
+ but has a different implementation: Psycopg will join the statements into
+ fewer multi-statement commands, each one containing at most *page_size*
+ statements, resulting in a reduced number of server roundtrips.
+
+ After the execution of the function the `cursor.rowcount` property will
+ **not** contain a total result.
+
+ """
+ for page in _paginate(argslist, page_size=page_size):
+ sqls = [cur.mogrify(sql, args) for args in page]
+ cur.execute(b";".join(sqls))
+
+
+def execute_values(cur, sql, argslist, template=None, page_size=100, fetch=False):
+ '''Execute a statement using :sql:`VALUES` with a sequence of parameters.
+
+ :param cur: the cursor to use to execute the query.
+
+ :param sql: the query to execute. It must contain a single ``%s``
+ placeholder, which will be replaced by a `VALUES list`__.
+ Example: ``"INSERT INTO mytable (id, f1, f2) VALUES %s"``.
+
+ :param argslist: sequence of sequences or dictionaries with the arguments
+ to send to the query. The type and content must be consistent with
+ *template*.
+
+ :param template: the snippet to merge to every item in *argslist* to
+ compose the query.
+
+ - If the *argslist* items are sequences it should contain positional
+ placeholders (e.g. ``"(%s, %s, %s)"``, or ``"(%s, %s, 42)``" if there
+ are constants value...).
+
+ - If the *argslist* items are mappings it should contain named
+ placeholders (e.g. ``"(%(id)s, %(f1)s, 42)"``).
+
+ If not specified, assume the arguments are sequence and use a simple
+ positional template (i.e. ``(%s, %s, ...)``), with the number of
+ placeholders sniffed by the first element in *argslist*.
+
+ :param page_size: maximum number of *argslist* items to include in every
+ statement. If there are more items the function will execute more than
+ one statement.
+
+ :param fetch: if `!True` return the query results into a list (like in a
+ `~cursor.fetchall()`). Useful for queries with :sql:`RETURNING`
+ clause.
+
+ .. __: https://www.postgresql.org/docs/current/static/queries-values.html
+
+ After the execution of the function the `cursor.rowcount` property will
+ **not** contain a total result.
+
+ While :sql:`INSERT` is an obvious candidate for this function it is
+ possible to use it with other statements, for example::
+
+ >>> cur.execute(
+ ... "create table test (id int primary key, v1 int, v2 int)")
+
+ >>> execute_values(cur,
+ ... "INSERT INTO test (id, v1, v2) VALUES %s",
+ ... [(1, 2, 3), (4, 5, 6), (7, 8, 9)])
+
+ >>> execute_values(cur,
+ ... """UPDATE test SET v1 = data.v1 FROM (VALUES %s) AS data (id, v1)
+ ... WHERE test.id = data.id""",
+ ... [(1, 20), (4, 50)])
+
+ >>> cur.execute("select * from test order by id")
+ >>> cur.fetchall()
+ [(1, 20, 3), (4, 50, 6), (7, 8, 9)])
+
+ '''
+ from psycopg2.sql import Composable
+ if isinstance(sql, Composable):
+ sql = sql.as_string(cur)
+
+ # we can't just use sql % vals because vals is bytes: if sql is bytes
+ # there will be some decoding error because of stupid codec used, and Py3
+ # doesn't implement % on bytes.
+ if not isinstance(sql, bytes):
+ sql = sql.encode(_ext.encodings[cur.connection.encoding])
+ pre, post = _split_sql(sql)
+
+ result = [] if fetch else None
+ for page in _paginate(argslist, page_size=page_size):
+ if template is None:
+ template = b'(' + b','.join([b'%s'] * len(page[0])) + b')'
+ parts = pre[:]
+ for args in page:
+ parts.append(cur.mogrify(template, args))
+ parts.append(b',')
+ parts[-1:] = post
+ cur.execute(b''.join(parts))
+ if fetch:
+ result.extend(cur.fetchall())
+
+ return result
+
+
+def _split_sql(sql):
+ """Split *sql* on a single ``%s`` placeholder.
+
+ Split on the %s, perform %% replacement and return pre, post lists of
+ snippets.
+ """
+ curr = pre = []
+ post = []
+ tokens = _re.split(br'(%.)', sql)
+ for token in tokens:
+ if len(token) != 2 or token[:1] != b'%':
+ curr.append(token)
+ continue
+
+ if token[1:] == b's':
+ if curr is pre:
+ curr = post
+ else:
+ raise ValueError(
+ "the query contains more than one '%s' placeholder")
+ elif token[1:] == b'%':
+ curr.append(b'%')
+ else:
+ raise ValueError("unsupported format character: '%s'"
+ % token[1:].decode('ascii', 'replace'))
+
+ if curr is pre:
+ raise ValueError("the query doesn't contain any '%s' placeholder")
+
+ return pre, post
diff --git a/app_env/Lib/site-packages/psycopg2/pool.py b/app_env/Lib/site-packages/psycopg2/pool.py
new file mode 100644
index 00000000..9d67d68e
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/pool.py
@@ -0,0 +1,187 @@
+"""Connection pooling for psycopg2
+
+This module implements thread-safe (and not) connection pools.
+"""
+# psycopg/pool.py - pooling code for psycopg
+#
+# Copyright (C) 2003-2019 Federico Di Gregorio
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+
+import psycopg2
+from psycopg2 import extensions as _ext
+
+
+class PoolError(psycopg2.Error):
+ pass
+
+
+class AbstractConnectionPool:
+ """Generic key-based pooling code."""
+
+ def __init__(self, minconn, maxconn, *args, **kwargs):
+ """Initialize the connection pool.
+
+ New 'minconn' connections are created immediately calling 'connfunc'
+ with given parameters. The connection pool will support a maximum of
+ about 'maxconn' connections.
+ """
+ self.minconn = int(minconn)
+ self.maxconn = int(maxconn)
+ self.closed = False
+
+ self._args = args
+ self._kwargs = kwargs
+
+ self._pool = []
+ self._used = {}
+ self._rused = {} # id(conn) -> key map
+ self._keys = 0
+
+ for i in range(self.minconn):
+ self._connect()
+
+ def _connect(self, key=None):
+ """Create a new connection and assign it to 'key' if not None."""
+ conn = psycopg2.connect(*self._args, **self._kwargs)
+ if key is not None:
+ self._used[key] = conn
+ self._rused[id(conn)] = key
+ else:
+ self._pool.append(conn)
+ return conn
+
+ def _getkey(self):
+ """Return a new unique key."""
+ self._keys += 1
+ return self._keys
+
+ def _getconn(self, key=None):
+ """Get a free connection and assign it to 'key' if not None."""
+ if self.closed:
+ raise PoolError("connection pool is closed")
+ if key is None:
+ key = self._getkey()
+
+ if key in self._used:
+ return self._used[key]
+
+ if self._pool:
+ self._used[key] = conn = self._pool.pop()
+ self._rused[id(conn)] = key
+ return conn
+ else:
+ if len(self._used) == self.maxconn:
+ raise PoolError("connection pool exhausted")
+ return self._connect(key)
+
+ def _putconn(self, conn, key=None, close=False):
+ """Put away a connection."""
+ if self.closed:
+ raise PoolError("connection pool is closed")
+
+ if key is None:
+ key = self._rused.get(id(conn))
+ if key is None:
+ raise PoolError("trying to put unkeyed connection")
+
+ if len(self._pool) < self.minconn and not close:
+ # Return the connection into a consistent state before putting
+ # it back into the pool
+ if not conn.closed:
+ status = conn.info.transaction_status
+ if status == _ext.TRANSACTION_STATUS_UNKNOWN:
+ # server connection lost
+ conn.close()
+ elif status != _ext.TRANSACTION_STATUS_IDLE:
+ # connection in error or in transaction
+ conn.rollback()
+ self._pool.append(conn)
+ else:
+ # regular idle connection
+ self._pool.append(conn)
+ # If the connection is closed, we just discard it.
+ else:
+ conn.close()
+
+ # here we check for the presence of key because it can happen that a
+ # thread tries to put back a connection after a call to close
+ if not self.closed or key in self._used:
+ del self._used[key]
+ del self._rused[id(conn)]
+
+ def _closeall(self):
+ """Close all connections.
+
+ Note that this can lead to some code fail badly when trying to use
+ an already closed connection. If you call .closeall() make sure
+ your code can deal with it.
+ """
+ if self.closed:
+ raise PoolError("connection pool is closed")
+ for conn in self._pool + list(self._used.values()):
+ try:
+ conn.close()
+ except Exception:
+ pass
+ self.closed = True
+
+
+class SimpleConnectionPool(AbstractConnectionPool):
+ """A connection pool that can't be shared across different threads."""
+
+ getconn = AbstractConnectionPool._getconn
+ putconn = AbstractConnectionPool._putconn
+ closeall = AbstractConnectionPool._closeall
+
+
+class ThreadedConnectionPool(AbstractConnectionPool):
+ """A connection pool that works with the threading module."""
+
+ def __init__(self, minconn, maxconn, *args, **kwargs):
+ """Initialize the threading lock."""
+ import threading
+ AbstractConnectionPool.__init__(
+ self, minconn, maxconn, *args, **kwargs)
+ self._lock = threading.Lock()
+
+ def getconn(self, key=None):
+ """Get a free connection and assign it to 'key' if not None."""
+ self._lock.acquire()
+ try:
+ return self._getconn(key)
+ finally:
+ self._lock.release()
+
+ def putconn(self, conn=None, key=None, close=False):
+ """Put away an unused connection."""
+ self._lock.acquire()
+ try:
+ self._putconn(conn, key, close)
+ finally:
+ self._lock.release()
+
+ def closeall(self):
+ """Close all connections (even the one currently in use.)"""
+ self._lock.acquire()
+ try:
+ self._closeall()
+ finally:
+ self._lock.release()
diff --git a/app_env/Lib/site-packages/psycopg2/sql.py b/app_env/Lib/site-packages/psycopg2/sql.py
new file mode 100644
index 00000000..69b352b7
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/sql.py
@@ -0,0 +1,455 @@
+"""SQL composition utility module
+"""
+
+# psycopg/sql.py - SQL composition utility module
+#
+# Copyright (C) 2016-2019 Daniele Varrazzo
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+
+import string
+
+from psycopg2 import extensions as ext
+
+
+_formatter = string.Formatter()
+
+
+class Composable:
+ """
+ Abstract base class for objects that can be used to compose an SQL string.
+
+ `!Composable` objects can be passed directly to `~cursor.execute()`,
+ `~cursor.executemany()`, `~cursor.copy_expert()` in place of the query
+ string.
+
+ `!Composable` objects can be joined using the ``+`` operator: the result
+ will be a `Composed` instance containing the objects joined. The operator
+ ``*`` is also supported with an integer argument: the result is a
+ `!Composed` instance containing the left argument repeated as many times as
+ requested.
+ """
+ def __init__(self, wrapped):
+ self._wrapped = wrapped
+
+ def __repr__(self):
+ return f"{self.__class__.__name__}({self._wrapped!r})"
+
+ def as_string(self, context):
+ """
+ Return the string value of the object.
+
+ :param context: the context to evaluate the string into.
+ :type context: `connection` or `cursor`
+
+ The method is automatically invoked by `~cursor.execute()`,
+ `~cursor.executemany()`, `~cursor.copy_expert()` if a `!Composable` is
+ passed instead of the query string.
+ """
+ raise NotImplementedError
+
+ def __add__(self, other):
+ if isinstance(other, Composed):
+ return Composed([self]) + other
+ if isinstance(other, Composable):
+ return Composed([self]) + Composed([other])
+ else:
+ return NotImplemented
+
+ def __mul__(self, n):
+ return Composed([self] * n)
+
+ def __eq__(self, other):
+ return type(self) is type(other) and self._wrapped == other._wrapped
+
+ def __ne__(self, other):
+ return not self.__eq__(other)
+
+
+class Composed(Composable):
+ """
+ A `Composable` object made of a sequence of `!Composable`.
+
+ The object is usually created using `!Composable` operators and methods.
+ However it is possible to create a `!Composed` directly specifying a
+ sequence of `!Composable` as arguments.
+
+ Example::
+
+ >>> comp = sql.Composed(
+ ... [sql.SQL("insert into "), sql.Identifier("table")])
+ >>> print(comp.as_string(conn))
+ insert into "table"
+
+ `!Composed` objects are iterable (so they can be used in `SQL.join` for
+ instance).
+ """
+ def __init__(self, seq):
+ wrapped = []
+ for i in seq:
+ if not isinstance(i, Composable):
+ raise TypeError(
+ f"Composed elements must be Composable, got {i!r} instead")
+ wrapped.append(i)
+
+ super().__init__(wrapped)
+
+ @property
+ def seq(self):
+ """The list of the content of the `!Composed`."""
+ return list(self._wrapped)
+
+ def as_string(self, context):
+ rv = []
+ for i in self._wrapped:
+ rv.append(i.as_string(context))
+ return ''.join(rv)
+
+ def __iter__(self):
+ return iter(self._wrapped)
+
+ def __add__(self, other):
+ if isinstance(other, Composed):
+ return Composed(self._wrapped + other._wrapped)
+ if isinstance(other, Composable):
+ return Composed(self._wrapped + [other])
+ else:
+ return NotImplemented
+
+ def join(self, joiner):
+ """
+ Return a new `!Composed` interposing the *joiner* with the `!Composed` items.
+
+ The *joiner* must be a `SQL` or a string which will be interpreted as
+ an `SQL`.
+
+ Example::
+
+ >>> fields = sql.Identifier('foo') + sql.Identifier('bar') # a Composed
+ >>> print(fields.join(', ').as_string(conn))
+ "foo", "bar"
+
+ """
+ if isinstance(joiner, str):
+ joiner = SQL(joiner)
+ elif not isinstance(joiner, SQL):
+ raise TypeError(
+ "Composed.join() argument must be a string or an SQL")
+
+ return joiner.join(self)
+
+
+class SQL(Composable):
+ """
+ A `Composable` representing a snippet of SQL statement.
+
+ `!SQL` exposes `join()` and `format()` methods useful to create a template
+ where to merge variable parts of a query (for instance field or table
+ names).
+
+ The *string* doesn't undergo any form of escaping, so it is not suitable to
+ represent variable identifiers or values: you should only use it to pass
+ constant strings representing templates or snippets of SQL statements; use
+ other objects such as `Identifier` or `Literal` to represent variable
+ parts.
+
+ Example::
+
+ >>> query = sql.SQL("select {0} from {1}").format(
+ ... sql.SQL(', ').join([sql.Identifier('foo'), sql.Identifier('bar')]),
+ ... sql.Identifier('table'))
+ >>> print(query.as_string(conn))
+ select "foo", "bar" from "table"
+ """
+ def __init__(self, string):
+ if not isinstance(string, str):
+ raise TypeError("SQL values must be strings")
+ super().__init__(string)
+
+ @property
+ def string(self):
+ """The string wrapped by the `!SQL` object."""
+ return self._wrapped
+
+ def as_string(self, context):
+ return self._wrapped
+
+ def format(self, *args, **kwargs):
+ """
+ Merge `Composable` objects into a template.
+
+ :param `Composable` args: parameters to replace to numbered
+ (``{0}``, ``{1}``) or auto-numbered (``{}``) placeholders
+ :param `Composable` kwargs: parameters to replace to named (``{name}``)
+ placeholders
+ :return: the union of the `!SQL` string with placeholders replaced
+ :rtype: `Composed`
+
+ The method is similar to the Python `str.format()` method: the string
+ template supports auto-numbered (``{}``), numbered (``{0}``,
+ ``{1}``...), and named placeholders (``{name}``), with positional
+ arguments replacing the numbered placeholders and keywords replacing
+ the named ones. However placeholder modifiers (``{0!r}``, ``{0:<10}``)
+ are not supported. Only `!Composable` objects can be passed to the
+ template.
+
+ Example::
+
+ >>> print(sql.SQL("select * from {} where {} = %s")
+ ... .format(sql.Identifier('people'), sql.Identifier('id'))
+ ... .as_string(conn))
+ select * from "people" where "id" = %s
+
+ >>> print(sql.SQL("select * from {tbl} where {pkey} = %s")
+ ... .format(tbl=sql.Identifier('people'), pkey=sql.Identifier('id'))
+ ... .as_string(conn))
+ select * from "people" where "id" = %s
+
+ """
+ rv = []
+ autonum = 0
+ for pre, name, spec, conv in _formatter.parse(self._wrapped):
+ if spec:
+ raise ValueError("no format specification supported by SQL")
+ if conv:
+ raise ValueError("no format conversion supported by SQL")
+ if pre:
+ rv.append(SQL(pre))
+
+ if name is None:
+ continue
+
+ if name.isdigit():
+ if autonum:
+ raise ValueError(
+ "cannot switch from automatic field numbering to manual")
+ rv.append(args[int(name)])
+ autonum = None
+
+ elif not name:
+ if autonum is None:
+ raise ValueError(
+ "cannot switch from manual field numbering to automatic")
+ rv.append(args[autonum])
+ autonum += 1
+
+ else:
+ rv.append(kwargs[name])
+
+ return Composed(rv)
+
+ def join(self, seq):
+ """
+ Join a sequence of `Composable`.
+
+ :param seq: the elements to join.
+ :type seq: iterable of `!Composable`
+
+ Use the `!SQL` object's *string* to separate the elements in *seq*.
+ Note that `Composed` objects are iterable too, so they can be used as
+ argument for this method.
+
+ Example::
+
+ >>> snip = sql.SQL(', ').join(
+ ... sql.Identifier(n) for n in ['foo', 'bar', 'baz'])
+ >>> print(snip.as_string(conn))
+ "foo", "bar", "baz"
+ """
+ rv = []
+ it = iter(seq)
+ try:
+ rv.append(next(it))
+ except StopIteration:
+ pass
+ else:
+ for i in it:
+ rv.append(self)
+ rv.append(i)
+
+ return Composed(rv)
+
+
+class Identifier(Composable):
+ """
+ A `Composable` representing an SQL identifier or a dot-separated sequence.
+
+ Identifiers usually represent names of database objects, such as tables or
+ fields. PostgreSQL identifiers follow `different rules`__ than SQL string
+ literals for escaping (e.g. they use double quotes instead of single).
+
+ .. __: https://www.postgresql.org/docs/current/static/sql-syntax-lexical.html# \
+ SQL-SYNTAX-IDENTIFIERS
+
+ Example::
+
+ >>> t1 = sql.Identifier("foo")
+ >>> t2 = sql.Identifier("ba'r")
+ >>> t3 = sql.Identifier('ba"z')
+ >>> print(sql.SQL(', ').join([t1, t2, t3]).as_string(conn))
+ "foo", "ba'r", "ba""z"
+
+ Multiple strings can be passed to the object to represent a qualified name,
+ i.e. a dot-separated sequence of identifiers.
+
+ Example::
+
+ >>> query = sql.SQL("select {} from {}").format(
+ ... sql.Identifier("table", "field"),
+ ... sql.Identifier("schema", "table"))
+ >>> print(query.as_string(conn))
+ select "table"."field" from "schema"."table"
+
+ """
+ def __init__(self, *strings):
+ if not strings:
+ raise TypeError("Identifier cannot be empty")
+
+ for s in strings:
+ if not isinstance(s, str):
+ raise TypeError("SQL identifier parts must be strings")
+
+ super().__init__(strings)
+
+ @property
+ def strings(self):
+ """A tuple with the strings wrapped by the `Identifier`."""
+ return self._wrapped
+
+ @property
+ def string(self):
+ """The string wrapped by the `Identifier`.
+ """
+ if len(self._wrapped) == 1:
+ return self._wrapped[0]
+ else:
+ raise AttributeError(
+ "the Identifier wraps more than one than one string")
+
+ def __repr__(self):
+ return f"{self.__class__.__name__}({', '.join(map(repr, self._wrapped))})"
+
+ def as_string(self, context):
+ return '.'.join(ext.quote_ident(s, context) for s in self._wrapped)
+
+
+class Literal(Composable):
+ """
+ A `Composable` representing an SQL value to include in a query.
+
+ Usually you will want to include placeholders in the query and pass values
+ as `~cursor.execute()` arguments. If however you really really need to
+ include a literal value in the query you can use this object.
+
+ The string returned by `!as_string()` follows the normal :ref:`adaptation
+ rules ` for Python objects.
+
+ Example::
+
+ >>> s1 = sql.Literal("foo")
+ >>> s2 = sql.Literal("ba'r")
+ >>> s3 = sql.Literal(42)
+ >>> print(sql.SQL(', ').join([s1, s2, s3]).as_string(conn))
+ 'foo', 'ba''r', 42
+
+ """
+ @property
+ def wrapped(self):
+ """The object wrapped by the `!Literal`."""
+ return self._wrapped
+
+ def as_string(self, context):
+ # is it a connection or cursor?
+ if isinstance(context, ext.connection):
+ conn = context
+ elif isinstance(context, ext.cursor):
+ conn = context.connection
+ else:
+ raise TypeError("context must be a connection or a cursor")
+
+ a = ext.adapt(self._wrapped)
+ if hasattr(a, 'prepare'):
+ a.prepare(conn)
+
+ rv = a.getquoted()
+ if isinstance(rv, bytes):
+ rv = rv.decode(ext.encodings[conn.encoding])
+
+ return rv
+
+
+class Placeholder(Composable):
+ """A `Composable` representing a placeholder for query parameters.
+
+ If the name is specified, generate a named placeholder (e.g. ``%(name)s``),
+ otherwise generate a positional placeholder (e.g. ``%s``).
+
+ The object is useful to generate SQL queries with a variable number of
+ arguments.
+
+ Examples::
+
+ >>> names = ['foo', 'bar', 'baz']
+
+ >>> q1 = sql.SQL("insert into table ({}) values ({})").format(
+ ... sql.SQL(', ').join(map(sql.Identifier, names)),
+ ... sql.SQL(', ').join(sql.Placeholder() * len(names)))
+ >>> print(q1.as_string(conn))
+ insert into table ("foo", "bar", "baz") values (%s, %s, %s)
+
+ >>> q2 = sql.SQL("insert into table ({}) values ({})").format(
+ ... sql.SQL(', ').join(map(sql.Identifier, names)),
+ ... sql.SQL(', ').join(map(sql.Placeholder, names)))
+ >>> print(q2.as_string(conn))
+ insert into table ("foo", "bar", "baz") values (%(foo)s, %(bar)s, %(baz)s)
+
+ """
+
+ def __init__(self, name=None):
+ if isinstance(name, str):
+ if ')' in name:
+ raise ValueError(f"invalid name: {name!r}")
+
+ elif name is not None:
+ raise TypeError(f"expected string or None as name, got {name!r}")
+
+ super().__init__(name)
+
+ @property
+ def name(self):
+ """The name of the `!Placeholder`."""
+ return self._wrapped
+
+ def __repr__(self):
+ if self._wrapped is None:
+ return f"{self.__class__.__name__}()"
+ else:
+ return f"{self.__class__.__name__}({self._wrapped!r})"
+
+ def as_string(self, context):
+ if self._wrapped is not None:
+ return f"%({self._wrapped})s"
+ else:
+ return "%s"
+
+
+# Literals
+NULL = SQL("NULL")
+DEFAULT = SQL("DEFAULT")
diff --git a/app_env/Lib/site-packages/psycopg2/tz.py b/app_env/Lib/site-packages/psycopg2/tz.py
new file mode 100644
index 00000000..d88ca37c
--- /dev/null
+++ b/app_env/Lib/site-packages/psycopg2/tz.py
@@ -0,0 +1,158 @@
+"""tzinfo implementations for psycopg2
+
+This module holds two different tzinfo implementations that can be used as
+the 'tzinfo' argument to datetime constructors, directly passed to psycopg
+functions or used to set the .tzinfo_factory attribute in cursors.
+"""
+# psycopg/tz.py - tzinfo implementation
+#
+# Copyright (C) 2003-2019 Federico Di Gregorio
+# Copyright (C) 2020-2021 The Psycopg Team
+#
+# psycopg2 is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# In addition, as a special exception, the copyright holders give
+# permission to link this program with the OpenSSL library (or with
+# modified versions of OpenSSL that use the same license as OpenSSL),
+# and distribute linked combinations including the two.
+#
+# You must obey the GNU Lesser General Public License in all respects for
+# all of the code used other than OpenSSL.
+#
+# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+# License for more details.
+
+import datetime
+import time
+
+ZERO = datetime.timedelta(0)
+
+
+class FixedOffsetTimezone(datetime.tzinfo):
+ """Fixed offset in minutes east from UTC.
+
+ This is exactly the implementation__ found in Python 2.3.x documentation,
+ with a small change to the `!__init__()` method to allow for pickling
+ and a default name in the form ``sHH:MM`` (``s`` is the sign.).
+
+ The implementation also caches instances. During creation, if a
+ FixedOffsetTimezone instance has previously been created with the same
+ offset and name that instance will be returned. This saves memory and
+ improves comparability.
+
+ .. versionchanged:: 2.9
+
+ The constructor can take either a timedelta or a number of minutes of
+ offset. Previously only minutes were supported.
+
+ .. __: https://docs.python.org/library/datetime.html
+ """
+ _name = None
+ _offset = ZERO
+
+ _cache = {}
+
+ def __init__(self, offset=None, name=None):
+ if offset is not None:
+ if not isinstance(offset, datetime.timedelta):
+ offset = datetime.timedelta(minutes=offset)
+ self._offset = offset
+ if name is not None:
+ self._name = name
+
+ def __new__(cls, offset=None, name=None):
+ """Return a suitable instance created earlier if it exists
+ """
+ key = (offset, name)
+ try:
+ return cls._cache[key]
+ except KeyError:
+ tz = super().__new__(cls, offset, name)
+ cls._cache[key] = tz
+ return tz
+
+ def __repr__(self):
+ return "psycopg2.tz.FixedOffsetTimezone(offset=%r, name=%r)" \
+ % (self._offset, self._name)
+
+ def __eq__(self, other):
+ if isinstance(other, FixedOffsetTimezone):
+ return self._offset == other._offset
+ else:
+ return NotImplemented
+
+ def __ne__(self, other):
+ if isinstance(other, FixedOffsetTimezone):
+ return self._offset != other._offset
+ else:
+ return NotImplemented
+
+ def __getinitargs__(self):
+ return self._offset, self._name
+
+ def utcoffset(self, dt):
+ return self._offset
+
+ def tzname(self, dt):
+ if self._name is not None:
+ return self._name
+
+ minutes, seconds = divmod(self._offset.total_seconds(), 60)
+ hours, minutes = divmod(minutes, 60)
+ rv = "%+03d" % hours
+ if minutes or seconds:
+ rv += ":%02d" % minutes
+ if seconds:
+ rv += ":%02d" % seconds
+
+ return rv
+
+ def dst(self, dt):
+ return ZERO
+
+
+STDOFFSET = datetime.timedelta(seconds=-time.timezone)
+if time.daylight:
+ DSTOFFSET = datetime.timedelta(seconds=-time.altzone)
+else:
+ DSTOFFSET = STDOFFSET
+DSTDIFF = DSTOFFSET - STDOFFSET
+
+
+class LocalTimezone(datetime.tzinfo):
+ """Platform idea of local timezone.
+
+ This is the exact implementation from the Python 2.3 documentation.
+ """
+ def utcoffset(self, dt):
+ if self._isdst(dt):
+ return DSTOFFSET
+ else:
+ return STDOFFSET
+
+ def dst(self, dt):
+ if self._isdst(dt):
+ return DSTDIFF
+ else:
+ return ZERO
+
+ def tzname(self, dt):
+ return time.tzname[self._isdst(dt)]
+
+ def _isdst(self, dt):
+ tt = (dt.year, dt.month, dt.day,
+ dt.hour, dt.minute, dt.second,
+ dt.weekday(), 0, -1)
+ stamp = time.mktime(tt)
+ tt = time.localtime(stamp)
+ return tt.tm_isdst > 0
+
+
+LOCAL = LocalTimezone()
+
+# TODO: pre-generate some interesting time zones?
diff --git a/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/INSTALLER b/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/INSTALLER
new file mode 100644
index 00000000..a1b589e3
--- /dev/null
+++ b/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/INSTALLER
@@ -0,0 +1 @@
+pip
diff --git a/venv/Lib/site-packages/setuptools-63.2.0.dist-info/LICENSE b/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/LICENSE
similarity index 100%
rename from venv/Lib/site-packages/setuptools-63.2.0.dist-info/LICENSE
rename to app_env/Lib/site-packages/setuptools-63.2.0.dist-info/LICENSE
diff --git a/venv/Lib/site-packages/setuptools-63.2.0.dist-info/METADATA b/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/METADATA
similarity index 100%
rename from venv/Lib/site-packages/setuptools-63.2.0.dist-info/METADATA
rename to app_env/Lib/site-packages/setuptools-63.2.0.dist-info/METADATA
diff --git a/venv/Lib/site-packages/setuptools-63.2.0.dist-info/RECORD b/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/RECORD
similarity index 100%
rename from venv/Lib/site-packages/setuptools-63.2.0.dist-info/RECORD
rename to app_env/Lib/site-packages/setuptools-63.2.0.dist-info/RECORD
diff --git a/venv/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py b/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/REQUESTED
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py
rename to app_env/Lib/site-packages/setuptools-63.2.0.dist-info/REQUESTED
diff --git a/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/WHEEL b/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/WHEEL
new file mode 100644
index 00000000..becc9a66
--- /dev/null
+++ b/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/WHEEL
@@ -0,0 +1,5 @@
+Wheel-Version: 1.0
+Generator: bdist_wheel (0.37.1)
+Root-Is-Purelib: true
+Tag: py3-none-any
+
diff --git a/venv/Lib/site-packages/setuptools-63.2.0.dist-info/entry_points.txt b/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/entry_points.txt
similarity index 100%
rename from venv/Lib/site-packages/setuptools-63.2.0.dist-info/entry_points.txt
rename to app_env/Lib/site-packages/setuptools-63.2.0.dist-info/entry_points.txt
diff --git a/venv/Lib/site-packages/setuptools-63.2.0.dist-info/top_level.txt b/app_env/Lib/site-packages/setuptools-63.2.0.dist-info/top_level.txt
similarity index 100%
rename from venv/Lib/site-packages/setuptools-63.2.0.dist-info/top_level.txt
rename to app_env/Lib/site-packages/setuptools-63.2.0.dist-info/top_level.txt
diff --git a/venv/Lib/site-packages/setuptools/__init__.py b/app_env/Lib/site-packages/setuptools/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/__init__.py
rename to app_env/Lib/site-packages/setuptools/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..0afa2d27
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc
new file mode 100644
index 00000000..4f7ca69b
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc
index 424531ad..b09da79c 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc
similarity index 87%
rename from venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc
index a48db7ef..897adfd4 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc
similarity index 85%
rename from venv/Lib/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc
index d9a2c150..29c3d466 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc
new file mode 100644
index 00000000..6bd20e58
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/_path.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/_path.cpython-310.pyc
new file mode 100644
index 00000000..26c24592
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/_path.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc
new file mode 100644
index 00000000..e47cb511
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc
new file mode 100644
index 00000000..f16c7348
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc
index 2da77ee8..4e34dd0d 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc
new file mode 100644
index 00000000..fab719e2
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/depends.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/depends.cpython-310.pyc
index 2abb4c03..3f841858 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/depends.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc
index 099de9b8..d7ac2edc 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/dist.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/dist.cpython-310.pyc
new file mode 100644
index 00000000..782529fd
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/dist.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/errors.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/errors.cpython-310.pyc
new file mode 100644
index 00000000..c36f8038
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/errors.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/extension.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/extension.cpython-310.pyc
new file mode 100644
index 00000000..60a13ba0
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/extension.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/glob.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/glob.cpython-310.pyc
index ac867afc..4c906da8 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/glob.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/installer.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/installer.cpython-310.pyc
index ae273276..97609f72 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/installer.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/launch.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/launch.cpython-310.pyc
new file mode 100644
index 00000000..85f0058e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/launch.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/logging.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/logging.cpython-310.pyc
new file mode 100644
index 00000000..65ba2b44
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/logging.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc
index 66e5522a..4719254c 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc
index 0060df32..73f6d592 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc
index 6ae4503b..77d1068e 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc
index e428447a..0aa26b0d 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc
new file mode 100644
index 00000000..0ea16482
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc
index 82e9973b..aba0df1c 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc
similarity index 79%
rename from venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc
index 7b447038..64cad61e 100644
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/version.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/version.cpython-310.pyc
new file mode 100644
index 00000000..398c97b6
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/version.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc
new file mode 100644
index 00000000..1380b85b
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc
new file mode 100644
index 00000000..7358f7ce
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_deprecation_warning.py b/app_env/Lib/site-packages/setuptools/_deprecation_warning.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_deprecation_warning.py
rename to app_env/Lib/site-packages/setuptools/_deprecation_warning.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__init__.py b/app_env/Lib/site-packages/setuptools/_distutils/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/__init__.py
rename to app_env/Lib/site-packages/setuptools/_distutils/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..313a2538
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-310.pyc
new file mode 100644
index 00000000..be561a0e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-310.pyc
new file mode 100644
index 00000000..65789601
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc
new file mode 100644
index 00000000..0c68cf06
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc
index f39ad763..0ac87897 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc
new file mode 100644
index 00000000..ae478fd3
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc
index 40bae209..a31f0590 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc
index 82d7efaf..a45e2165 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc
index 07a1f38b..c5a36e24 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc
new file mode 100644
index 00000000..5bf1a6f7
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc
new file mode 100644
index 00000000..2aa21eba
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc
index 31396058..e6dbd96d 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc
new file mode 100644
index 00000000..d85b5698
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc
new file mode 100644
index 00000000..8365f181
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc
index 34a1fb72..dffead05 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc
new file mode 100644
index 00000000..ef539d7b
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc
new file mode 100644
index 00000000..decfb81e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc
new file mode 100644
index 00000000..442d999f
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc
index 102375e3..29348736 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc
similarity index 93%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc
index 073d18e2..2b17a691 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc
index 220daaff..b95900f4 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc
new file mode 100644
index 00000000..b148e5a1
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc
index 1bd0270a..6ba9bb9d 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc
index 427639d3..cc78efee 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc
new file mode 100644
index 00000000..cb5cee28
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-310.pyc
new file mode 100644
index 00000000..c8cfe127
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc
index 3d0758af..ce774c58 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc
index 127500ee..f7ba77f7 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc
index 78e01305..8ae8c6f7 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc
index 52722bb4..58d5a419 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc
new file mode 100644
index 00000000..da5de7b2
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc
new file mode 100644
index 00000000..7ef95c96
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc
index 020e9cf2..9b91712f 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/_collections.py b/app_env/Lib/site-packages/setuptools/_distutils/_collections.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/_collections.py
rename to app_env/Lib/site-packages/setuptools/_distutils/_collections.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/_functools.py b/app_env/Lib/site-packages/setuptools/_distutils/_functools.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/_functools.py
rename to app_env/Lib/site-packages/setuptools/_distutils/_functools.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/_macos_compat.py b/app_env/Lib/site-packages/setuptools/_distutils/_macos_compat.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/_macos_compat.py
rename to app_env/Lib/site-packages/setuptools/_distutils/_macos_compat.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/_msvccompiler.py b/app_env/Lib/site-packages/setuptools/_distutils/_msvccompiler.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/_msvccompiler.py
rename to app_env/Lib/site-packages/setuptools/_distutils/_msvccompiler.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/archive_util.py b/app_env/Lib/site-packages/setuptools/_distutils/archive_util.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/archive_util.py
rename to app_env/Lib/site-packages/setuptools/_distutils/archive_util.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/bcppcompiler.py b/app_env/Lib/site-packages/setuptools/_distutils/bcppcompiler.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/bcppcompiler.py
rename to app_env/Lib/site-packages/setuptools/_distutils/bcppcompiler.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/ccompiler.py b/app_env/Lib/site-packages/setuptools/_distutils/ccompiler.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/ccompiler.py
rename to app_env/Lib/site-packages/setuptools/_distutils/ccompiler.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/cmd.py b/app_env/Lib/site-packages/setuptools/_distutils/cmd.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/cmd.py
rename to app_env/Lib/site-packages/setuptools/_distutils/cmd.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__init__.py b/app_env/Lib/site-packages/setuptools/_distutils/command/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/__init__.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..85ae5fa8
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc
new file mode 100644
index 00000000..ee8c8e50
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc
index 1c477326..8daf842e 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc
index 29bf1ae9..ddf97d8c 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc
index 25bd9d59..5aee48ce 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc
new file mode 100644
index 00000000..28df2b89
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc
index 6b39d7ab..29c63933 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc
new file mode 100644
index 00000000..ede05298
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc
new file mode 100644
index 00000000..653f5b9e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc
new file mode 100644
index 00000000..52df5dde
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc
new file mode 100644
index 00000000..c0d31314
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc
index bc874f8f..ea4dd210 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc
new file mode 100644
index 00000000..f996880a
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc
index 5740d0d0..91a2a47e 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc
new file mode 100644
index 00000000..aa57ef75
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc
new file mode 100644
index 00000000..9bb4db81
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc
index 6f31af07..16d5e533 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc
new file mode 100644
index 00000000..6f4cd446
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc
index 67e25da4..ca935e84 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc
new file mode 100644
index 00000000..84e02d21
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc
new file mode 100644
index 00000000..25adb80c
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc
similarity index 75%
rename from venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc
index 530c5825..9ed5d7b3 100644
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc
new file mode 100644
index 00000000..a38b6a87
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc
new file mode 100644
index 00000000..dcb45ad7
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc
new file mode 100644
index 00000000..8c068faa
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py b/app_env/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/bdist.py b/app_env/Lib/site-packages/setuptools/_distutils/command/bdist.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/bdist.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/bdist.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py b/app_env/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py b/app_env/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py b/app_env/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py b/app_env/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/build.py b/app_env/Lib/site-packages/setuptools/_distutils/command/build.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/build.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/build.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/build_clib.py b/app_env/Lib/site-packages/setuptools/_distutils/command/build_clib.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/build_clib.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/build_clib.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/build_ext.py b/app_env/Lib/site-packages/setuptools/_distutils/command/build_ext.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/build_ext.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/build_ext.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/build_py.py b/app_env/Lib/site-packages/setuptools/_distutils/command/build_py.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/build_py.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/build_py.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/build_scripts.py b/app_env/Lib/site-packages/setuptools/_distutils/command/build_scripts.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/build_scripts.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/build_scripts.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/check.py b/app_env/Lib/site-packages/setuptools/_distutils/command/check.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/check.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/check.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/clean.py b/app_env/Lib/site-packages/setuptools/_distutils/command/clean.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/clean.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/clean.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/config.py b/app_env/Lib/site-packages/setuptools/_distutils/command/config.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/config.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/config.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/install.py b/app_env/Lib/site-packages/setuptools/_distutils/command/install.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/install.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/install.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/install_data.py b/app_env/Lib/site-packages/setuptools/_distutils/command/install_data.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/install_data.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/install_data.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py b/app_env/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/install_headers.py b/app_env/Lib/site-packages/setuptools/_distutils/command/install_headers.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/install_headers.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/install_headers.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/install_lib.py b/app_env/Lib/site-packages/setuptools/_distutils/command/install_lib.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/install_lib.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/install_lib.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/install_scripts.py b/app_env/Lib/site-packages/setuptools/_distutils/command/install_scripts.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/install_scripts.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/install_scripts.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/py37compat.py b/app_env/Lib/site-packages/setuptools/_distutils/command/py37compat.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/py37compat.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/py37compat.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/register.py b/app_env/Lib/site-packages/setuptools/_distutils/command/register.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/register.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/register.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/sdist.py b/app_env/Lib/site-packages/setuptools/_distutils/command/sdist.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/sdist.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/sdist.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/upload.py b/app_env/Lib/site-packages/setuptools/_distutils/command/upload.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/command/upload.py
rename to app_env/Lib/site-packages/setuptools/_distutils/command/upload.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/config.py b/app_env/Lib/site-packages/setuptools/_distutils/config.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/config.py
rename to app_env/Lib/site-packages/setuptools/_distutils/config.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/core.py b/app_env/Lib/site-packages/setuptools/_distutils/core.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/core.py
rename to app_env/Lib/site-packages/setuptools/_distutils/core.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py b/app_env/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py
rename to app_env/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/debug.py b/app_env/Lib/site-packages/setuptools/_distutils/debug.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/debug.py
rename to app_env/Lib/site-packages/setuptools/_distutils/debug.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/dep_util.py b/app_env/Lib/site-packages/setuptools/_distutils/dep_util.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/dep_util.py
rename to app_env/Lib/site-packages/setuptools/_distutils/dep_util.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/dir_util.py b/app_env/Lib/site-packages/setuptools/_distutils/dir_util.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/dir_util.py
rename to app_env/Lib/site-packages/setuptools/_distutils/dir_util.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/dist.py b/app_env/Lib/site-packages/setuptools/_distutils/dist.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/dist.py
rename to app_env/Lib/site-packages/setuptools/_distutils/dist.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/errors.py b/app_env/Lib/site-packages/setuptools/_distutils/errors.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/errors.py
rename to app_env/Lib/site-packages/setuptools/_distutils/errors.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/extension.py b/app_env/Lib/site-packages/setuptools/_distutils/extension.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/extension.py
rename to app_env/Lib/site-packages/setuptools/_distutils/extension.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/fancy_getopt.py b/app_env/Lib/site-packages/setuptools/_distutils/fancy_getopt.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/fancy_getopt.py
rename to app_env/Lib/site-packages/setuptools/_distutils/fancy_getopt.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/file_util.py b/app_env/Lib/site-packages/setuptools/_distutils/file_util.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/file_util.py
rename to app_env/Lib/site-packages/setuptools/_distutils/file_util.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/filelist.py b/app_env/Lib/site-packages/setuptools/_distutils/filelist.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/filelist.py
rename to app_env/Lib/site-packages/setuptools/_distutils/filelist.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/log.py b/app_env/Lib/site-packages/setuptools/_distutils/log.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/log.py
rename to app_env/Lib/site-packages/setuptools/_distutils/log.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/msvc9compiler.py b/app_env/Lib/site-packages/setuptools/_distutils/msvc9compiler.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/msvc9compiler.py
rename to app_env/Lib/site-packages/setuptools/_distutils/msvc9compiler.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/msvccompiler.py b/app_env/Lib/site-packages/setuptools/_distutils/msvccompiler.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/msvccompiler.py
rename to app_env/Lib/site-packages/setuptools/_distutils/msvccompiler.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/py38compat.py b/app_env/Lib/site-packages/setuptools/_distutils/py38compat.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/py38compat.py
rename to app_env/Lib/site-packages/setuptools/_distutils/py38compat.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/py39compat.py b/app_env/Lib/site-packages/setuptools/_distutils/py39compat.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/py39compat.py
rename to app_env/Lib/site-packages/setuptools/_distutils/py39compat.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/spawn.py b/app_env/Lib/site-packages/setuptools/_distutils/spawn.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/spawn.py
rename to app_env/Lib/site-packages/setuptools/_distutils/spawn.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/sysconfig.py b/app_env/Lib/site-packages/setuptools/_distutils/sysconfig.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/sysconfig.py
rename to app_env/Lib/site-packages/setuptools/_distutils/sysconfig.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/text_file.py b/app_env/Lib/site-packages/setuptools/_distutils/text_file.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/text_file.py
rename to app_env/Lib/site-packages/setuptools/_distutils/text_file.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/unixccompiler.py b/app_env/Lib/site-packages/setuptools/_distutils/unixccompiler.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/unixccompiler.py
rename to app_env/Lib/site-packages/setuptools/_distutils/unixccompiler.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/util.py b/app_env/Lib/site-packages/setuptools/_distutils/util.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/util.py
rename to app_env/Lib/site-packages/setuptools/_distutils/util.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/version.py b/app_env/Lib/site-packages/setuptools/_distutils/version.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/version.py
rename to app_env/Lib/site-packages/setuptools/_distutils/version.py
diff --git a/venv/Lib/site-packages/setuptools/_distutils/versionpredicate.py b/app_env/Lib/site-packages/setuptools/_distutils/versionpredicate.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_distutils/versionpredicate.py
rename to app_env/Lib/site-packages/setuptools/_distutils/versionpredicate.py
diff --git a/venv/Lib/site-packages/setuptools/_entry_points.py b/app_env/Lib/site-packages/setuptools/_entry_points.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_entry_points.py
rename to app_env/Lib/site-packages/setuptools/_entry_points.py
diff --git a/venv/Lib/site-packages/setuptools/_imp.py b/app_env/Lib/site-packages/setuptools/_imp.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_imp.py
rename to app_env/Lib/site-packages/setuptools/_imp.py
diff --git a/venv/Lib/site-packages/setuptools/_importlib.py b/app_env/Lib/site-packages/setuptools/_importlib.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_importlib.py
rename to app_env/Lib/site-packages/setuptools/_importlib.py
diff --git a/venv/Lib/site-packages/setuptools/_itertools.py b/app_env/Lib/site-packages/setuptools/_itertools.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_itertools.py
rename to app_env/Lib/site-packages/setuptools/_itertools.py
diff --git a/venv/Lib/site-packages/setuptools/_path.py b/app_env/Lib/site-packages/setuptools/_path.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_path.py
rename to app_env/Lib/site-packages/setuptools/_path.py
diff --git a/venv/Lib/site-packages/setuptools/_reqs.py b/app_env/Lib/site-packages/setuptools/_reqs.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_reqs.py
rename to app_env/Lib/site-packages/setuptools/_reqs.py
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/__init__.py b/app_env/Lib/site-packages/setuptools/_vendor/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/__init__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ba1ae5d8
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc
index 4ef3384b..3e99930f 100644
Binary files a/venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc
new file mode 100644
index 00000000..06b1b52e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-310.pyc
new file mode 100644
index 00000000..14c6f32c
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ff615ea7
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc
new file mode 100644
index 00000000..a3b2c874
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc
new file mode 100644
index 00000000..e0f600df
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc
new file mode 100644
index 00000000..d0cdef82
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc
new file mode 100644
index 00000000..5dda36d0
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc
new file mode 100644
index 00000000..ebcd61d0
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc
new file mode 100644
index 00000000..fe8cf884
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc
new file mode 100644
index 00000000..80f2ef1e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..d5d5aba6
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc
new file mode 100644
index 00000000..6d7b388e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc
new file mode 100644
index 00000000..2b28b5ca
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc
new file mode 100644
index 00000000..17fc672e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc
new file mode 100644
index 00000000..783eca92
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc
new file mode 100644
index 00000000..f60596dd
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc
new file mode 100644
index 00000000..9026fc42
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc
new file mode 100644
index 00000000..7d2aec77
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc
new file mode 100644
index 00000000..741cdde8
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py b/app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py
rename to app_env/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__init__.py b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__init__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..acf41a46
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc
new file mode 100644
index 00000000..8bd32b80
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-310.pyc
new file mode 100644
index 00000000..872441d1
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/jaraco/context.py b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/context.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/jaraco/context.py
rename to app_env/Lib/site-packages/setuptools/_vendor/jaraco/context.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/jaraco/functools.py b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/functools.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/jaraco/functools.py
rename to app_env/Lib/site-packages/setuptools/_vendor/jaraco/functools.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..5d3ecd12
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py b/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..d986c11e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc
new file mode 100644
index 00000000..9cbacee4
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc
new file mode 100644
index 00000000..da95dee7
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/more_itertools/more.py b/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/more.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/more_itertools/more.py
rename to app_env/Lib/site-packages/setuptools/_vendor/more_itertools/more.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py b/app_env/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py
rename to app_env/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/ordered_set.py b/app_env/Lib/site-packages/setuptools/_vendor/ordered_set.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/ordered_set.py
rename to app_env/Lib/site-packages/setuptools/_vendor/ordered_set.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__about__.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__about__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/__about__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/__about__.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__init__.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/__init__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc
new file mode 100644
index 00000000..7cafa62e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..e984e963
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc
new file mode 100644
index 00000000..28e92a1e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc
new file mode 100644
index 00000000..ec298c9d
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc
new file mode 100644
index 00000000..c0a9efdb
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc
new file mode 100644
index 00000000..7a2e82df
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc
new file mode 100644
index 00000000..4ec28814
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc
new file mode 100644
index 00000000..56182ef2
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc
new file mode 100644
index 00000000..f7dbf81d
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..d98b8f0c
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc
new file mode 100644
index 00000000..b52f0d2a
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/_structures.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/_structures.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/_structures.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/_structures.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/markers.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/markers.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/markers.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/markers.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/requirements.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/requirements.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/requirements.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/requirements.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/tags.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/tags.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/tags.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/tags.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/utils.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/utils.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/utils.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/utils.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/version.py b/app_env/Lib/site-packages/setuptools/_vendor/packaging/version.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/packaging/version.py
rename to app_env/Lib/site-packages/setuptools/_vendor/packaging/version.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__init__.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/__init__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4aa33059
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc
new file mode 100644
index 00000000..791aa493
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/common.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/common.cpython-310.pyc
new file mode 100644
index 00000000..98315139
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/common.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/core.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/core.cpython-310.pyc
new file mode 100644
index 00000000..f05c7b14
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/core.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..234a5d4c
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc
new file mode 100644
index 00000000..9a522f84
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/results.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/results.cpython-310.pyc
new file mode 100644
index 00000000..0adb9209
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/results.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc
new file mode 100644
index 00000000..0e7615d0
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc
new file mode 100644
index 00000000..82b47104
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/util.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/util.cpython-310.pyc
new file mode 100644
index 00000000..9366d260
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/util.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/actions.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/actions.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/actions.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/actions.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/common.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/common.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/common.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/common.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/core.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/core.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/core.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/core.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ddd6755e
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/exceptions.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/exceptions.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/exceptions.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/helpers.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/helpers.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/helpers.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/helpers.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/results.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/results.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/results.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/results.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/testing.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/testing.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/testing.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/testing.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/unicode.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/unicode.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/unicode.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/unicode.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/util.py b/app_env/Lib/site-packages/setuptools/_vendor/pyparsing/util.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/pyparsing/util.py
rename to app_env/Lib/site-packages/setuptools/_vendor/pyparsing/util.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/tomli/__init__.py b/app_env/Lib/site-packages/setuptools/_vendor/tomli/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/tomli/__init__.py
rename to app_env/Lib/site-packages/setuptools/_vendor/tomli/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..adfe26aa
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc
new file mode 100644
index 00000000..d6ffc1f9
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc
new file mode 100644
index 00000000..756d233d
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc
new file mode 100644
index 00000000..f26f98e1
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/tomli/_parser.py b/app_env/Lib/site-packages/setuptools/_vendor/tomli/_parser.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/tomli/_parser.py
rename to app_env/Lib/site-packages/setuptools/_vendor/tomli/_parser.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/tomli/_re.py b/app_env/Lib/site-packages/setuptools/_vendor/tomli/_re.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/tomli/_re.py
rename to app_env/Lib/site-packages/setuptools/_vendor/tomli/_re.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/tomli/_types.py b/app_env/Lib/site-packages/setuptools/_vendor/tomli/_types.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/tomli/_types.py
rename to app_env/Lib/site-packages/setuptools/_vendor/tomli/_types.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/typing_extensions.py b/app_env/Lib/site-packages/setuptools/_vendor/typing_extensions.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/typing_extensions.py
rename to app_env/Lib/site-packages/setuptools/_vendor/typing_extensions.py
diff --git a/venv/Lib/site-packages/setuptools/_vendor/zipp.py b/app_env/Lib/site-packages/setuptools/_vendor/zipp.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/_vendor/zipp.py
rename to app_env/Lib/site-packages/setuptools/_vendor/zipp.py
diff --git a/venv/Lib/site-packages/setuptools/archive_util.py b/app_env/Lib/site-packages/setuptools/archive_util.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/archive_util.py
rename to app_env/Lib/site-packages/setuptools/archive_util.py
diff --git a/venv/Lib/site-packages/setuptools/build_meta.py b/app_env/Lib/site-packages/setuptools/build_meta.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/build_meta.py
rename to app_env/Lib/site-packages/setuptools/build_meta.py
diff --git a/venv/Lib/site-packages/setuptools/cli-32.exe b/app_env/Lib/site-packages/setuptools/cli-32.exe
similarity index 100%
rename from venv/Lib/site-packages/setuptools/cli-32.exe
rename to app_env/Lib/site-packages/setuptools/cli-32.exe
diff --git a/venv/Lib/site-packages/setuptools/cli-64.exe b/app_env/Lib/site-packages/setuptools/cli-64.exe
similarity index 100%
rename from venv/Lib/site-packages/setuptools/cli-64.exe
rename to app_env/Lib/site-packages/setuptools/cli-64.exe
diff --git a/venv/Lib/site-packages/setuptools/cli-arm64.exe b/app_env/Lib/site-packages/setuptools/cli-arm64.exe
similarity index 100%
rename from venv/Lib/site-packages/setuptools/cli-arm64.exe
rename to app_env/Lib/site-packages/setuptools/cli-arm64.exe
diff --git a/venv/Lib/site-packages/setuptools/cli.exe b/app_env/Lib/site-packages/setuptools/cli.exe
similarity index 100%
rename from venv/Lib/site-packages/setuptools/cli.exe
rename to app_env/Lib/site-packages/setuptools/cli.exe
diff --git a/venv/Lib/site-packages/setuptools/command/__init__.py b/app_env/Lib/site-packages/setuptools/command/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/__init__.py
rename to app_env/Lib/site-packages/setuptools/command/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..091a12e5
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc
similarity index 86%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc
index 69234575..9d7609be 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc
index 42538a0c..3128523e 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc
new file mode 100644
index 00000000..11566cc2
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc
new file mode 100644
index 00000000..46d9bd92
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc
new file mode 100644
index 00000000..391cb2a6
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc
new file mode 100644
index 00000000..eac11cd3
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc
new file mode 100644
index 00000000..0e2111c1
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc
index 92c5389b..0a5cff46 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc
index 90930894..64a849b5 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc
index 98d080a1..97a117f7 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc
index 4ef1244a..1eaa3b92 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc
new file mode 100644
index 00000000..48578e02
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc
new file mode 100644
index 00000000..11ac26f8
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc
new file mode 100644
index 00000000..17cb81d2
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc
new file mode 100644
index 00000000..eb46baaf
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc
index dcf8e280..66a3dabc 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc
new file mode 100644
index 00000000..49430158
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc
similarity index 90%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc
index 2934a7fe..d4455ab3 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc
similarity index 75%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc
index 1cadac1f..1a91970b 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc
new file mode 100644
index 00000000..c11fadb4
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc
index 932fda6e..5a0260ae 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc
new file mode 100644
index 00000000..97bc5bea
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc
new file mode 100644
index 00000000..5eed77ac
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc
similarity index 94%
rename from venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc
index 14fa56d5..eeda84ea 100644
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/command/alias.py b/app_env/Lib/site-packages/setuptools/command/alias.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/alias.py
rename to app_env/Lib/site-packages/setuptools/command/alias.py
diff --git a/venv/Lib/site-packages/setuptools/command/bdist_egg.py b/app_env/Lib/site-packages/setuptools/command/bdist_egg.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/bdist_egg.py
rename to app_env/Lib/site-packages/setuptools/command/bdist_egg.py
diff --git a/venv/Lib/site-packages/setuptools/command/bdist_rpm.py b/app_env/Lib/site-packages/setuptools/command/bdist_rpm.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/bdist_rpm.py
rename to app_env/Lib/site-packages/setuptools/command/bdist_rpm.py
diff --git a/venv/Lib/site-packages/setuptools/command/build.py b/app_env/Lib/site-packages/setuptools/command/build.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/build.py
rename to app_env/Lib/site-packages/setuptools/command/build.py
diff --git a/venv/Lib/site-packages/setuptools/command/build_clib.py b/app_env/Lib/site-packages/setuptools/command/build_clib.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/build_clib.py
rename to app_env/Lib/site-packages/setuptools/command/build_clib.py
diff --git a/venv/Lib/site-packages/setuptools/command/build_ext.py b/app_env/Lib/site-packages/setuptools/command/build_ext.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/build_ext.py
rename to app_env/Lib/site-packages/setuptools/command/build_ext.py
diff --git a/venv/Lib/site-packages/setuptools/command/build_py.py b/app_env/Lib/site-packages/setuptools/command/build_py.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/build_py.py
rename to app_env/Lib/site-packages/setuptools/command/build_py.py
diff --git a/venv/Lib/site-packages/setuptools/command/develop.py b/app_env/Lib/site-packages/setuptools/command/develop.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/develop.py
rename to app_env/Lib/site-packages/setuptools/command/develop.py
diff --git a/venv/Lib/site-packages/setuptools/command/dist_info.py b/app_env/Lib/site-packages/setuptools/command/dist_info.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/dist_info.py
rename to app_env/Lib/site-packages/setuptools/command/dist_info.py
diff --git a/venv/Lib/site-packages/setuptools/command/easy_install.py b/app_env/Lib/site-packages/setuptools/command/easy_install.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/easy_install.py
rename to app_env/Lib/site-packages/setuptools/command/easy_install.py
diff --git a/venv/Lib/site-packages/setuptools/command/egg_info.py b/app_env/Lib/site-packages/setuptools/command/egg_info.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/egg_info.py
rename to app_env/Lib/site-packages/setuptools/command/egg_info.py
diff --git a/venv/Lib/site-packages/setuptools/command/install.py b/app_env/Lib/site-packages/setuptools/command/install.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/install.py
rename to app_env/Lib/site-packages/setuptools/command/install.py
diff --git a/venv/Lib/site-packages/setuptools/command/install_egg_info.py b/app_env/Lib/site-packages/setuptools/command/install_egg_info.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/install_egg_info.py
rename to app_env/Lib/site-packages/setuptools/command/install_egg_info.py
diff --git a/venv/Lib/site-packages/setuptools/command/install_lib.py b/app_env/Lib/site-packages/setuptools/command/install_lib.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/install_lib.py
rename to app_env/Lib/site-packages/setuptools/command/install_lib.py
diff --git a/venv/Lib/site-packages/setuptools/command/install_scripts.py b/app_env/Lib/site-packages/setuptools/command/install_scripts.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/install_scripts.py
rename to app_env/Lib/site-packages/setuptools/command/install_scripts.py
diff --git a/venv/Lib/site-packages/setuptools/command/launcher manifest.xml b/app_env/Lib/site-packages/setuptools/command/launcher manifest.xml
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/launcher manifest.xml
rename to app_env/Lib/site-packages/setuptools/command/launcher manifest.xml
diff --git a/venv/Lib/site-packages/setuptools/command/py36compat.py b/app_env/Lib/site-packages/setuptools/command/py36compat.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/py36compat.py
rename to app_env/Lib/site-packages/setuptools/command/py36compat.py
diff --git a/venv/Lib/site-packages/setuptools/command/register.py b/app_env/Lib/site-packages/setuptools/command/register.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/register.py
rename to app_env/Lib/site-packages/setuptools/command/register.py
diff --git a/venv/Lib/site-packages/setuptools/command/rotate.py b/app_env/Lib/site-packages/setuptools/command/rotate.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/rotate.py
rename to app_env/Lib/site-packages/setuptools/command/rotate.py
diff --git a/venv/Lib/site-packages/setuptools/command/saveopts.py b/app_env/Lib/site-packages/setuptools/command/saveopts.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/saveopts.py
rename to app_env/Lib/site-packages/setuptools/command/saveopts.py
diff --git a/venv/Lib/site-packages/setuptools/command/sdist.py b/app_env/Lib/site-packages/setuptools/command/sdist.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/sdist.py
rename to app_env/Lib/site-packages/setuptools/command/sdist.py
diff --git a/venv/Lib/site-packages/setuptools/command/setopt.py b/app_env/Lib/site-packages/setuptools/command/setopt.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/setopt.py
rename to app_env/Lib/site-packages/setuptools/command/setopt.py
diff --git a/venv/Lib/site-packages/setuptools/command/test.py b/app_env/Lib/site-packages/setuptools/command/test.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/test.py
rename to app_env/Lib/site-packages/setuptools/command/test.py
diff --git a/venv/Lib/site-packages/setuptools/command/upload.py b/app_env/Lib/site-packages/setuptools/command/upload.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/upload.py
rename to app_env/Lib/site-packages/setuptools/command/upload.py
diff --git a/venv/Lib/site-packages/setuptools/command/upload_docs.py b/app_env/Lib/site-packages/setuptools/command/upload_docs.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/command/upload_docs.py
rename to app_env/Lib/site-packages/setuptools/command/upload_docs.py
diff --git a/venv/Lib/site-packages/setuptools/config/__init__.py b/app_env/Lib/site-packages/setuptools/config/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/__init__.py
rename to app_env/Lib/site-packages/setuptools/config/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c68b142d
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc
index 8672494b..6cea0264 100644
Binary files a/venv/Lib/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc
index 472d60fb..6e3c0903 100644
Binary files a/venv/Lib/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc
similarity index 97%
rename from venv/Lib/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc
index 7f59b801..5c757c59 100644
Binary files a/venv/Lib/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc
index 3efd7777..ffb8ec39 100644
Binary files a/venv/Lib/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py b/app_env/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py
rename to app_env/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py
rename to app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..221a96cd
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc
similarity index 91%
rename from venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc
index 1d3bb441..be4775bc 100644
Binary files a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc
new file mode 100644
index 00000000..5a68039c
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc
similarity index 84%
rename from venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc
index 86f4e772..b09d42f9 100644
Binary files a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc
rename to app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc
index bc26d973..79722b0a 100644
Binary files a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc and b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc
new file mode 100644
index 00000000..ae9fbd92
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py
rename to app_env/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py
rename to app_env/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py
rename to app_env/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py
rename to app_env/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py b/app_env/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py
rename to app_env/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py
diff --git a/venv/Lib/site-packages/setuptools/config/expand.py b/app_env/Lib/site-packages/setuptools/config/expand.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/expand.py
rename to app_env/Lib/site-packages/setuptools/config/expand.py
diff --git a/venv/Lib/site-packages/setuptools/config/pyprojecttoml.py b/app_env/Lib/site-packages/setuptools/config/pyprojecttoml.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/pyprojecttoml.py
rename to app_env/Lib/site-packages/setuptools/config/pyprojecttoml.py
diff --git a/venv/Lib/site-packages/setuptools/config/setupcfg.py b/app_env/Lib/site-packages/setuptools/config/setupcfg.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/config/setupcfg.py
rename to app_env/Lib/site-packages/setuptools/config/setupcfg.py
diff --git a/venv/Lib/site-packages/setuptools/dep_util.py b/app_env/Lib/site-packages/setuptools/dep_util.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/dep_util.py
rename to app_env/Lib/site-packages/setuptools/dep_util.py
diff --git a/venv/Lib/site-packages/setuptools/depends.py b/app_env/Lib/site-packages/setuptools/depends.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/depends.py
rename to app_env/Lib/site-packages/setuptools/depends.py
diff --git a/venv/Lib/site-packages/setuptools/discovery.py b/app_env/Lib/site-packages/setuptools/discovery.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/discovery.py
rename to app_env/Lib/site-packages/setuptools/discovery.py
diff --git a/venv/Lib/site-packages/setuptools/dist.py b/app_env/Lib/site-packages/setuptools/dist.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/dist.py
rename to app_env/Lib/site-packages/setuptools/dist.py
diff --git a/venv/Lib/site-packages/setuptools/errors.py b/app_env/Lib/site-packages/setuptools/errors.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/errors.py
rename to app_env/Lib/site-packages/setuptools/errors.py
diff --git a/venv/Lib/site-packages/setuptools/extension.py b/app_env/Lib/site-packages/setuptools/extension.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/extension.py
rename to app_env/Lib/site-packages/setuptools/extension.py
diff --git a/venv/Lib/site-packages/setuptools/extern/__init__.py b/app_env/Lib/site-packages/setuptools/extern/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/extern/__init__.py
rename to app_env/Lib/site-packages/setuptools/extern/__init__.py
diff --git a/app_env/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..4d37fc61
Binary files /dev/null and b/app_env/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/setuptools/glob.py b/app_env/Lib/site-packages/setuptools/glob.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/glob.py
rename to app_env/Lib/site-packages/setuptools/glob.py
diff --git a/venv/Lib/site-packages/setuptools/gui-32.exe b/app_env/Lib/site-packages/setuptools/gui-32.exe
similarity index 100%
rename from venv/Lib/site-packages/setuptools/gui-32.exe
rename to app_env/Lib/site-packages/setuptools/gui-32.exe
diff --git a/venv/Lib/site-packages/setuptools/gui-64.exe b/app_env/Lib/site-packages/setuptools/gui-64.exe
similarity index 100%
rename from venv/Lib/site-packages/setuptools/gui-64.exe
rename to app_env/Lib/site-packages/setuptools/gui-64.exe
diff --git a/venv/Lib/site-packages/setuptools/gui-arm64.exe b/app_env/Lib/site-packages/setuptools/gui-arm64.exe
similarity index 100%
rename from venv/Lib/site-packages/setuptools/gui-arm64.exe
rename to app_env/Lib/site-packages/setuptools/gui-arm64.exe
diff --git a/venv/Lib/site-packages/setuptools/gui.exe b/app_env/Lib/site-packages/setuptools/gui.exe
similarity index 100%
rename from venv/Lib/site-packages/setuptools/gui.exe
rename to app_env/Lib/site-packages/setuptools/gui.exe
diff --git a/venv/Lib/site-packages/setuptools/installer.py b/app_env/Lib/site-packages/setuptools/installer.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/installer.py
rename to app_env/Lib/site-packages/setuptools/installer.py
diff --git a/venv/Lib/site-packages/setuptools/launch.py b/app_env/Lib/site-packages/setuptools/launch.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/launch.py
rename to app_env/Lib/site-packages/setuptools/launch.py
diff --git a/venv/Lib/site-packages/setuptools/logging.py b/app_env/Lib/site-packages/setuptools/logging.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/logging.py
rename to app_env/Lib/site-packages/setuptools/logging.py
diff --git a/venv/Lib/site-packages/setuptools/monkey.py b/app_env/Lib/site-packages/setuptools/monkey.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/monkey.py
rename to app_env/Lib/site-packages/setuptools/monkey.py
diff --git a/venv/Lib/site-packages/setuptools/msvc.py b/app_env/Lib/site-packages/setuptools/msvc.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/msvc.py
rename to app_env/Lib/site-packages/setuptools/msvc.py
diff --git a/venv/Lib/site-packages/setuptools/namespaces.py b/app_env/Lib/site-packages/setuptools/namespaces.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/namespaces.py
rename to app_env/Lib/site-packages/setuptools/namespaces.py
diff --git a/venv/Lib/site-packages/setuptools/package_index.py b/app_env/Lib/site-packages/setuptools/package_index.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/package_index.py
rename to app_env/Lib/site-packages/setuptools/package_index.py
diff --git a/venv/Lib/site-packages/setuptools/py34compat.py b/app_env/Lib/site-packages/setuptools/py34compat.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/py34compat.py
rename to app_env/Lib/site-packages/setuptools/py34compat.py
diff --git a/venv/Lib/site-packages/setuptools/sandbox.py b/app_env/Lib/site-packages/setuptools/sandbox.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/sandbox.py
rename to app_env/Lib/site-packages/setuptools/sandbox.py
diff --git a/venv/Lib/site-packages/setuptools/script (dev).tmpl b/app_env/Lib/site-packages/setuptools/script (dev).tmpl
similarity index 100%
rename from venv/Lib/site-packages/setuptools/script (dev).tmpl
rename to app_env/Lib/site-packages/setuptools/script (dev).tmpl
diff --git a/venv/Lib/site-packages/setuptools/script.tmpl b/app_env/Lib/site-packages/setuptools/script.tmpl
similarity index 100%
rename from venv/Lib/site-packages/setuptools/script.tmpl
rename to app_env/Lib/site-packages/setuptools/script.tmpl
diff --git a/venv/Lib/site-packages/setuptools/unicode_utils.py b/app_env/Lib/site-packages/setuptools/unicode_utils.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/unicode_utils.py
rename to app_env/Lib/site-packages/setuptools/unicode_utils.py
diff --git a/venv/Lib/site-packages/setuptools/version.py b/app_env/Lib/site-packages/setuptools/version.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/version.py
rename to app_env/Lib/site-packages/setuptools/version.py
diff --git a/venv/Lib/site-packages/setuptools/wheel.py b/app_env/Lib/site-packages/setuptools/wheel.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/wheel.py
rename to app_env/Lib/site-packages/setuptools/wheel.py
diff --git a/venv/Lib/site-packages/setuptools/windows_support.py b/app_env/Lib/site-packages/setuptools/windows_support.py
similarity index 100%
rename from venv/Lib/site-packages/setuptools/windows_support.py
rename to app_env/Lib/site-packages/setuptools/windows_support.py
diff --git a/venv/Lib/site-packages/sqlparse-0.4.2.dist-info/AUTHORS b/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/AUTHORS
similarity index 100%
rename from venv/Lib/site-packages/sqlparse-0.4.2.dist-info/AUTHORS
rename to app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/AUTHORS
diff --git a/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/INSTALLER b/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/INSTALLER
new file mode 100644
index 00000000..a1b589e3
--- /dev/null
+++ b/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/INSTALLER
@@ -0,0 +1 @@
+pip
diff --git a/venv/Lib/site-packages/sqlparse-0.4.2.dist-info/LICENSE b/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/LICENSE
similarity index 100%
rename from venv/Lib/site-packages/sqlparse-0.4.2.dist-info/LICENSE
rename to app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/LICENSE
diff --git a/venv/Lib/site-packages/sqlparse-0.4.2.dist-info/METADATA b/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/METADATA
similarity index 100%
rename from venv/Lib/site-packages/sqlparse-0.4.2.dist-info/METADATA
rename to app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/METADATA
diff --git a/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/RECORD b/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/RECORD
new file mode 100644
index 00000000..823e94a1
--- /dev/null
+++ b/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/RECORD
@@ -0,0 +1,53 @@
+../../Scripts/sqlformat.exe,sha256=lDdDaj3tKo4uWduiXl2J7RTPVVTm7XtdBtKbd1E_Rlw,107948
+sqlparse-0.4.2.dist-info/AUTHORS,sha256=B830qIZqjN4xBBcU8RAUZ-Z5CeKDx6du1DGwcChzR7k,2754
+sqlparse-0.4.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+sqlparse-0.4.2.dist-info/LICENSE,sha256=wZOCNbgNOekxOOrontw69n4Y7LxA0mZSn6V7Lc5CYxA,1537
+sqlparse-0.4.2.dist-info/METADATA,sha256=nU8eNywF4Ixk2t0za8Z45kFGoFVzz4COH5ndQrfKrBE,3446
+sqlparse-0.4.2.dist-info/RECORD,,
+sqlparse-0.4.2.dist-info/WHEEL,sha256=EVRjI69F5qVjm_YgqcTXPnTAv3BfSUr0WVAHuSP3Xoo,92
+sqlparse-0.4.2.dist-info/entry_points.txt,sha256=S2WxhPln7zXybKRE73ekBicXHh7_BX-KYGFZZaGGqp8,54
+sqlparse-0.4.2.dist-info/top_level.txt,sha256=eRYisOR7d8EtLKXuWUUAAMOhODItOqrkpxkAGD8CISo,9
+sqlparse/__init__.py,sha256=ATkRZ64xS1XuqLone0WNB1SAW3CX10AvmbXPUeSSYuM,2180
+sqlparse/__main__.py,sha256=1jhVFLHlZs4NUJoAuHvQQKWgykPVTdgeE8V4XB5WQzw,610
+sqlparse/__pycache__/__init__.cpython-310.pyc,,
+sqlparse/__pycache__/__main__.cpython-310.pyc,,
+sqlparse/__pycache__/cli.cpython-310.pyc,,
+sqlparse/__pycache__/compat.cpython-310.pyc,,
+sqlparse/__pycache__/exceptions.cpython-310.pyc,,
+sqlparse/__pycache__/formatter.cpython-310.pyc,,
+sqlparse/__pycache__/keywords.cpython-310.pyc,,
+sqlparse/__pycache__/lexer.cpython-310.pyc,,
+sqlparse/__pycache__/sql.cpython-310.pyc,,
+sqlparse/__pycache__/tokens.cpython-310.pyc,,
+sqlparse/__pycache__/utils.cpython-310.pyc,,
+sqlparse/cli.py,sha256=83gHgW0mTQXJbv-ItpAEZaq7-2lvWij0mg2cVmG67KA,5712
+sqlparse/compat.py,sha256=YoPZNIKfJn6Q6bWSYCMSDrrI7ea8rue902TzIoUJWbU,1087
+sqlparse/engine/__init__.py,sha256=i9kh0USMjk1bwKPFTn6K0PKC55HOqvnkoxHi1t7YccE,447
+sqlparse/engine/__pycache__/__init__.cpython-310.pyc,,
+sqlparse/engine/__pycache__/filter_stack.cpython-310.pyc,,
+sqlparse/engine/__pycache__/grouping.cpython-310.pyc,,
+sqlparse/engine/__pycache__/statement_splitter.cpython-310.pyc,,
+sqlparse/engine/filter_stack.py,sha256=cId9vnz0Kpthg3ljdnX2Id6-vz0zpKHoMV_FqEYEsYU,1193
+sqlparse/engine/grouping.py,sha256=coV-obgg-ETDhiSvNkKxgHCIdqxz-0UdQIqP6BedX70,13492
+sqlparse/engine/statement_splitter.py,sha256=-injFkTCUKQth2I3K1PguFkEkPCiAlxkzZV64_CMl0A,3758
+sqlparse/exceptions.py,sha256=QyZ9TKTvzgcmuQ1cJkxAj9SoAw4M02-Bf0CSUNWNDKM,342
+sqlparse/filters/__init__.py,sha256=PcS7CklN-qpmfYhId4oGTyUb7au1A0aD-21RP_bsfQY,1242
+sqlparse/filters/__pycache__/__init__.cpython-310.pyc,,
+sqlparse/filters/__pycache__/aligned_indent.cpython-310.pyc,,
+sqlparse/filters/__pycache__/others.cpython-310.pyc,,
+sqlparse/filters/__pycache__/output.cpython-310.pyc,,
+sqlparse/filters/__pycache__/reindent.cpython-310.pyc,,
+sqlparse/filters/__pycache__/right_margin.cpython-310.pyc,,
+sqlparse/filters/__pycache__/tokens.cpython-310.pyc,,
+sqlparse/filters/aligned_indent.py,sha256=kvN5TVMxovyX6cDnmxF-t-KUz2RnzbQ1fIQzdIxYY2g,5110
+sqlparse/filters/others.py,sha256=No8RhdUT8td6I0r9uxM6GuI_alDsE9FhFftcZpq856c,5180
+sqlparse/filters/output.py,sha256=OMSalSPvq3s3-r268Tjv-AmtjTNCfhLayWtQFO5oyVE,4001
+sqlparse/filters/reindent.py,sha256=y090sT7Mc44Bw9InKqJ1u_BzUTc81W0L1N-BVLVpq8o,9549
+sqlparse/filters/right_margin.py,sha256=Hil692JB3ZkiMPpPPZcMUiRUjDpmhFiuARUu5_imym8,1543
+sqlparse/filters/tokens.py,sha256=CZwDwMzzOdq0qvTRIIic7w59g54QhwFgM2Op9932Zvk,1553
+sqlparse/formatter.py,sha256=iWDPQhD4JqbiA4jZpK2QBZzEqVACw3bRwdLgPIma4lE,7566
+sqlparse/keywords.py,sha256=SZuYyMN1VuBdfmPaSa-CnzCaqefMsQs1Sqa_tsa2_Lo,29560
+sqlparse/lexer.py,sha256=3E3jVAevZgpZpY6vXPtVe9ifTaOe14KB7BpMdS3hYis,2453
+sqlparse/sql.py,sha256=bZwXVIRBxC4HQfp1YB0hY3kFl_ng72icFfXY9s5Yxj0,20472
+sqlparse/tokens.py,sha256=NMUdBh3XPKk-D-uYn_tqKqdsD_uXVZWzkoHIy0vEEpA,1661
+sqlparse/utils.py,sha256=GbCN29suZDf7lCUzQUqj7AwtCisps3lHIbyMvx64hrk,3441
diff --git a/venv/Lib/site-packages/sqlparse-0.4.2.dist-info/WHEEL b/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/WHEEL
similarity index 100%
rename from venv/Lib/site-packages/sqlparse-0.4.2.dist-info/WHEEL
rename to app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/WHEEL
diff --git a/venv/Lib/site-packages/sqlparse-0.4.2.dist-info/entry_points.txt b/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/entry_points.txt
similarity index 100%
rename from venv/Lib/site-packages/sqlparse-0.4.2.dist-info/entry_points.txt
rename to app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/entry_points.txt
diff --git a/venv/Lib/site-packages/sqlparse-0.4.2.dist-info/top_level.txt b/app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/top_level.txt
similarity index 100%
rename from venv/Lib/site-packages/sqlparse-0.4.2.dist-info/top_level.txt
rename to app_env/Lib/site-packages/sqlparse-0.4.2.dist-info/top_level.txt
diff --git a/venv/Lib/site-packages/sqlparse/__init__.py b/app_env/Lib/site-packages/sqlparse/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/__init__.py
rename to app_env/Lib/site-packages/sqlparse/__init__.py
diff --git a/venv/Lib/site-packages/sqlparse/__main__.py b/app_env/Lib/site-packages/sqlparse/__main__.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/__main__.py
rename to app_env/Lib/site-packages/sqlparse/__main__.py
diff --git a/app_env/Lib/site-packages/sqlparse/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..22ed4ccb
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/sqlparse/__pycache__/__main__.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/__main__.cpython-310.pyc
new file mode 100644
index 00000000..39ecced2
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/__pycache__/__main__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/cli.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/cli.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/sqlparse/__pycache__/cli.cpython-310.pyc
rename to app_env/Lib/site-packages/sqlparse/__pycache__/cli.cpython-310.pyc
index 54b4996c..1be8f2b9 100644
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/cli.cpython-310.pyc and b/app_env/Lib/site-packages/sqlparse/__pycache__/cli.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/sqlparse/__pycache__/compat.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/compat.cpython-310.pyc
new file mode 100644
index 00000000..deb66790
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/__pycache__/compat.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/sqlparse/__pycache__/exceptions.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/exceptions.cpython-310.pyc
new file mode 100644
index 00000000..e7dbc4ba
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/__pycache__/exceptions.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/sqlparse/__pycache__/formatter.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/formatter.cpython-310.pyc
new file mode 100644
index 00000000..1f5ed079
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/__pycache__/formatter.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/keywords.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/keywords.cpython-310.pyc
similarity index 99%
rename from venv/Lib/site-packages/sqlparse/__pycache__/keywords.cpython-310.pyc
rename to app_env/Lib/site-packages/sqlparse/__pycache__/keywords.cpython-310.pyc
index 1db16391..a169cb79 100644
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/keywords.cpython-310.pyc and b/app_env/Lib/site-packages/sqlparse/__pycache__/keywords.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/sqlparse/__pycache__/lexer.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/lexer.cpython-310.pyc
new file mode 100644
index 00000000..98985b9b
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/__pycache__/lexer.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/sqlparse/__pycache__/sql.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/sql.cpython-310.pyc
new file mode 100644
index 00000000..02c9fe78
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/__pycache__/sql.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/sqlparse/__pycache__/tokens.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/tokens.cpython-310.pyc
new file mode 100644
index 00000000..7bfd9b48
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/__pycache__/tokens.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/sqlparse/__pycache__/utils.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/__pycache__/utils.cpython-310.pyc
new file mode 100644
index 00000000..f62e6e6e
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/__pycache__/utils.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/cli.py b/app_env/Lib/site-packages/sqlparse/cli.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/cli.py
rename to app_env/Lib/site-packages/sqlparse/cli.py
diff --git a/venv/Lib/site-packages/sqlparse/compat.py b/app_env/Lib/site-packages/sqlparse/compat.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/compat.py
rename to app_env/Lib/site-packages/sqlparse/compat.py
diff --git a/venv/Lib/site-packages/sqlparse/engine/__init__.py b/app_env/Lib/site-packages/sqlparse/engine/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/engine/__init__.py
rename to app_env/Lib/site-packages/sqlparse/engine/__init__.py
diff --git a/app_env/Lib/site-packages/sqlparse/engine/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/engine/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..64d37938
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/engine/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-310.pyc
similarity index 77%
rename from venv/Lib/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-310.pyc
rename to app_env/Lib/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-310.pyc
index 63639069..c989da8e 100644
Binary files a/venv/Lib/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-310.pyc and b/app_env/Lib/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/engine/__pycache__/grouping.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/engine/__pycache__/grouping.cpython-310.pyc
similarity index 98%
rename from venv/Lib/site-packages/sqlparse/engine/__pycache__/grouping.cpython-310.pyc
rename to app_env/Lib/site-packages/sqlparse/engine/__pycache__/grouping.cpython-310.pyc
index af5858bc..53c8607a 100644
Binary files a/venv/Lib/site-packages/sqlparse/engine/__pycache__/grouping.cpython-310.pyc and b/app_env/Lib/site-packages/sqlparse/engine/__pycache__/grouping.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-310.pyc
similarity index 81%
rename from venv/Lib/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-310.pyc
rename to app_env/Lib/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-310.pyc
index fe8e56c2..943fb4e0 100644
Binary files a/venv/Lib/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-310.pyc and b/app_env/Lib/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/engine/filter_stack.py b/app_env/Lib/site-packages/sqlparse/engine/filter_stack.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/engine/filter_stack.py
rename to app_env/Lib/site-packages/sqlparse/engine/filter_stack.py
diff --git a/venv/Lib/site-packages/sqlparse/engine/grouping.py b/app_env/Lib/site-packages/sqlparse/engine/grouping.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/engine/grouping.py
rename to app_env/Lib/site-packages/sqlparse/engine/grouping.py
diff --git a/venv/Lib/site-packages/sqlparse/engine/statement_splitter.py b/app_env/Lib/site-packages/sqlparse/engine/statement_splitter.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/engine/statement_splitter.py
rename to app_env/Lib/site-packages/sqlparse/engine/statement_splitter.py
diff --git a/venv/Lib/site-packages/sqlparse/exceptions.py b/app_env/Lib/site-packages/sqlparse/exceptions.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/exceptions.py
rename to app_env/Lib/site-packages/sqlparse/exceptions.py
diff --git a/venv/Lib/site-packages/sqlparse/filters/__init__.py b/app_env/Lib/site-packages/sqlparse/filters/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/filters/__init__.py
rename to app_env/Lib/site-packages/sqlparse/filters/__init__.py
diff --git a/app_env/Lib/site-packages/sqlparse/filters/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..7f782b64
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-310.pyc
similarity index 95%
rename from venv/Lib/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-310.pyc
rename to app_env/Lib/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-310.pyc
index dde2546b..1d2c5c7a 100644
Binary files a/venv/Lib/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-310.pyc and b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/filters/__pycache__/others.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/others.cpython-310.pyc
similarity index 89%
rename from venv/Lib/site-packages/sqlparse/filters/__pycache__/others.cpython-310.pyc
rename to app_env/Lib/site-packages/sqlparse/filters/__pycache__/others.cpython-310.pyc
index 85f554aa..8cc12c89 100644
Binary files a/venv/Lib/site-packages/sqlparse/filters/__pycache__/others.cpython-310.pyc and b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/others.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/filters/__pycache__/output.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/output.cpython-310.pyc
similarity index 92%
rename from venv/Lib/site-packages/sqlparse/filters/__pycache__/output.cpython-310.pyc
rename to app_env/Lib/site-packages/sqlparse/filters/__pycache__/output.cpython-310.pyc
index 6f92f660..1b30639c 100644
Binary files a/venv/Lib/site-packages/sqlparse/filters/__pycache__/output.cpython-310.pyc and b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/output.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/filters/__pycache__/reindent.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/reindent.cpython-310.pyc
similarity index 96%
rename from venv/Lib/site-packages/sqlparse/filters/__pycache__/reindent.cpython-310.pyc
rename to app_env/Lib/site-packages/sqlparse/filters/__pycache__/reindent.cpython-310.pyc
index 88168f69..6a873ccf 100644
Binary files a/venv/Lib/site-packages/sqlparse/filters/__pycache__/reindent.cpython-310.pyc and b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/reindent.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-310.pyc
similarity index 82%
rename from venv/Lib/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-310.pyc
rename to app_env/Lib/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-310.pyc
index 8f069688..c38f6226 100644
Binary files a/venv/Lib/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-310.pyc and b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/sqlparse/filters/__pycache__/tokens.cpython-310.pyc b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/tokens.cpython-310.pyc
new file mode 100644
index 00000000..f6e14de9
Binary files /dev/null and b/app_env/Lib/site-packages/sqlparse/filters/__pycache__/tokens.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/sqlparse/filters/aligned_indent.py b/app_env/Lib/site-packages/sqlparse/filters/aligned_indent.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/filters/aligned_indent.py
rename to app_env/Lib/site-packages/sqlparse/filters/aligned_indent.py
diff --git a/venv/Lib/site-packages/sqlparse/filters/others.py b/app_env/Lib/site-packages/sqlparse/filters/others.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/filters/others.py
rename to app_env/Lib/site-packages/sqlparse/filters/others.py
diff --git a/venv/Lib/site-packages/sqlparse/filters/output.py b/app_env/Lib/site-packages/sqlparse/filters/output.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/filters/output.py
rename to app_env/Lib/site-packages/sqlparse/filters/output.py
diff --git a/venv/Lib/site-packages/sqlparse/filters/reindent.py b/app_env/Lib/site-packages/sqlparse/filters/reindent.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/filters/reindent.py
rename to app_env/Lib/site-packages/sqlparse/filters/reindent.py
diff --git a/venv/Lib/site-packages/sqlparse/filters/right_margin.py b/app_env/Lib/site-packages/sqlparse/filters/right_margin.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/filters/right_margin.py
rename to app_env/Lib/site-packages/sqlparse/filters/right_margin.py
diff --git a/venv/Lib/site-packages/sqlparse/filters/tokens.py b/app_env/Lib/site-packages/sqlparse/filters/tokens.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/filters/tokens.py
rename to app_env/Lib/site-packages/sqlparse/filters/tokens.py
diff --git a/venv/Lib/site-packages/sqlparse/formatter.py b/app_env/Lib/site-packages/sqlparse/formatter.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/formatter.py
rename to app_env/Lib/site-packages/sqlparse/formatter.py
diff --git a/venv/Lib/site-packages/sqlparse/keywords.py b/app_env/Lib/site-packages/sqlparse/keywords.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/keywords.py
rename to app_env/Lib/site-packages/sqlparse/keywords.py
diff --git a/venv/Lib/site-packages/sqlparse/lexer.py b/app_env/Lib/site-packages/sqlparse/lexer.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/lexer.py
rename to app_env/Lib/site-packages/sqlparse/lexer.py
diff --git a/venv/Lib/site-packages/sqlparse/sql.py b/app_env/Lib/site-packages/sqlparse/sql.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/sql.py
rename to app_env/Lib/site-packages/sqlparse/sql.py
diff --git a/venv/Lib/site-packages/sqlparse/tokens.py b/app_env/Lib/site-packages/sqlparse/tokens.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/tokens.py
rename to app_env/Lib/site-packages/sqlparse/tokens.py
diff --git a/venv/Lib/site-packages/sqlparse/utils.py b/app_env/Lib/site-packages/sqlparse/utils.py
similarity index 100%
rename from venv/Lib/site-packages/sqlparse/utils.py
rename to app_env/Lib/site-packages/sqlparse/utils.py
diff --git a/app_env/Lib/site-packages/tzdata-2022.2.dist-info/INSTALLER b/app_env/Lib/site-packages/tzdata-2022.2.dist-info/INSTALLER
new file mode 100644
index 00000000..a1b589e3
--- /dev/null
+++ b/app_env/Lib/site-packages/tzdata-2022.2.dist-info/INSTALLER
@@ -0,0 +1 @@
+pip
diff --git a/venv/Lib/site-packages/tzdata-2022.2.dist-info/LICENSE b/app_env/Lib/site-packages/tzdata-2022.2.dist-info/LICENSE
similarity index 100%
rename from venv/Lib/site-packages/tzdata-2022.2.dist-info/LICENSE
rename to app_env/Lib/site-packages/tzdata-2022.2.dist-info/LICENSE
diff --git a/venv/Lib/site-packages/tzdata-2022.2.dist-info/LICENSE_APACHE b/app_env/Lib/site-packages/tzdata-2022.2.dist-info/LICENSE_APACHE
similarity index 100%
rename from venv/Lib/site-packages/tzdata-2022.2.dist-info/LICENSE_APACHE
rename to app_env/Lib/site-packages/tzdata-2022.2.dist-info/LICENSE_APACHE
diff --git a/venv/Lib/site-packages/tzdata-2022.2.dist-info/METADATA b/app_env/Lib/site-packages/tzdata-2022.2.dist-info/METADATA
similarity index 100%
rename from venv/Lib/site-packages/tzdata-2022.2.dist-info/METADATA
rename to app_env/Lib/site-packages/tzdata-2022.2.dist-info/METADATA
diff --git a/venv/Lib/site-packages/tzdata-2022.2.dist-info/RECORD b/app_env/Lib/site-packages/tzdata-2022.2.dist-info/RECORD
similarity index 100%
rename from venv/Lib/site-packages/tzdata-2022.2.dist-info/RECORD
rename to app_env/Lib/site-packages/tzdata-2022.2.dist-info/RECORD
diff --git a/venv/Lib/site-packages/tzdata-2022.2.dist-info/WHEEL b/app_env/Lib/site-packages/tzdata-2022.2.dist-info/WHEEL
similarity index 100%
rename from venv/Lib/site-packages/tzdata-2022.2.dist-info/WHEEL
rename to app_env/Lib/site-packages/tzdata-2022.2.dist-info/WHEEL
diff --git a/venv/Lib/site-packages/tzdata-2022.2.dist-info/top_level.txt b/app_env/Lib/site-packages/tzdata-2022.2.dist-info/top_level.txt
similarity index 100%
rename from venv/Lib/site-packages/tzdata-2022.2.dist-info/top_level.txt
rename to app_env/Lib/site-packages/tzdata-2022.2.dist-info/top_level.txt
diff --git a/venv/Lib/site-packages/tzdata/__init__.py b/app_env/Lib/site-packages/tzdata/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/__init__.py
rename to app_env/Lib/site-packages/tzdata/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..25cb57c8
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Abidjan b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Abidjan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Abidjan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Abidjan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Accra b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Accra
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Accra
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Accra
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Addis_Ababa b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Addis_Ababa
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Addis_Ababa
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Addis_Ababa
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Algiers b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Algiers
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Algiers
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Algiers
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Asmara b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Asmara
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Asmara
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Asmara
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Asmera b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Asmera
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Asmera
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Asmera
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Bamako b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Bamako
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Bamako
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Bamako
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Bangui b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Bangui
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Bangui
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Bangui
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Banjul b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Banjul
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Banjul
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Banjul
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Bissau b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Bissau
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Bissau
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Bissau
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Blantyre b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Blantyre
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Blantyre
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Blantyre
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Brazzaville b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Brazzaville
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Brazzaville
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Brazzaville
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Bujumbura b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Bujumbura
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Bujumbura
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Bujumbura
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Cairo b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Cairo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Cairo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Cairo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Casablanca b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Casablanca
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Casablanca
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Casablanca
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Ceuta b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Ceuta
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Ceuta
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Ceuta
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Conakry b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Conakry
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Conakry
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Conakry
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Dakar b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Dakar
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Dakar
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Dakar
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Dar_es_Salaam b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Dar_es_Salaam
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Dar_es_Salaam
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Dar_es_Salaam
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Djibouti b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Djibouti
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Djibouti
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Djibouti
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Douala b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Douala
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Douala
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Douala
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/El_Aaiun b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/El_Aaiun
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/El_Aaiun
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/El_Aaiun
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Freetown b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Freetown
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Freetown
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Freetown
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Gaborone b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Gaborone
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Gaborone
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Gaborone
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Harare b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Harare
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Harare
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Harare
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Johannesburg b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Johannesburg
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Johannesburg
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Johannesburg
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Juba b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Juba
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Juba
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Juba
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Kampala b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Kampala
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Kampala
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Kampala
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Khartoum b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Khartoum
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Khartoum
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Khartoum
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Kigali b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Kigali
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Kigali
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Kigali
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Kinshasa b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Kinshasa
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Kinshasa
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Kinshasa
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Lagos b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Lagos
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Lagos
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Lagos
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Libreville b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Libreville
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Libreville
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Libreville
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Lome b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Lome
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Lome
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Lome
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Luanda b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Luanda
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Luanda
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Luanda
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Lubumbashi b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Lubumbashi
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Lubumbashi
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Lubumbashi
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Lusaka b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Lusaka
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Lusaka
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Lusaka
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Malabo b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Malabo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Malabo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Malabo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Maputo b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Maputo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Maputo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Maputo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Maseru b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Maseru
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Maseru
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Maseru
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Mbabane b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Mbabane
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Mbabane
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Mbabane
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Mogadishu b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Mogadishu
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Mogadishu
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Mogadishu
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Monrovia b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Monrovia
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Monrovia
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Monrovia
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Nairobi b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Nairobi
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Nairobi
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Nairobi
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Ndjamena b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Ndjamena
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Ndjamena
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Ndjamena
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Niamey b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Niamey
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Niamey
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Niamey
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Nouakchott b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Nouakchott
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Nouakchott
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Nouakchott
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Ouagadougou b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Ouagadougou
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Ouagadougou
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Ouagadougou
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Porto-Novo b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Porto-Novo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Porto-Novo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Porto-Novo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Sao_Tome b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Sao_Tome
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Sao_Tome
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Sao_Tome
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Timbuktu b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Timbuktu
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Timbuktu
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Timbuktu
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Tripoli b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Tripoli
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Tripoli
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Tripoli
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Tunis b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Tunis
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Tunis
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Tunis
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/Windhoek b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Windhoek
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Africa/Windhoek
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/Windhoek
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Africa/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..465a81fb
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Africa/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Adak b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Adak
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Adak
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Adak
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Anchorage b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Anchorage
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Anchorage
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Anchorage
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Anguilla b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Anguilla
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Anguilla
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Anguilla
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Antigua b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Antigua
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Antigua
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Antigua
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Araguaina b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Araguaina
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Araguaina
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Araguaina
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Buenos_Aires b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Buenos_Aires
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Buenos_Aires
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Buenos_Aires
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Catamarca b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Catamarca
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Catamarca
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Catamarca
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/ComodRivadavia b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/ComodRivadavia
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/ComodRivadavia
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/ComodRivadavia
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Cordoba b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Cordoba
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Cordoba
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Cordoba
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Jujuy b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Jujuy
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Jujuy
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Jujuy
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/La_Rioja b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/La_Rioja
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/La_Rioja
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/La_Rioja
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Mendoza b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Mendoza
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Mendoza
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Mendoza
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Rio_Gallegos b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Rio_Gallegos
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Rio_Gallegos
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Rio_Gallegos
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Salta b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Salta
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Salta
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Salta
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/San_Juan b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/San_Juan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/San_Juan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/San_Juan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/San_Luis b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/San_Luis
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/San_Luis
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/San_Luis
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Tucuman b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Tucuman
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Tucuman
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Tucuman
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Ushuaia b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Ushuaia
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Ushuaia
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Ushuaia
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8e7d5753
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Aruba b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Aruba
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Aruba
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Aruba
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Asuncion b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Asuncion
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Asuncion
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Asuncion
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Atikokan b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Atikokan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Atikokan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Atikokan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Atka b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Atka
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Atka
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Atka
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Bahia b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Bahia
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Bahia
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Bahia
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Bahia_Banderas b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Bahia_Banderas
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Bahia_Banderas
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Bahia_Banderas
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Barbados b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Barbados
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Barbados
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Barbados
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Belem b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Belem
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Belem
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Belem
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Belize b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Belize
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Belize
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Belize
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Blanc-Sablon b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Blanc-Sablon
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Blanc-Sablon
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Blanc-Sablon
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Boa_Vista b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Boa_Vista
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Boa_Vista
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Boa_Vista
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Bogota b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Bogota
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Bogota
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Bogota
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Boise b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Boise
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Boise
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Boise
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Buenos_Aires b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Buenos_Aires
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Buenos_Aires
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Buenos_Aires
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Cambridge_Bay b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Cambridge_Bay
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Cambridge_Bay
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Cambridge_Bay
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Campo_Grande b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Campo_Grande
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Campo_Grande
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Campo_Grande
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Cancun b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Cancun
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Cancun
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Cancun
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Caracas b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Caracas
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Caracas
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Caracas
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Catamarca b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Catamarca
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Catamarca
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Catamarca
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Cayenne b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Cayenne
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Cayenne
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Cayenne
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Cayman b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Cayman
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Cayman
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Cayman
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Chicago b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Chicago
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Chicago
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Chicago
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Chihuahua b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Chihuahua
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Chihuahua
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Chihuahua
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Coral_Harbour b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Coral_Harbour
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Coral_Harbour
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Coral_Harbour
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Cordoba b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Cordoba
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Cordoba
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Cordoba
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Costa_Rica b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Costa_Rica
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Costa_Rica
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Costa_Rica
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Creston b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Creston
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Creston
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Creston
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Cuiaba b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Cuiaba
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Cuiaba
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Cuiaba
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Curacao b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Curacao
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Curacao
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Curacao
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Danmarkshavn b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Danmarkshavn
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Danmarkshavn
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Danmarkshavn
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Dawson b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Dawson
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Dawson
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Dawson
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Dawson_Creek b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Dawson_Creek
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Dawson_Creek
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Dawson_Creek
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Denver b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Denver
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Denver
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Denver
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Detroit b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Detroit
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Detroit
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Detroit
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Dominica b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Dominica
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Dominica
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Dominica
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Edmonton b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Edmonton
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Edmonton
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Edmonton
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Eirunepe b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Eirunepe
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Eirunepe
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Eirunepe
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/El_Salvador b/app_env/Lib/site-packages/tzdata/zoneinfo/America/El_Salvador
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/El_Salvador
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/El_Salvador
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Ensenada b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Ensenada
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Ensenada
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Ensenada
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Fort_Nelson b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Fort_Nelson
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Fort_Nelson
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Fort_Nelson
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Fort_Wayne b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Fort_Wayne
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Fort_Wayne
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Fort_Wayne
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Fortaleza b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Fortaleza
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Fortaleza
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Fortaleza
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Glace_Bay b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Glace_Bay
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Glace_Bay
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Glace_Bay
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Godthab b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Godthab
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Godthab
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Godthab
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Goose_Bay b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Goose_Bay
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Goose_Bay
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Goose_Bay
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Grand_Turk b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Grand_Turk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Grand_Turk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Grand_Turk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Grenada b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Grenada
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Grenada
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Grenada
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Guadeloupe b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Guadeloupe
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Guadeloupe
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Guadeloupe
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Guatemala b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Guatemala
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Guatemala
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Guatemala
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Guayaquil b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Guayaquil
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Guayaquil
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Guayaquil
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Guyana b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Guyana
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Guyana
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Guyana
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Halifax b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Halifax
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Halifax
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Halifax
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Havana b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Havana
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Havana
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Havana
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Hermosillo b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Hermosillo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Hermosillo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Hermosillo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Indianapolis b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Indianapolis
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Indianapolis
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Indianapolis
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Knox b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Knox
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Knox
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Knox
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Marengo b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Marengo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Marengo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Marengo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Petersburg b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Petersburg
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Petersburg
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Petersburg
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Tell_City b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Tell_City
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Tell_City
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Tell_City
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Vevay b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Vevay
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Vevay
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Vevay
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Vincennes b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Vincennes
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Vincennes
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Vincennes
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Winamac b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Winamac
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Winamac
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Winamac
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..2148d490
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indianapolis b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Indianapolis
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Indianapolis
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Indianapolis
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Inuvik b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Inuvik
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Inuvik
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Inuvik
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Iqaluit b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Iqaluit
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Iqaluit
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Iqaluit
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Jamaica b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Jamaica
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Jamaica
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Jamaica
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Jujuy b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Jujuy
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Jujuy
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Jujuy
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Juneau b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Juneau
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Juneau
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Juneau
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/Louisville b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/Louisville
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/Louisville
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/Louisville
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/Monticello b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/Monticello
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/Monticello
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/Monticello
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8d60c5b4
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Knox_IN b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Knox_IN
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Knox_IN
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Knox_IN
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Kralendijk b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Kralendijk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Kralendijk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Kralendijk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/La_Paz b/app_env/Lib/site-packages/tzdata/zoneinfo/America/La_Paz
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/La_Paz
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/La_Paz
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Lima b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Lima
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Lima
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Lima
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Los_Angeles b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Los_Angeles
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Los_Angeles
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Los_Angeles
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Louisville b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Louisville
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Louisville
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Louisville
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Lower_Princes b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Lower_Princes
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Lower_Princes
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Lower_Princes
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Maceio b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Maceio
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Maceio
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Maceio
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Managua b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Managua
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Managua
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Managua
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Manaus b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Manaus
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Manaus
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Manaus
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Marigot b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Marigot
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Marigot
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Marigot
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Martinique b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Martinique
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Martinique
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Martinique
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Matamoros b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Matamoros
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Matamoros
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Matamoros
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Mazatlan b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Mazatlan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Mazatlan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Mazatlan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Mendoza b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Mendoza
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Mendoza
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Mendoza
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Menominee b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Menominee
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Menominee
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Menominee
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Merida b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Merida
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Merida
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Merida
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Metlakatla b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Metlakatla
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Metlakatla
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Metlakatla
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Mexico_City b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Mexico_City
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Mexico_City
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Mexico_City
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Miquelon b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Miquelon
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Miquelon
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Miquelon
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Moncton b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Moncton
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Moncton
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Moncton
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Monterrey b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Monterrey
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Monterrey
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Monterrey
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Montevideo b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Montevideo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Montevideo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Montevideo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Montreal b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Montreal
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Montreal
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Montreal
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Montserrat b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Montserrat
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Montserrat
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Montserrat
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Nassau b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Nassau
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Nassau
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Nassau
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/New_York b/app_env/Lib/site-packages/tzdata/zoneinfo/America/New_York
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/New_York
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/New_York
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Nipigon b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Nipigon
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Nipigon
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Nipigon
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Nome b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Nome
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Nome
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Nome
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Noronha b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Noronha
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Noronha
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Noronha
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/Beulah b/app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/Beulah
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/Beulah
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/Beulah
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/Center b/app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/Center
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/Center
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/Center
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/New_Salem b/app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/New_Salem
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/New_Salem
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/New_Salem
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..00ff22c3
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Nuuk b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Nuuk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Nuuk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Nuuk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Ojinaga b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Ojinaga
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Ojinaga
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Ojinaga
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Panama b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Panama
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Panama
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Panama
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Pangnirtung b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Pangnirtung
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Pangnirtung
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Pangnirtung
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Paramaribo b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Paramaribo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Paramaribo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Paramaribo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Phoenix b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Phoenix
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Phoenix
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Phoenix
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Port-au-Prince b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Port-au-Prince
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Port-au-Prince
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Port-au-Prince
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Port_of_Spain b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Port_of_Spain
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Port_of_Spain
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Port_of_Spain
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Porto_Acre b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Porto_Acre
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Porto_Acre
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Porto_Acre
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Porto_Velho b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Porto_Velho
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Porto_Velho
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Porto_Velho
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Puerto_Rico b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Puerto_Rico
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Puerto_Rico
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Puerto_Rico
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Punta_Arenas b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Punta_Arenas
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Punta_Arenas
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Punta_Arenas
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Rainy_River b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Rainy_River
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Rainy_River
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Rainy_River
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Rankin_Inlet b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Rankin_Inlet
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Rankin_Inlet
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Rankin_Inlet
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Recife b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Recife
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Recife
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Recife
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Regina b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Regina
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Regina
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Regina
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Resolute b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Resolute
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Resolute
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Resolute
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Rio_Branco b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Rio_Branco
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Rio_Branco
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Rio_Branco
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Rosario b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Rosario
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Rosario
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Rosario
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Santa_Isabel b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Santa_Isabel
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Santa_Isabel
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Santa_Isabel
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Santarem b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Santarem
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Santarem
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Santarem
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Santiago b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Santiago
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Santiago
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Santiago
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Santo_Domingo b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Santo_Domingo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Santo_Domingo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Santo_Domingo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Sao_Paulo b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Sao_Paulo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Sao_Paulo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Sao_Paulo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Scoresbysund b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Scoresbysund
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Scoresbysund
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Scoresbysund
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Shiprock b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Shiprock
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Shiprock
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Shiprock
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Sitka b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Sitka
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Sitka
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Sitka
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/St_Barthelemy b/app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Barthelemy
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/St_Barthelemy
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Barthelemy
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/St_Johns b/app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Johns
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/St_Johns
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Johns
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/St_Kitts b/app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Kitts
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/St_Kitts
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Kitts
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/St_Lucia b/app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Lucia
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/St_Lucia
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Lucia
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/St_Thomas b/app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Thomas
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/St_Thomas
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Thomas
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/St_Vincent b/app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Vincent
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/St_Vincent
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/St_Vincent
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Swift_Current b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Swift_Current
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Swift_Current
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Swift_Current
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Tegucigalpa b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Tegucigalpa
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Tegucigalpa
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Tegucigalpa
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Thule b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Thule
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Thule
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Thule
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Thunder_Bay b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Thunder_Bay
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Thunder_Bay
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Thunder_Bay
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Tijuana b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Tijuana
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Tijuana
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Tijuana
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Toronto b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Toronto
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Toronto
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Toronto
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Tortola b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Tortola
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Tortola
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Tortola
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Vancouver b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Vancouver
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Vancouver
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Vancouver
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Virgin b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Virgin
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Virgin
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Virgin
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Whitehorse b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Whitehorse
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Whitehorse
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Whitehorse
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Winnipeg b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Winnipeg
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Winnipeg
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Winnipeg
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Yakutat b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Yakutat
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Yakutat
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Yakutat
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Yellowknife b/app_env/Lib/site-packages/tzdata/zoneinfo/America/Yellowknife
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/America/Yellowknife
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/Yellowknife
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Arctic/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/America/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Arctic/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/America/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/America/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/America/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..f6dda673
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/America/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Casey b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Casey
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Casey
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Casey
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Davis b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Davis
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Davis
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Davis
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/DumontDUrville b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/DumontDUrville
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/DumontDUrville
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/DumontDUrville
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Macquarie b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Macquarie
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Macquarie
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Macquarie
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Mawson b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Mawson
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Mawson
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Mawson
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/McMurdo b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/McMurdo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/McMurdo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/McMurdo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Palmer b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Palmer
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Palmer
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Palmer
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Rothera b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Rothera
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Rothera
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Rothera
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/South_Pole b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/South_Pole
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/South_Pole
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/South_Pole
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Syowa b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Syowa
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Syowa
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Syowa
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Troll b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Troll
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Troll
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Troll
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Vostok b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Vostok
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/Vostok
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/Vostok
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..ddbb8ea6
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Antarctica/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Arctic/Longyearbyen b/app_env/Lib/site-packages/tzdata/zoneinfo/Arctic/Longyearbyen
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Arctic/Longyearbyen
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Arctic/Longyearbyen
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Arctic/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Arctic/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Arctic/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Arctic/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..62bb9c89
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Arctic/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Aden b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Aden
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Aden
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Aden
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Almaty b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Almaty
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Almaty
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Almaty
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Amman b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Amman
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Amman
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Amman
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Anadyr b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Anadyr
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Anadyr
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Anadyr
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Aqtau b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Aqtau
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Aqtau
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Aqtau
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Aqtobe b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Aqtobe
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Aqtobe
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Aqtobe
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ashgabat b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ashgabat
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ashgabat
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ashgabat
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ashkhabad b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ashkhabad
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ashkhabad
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ashkhabad
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Atyrau b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Atyrau
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Atyrau
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Atyrau
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Baghdad b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Baghdad
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Baghdad
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Baghdad
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Bahrain b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Bahrain
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Bahrain
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Bahrain
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Baku b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Baku
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Baku
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Baku
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Bangkok b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Bangkok
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Bangkok
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Bangkok
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Barnaul b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Barnaul
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Barnaul
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Barnaul
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Beirut b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Beirut
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Beirut
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Beirut
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Bishkek b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Bishkek
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Bishkek
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Bishkek
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Brunei b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Brunei
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Brunei
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Brunei
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Calcutta b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Calcutta
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Calcutta
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Calcutta
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Chita b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Chita
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Chita
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Chita
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Choibalsan b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Choibalsan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Choibalsan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Choibalsan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Chongqing b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Chongqing
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Chongqing
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Chongqing
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Chungking b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Chungking
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Chungking
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Chungking
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Colombo b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Colombo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Colombo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Colombo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Dacca b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Dacca
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Dacca
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Dacca
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Damascus b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Damascus
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Damascus
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Damascus
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Dhaka b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Dhaka
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Dhaka
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Dhaka
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Dili b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Dili
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Dili
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Dili
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Dubai b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Dubai
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Dubai
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Dubai
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Dushanbe b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Dushanbe
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Dushanbe
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Dushanbe
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Famagusta b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Famagusta
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Famagusta
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Famagusta
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Gaza b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Gaza
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Gaza
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Gaza
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Harbin b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Harbin
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Harbin
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Harbin
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Hebron b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Hebron
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Hebron
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Hebron
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ho_Chi_Minh b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ho_Chi_Minh
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ho_Chi_Minh
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ho_Chi_Minh
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Hong_Kong b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Hong_Kong
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Hong_Kong
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Hong_Kong
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Hovd b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Hovd
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Hovd
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Hovd
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Irkutsk b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Irkutsk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Irkutsk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Irkutsk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Istanbul b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Istanbul
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Istanbul
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Istanbul
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Jakarta b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Jakarta
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Jakarta
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Jakarta
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Jayapura b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Jayapura
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Jayapura
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Jayapura
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Jerusalem b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Jerusalem
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Jerusalem
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Jerusalem
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kabul b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kabul
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kabul
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kabul
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kamchatka b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kamchatka
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kamchatka
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kamchatka
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Karachi b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Karachi
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Karachi
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Karachi
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kashgar b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kashgar
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kashgar
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kashgar
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kathmandu b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kathmandu
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kathmandu
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kathmandu
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Katmandu b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Katmandu
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Katmandu
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Katmandu
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Khandyga b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Khandyga
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Khandyga
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Khandyga
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kolkata b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kolkata
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kolkata
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kolkata
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Krasnoyarsk b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Krasnoyarsk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Krasnoyarsk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Krasnoyarsk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kuala_Lumpur b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kuala_Lumpur
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kuala_Lumpur
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kuala_Lumpur
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kuching b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kuching
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kuching
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kuching
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kuwait b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kuwait
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Kuwait
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Kuwait
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Macao b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Macao
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Macao
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Macao
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Macau b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Macau
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Macau
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Macau
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Magadan b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Magadan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Magadan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Magadan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Makassar b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Makassar
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Makassar
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Makassar
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Manila b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Manila
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Manila
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Manila
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Muscat b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Muscat
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Muscat
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Muscat
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Nicosia b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Nicosia
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Nicosia
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Nicosia
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Novokuznetsk b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Novokuznetsk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Novokuznetsk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Novokuznetsk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Novosibirsk b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Novosibirsk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Novosibirsk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Novosibirsk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Omsk b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Omsk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Omsk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Omsk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Oral b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Oral
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Oral
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Oral
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Phnom_Penh b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Phnom_Penh
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Phnom_Penh
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Phnom_Penh
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Pontianak b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Pontianak
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Pontianak
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Pontianak
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Pyongyang b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Pyongyang
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Pyongyang
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Pyongyang
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Qatar b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Qatar
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Qatar
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Qatar
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Qostanay b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Qostanay
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Qostanay
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Qostanay
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Qyzylorda b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Qyzylorda
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Qyzylorda
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Qyzylorda
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Rangoon b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Rangoon
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Rangoon
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Rangoon
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Riyadh b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Riyadh
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Riyadh
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Riyadh
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Saigon b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Saigon
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Saigon
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Saigon
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Sakhalin b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Sakhalin
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Sakhalin
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Sakhalin
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Samarkand b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Samarkand
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Samarkand
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Samarkand
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Seoul b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Seoul
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Seoul
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Seoul
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Shanghai b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Shanghai
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Shanghai
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Shanghai
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Singapore b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Singapore
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Singapore
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Singapore
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Srednekolymsk b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Srednekolymsk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Srednekolymsk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Srednekolymsk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Taipei b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Taipei
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Taipei
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Taipei
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tashkent b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tashkent
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tashkent
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tashkent
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tbilisi b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tbilisi
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tbilisi
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tbilisi
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tehran b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tehran
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tehran
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tehran
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tel_Aviv b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tel_Aviv
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tel_Aviv
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tel_Aviv
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Thimbu b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Thimbu
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Thimbu
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Thimbu
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Thimphu b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Thimphu
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Thimphu
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Thimphu
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tokyo b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tokyo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tokyo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tokyo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tomsk b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tomsk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Tomsk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Tomsk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ujung_Pandang b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ujung_Pandang
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ujung_Pandang
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ujung_Pandang
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ulaanbaatar b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ulaanbaatar
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ulaanbaatar
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ulaanbaatar
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ulan_Bator b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ulan_Bator
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ulan_Bator
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ulan_Bator
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Urumqi b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Urumqi
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Urumqi
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Urumqi
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ust-Nera b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ust-Nera
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Ust-Nera
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Ust-Nera
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Vientiane b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Vientiane
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Vientiane
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Vientiane
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Vladivostok b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Vladivostok
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Vladivostok
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Vladivostok
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Yakutsk b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Yakutsk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Yakutsk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Yakutsk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Yangon b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Yangon
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Yangon
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Yangon
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Yekaterinburg b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Yekaterinburg
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Yekaterinburg
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Yekaterinburg
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/Yerevan b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Yerevan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Asia/Yerevan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/Yerevan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Asia/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..1736436e
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Asia/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Azores b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Azores
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Azores
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Azores
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Bermuda b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Bermuda
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Bermuda
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Bermuda
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Canary b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Canary
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Canary
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Canary
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Cape_Verde b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Cape_Verde
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Cape_Verde
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Cape_Verde
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Faeroe b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Faeroe
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Faeroe
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Faeroe
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Faroe b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Faroe
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Faroe
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Faroe
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Jan_Mayen b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Jan_Mayen
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Jan_Mayen
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Jan_Mayen
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Madeira b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Madeira
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Madeira
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Madeira
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Reykjavik b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Reykjavik
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Reykjavik
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Reykjavik
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/South_Georgia b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/South_Georgia
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/South_Georgia
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/South_Georgia
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/St_Helena b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/St_Helena
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/St_Helena
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/St_Helena
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Stanley b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Stanley
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/Stanley
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/Stanley
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Brazil/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Brazil/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..08958d86
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Atlantic/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/ACT b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/ACT
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/ACT
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/ACT
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Adelaide b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Adelaide
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Adelaide
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Adelaide
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Brisbane b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Brisbane
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Brisbane
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Brisbane
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Broken_Hill b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Broken_Hill
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Broken_Hill
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Broken_Hill
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Canberra b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Canberra
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Canberra
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Canberra
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Currie b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Currie
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Currie
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Currie
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Darwin b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Darwin
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Darwin
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Darwin
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Eucla b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Eucla
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Eucla
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Eucla
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Hobart b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Hobart
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Hobart
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Hobart
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/LHI b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/LHI
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/LHI
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/LHI
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Lindeman b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Lindeman
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Lindeman
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Lindeman
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Lord_Howe b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Lord_Howe
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Lord_Howe
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Lord_Howe
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Melbourne b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Melbourne
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Melbourne
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Melbourne
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/NSW b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/NSW
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/NSW
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/NSW
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/North b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/North
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/North
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/North
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Perth b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Perth
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Perth
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Perth
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Queensland b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Queensland
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Queensland
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Queensland
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/South b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/South
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/South
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/South
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Sydney b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Sydney
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Sydney
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Sydney
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Tasmania b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Tasmania
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Tasmania
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Tasmania
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Victoria b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Victoria
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Victoria
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Victoria
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/West b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/West
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/West
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/West
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/Yancowinna b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Yancowinna
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Australia/Yancowinna
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/Yancowinna
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Canada/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Australia/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..5ca51319
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Australia/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Brazil/Acre b/app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/Acre
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Brazil/Acre
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/Acre
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Brazil/DeNoronha b/app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/DeNoronha
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Brazil/DeNoronha
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/DeNoronha
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Brazil/East b/app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/East
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Brazil/East
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/East
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Brazil/West b/app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/West
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Brazil/West
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/West
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Chile/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Chile/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..38263eed
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Brazil/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/CET b/app_env/Lib/site-packages/tzdata/zoneinfo/CET
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/CET
rename to app_env/Lib/site-packages/tzdata/zoneinfo/CET
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/CST6CDT b/app_env/Lib/site-packages/tzdata/zoneinfo/CST6CDT
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/CST6CDT
rename to app_env/Lib/site-packages/tzdata/zoneinfo/CST6CDT
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/Atlantic b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Atlantic
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Canada/Atlantic
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Atlantic
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/Central b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Central
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Canada/Central
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Central
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/Eastern b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Eastern
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Canada/Eastern
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Eastern
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/Mountain b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Mountain
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Canada/Mountain
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Mountain
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/Newfoundland b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Newfoundland
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Canada/Newfoundland
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Newfoundland
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/Pacific b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Pacific
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Canada/Pacific
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Pacific
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/Saskatchewan b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Saskatchewan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Canada/Saskatchewan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Saskatchewan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/Yukon b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Yukon
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Canada/Yukon
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Canada/Yukon
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Canada/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..77ff2849
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Canada/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Chile/Continental b/app_env/Lib/site-packages/tzdata/zoneinfo/Chile/Continental
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Chile/Continental
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Chile/Continental
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Chile/EasterIsland b/app_env/Lib/site-packages/tzdata/zoneinfo/Chile/EasterIsland
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Chile/EasterIsland
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Chile/EasterIsland
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Chile/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Chile/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Chile/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Chile/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..19975ef4
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Chile/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Cuba b/app_env/Lib/site-packages/tzdata/zoneinfo/Cuba
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Cuba
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Cuba
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/EET b/app_env/Lib/site-packages/tzdata/zoneinfo/EET
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/EET
rename to app_env/Lib/site-packages/tzdata/zoneinfo/EET
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/EST b/app_env/Lib/site-packages/tzdata/zoneinfo/EST
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/EST
rename to app_env/Lib/site-packages/tzdata/zoneinfo/EST
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/EST5EDT b/app_env/Lib/site-packages/tzdata/zoneinfo/EST5EDT
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/EST5EDT
rename to app_env/Lib/site-packages/tzdata/zoneinfo/EST5EDT
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Egypt b/app_env/Lib/site-packages/tzdata/zoneinfo/Egypt
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Egypt
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Egypt
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Eire b/app_env/Lib/site-packages/tzdata/zoneinfo/Eire
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Eire
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Eire
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+0 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+0
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+0
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+0
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+1 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+1
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+1
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+1
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+10 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+10
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+10
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+10
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+11 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+11
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+11
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+11
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+12 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+12
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+12
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+12
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+2 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+2
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+2
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+2
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+3 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+3
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+3
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+3
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+4 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+4
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+4
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+4
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+5 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+5
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+5
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+5
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+6 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+6
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+6
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+6
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+7 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+7
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+7
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+7
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+8 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+8
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+8
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+8
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+9 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+9
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+9
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+9
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-0 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-0
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-0
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-0
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-1 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-1
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-1
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-1
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-10 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-10
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-10
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-10
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-11 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-11
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-11
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-11
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-12 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-12
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-12
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-12
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-13 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-13
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-13
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-13
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-14 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-14
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-14
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-14
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-2 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-2
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-2
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-2
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-3 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-3
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-3
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-3
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-4 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-4
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-4
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-4
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-5 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-5
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-5
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-5
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-6 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-6
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-6
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-6
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-7 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-7
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-7
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-7
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-8 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-8
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-8
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-8
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-9 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-9
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-9
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-9
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT0 b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT0
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/GMT0
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/GMT0
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/Greenwich b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/Greenwich
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/Greenwich
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/Greenwich
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/UCT b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/UCT
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/UCT
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/UCT
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/UTC b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/UTC
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/UTC
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/UTC
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/Universal b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/Universal
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/Universal
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/Universal
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/Zulu b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/Zulu
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Etc/Zulu
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/Zulu
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Etc/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..028d5657
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Etc/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Amsterdam b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Amsterdam
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Amsterdam
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Amsterdam
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Andorra b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Andorra
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Andorra
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Andorra
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Astrakhan b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Astrakhan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Astrakhan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Astrakhan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Athens b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Athens
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Athens
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Athens
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Belfast b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Belfast
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Belfast
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Belfast
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Belgrade b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Belgrade
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Belgrade
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Belgrade
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Berlin b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Berlin
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Berlin
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Berlin
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Bratislava b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Bratislava
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Bratislava
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Bratislava
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Brussels b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Brussels
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Brussels
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Brussels
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Bucharest b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Bucharest
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Bucharest
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Bucharest
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Budapest b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Budapest
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Budapest
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Budapest
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Busingen b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Busingen
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Busingen
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Busingen
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Chisinau b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Chisinau
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Chisinau
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Chisinau
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Copenhagen b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Copenhagen
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Copenhagen
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Copenhagen
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Dublin b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Dublin
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Dublin
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Dublin
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Gibraltar b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Gibraltar
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Gibraltar
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Gibraltar
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Guernsey b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Guernsey
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Guernsey
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Guernsey
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Helsinki b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Helsinki
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Helsinki
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Helsinki
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Isle_of_Man b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Isle_of_Man
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Isle_of_Man
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Isle_of_Man
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Istanbul b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Istanbul
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Istanbul
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Istanbul
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Jersey b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Jersey
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Jersey
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Jersey
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Kaliningrad b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Kaliningrad
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Kaliningrad
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Kaliningrad
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Kiev b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Kiev
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Kiev
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Kiev
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Kirov b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Kirov
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Kirov
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Kirov
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Kyiv b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Kyiv
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Kyiv
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Kyiv
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Lisbon b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Lisbon
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Lisbon
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Lisbon
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Ljubljana b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Ljubljana
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Ljubljana
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Ljubljana
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/London b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/London
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/London
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/London
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Luxembourg b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Luxembourg
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Luxembourg
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Luxembourg
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Madrid b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Madrid
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Madrid
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Madrid
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Malta b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Malta
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Malta
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Malta
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Mariehamn b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Mariehamn
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Mariehamn
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Mariehamn
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Minsk b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Minsk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Minsk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Minsk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Monaco b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Monaco
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Monaco
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Monaco
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Moscow b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Moscow
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Moscow
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Moscow
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Nicosia b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Nicosia
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Nicosia
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Nicosia
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Oslo b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Oslo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Oslo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Oslo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Paris b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Paris
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Paris
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Paris
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Podgorica b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Podgorica
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Podgorica
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Podgorica
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Prague b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Prague
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Prague
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Prague
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Riga b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Riga
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Riga
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Riga
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Rome b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Rome
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Rome
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Rome
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Samara b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Samara
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Samara
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Samara
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/San_Marino b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/San_Marino
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/San_Marino
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/San_Marino
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Sarajevo b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Sarajevo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Sarajevo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Sarajevo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Saratov b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Saratov
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Saratov
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Saratov
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Simferopol b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Simferopol
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Simferopol
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Simferopol
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Skopje b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Skopje
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Skopje
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Skopje
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Sofia b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Sofia
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Sofia
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Sofia
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Stockholm b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Stockholm
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Stockholm
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Stockholm
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Tallinn b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Tallinn
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Tallinn
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Tallinn
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Tirane b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Tirane
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Tirane
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Tirane
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Tiraspol b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Tiraspol
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Tiraspol
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Tiraspol
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Ulyanovsk b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Ulyanovsk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Ulyanovsk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Ulyanovsk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Uzhgorod b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Uzhgorod
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Uzhgorod
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Uzhgorod
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Vaduz b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Vaduz
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Vaduz
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Vaduz
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Vatican b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Vatican
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Vatican
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Vatican
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Vienna b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Vienna
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Vienna
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Vienna
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Vilnius b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Vilnius
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Vilnius
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Vilnius
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Volgograd b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Volgograd
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Volgograd
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Volgograd
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Warsaw b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Warsaw
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Warsaw
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Warsaw
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Zagreb b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Zagreb
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Zagreb
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Zagreb
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Zaporozhye b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Zaporozhye
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Zaporozhye
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Zaporozhye
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/Zurich b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Zurich
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Europe/Zurich
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/Zurich
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Mexico/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Mexico/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Europe/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..56e61d95
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Europe/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Factory b/app_env/Lib/site-packages/tzdata/zoneinfo/Factory
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Factory
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Factory
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/GB b/app_env/Lib/site-packages/tzdata/zoneinfo/GB
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/GB
rename to app_env/Lib/site-packages/tzdata/zoneinfo/GB
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/GB-Eire b/app_env/Lib/site-packages/tzdata/zoneinfo/GB-Eire
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/GB-Eire
rename to app_env/Lib/site-packages/tzdata/zoneinfo/GB-Eire
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/GMT b/app_env/Lib/site-packages/tzdata/zoneinfo/GMT
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/GMT
rename to app_env/Lib/site-packages/tzdata/zoneinfo/GMT
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/GMT+0 b/app_env/Lib/site-packages/tzdata/zoneinfo/GMT+0
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/GMT+0
rename to app_env/Lib/site-packages/tzdata/zoneinfo/GMT+0
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/GMT-0 b/app_env/Lib/site-packages/tzdata/zoneinfo/GMT-0
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/GMT-0
rename to app_env/Lib/site-packages/tzdata/zoneinfo/GMT-0
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/GMT0 b/app_env/Lib/site-packages/tzdata/zoneinfo/GMT0
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/GMT0
rename to app_env/Lib/site-packages/tzdata/zoneinfo/GMT0
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Greenwich b/app_env/Lib/site-packages/tzdata/zoneinfo/Greenwich
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Greenwich
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Greenwich
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/HST b/app_env/Lib/site-packages/tzdata/zoneinfo/HST
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/HST
rename to app_env/Lib/site-packages/tzdata/zoneinfo/HST
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Hongkong b/app_env/Lib/site-packages/tzdata/zoneinfo/Hongkong
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Hongkong
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Hongkong
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Iceland b/app_env/Lib/site-packages/tzdata/zoneinfo/Iceland
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Iceland
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Iceland
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Antananarivo b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Antananarivo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Antananarivo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Antananarivo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Chagos b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Chagos
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Chagos
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Chagos
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Christmas b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Christmas
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Christmas
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Christmas
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Cocos b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Cocos
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Cocos
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Cocos
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Comoro b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Comoro
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Comoro
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Comoro
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Kerguelen b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Kerguelen
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Kerguelen
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Kerguelen
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Mahe b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Mahe
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Mahe
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Mahe
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Maldives b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Maldives
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Maldives
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Maldives
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Mauritius b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Mauritius
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Mauritius
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Mauritius
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Mayotte b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Mayotte
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Mayotte
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Mayotte
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/Reunion b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Reunion
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Indian/Reunion
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/Reunion
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Indian/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..728f0315
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Indian/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Iran b/app_env/Lib/site-packages/tzdata/zoneinfo/Iran
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Iran
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Iran
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Israel b/app_env/Lib/site-packages/tzdata/zoneinfo/Israel
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Israel
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Israel
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Jamaica b/app_env/Lib/site-packages/tzdata/zoneinfo/Jamaica
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Jamaica
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Jamaica
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Japan b/app_env/Lib/site-packages/tzdata/zoneinfo/Japan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Japan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Japan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Kwajalein b/app_env/Lib/site-packages/tzdata/zoneinfo/Kwajalein
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Kwajalein
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Kwajalein
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Libya b/app_env/Lib/site-packages/tzdata/zoneinfo/Libya
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Libya
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Libya
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/MET b/app_env/Lib/site-packages/tzdata/zoneinfo/MET
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/MET
rename to app_env/Lib/site-packages/tzdata/zoneinfo/MET
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/MST b/app_env/Lib/site-packages/tzdata/zoneinfo/MST
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/MST
rename to app_env/Lib/site-packages/tzdata/zoneinfo/MST
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/MST7MDT b/app_env/Lib/site-packages/tzdata/zoneinfo/MST7MDT
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/MST7MDT
rename to app_env/Lib/site-packages/tzdata/zoneinfo/MST7MDT
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Mexico/BajaNorte b/app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/BajaNorte
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Mexico/BajaNorte
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/BajaNorte
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Mexico/BajaSur b/app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/BajaSur
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Mexico/BajaSur
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/BajaSur
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Mexico/General b/app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/General
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Mexico/General
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/General
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..c5cea0c9
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Mexico/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/NZ b/app_env/Lib/site-packages/tzdata/zoneinfo/NZ
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/NZ
rename to app_env/Lib/site-packages/tzdata/zoneinfo/NZ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/NZ-CHAT b/app_env/Lib/site-packages/tzdata/zoneinfo/NZ-CHAT
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/NZ-CHAT
rename to app_env/Lib/site-packages/tzdata/zoneinfo/NZ-CHAT
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Navajo b/app_env/Lib/site-packages/tzdata/zoneinfo/Navajo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Navajo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Navajo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/PRC b/app_env/Lib/site-packages/tzdata/zoneinfo/PRC
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/PRC
rename to app_env/Lib/site-packages/tzdata/zoneinfo/PRC
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/PST8PDT b/app_env/Lib/site-packages/tzdata/zoneinfo/PST8PDT
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/PST8PDT
rename to app_env/Lib/site-packages/tzdata/zoneinfo/PST8PDT
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Apia b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Apia
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Apia
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Apia
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Auckland b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Auckland
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Auckland
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Auckland
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Bougainville b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Bougainville
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Bougainville
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Bougainville
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Chatham b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Chatham
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Chatham
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Chatham
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Chuuk b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Chuuk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Chuuk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Chuuk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Easter b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Easter
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Easter
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Easter
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Efate b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Efate
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Efate
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Efate
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Enderbury b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Enderbury
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Enderbury
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Enderbury
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Fakaofo b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Fakaofo
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Fakaofo
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Fakaofo
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Fiji b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Fiji
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Fiji
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Fiji
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Funafuti b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Funafuti
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Funafuti
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Funafuti
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Galapagos b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Galapagos
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Galapagos
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Galapagos
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Gambier b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Gambier
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Gambier
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Gambier
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Guadalcanal b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Guadalcanal
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Guadalcanal
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Guadalcanal
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Guam b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Guam
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Guam
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Guam
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Honolulu b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Honolulu
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Honolulu
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Honolulu
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Johnston b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Johnston
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Johnston
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Johnston
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Kanton b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Kanton
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Kanton
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Kanton
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Kiritimati b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Kiritimati
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Kiritimati
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Kiritimati
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Kosrae b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Kosrae
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Kosrae
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Kosrae
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Kwajalein b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Kwajalein
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Kwajalein
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Kwajalein
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Majuro b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Majuro
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Majuro
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Majuro
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Marquesas b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Marquesas
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Marquesas
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Marquesas
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Midway b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Midway
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Midway
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Midway
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Nauru b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Nauru
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Nauru
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Nauru
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Niue b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Niue
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Niue
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Niue
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Norfolk b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Norfolk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Norfolk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Norfolk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Noumea b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Noumea
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Noumea
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Noumea
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Pago_Pago b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Pago_Pago
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Pago_Pago
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Pago_Pago
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Palau b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Palau
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Palau
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Palau
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Pitcairn b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Pitcairn
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Pitcairn
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Pitcairn
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Pohnpei b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Pohnpei
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Pohnpei
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Pohnpei
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Ponape b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Ponape
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Ponape
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Ponape
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Port_Moresby b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Port_Moresby
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Port_Moresby
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Port_Moresby
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Rarotonga b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Rarotonga
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Rarotonga
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Rarotonga
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Saipan b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Saipan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Saipan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Saipan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Samoa b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Samoa
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Samoa
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Samoa
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Tahiti b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Tahiti
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Tahiti
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Tahiti
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Tarawa b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Tarawa
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Tarawa
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Tarawa
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Tongatapu b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Tongatapu
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Tongatapu
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Tongatapu
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Truk b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Truk
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Truk
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Truk
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Wake b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Wake
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Wake
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Wake
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Wallis b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Wallis
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Wallis
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Wallis
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Yap b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Yap
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Pacific/Yap
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/Yap
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/__init__.py
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/__init__.py
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/__init__.py
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..5ab9c940
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/Pacific/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Poland b/app_env/Lib/site-packages/tzdata/zoneinfo/Poland
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Poland
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Poland
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Portugal b/app_env/Lib/site-packages/tzdata/zoneinfo/Portugal
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Portugal
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Portugal
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/ROC b/app_env/Lib/site-packages/tzdata/zoneinfo/ROC
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/ROC
rename to app_env/Lib/site-packages/tzdata/zoneinfo/ROC
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/ROK b/app_env/Lib/site-packages/tzdata/zoneinfo/ROK
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/ROK
rename to app_env/Lib/site-packages/tzdata/zoneinfo/ROK
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Singapore b/app_env/Lib/site-packages/tzdata/zoneinfo/Singapore
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Singapore
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Singapore
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Turkey b/app_env/Lib/site-packages/tzdata/zoneinfo/Turkey
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Turkey
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Turkey
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/UCT b/app_env/Lib/site-packages/tzdata/zoneinfo/UCT
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/UCT
rename to app_env/Lib/site-packages/tzdata/zoneinfo/UCT
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Alaska b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Alaska
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Alaska
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Alaska
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Aleutian b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Aleutian
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Aleutian
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Aleutian
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Arizona b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Arizona
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Arizona
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Arizona
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Central b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Central
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Central
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Central
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/East-Indiana b/app_env/Lib/site-packages/tzdata/zoneinfo/US/East-Indiana
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/East-Indiana
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/East-Indiana
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Eastern b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Eastern
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Eastern
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Eastern
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Hawaii b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Hawaii
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Hawaii
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Hawaii
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Indiana-Starke b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Indiana-Starke
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Indiana-Starke
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Indiana-Starke
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Michigan b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Michigan
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Michigan
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Michigan
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Mountain b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Mountain
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Mountain
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Mountain
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Pacific b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Pacific
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Pacific
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Pacific
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/Samoa b/app_env/Lib/site-packages/tzdata/zoneinfo/US/Samoa
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/US/Samoa
rename to app_env/Lib/site-packages/tzdata/zoneinfo/US/Samoa
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/US/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/US/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/US/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/US/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..b7e27b7c
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/US/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/UTC b/app_env/Lib/site-packages/tzdata/zoneinfo/UTC
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/UTC
rename to app_env/Lib/site-packages/tzdata/zoneinfo/UTC
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Universal b/app_env/Lib/site-packages/tzdata/zoneinfo/Universal
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Universal
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Universal
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/W-SU b/app_env/Lib/site-packages/tzdata/zoneinfo/W-SU
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/W-SU
rename to app_env/Lib/site-packages/tzdata/zoneinfo/W-SU
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/WET b/app_env/Lib/site-packages/tzdata/zoneinfo/WET
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/WET
rename to app_env/Lib/site-packages/tzdata/zoneinfo/WET
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Zulu b/app_env/Lib/site-packages/tzdata/zoneinfo/Zulu
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/Zulu
rename to app_env/Lib/site-packages/tzdata/zoneinfo/Zulu
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/__init__.py b/app_env/Lib/site-packages/tzdata/zoneinfo/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/app_env/Lib/site-packages/tzdata/zoneinfo/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/tzdata/zoneinfo/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..8930814a
Binary files /dev/null and b/app_env/Lib/site-packages/tzdata/zoneinfo/__pycache__/__init__.cpython-310.pyc differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/iso3166.tab b/app_env/Lib/site-packages/tzdata/zoneinfo/iso3166.tab
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/iso3166.tab
rename to app_env/Lib/site-packages/tzdata/zoneinfo/iso3166.tab
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/leapseconds b/app_env/Lib/site-packages/tzdata/zoneinfo/leapseconds
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/leapseconds
rename to app_env/Lib/site-packages/tzdata/zoneinfo/leapseconds
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/tzdata.zi b/app_env/Lib/site-packages/tzdata/zoneinfo/tzdata.zi
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/tzdata.zi
rename to app_env/Lib/site-packages/tzdata/zoneinfo/tzdata.zi
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/zone.tab b/app_env/Lib/site-packages/tzdata/zoneinfo/zone.tab
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/zone.tab
rename to app_env/Lib/site-packages/tzdata/zoneinfo/zone.tab
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/zone1970.tab b/app_env/Lib/site-packages/tzdata/zoneinfo/zone1970.tab
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zoneinfo/zone1970.tab
rename to app_env/Lib/site-packages/tzdata/zoneinfo/zone1970.tab
diff --git a/venv/Lib/site-packages/tzdata/zones b/app_env/Lib/site-packages/tzdata/zones
similarity index 100%
rename from venv/Lib/site-packages/tzdata/zones
rename to app_env/Lib/site-packages/tzdata/zones
diff --git a/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/INSTALLER b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/INSTALLER
new file mode 100644
index 00000000..a1b589e3
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/INSTALLER
@@ -0,0 +1 @@
+pip
diff --git a/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/LICENSE b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/LICENSE
new file mode 100644
index 00000000..b4163ca4
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/LICENSE
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright (c) 2013 David Evans
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/METADATA b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/METADATA
new file mode 100644
index 00000000..fa6dc401
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/METADATA
@@ -0,0 +1,83 @@
+Metadata-Version: 2.1
+Name: whitenoise
+Version: 6.2.0
+Summary: Radically simplified static file serving for WSGI applications
+Home-page: https://github.com/evansd/whitenoise
+Author: David Evans
+Author-email: d@evans.io
+License: MIT
+Project-URL: Documentation, https://whitenoise.evans.io/
+Project-URL: Changelog, https://whitenoise.evans.io/en/stable/changelog.html
+Keywords: Django
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Framework :: Django
+Classifier: Framework :: Django :: 3.2
+Classifier: Framework :: Django :: 4.0
+Classifier: Framework :: Django :: 4.1
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: MIT License
+Classifier: Operating System :: OS Independent
+Classifier: Programming Language :: Python :: 3 :: Only
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
+Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
+Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
+Requires-Python: >=3.7
+Description-Content-Type: text/x-rst
+License-File: LICENSE
+Provides-Extra: brotli
+Requires-Dist: Brotli ; extra == 'brotli'
+
+WhiteNoise
+==========
+
+.. image:: https://img.shields.io/travis/evansd/whitenoise.svg
+ :target: https://travis-ci.org/evansd/whitenoise
+ :alt: Build Status (Linux)
+
+.. image:: https://img.shields.io/appveyor/ci/evansd/whitenoise.svg
+ :target: https://ci.appveyor.com/project/evansd/whitenoise
+ :alt: Build Status (Windows)
+
+.. image:: https://img.shields.io/pypi/v/whitenoise.svg
+ :target: https://pypi.python.org/pypi/whitenoise
+ :alt: Latest PyPI version
+
+.. image:: https://img.shields.io/pypi/dm/whitenoise.svg
+ :target: https://pypistats.org/packages/whitenoise
+ :alt: Monthly PyPI downloads
+
+.. image:: https://img.shields.io/github/stars/evansd/whitenoise.svg?style=social&label=Star
+ :target: https://github.com/evansd/whitenoise
+ :alt: GitHub project
+
+**Radically simplified static file serving for Python web apps**
+
+With a couple of lines of config WhiteNoise allows your web app to serve its
+own static files, making it a self-contained unit that can be deployed anywhere
+without relying on nginx, Amazon S3 or any other external service. (Especially
+useful on Heroku, OpenShift and other PaaS providers.)
+
+It's designed to work nicely with a CDN for high-traffic sites so you don't have to
+sacrifice performance to benefit from simplicity.
+
+WhiteNoise works with any WSGI-compatible app but has some special auto-configuration
+features for Django.
+
+WhiteNoise takes care of best-practices for you, for instance:
+
+* Serving compressed content (gzip and Brotli formats, handling Accept-Encoding
+ and Vary headers correctly)
+* Setting far-future cache headers on content which won't change
+
+Worried that serving static files with Python is horribly inefficient?
+Still think you should be using Amazon S3? Have a look at the `Infrequently
+Asked Questions`_.
+
+To get started, see the documentation_.
+
+.. _Infrequently Asked Questions: https://whitenoise.evans.io/en/stable/#infrequently-asked-questions
+.. _documentation: https://whitenoise.evans.io/en/stable/
diff --git a/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/RECORD b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/RECORD
new file mode 100644
index 00000000..c47858cd
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/RECORD
@@ -0,0 +1,30 @@
+whitenoise-6.2.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+whitenoise-6.2.0.dist-info/LICENSE,sha256=6_1Gm0-2ta2tpUd0fh6NpyXs8gWV1UrO0EMnXU9KNgA,1078
+whitenoise-6.2.0.dist-info/METADATA,sha256=5b6VD8FCZ3gJMVUm9v2Z8wgB9Kf3A7c5SVR9WgbOxyc,3296
+whitenoise-6.2.0.dist-info/RECORD,,
+whitenoise-6.2.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
+whitenoise-6.2.0.dist-info/top_level.txt,sha256=B9W4KO2HU7q-2WgAvuqFtjp3cG4z2RZ5JDZB0Wuni6Q,11
+whitenoise/__init__.py,sha256=KkijLhLzq7g9HGOC-OcW8dWfNYEJFUrWqA3W1S7bHSY,91
+whitenoise/__pycache__/__init__.cpython-310.pyc,,
+whitenoise/__pycache__/base.cpython-310.pyc,,
+whitenoise/__pycache__/compress.cpython-310.pyc,,
+whitenoise/__pycache__/media_types.cpython-310.pyc,,
+whitenoise/__pycache__/middleware.cpython-310.pyc,,
+whitenoise/__pycache__/responders.cpython-310.pyc,,
+whitenoise/__pycache__/storage.cpython-310.pyc,,
+whitenoise/__pycache__/string_utils.cpython-310.pyc,,
+whitenoise/base.py,sha256=UtzI_Wd6-atF61ZMSAYZJyeE2SxENiOHr1q8idUispI,10332
+whitenoise/compress.py,sha256=6gQNhdW2SiZGbPGPk64on-sWZEOXQnJEPe7Bs20kbOw,5290
+whitenoise/media_types.py,sha256=nfp226ho0dMMsEJkj_cBD0Rp75aFAY833sHz85Lzud4,5132
+whitenoise/middleware.py,sha256=7kzmTDGxNvvRKkqZq_ntlwWLpfMfA7ovySIzj0Zok0Q,6433
+whitenoise/responders.py,sha256=WtHRiN4PVv90Mes8fOx__VAqHcnYOFEw2Vxe0E2IGEE,9867
+whitenoise/runserver_nostatic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+whitenoise/runserver_nostatic/__pycache__/__init__.cpython-310.pyc,,
+whitenoise/runserver_nostatic/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+whitenoise/runserver_nostatic/management/__pycache__/__init__.cpython-310.pyc,,
+whitenoise/runserver_nostatic/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
+whitenoise/runserver_nostatic/management/commands/__pycache__/__init__.cpython-310.pyc,,
+whitenoise/runserver_nostatic/management/commands/__pycache__/runserver.cpython-310.pyc,,
+whitenoise/runserver_nostatic/management/commands/runserver.py,sha256=94QoRkFClrqsVHvj1MPV1QL6U77y2-hXCOuVorWsrXY,1675
+whitenoise/storage.py,sha256=QpsMFWedSePrUBH-JXdVTetKM1xF32UrItsQDtbBftM,7347
+whitenoise/string_utils.py,sha256=MEEN3DRA4TBrOWyVoEyOZpNkEnTVVqkd-cJW0LhJZ0k,670
diff --git a/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/WHEEL b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/WHEEL
new file mode 100644
index 00000000..becc9a66
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/WHEEL
@@ -0,0 +1,5 @@
+Wheel-Version: 1.0
+Generator: bdist_wheel (0.37.1)
+Root-Is-Purelib: true
+Tag: py3-none-any
+
diff --git a/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/top_level.txt b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/top_level.txt
new file mode 100644
index 00000000..bd978828
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise-6.2.0.dist-info/top_level.txt
@@ -0,0 +1 @@
+whitenoise
diff --git a/app_env/Lib/site-packages/whitenoise/__init__.py b/app_env/Lib/site-packages/whitenoise/__init__.py
new file mode 100644
index 00000000..42ffb9d3
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise/__init__.py
@@ -0,0 +1,5 @@
+from __future__ import annotations
+
+from .base import WhiteNoise
+
+__all__ = ["WhiteNoise"]
diff --git a/app_env/Lib/site-packages/whitenoise/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..17dfca4f
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/__pycache__/base.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/__pycache__/base.cpython-310.pyc
new file mode 100644
index 00000000..d4ab6222
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/__pycache__/base.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/__pycache__/compress.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/__pycache__/compress.cpython-310.pyc
new file mode 100644
index 00000000..fb5dbafa
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/__pycache__/compress.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/__pycache__/media_types.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/__pycache__/media_types.cpython-310.pyc
new file mode 100644
index 00000000..84e9d0f9
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/__pycache__/media_types.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/__pycache__/middleware.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/__pycache__/middleware.cpython-310.pyc
new file mode 100644
index 00000000..94638a2a
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/__pycache__/middleware.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/__pycache__/responders.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/__pycache__/responders.cpython-310.pyc
new file mode 100644
index 00000000..5704f0f2
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/__pycache__/responders.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/__pycache__/storage.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/__pycache__/storage.cpython-310.pyc
new file mode 100644
index 00000000..7aaeaa22
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/__pycache__/storage.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/__pycache__/string_utils.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/__pycache__/string_utils.cpython-310.pyc
new file mode 100644
index 00000000..6d69c8a9
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/__pycache__/string_utils.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/base.py b/app_env/Lib/site-packages/whitenoise/base.py
new file mode 100644
index 00000000..e7bcf2aa
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise/base.py
@@ -0,0 +1,273 @@
+from __future__ import annotations
+
+import os
+import re
+import warnings
+from posixpath import normpath
+from wsgiref.headers import Headers
+from wsgiref.util import FileWrapper
+
+from .media_types import MediaTypes
+from .responders import IsDirectoryError, MissingFileError, Redirect, StaticFile
+from .string_utils import (
+ decode_if_byte_string,
+ decode_path_info,
+ ensure_leading_trailing_slash,
+)
+
+
+class WhiteNoise:
+
+ # Ten years is what nginx sets a max age if you use 'expires max;'
+ # so we'll follow its lead
+ FOREVER = 10 * 365 * 24 * 60 * 60
+
+ # Attributes that can be set by keyword args in the constructor
+ config_attrs = (
+ "autorefresh",
+ "max_age",
+ "allow_all_origins",
+ "charset",
+ "mimetypes",
+ "add_headers_function",
+ "index_file",
+ "immutable_file_test",
+ )
+ # Re-check the filesystem on every request so that any changes are
+ # automatically picked up. NOTE: For use in development only, not supported
+ # in production
+ autorefresh = False
+ max_age = 60
+ # Set 'Access-Control-Allow-Origin: *' header on all files.
+ # As these are all public static files this is safe (See
+ # https://www.w3.org/TR/cors/#security) and ensures that things (e.g
+ # webfonts in Firefox) still work as expected when your static files are
+ # served from a CDN, rather than your primary domain.
+ allow_all_origins = True
+ charset = "utf-8"
+ # Custom mime types
+ mimetypes = None
+ # Callback for adding custom logic when setting headers
+ add_headers_function = None
+ # Name of index file (None to disable index support)
+ index_file = None
+
+ def __init__(self, application, root=None, prefix=None, **kwargs):
+ for attr in self.config_attrs:
+ try:
+ value = kwargs.pop(attr)
+ except KeyError:
+ pass
+ else:
+ value = decode_if_byte_string(value)
+ setattr(self, attr, value)
+ if kwargs:
+ raise TypeError(f"Unexpected keyword argument '{list(kwargs.keys())[0]}'")
+ self.media_types = MediaTypes(extra_types=self.mimetypes)
+ self.application = application
+ self.files = {}
+ self.directories = []
+ if self.index_file is True:
+ self.index_file = "index.html"
+ if not callable(self.immutable_file_test):
+ regex = re.compile(self.immutable_file_test)
+ self.immutable_file_test = lambda path, url: bool(regex.search(url))
+ if root is not None:
+ self.add_files(root, prefix)
+
+ def __call__(self, environ, start_response):
+ path = decode_path_info(environ.get("PATH_INFO", ""))
+ if self.autorefresh:
+ static_file = self.find_file(path)
+ else:
+ static_file = self.files.get(path)
+ if static_file is None:
+ return self.application(environ, start_response)
+ else:
+ return self.serve(static_file, environ, start_response)
+
+ @staticmethod
+ def serve(static_file, environ, start_response):
+ response = static_file.get_response(environ["REQUEST_METHOD"], environ)
+ status_line = f"{response.status} {response.status.phrase}"
+ start_response(status_line, list(response.headers))
+ if response.file is not None:
+ file_wrapper = environ.get("wsgi.file_wrapper", FileWrapper)
+ return file_wrapper(response.file)
+ else:
+ return []
+
+ def add_files(self, root, prefix=None):
+ root = decode_if_byte_string(root, force_text=True)
+ root = os.path.abspath(root)
+ root = root.rstrip(os.path.sep) + os.path.sep
+ prefix = decode_if_byte_string(prefix)
+ prefix = ensure_leading_trailing_slash(prefix)
+ if self.autorefresh:
+ # Later calls to `add_files` overwrite earlier ones, hence we need
+ # to store the list of directories in reverse order so later ones
+ # match first when they're checked in "autorefresh" mode
+ self.directories.insert(0, (root, prefix))
+ else:
+ if os.path.isdir(root):
+ self.update_files_dictionary(root, prefix)
+ else:
+ warnings.warn(f"No directory at: {root}")
+
+ def update_files_dictionary(self, root, prefix):
+ # Build a mapping from paths to the results of `os.stat` calls
+ # so we only have to touch the filesystem once
+ stat_cache = dict(scantree(root))
+ for path in stat_cache.keys():
+ relative_path = path[len(root) :]
+ relative_url = relative_path.replace("\\", "/")
+ url = prefix + relative_url
+ self.add_file_to_dictionary(url, path, stat_cache=stat_cache)
+
+ def add_file_to_dictionary(self, url, path, stat_cache=None):
+ if self.is_compressed_variant(path, stat_cache=stat_cache):
+ return
+ if self.index_file and url.endswith("/" + self.index_file):
+ index_url = url[: -len(self.index_file)]
+ index_no_slash = index_url.rstrip("/")
+ self.files[url] = self.redirect(url, index_url)
+ self.files[index_no_slash] = self.redirect(index_no_slash, index_url)
+ url = index_url
+ static_file = self.get_static_file(path, url, stat_cache=stat_cache)
+ self.files[url] = static_file
+
+ def find_file(self, url):
+ # Optimization: bail early if the URL can never match a file
+ if not self.index_file and url.endswith("/"):
+ return
+ if not self.url_is_canonical(url):
+ return
+ for path in self.candidate_paths_for_url(url):
+ try:
+ return self.find_file_at_path(path, url)
+ except MissingFileError:
+ pass
+
+ def candidate_paths_for_url(self, url):
+ for root, prefix in self.directories:
+ if url.startswith(prefix):
+ path = os.path.join(root, url[len(prefix) :])
+ if os.path.commonprefix((root, path)) == root:
+ yield path
+
+ def find_file_at_path(self, path, url):
+ if self.is_compressed_variant(path):
+ raise MissingFileError(path)
+ if self.index_file:
+ return self.find_file_at_path_with_indexes(path, url)
+ else:
+ return self.get_static_file(path, url)
+
+ def find_file_at_path_with_indexes(self, path, url):
+ if url.endswith("/"):
+ path = os.path.join(path, self.index_file)
+ return self.get_static_file(path, url)
+ elif url.endswith("/" + self.index_file):
+ if os.path.isfile(path):
+ return self.redirect(url, url[: -len(self.index_file)])
+ else:
+ try:
+ return self.get_static_file(path, url)
+ except IsDirectoryError:
+ if os.path.isfile(os.path.join(path, self.index_file)):
+ return self.redirect(url, url + "/")
+ raise MissingFileError(path)
+
+ @staticmethod
+ def url_is_canonical(url):
+ """
+ Check that the URL path is in canonical format i.e. has normalised
+ slashes and no path traversal elements
+ """
+ if "\\" in url:
+ return False
+ normalised = normpath(url)
+ if url.endswith("/") and url != "/":
+ normalised += "/"
+ return normalised == url
+
+ @staticmethod
+ def is_compressed_variant(path, stat_cache=None):
+ if path[-3:] in (".gz", ".br"):
+ uncompressed_path = path[:-3]
+ if stat_cache is None:
+ return os.path.isfile(uncompressed_path)
+ else:
+ return uncompressed_path in stat_cache
+ return False
+
+ def get_static_file(self, path, url, stat_cache=None):
+ # Optimization: bail early if file does not exist
+ if stat_cache is None and not os.path.exists(path):
+ raise MissingFileError(path)
+ headers = Headers([])
+ self.add_mime_headers(headers, path, url)
+ self.add_cache_headers(headers, path, url)
+ if self.allow_all_origins:
+ headers["Access-Control-Allow-Origin"] = "*"
+ if self.add_headers_function:
+ self.add_headers_function(headers, path, url)
+ return StaticFile(
+ path,
+ headers.items(),
+ stat_cache=stat_cache,
+ encodings={"gzip": path + ".gz", "br": path + ".br"},
+ )
+
+ def add_mime_headers(self, headers, path, url):
+ media_type = self.media_types.get_type(path)
+ if media_type.startswith("text/"):
+ params = {"charset": str(self.charset)}
+ else:
+ params = {}
+ headers.add_header("Content-Type", str(media_type), **params)
+
+ def add_cache_headers(self, headers, path, url):
+ if self.immutable_file_test(path, url):
+ headers["Cache-Control"] = "max-age={}, public, immutable".format(
+ self.FOREVER
+ )
+ elif self.max_age is not None:
+ headers["Cache-Control"] = f"max-age={self.max_age}, public"
+
+ def immutable_file_test(self, path, url):
+ """
+ This should be implemented by sub-classes (see e.g. WhiteNoiseMiddleware)
+ or by setting the `immutable_file_test` config option
+ """
+ return False
+
+ def redirect(self, from_url, to_url):
+ """
+ Return a relative 302 redirect
+
+ We use relative redirects as we don't know the absolute URL the app is
+ being hosted under
+ """
+ if to_url == from_url + "/":
+ relative_url = from_url.split("/")[-1] + "/"
+ elif from_url == to_url + self.index_file:
+ relative_url = "./"
+ else:
+ raise ValueError(f"Cannot handle redirect: {from_url} > {to_url}")
+ if self.max_age is not None:
+ headers = {"Cache-Control": f"max-age={self.max_age}, public"}
+ else:
+ headers = {}
+ return Redirect(relative_url, headers=headers)
+
+
+def scantree(root):
+ """
+ Recurse the given directory yielding (pathname, os.stat(pathname)) pairs
+ """
+ for entry in os.scandir(root):
+ if entry.is_dir():
+ yield from scantree(entry.path)
+ else:
+ yield entry.path, entry.stat()
diff --git a/app_env/Lib/site-packages/whitenoise/compress.py b/app_env/Lib/site-packages/whitenoise/compress.py
new file mode 100644
index 00000000..e4e9fba5
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise/compress.py
@@ -0,0 +1,178 @@
+from __future__ import annotations
+
+import argparse
+import gzip
+import os
+import re
+from io import BytesIO
+
+try:
+ import brotli
+
+ brotli_installed = True
+except ImportError: # pragma: no cover
+ brotli_installed = False
+
+
+class Compressor:
+
+ # Extensions that it's not worth trying to compress
+ SKIP_COMPRESS_EXTENSIONS = (
+ # Images
+ "jpg",
+ "jpeg",
+ "png",
+ "gif",
+ "webp",
+ # Compressed files
+ "zip",
+ "gz",
+ "tgz",
+ "bz2",
+ "tbz",
+ "xz",
+ "br",
+ # Flash
+ "swf",
+ "flv",
+ # Fonts
+ "woff",
+ "woff2",
+ )
+
+ def __init__(
+ self, extensions=None, use_gzip=True, use_brotli=True, log=print, quiet=False
+ ):
+ if extensions is None:
+ extensions = self.SKIP_COMPRESS_EXTENSIONS
+ self.extension_re = self.get_extension_re(extensions)
+ self.use_gzip = use_gzip
+ self.use_brotli = use_brotli and brotli_installed
+ if not quiet:
+ self.log = log
+
+ @staticmethod
+ def get_extension_re(extensions):
+ if not extensions:
+ return re.compile("^$")
+ else:
+ return re.compile(
+ r"\.({})$".format("|".join(map(re.escape, extensions))), re.IGNORECASE
+ )
+
+ def should_compress(self, filename):
+ return not self.extension_re.search(filename)
+
+ def log(self, message):
+ pass
+
+ def compress(self, path):
+ with open(path, "rb") as f:
+ stat_result = os.fstat(f.fileno())
+ data = f.read()
+ size = len(data)
+ if self.use_brotli:
+ compressed = self.compress_brotli(data)
+ if self.is_compressed_effectively("Brotli", path, size, compressed):
+ yield self.write_data(path, compressed, ".br", stat_result)
+ else:
+ # If Brotli compression wasn't effective gzip won't be either
+ return
+ if self.use_gzip:
+ compressed = self.compress_gzip(data)
+ if self.is_compressed_effectively("Gzip", path, size, compressed):
+ yield self.write_data(path, compressed, ".gz", stat_result)
+
+ @staticmethod
+ def compress_gzip(data):
+ output = BytesIO()
+ # Explicitly set mtime to 0 so gzip content is fully determined
+ # by file content (0 = "no timestamp" according to gzip spec)
+ with gzip.GzipFile(
+ filename="", mode="wb", fileobj=output, compresslevel=9, mtime=0
+ ) as gz_file:
+ gz_file.write(data)
+ return output.getvalue()
+
+ @staticmethod
+ def compress_brotli(data):
+ return brotli.compress(data)
+
+ def is_compressed_effectively(self, encoding_name, path, orig_size, data):
+ compressed_size = len(data)
+ if orig_size == 0:
+ is_effective = False
+ else:
+ ratio = compressed_size / orig_size
+ is_effective = ratio <= 0.95
+ if is_effective:
+ self.log(
+ "{} compressed {} ({}K -> {}K)".format(
+ encoding_name, path, orig_size // 1024, compressed_size // 1024
+ )
+ )
+ else:
+ self.log(f"Skipping {path} ({encoding_name} compression not effective)")
+ return is_effective
+
+ def write_data(self, path, data, suffix, stat_result):
+ filename = path + suffix
+ with open(filename, "wb") as f:
+ f.write(data)
+ os.utime(filename, (stat_result.st_atime, stat_result.st_mtime))
+ return filename
+
+
+def main(argv=None):
+ parser = argparse.ArgumentParser(
+ description="Search for all files inside *not* matching "
+ " and produce compressed versions with "
+ "'.gz' and '.br' suffixes (as long as this results in a "
+ "smaller file)"
+ )
+ parser.add_argument(
+ "-q", "--quiet", help="Don't produce log output", action="store_true"
+ )
+ parser.add_argument(
+ "--no-gzip",
+ help="Don't produce gzip '.gz' files",
+ action="store_false",
+ dest="use_gzip",
+ )
+ parser.add_argument(
+ "--no-brotli",
+ help="Don't produce brotli '.br' files",
+ action="store_false",
+ dest="use_brotli",
+ )
+ parser.add_argument("root", help="Path root from which to search for files")
+ default_exclude = ", ".join(Compressor.SKIP_COMPRESS_EXTENSIONS)
+ parser.add_argument(
+ "extensions",
+ nargs="*",
+ help=(
+ "File extensions to exclude from compression "
+ + f"(default: {default_exclude})"
+ ),
+ default=Compressor.SKIP_COMPRESS_EXTENSIONS,
+ )
+ args = parser.parse_args(argv)
+
+ compressor = Compressor(
+ extensions=args.extensions,
+ use_gzip=args.use_gzip,
+ use_brotli=args.use_brotli,
+ quiet=args.quiet,
+ )
+ for dirpath, _dirs, files in os.walk(args.root):
+ for filename in files:
+ if compressor.should_compress(filename):
+ path = os.path.join(dirpath, filename)
+ for _compressed in compressor.compress(path):
+ pass
+
+ return 0
+
+
+if __name__ == "__main__": # pragma: no cover
+ raise SystemExit(main())
diff --git a/app_env/Lib/site-packages/whitenoise/media_types.py b/app_env/Lib/site-packages/whitenoise/media_types.py
new file mode 100644
index 00000000..cb27af11
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise/media_types.py
@@ -0,0 +1,137 @@
+from __future__ import annotations
+
+import os
+
+
+class MediaTypes:
+ __slots__ = ("types_map",)
+
+ def __init__(self, *, extra_types=None):
+ self.types_map = default_types()
+ if extra_types is not None:
+ self.types_map.update(extra_types)
+
+ def get_type(self, path):
+ name = os.path.basename(path).lower()
+ media_type = self.types_map.get(name)
+ if media_type is not None:
+ return media_type
+ extension = os.path.splitext(name)[1]
+ return self.types_map.get(extension, "application/octet-stream")
+
+
+def default_types():
+ """
+ We use our own set of default media types rather than the system-supplied
+ ones. This ensures consistent media type behaviour across varied
+ environments. The defaults are based on those shipped with nginx, with
+ some custom additions.
+
+ (Auto-generated by scripts/generate_default_media_types.py)
+ """
+ return {
+ ".3gp": "video/3gpp",
+ ".3gpp": "video/3gpp",
+ ".7z": "application/x-7z-compressed",
+ ".ai": "application/postscript",
+ ".asf": "video/x-ms-asf",
+ ".asx": "video/x-ms-asf",
+ ".atom": "application/atom+xml",
+ ".avi": "video/x-msvideo",
+ ".avif": "image/avif",
+ ".bmp": "image/x-ms-bmp",
+ ".cco": "application/x-cocoa",
+ ".crt": "application/x-x509-ca-cert",
+ ".css": "text/css",
+ ".der": "application/x-x509-ca-cert",
+ ".doc": "application/msword",
+ ".docx": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
+ ".ear": "application/java-archive",
+ ".eot": "application/vnd.ms-fontobject",
+ ".eps": "application/postscript",
+ ".flv": "video/x-flv",
+ ".gif": "image/gif",
+ ".hqx": "application/mac-binhex40",
+ ".htc": "text/x-component",
+ ".htm": "text/html",
+ ".html": "text/html",
+ ".ico": "image/x-icon",
+ ".jad": "text/vnd.sun.j2me.app-descriptor",
+ ".jar": "application/java-archive",
+ ".jardiff": "application/x-java-archive-diff",
+ ".jng": "image/x-jng",
+ ".jnlp": "application/x-java-jnlp-file",
+ ".jpeg": "image/jpeg",
+ ".jpg": "image/jpeg",
+ ".js": "text/javascript",
+ ".json": "application/json",
+ ".kar": "audio/midi",
+ ".kml": "application/vnd.google-earth.kml+xml",
+ ".kmz": "application/vnd.google-earth.kmz",
+ ".m3u8": "application/vnd.apple.mpegurl",
+ ".m4a": "audio/x-m4a",
+ ".m4v": "video/x-m4v",
+ ".md": "text/markdown",
+ ".mid": "audio/midi",
+ ".midi": "audio/midi",
+ ".mjs": "text/javascript",
+ ".mml": "text/mathml",
+ ".mng": "video/x-mng",
+ ".mov": "video/quicktime",
+ ".mp3": "audio/mpeg",
+ ".mp4": "video/mp4",
+ ".mpeg": "video/mpeg",
+ ".mpg": "video/mpeg",
+ ".odg": "application/vnd.oasis.opendocument.graphics",
+ ".odp": "application/vnd.oasis.opendocument.presentation",
+ ".ods": "application/vnd.oasis.opendocument.spreadsheet",
+ ".odt": "application/vnd.oasis.opendocument.text",
+ ".ogg": "audio/ogg",
+ ".pdb": "application/x-pilot",
+ ".pdf": "application/pdf",
+ ".pem": "application/x-x509-ca-cert",
+ ".pl": "application/x-perl",
+ ".pm": "application/x-perl",
+ ".png": "image/png",
+ ".ppt": "application/vnd.ms-powerpoint",
+ ".pptx": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
+ ".prc": "application/x-pilot",
+ ".ps": "application/postscript",
+ ".ra": "audio/x-realaudio",
+ ".rar": "application/x-rar-compressed",
+ ".rpm": "application/x-redhat-package-manager",
+ ".rss": "application/rss+xml",
+ ".rtf": "application/rtf",
+ ".run": "application/x-makeself",
+ ".sea": "application/x-sea",
+ ".shtml": "text/html",
+ ".sit": "application/x-stuffit",
+ ".svg": "image/svg+xml",
+ ".svgz": "image/svg+xml",
+ ".swf": "application/x-shockwave-flash",
+ ".tcl": "application/x-tcl",
+ ".tif": "image/tiff",
+ ".tiff": "image/tiff",
+ ".tk": "application/x-tcl",
+ ".ts": "video/mp2t",
+ ".txt": "text/plain",
+ ".war": "application/java-archive",
+ ".wasm": "application/wasm",
+ ".wbmp": "image/vnd.wap.wbmp",
+ ".webm": "video/webm",
+ ".webp": "image/webp",
+ ".wml": "text/vnd.wap.wml",
+ ".wmlc": "application/vnd.wap.wmlc",
+ ".wmv": "video/x-ms-wmv",
+ ".woff": "application/font-woff",
+ ".woff2": "font/woff2",
+ ".xhtml": "application/xhtml+xml",
+ ".xls": "application/vnd.ms-excel",
+ ".xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
+ ".xml": "text/xml",
+ ".xpi": "application/x-xpinstall",
+ ".xspf": "application/xspf+xml",
+ ".zip": "application/zip",
+ "apple-app-site-association": "application/pkc7-mime",
+ "crossdomain.xml": "text/x-cross-domain-policy",
+ }
diff --git a/app_env/Lib/site-packages/whitenoise/middleware.py b/app_env/Lib/site-packages/whitenoise/middleware.py
new file mode 100644
index 00000000..248339dc
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise/middleware.py
@@ -0,0 +1,171 @@
+from __future__ import annotations
+
+import os
+from posixpath import basename
+from urllib.parse import urlparse
+
+from django.conf import settings
+from django.contrib.staticfiles import finders
+from django.contrib.staticfiles.storage import staticfiles_storage
+from django.http import FileResponse
+from django.urls import get_script_prefix
+
+from .base import WhiteNoise
+from .string_utils import decode_if_byte_string, ensure_leading_trailing_slash
+
+__all__ = ["WhiteNoiseMiddleware"]
+
+
+class WhiteNoiseFileResponse(FileResponse):
+ """
+ Wrap Django's FileResponse to prevent setting any default headers. For the
+ most part these just duplicate work already done by WhiteNoise but in some
+ cases (e.g. the content-disposition header introduced in Django 3.0) they
+ are actively harmful.
+ """
+
+ def set_headers(self, *args, **kwargs):
+ pass
+
+
+class WhiteNoiseMiddleware(WhiteNoise):
+ """
+ Wrap WhiteNoise to allow it to function as Django middleware, rather
+ than WSGI middleware
+
+ This functions as both old- and new-style middleware, so can be included in
+ either MIDDLEWARE or MIDDLEWARE_CLASSES.
+ """
+
+ config_attrs = WhiteNoise.config_attrs + ("root", "use_finders", "static_prefix")
+ root = None
+ use_finders = False
+ static_prefix = None
+
+ def __init__(self, get_response=None, settings=settings):
+ self.get_response = get_response
+ self.configure_from_settings(settings)
+ # Pass None for `application`
+ super().__init__(None)
+ if self.static_root:
+ self.add_files(self.static_root, prefix=self.static_prefix)
+ if self.root:
+ self.add_files(self.root)
+ if self.use_finders and not self.autorefresh:
+ self.add_files_from_finders()
+
+ def __call__(self, request):
+ response = self.process_request(request)
+ if response is None:
+ response = self.get_response(request)
+ return response
+
+ def process_request(self, request):
+ if self.autorefresh:
+ static_file = self.find_file(request.path_info)
+ else:
+ static_file = self.files.get(request.path_info)
+ if static_file is not None:
+ return self.serve(static_file, request)
+
+ @staticmethod
+ def serve(static_file, request):
+ response = static_file.get_response(request.method, request.META)
+ status = int(response.status)
+ http_response = WhiteNoiseFileResponse(response.file or (), status=status)
+ # Remove default content-type
+ del http_response["content-type"]
+ for key, value in response.headers:
+ http_response[key] = value
+ return http_response
+
+ def configure_from_settings(self, settings):
+ # Default configuration
+ self.autorefresh = settings.DEBUG
+ self.use_finders = settings.DEBUG
+ self.static_prefix = urlparse(settings.STATIC_URL or "").path
+ script_prefix = get_script_prefix().rstrip("/")
+ if script_prefix:
+ if self.static_prefix.startswith(script_prefix):
+ self.static_prefix = self.static_prefix[len(script_prefix) :]
+ if settings.DEBUG:
+ self.max_age = 0
+ # Allow settings to override default attributes
+ for attr in self.config_attrs:
+ settings_key = f"WHITENOISE_{attr.upper()}"
+ try:
+ value = getattr(settings, settings_key)
+ except AttributeError:
+ pass
+ else:
+ value = decode_if_byte_string(value)
+ setattr(self, attr, value)
+ self.static_prefix = ensure_leading_trailing_slash(self.static_prefix)
+ self.static_root = decode_if_byte_string(settings.STATIC_ROOT)
+
+ def add_files_from_finders(self):
+ files = {}
+ for finder in finders.get_finders():
+ for path, storage in finder.list(None):
+ prefix = (getattr(storage, "prefix", None) or "").strip("/")
+ url = "".join(
+ (
+ self.static_prefix,
+ prefix,
+ "/" if prefix else "",
+ path.replace("\\", "/"),
+ )
+ )
+ # Use setdefault as only first matching file should be used
+ files.setdefault(url, storage.path(path))
+ stat_cache = {path: os.stat(path) for path in files.values()}
+ for url, path in files.items():
+ self.add_file_to_dictionary(url, path, stat_cache=stat_cache)
+
+ def candidate_paths_for_url(self, url):
+ if self.use_finders and url.startswith(self.static_prefix):
+ path = finders.find(url[len(self.static_prefix) :])
+ if path:
+ yield path
+ paths = super().candidate_paths_for_url(url)
+ for path in paths:
+ yield path
+
+ def immutable_file_test(self, path, url):
+ """
+ Determine whether given URL represents an immutable file (i.e. a
+ file with a hash of its contents as part of its name) which can
+ therefore be cached forever
+ """
+ if not url.startswith(self.static_prefix):
+ return False
+ name = url[len(self.static_prefix) :]
+ name_without_hash = self.get_name_without_hash(name)
+ if name == name_without_hash:
+ return False
+ static_url = self.get_static_url(name_without_hash)
+ # If the static_url function maps the name without hash
+ # back to the original name, then we know we've got a
+ # versioned filename
+ if static_url and basename(static_url) == basename(url):
+ return True
+ return False
+
+ def get_name_without_hash(self, filename):
+ """
+ Removes the version hash from a filename e.g, transforms
+ 'css/application.f3ea4bcc2.css' into 'css/application.css'
+
+ Note: this is specific to the naming scheme used by Django's
+ CachedStaticFilesStorage. You may have to override this if
+ you are using a different static files versioning system
+ """
+ name_with_hash, ext = os.path.splitext(filename)
+ name = os.path.splitext(name_with_hash)[0]
+ return name + ext
+
+ def get_static_url(self, name):
+ try:
+ return decode_if_byte_string(staticfiles_storage.url(name))
+ except ValueError:
+ return None
diff --git a/app_env/Lib/site-packages/whitenoise/responders.py b/app_env/Lib/site-packages/whitenoise/responders.py
new file mode 100644
index 00000000..bd21ce88
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise/responders.py
@@ -0,0 +1,286 @@
+from __future__ import annotations
+
+import errno
+import os
+import re
+import stat
+from email.utils import formatdate, parsedate
+from http import HTTPStatus
+from io import BufferedIOBase
+from time import mktime
+from urllib.parse import quote
+from wsgiref.headers import Headers
+
+
+class Response:
+ __slots__ = ("status", "headers", "file")
+
+ def __init__(self, status, headers, file):
+ self.status = status
+ self.headers = headers
+ self.file = file
+
+
+NOT_ALLOWED_RESPONSE = Response(
+ status=HTTPStatus.METHOD_NOT_ALLOWED,
+ headers=[("Allow", "GET, HEAD")],
+ file=None,
+)
+
+# Headers which should be returned with a 304 Not Modified response as
+# specified here: https://tools.ietf.org/html/rfc7232#section-4.1
+NOT_MODIFIED_HEADERS = (
+ "Cache-Control",
+ "Content-Location",
+ "Date",
+ "ETag",
+ "Expires",
+ "Vary",
+)
+
+
+class SlicedFile(BufferedIOBase):
+ """
+ A file like wrapper to handle seeking to the start byte of a range request
+ and to return no further output once the end byte of a range request has
+ been reached.
+ """
+
+ def __init__(self, fileobj, start, end):
+ fileobj.seek(start)
+ self.fileobj = fileobj
+ self.remaining = end - start + 1
+
+ def read(self, size=-1):
+ if self.remaining <= 0:
+ return b""
+ if size < 0:
+ size = self.remaining
+ else:
+ size = min(size, self.remaining)
+ data = self.fileobj.read(size)
+ self.remaining -= len(data)
+ return data
+
+ def close(self):
+ self.fileobj.close()
+
+
+class StaticFile:
+ def __init__(self, path, headers, encodings=None, stat_cache=None):
+ files = self.get_file_stats(path, encodings, stat_cache)
+ headers = self.get_headers(headers, files)
+ self.last_modified = parsedate(headers["Last-Modified"])
+ self.etag = headers["ETag"]
+ self.not_modified_response = self.get_not_modified_response(headers)
+ self.alternatives = self.get_alternatives(headers, files)
+
+ def get_response(self, method, request_headers):
+ if method not in ("GET", "HEAD"):
+ return NOT_ALLOWED_RESPONSE
+ if self.is_not_modified(request_headers):
+ return self.not_modified_response
+ path, headers = self.get_path_and_headers(request_headers)
+ if method != "HEAD":
+ file_handle = open(path, "rb")
+ else:
+ file_handle = None
+ range_header = request_headers.get("HTTP_RANGE")
+ if range_header:
+ try:
+ return self.get_range_response(range_header, headers, file_handle)
+ except ValueError:
+ # If we can't interpret the Range request for any reason then
+ # just ignore it and return the standard response (this
+ # behaviour is allowed by the spec)
+ pass
+ return Response(HTTPStatus.OK, headers, file_handle)
+
+ def get_range_response(self, range_header, base_headers, file_handle):
+ headers = []
+ for item in base_headers:
+ if item[0] == "Content-Length":
+ size = int(item[1])
+ else:
+ headers.append(item)
+ start, end = self.get_byte_range(range_header, size)
+ if start >= end:
+ return self.get_range_not_satisfiable_response(file_handle, size)
+ if file_handle is not None:
+ file_handle = SlicedFile(file_handle, start, end)
+ headers.append(("Content-Range", f"bytes {start}-{end}/{size}"))
+ headers.append(("Content-Length", str(end - start + 1)))
+ return Response(HTTPStatus.PARTIAL_CONTENT, headers, file_handle)
+
+ def get_byte_range(self, range_header, size):
+ start, end = self.parse_byte_range(range_header)
+ if start < 0:
+ start = max(start + size, 0)
+ if end is None:
+ end = size - 1
+ else:
+ end = min(end, size - 1)
+ return start, end
+
+ @staticmethod
+ def parse_byte_range(range_header):
+ units, _, range_spec = range_header.strip().partition("=")
+ if units != "bytes":
+ raise ValueError()
+ # Only handle a single range spec. Multiple ranges will trigger a
+ # ValueError below which will result in the Range header being ignored
+ start_str, sep, end_str = range_spec.strip().partition("-")
+ if not sep:
+ raise ValueError()
+ if not start_str:
+ start = -int(end_str)
+ end = None
+ else:
+ start = int(start_str)
+ end = int(end_str) if end_str else None
+ return start, end
+
+ @staticmethod
+ def get_range_not_satisfiable_response(file_handle, size):
+ if file_handle is not None:
+ file_handle.close()
+ return Response(
+ HTTPStatus.REQUESTED_RANGE_NOT_SATISFIABLE,
+ [("Content-Range", f"bytes */{size}")],
+ None,
+ )
+
+ @staticmethod
+ def get_file_stats(path, encodings, stat_cache):
+ # Primary file has an encoding of None
+ files = {None: FileEntry(path, stat_cache)}
+ if encodings:
+ for encoding, alt_path in encodings.items():
+ try:
+ files[encoding] = FileEntry(alt_path, stat_cache)
+ except MissingFileError:
+ continue
+ return files
+
+ def get_headers(self, headers_list, files):
+ headers = Headers(headers_list)
+ main_file = files[None]
+ if len(files) > 1:
+ headers["Vary"] = "Accept-Encoding"
+ if "Last-Modified" not in headers:
+ mtime = main_file.mtime
+ # Not all filesystems report mtimes, and sometimes they report an
+ # mtime of 0 which we know is incorrect
+ if mtime:
+ headers["Last-Modified"] = formatdate(mtime, usegmt=True)
+ if "ETag" not in headers:
+ last_modified = parsedate(headers["Last-Modified"])
+ if last_modified:
+ timestamp = int(mktime(last_modified))
+ headers["ETag"] = f'"{timestamp:x}-{main_file.size:x}"'
+ return headers
+
+ @staticmethod
+ def get_not_modified_response(headers):
+ not_modified_headers = []
+ for key in NOT_MODIFIED_HEADERS:
+ if key in headers:
+ not_modified_headers.append((key, headers[key]))
+ return Response(
+ status=HTTPStatus.NOT_MODIFIED, headers=not_modified_headers, file=None
+ )
+
+ @staticmethod
+ def get_alternatives(base_headers, files):
+ # Sort by size so that the smallest compressed alternative matches first
+ alternatives = []
+ files_by_size = sorted(files.items(), key=lambda i: i[1].size)
+ for encoding, file_entry in files_by_size:
+ headers = Headers(base_headers.items())
+ headers["Content-Length"] = str(file_entry.size)
+ if encoding:
+ headers["Content-Encoding"] = encoding
+ encoding_re = re.compile(r"\b%s\b" % encoding)
+ else:
+ encoding_re = re.compile("")
+ alternatives.append((encoding_re, file_entry.path, headers.items()))
+ return alternatives
+
+ def is_not_modified(self, request_headers):
+ previous_etag = request_headers.get("HTTP_IF_NONE_MATCH")
+ if previous_etag is not None:
+ return previous_etag == self.etag
+ if self.last_modified is None:
+ return False
+ try:
+ last_requested = request_headers["HTTP_IF_MODIFIED_SINCE"]
+ except KeyError:
+ return False
+ last_requested_ts = parsedate(last_requested)
+ if last_requested_ts is not None:
+ return parsedate(last_requested) >= self.last_modified
+ return False
+
+ def get_path_and_headers(self, request_headers):
+ accept_encoding = request_headers.get("HTTP_ACCEPT_ENCODING", "")
+ if accept_encoding == "*":
+ accept_encoding = ""
+ # These are sorted by size so first match is the best
+ for encoding_re, path, headers in self.alternatives:
+ if encoding_re.search(accept_encoding):
+ return path, headers
+
+
+class Redirect:
+ def __init__(self, location, headers=None):
+ headers = list(headers.items()) if headers else []
+ headers.append(("Location", quote(location.encode("utf8"))))
+ self.response = Response(HTTPStatus.FOUND, headers, None)
+
+ def get_response(self, method, request_headers):
+ return self.response
+
+
+class NotARegularFileError(Exception):
+ pass
+
+
+class MissingFileError(NotARegularFileError):
+ pass
+
+
+class IsDirectoryError(MissingFileError):
+ pass
+
+
+class FileEntry:
+ __slots__ = ("path", "size", "mtime")
+
+ def __init__(self, path, stat_cache=None):
+ self.path = path
+ stat_function = os.stat if stat_cache is None else stat_cache.__getitem__
+ stat = self.stat_regular_file(path, stat_function)
+ self.size = stat.st_size
+ self.mtime = stat.st_mtime
+
+ @staticmethod
+ def stat_regular_file(path, stat_function):
+ """
+ Wrap `stat_function` to raise appropriate errors if `path` is not a
+ regular file
+ """
+ try:
+ stat_result = stat_function(path)
+ except KeyError:
+ raise MissingFileError(path)
+ except OSError as e:
+ if e.errno in (errno.ENOENT, errno.ENAMETOOLONG):
+ raise MissingFileError(path)
+ else:
+ raise
+ if not stat.S_ISREG(stat_result.st_mode):
+ if stat.S_ISDIR(stat_result.st_mode):
+ raise IsDirectoryError(f"Path is a directory: {path}")
+ else:
+ raise NotARegularFileError(f"Not a regular file: {path}")
+ return stat_result
diff --git a/app_env/Lib/site-packages/whitenoise/runserver_nostatic/__init__.py b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/app_env/Lib/site-packages/whitenoise/runserver_nostatic/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..db830ee0
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/__init__.py b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..2493092f
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/__init__.py b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/__pycache__/__init__.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/__pycache__/__init__.cpython-310.pyc
new file mode 100644
index 00000000..3b3fe857
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/__pycache__/__init__.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/__pycache__/runserver.cpython-310.pyc b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/__pycache__/runserver.cpython-310.pyc
new file mode 100644
index 00000000..ae678404
Binary files /dev/null and b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/__pycache__/runserver.cpython-310.pyc differ
diff --git a/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/runserver.py b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/runserver.py
new file mode 100644
index 00000000..484b1442
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise/runserver_nostatic/management/commands/runserver.py
@@ -0,0 +1,53 @@
+"""
+Subclass the existing 'runserver' command and change the default options
+to disable static file serving, allowing WhiteNoise to handle static files.
+
+There is some unpleasant hackery here because we don't know which command class
+to subclass until runtime as it depends on which INSTALLED_APPS we have, so we
+have to determine this dynamically.
+"""
+from __future__ import annotations
+
+from importlib import import_module
+
+from django.apps import apps
+
+
+def get_next_runserver_command():
+ """
+ Return the next highest priority "runserver" command class
+ """
+ for app_name in get_lower_priority_apps():
+ module_path = "%s.management.commands.runserver" % app_name
+ try:
+ return import_module(module_path).Command
+ except (ImportError, AttributeError):
+ pass
+
+
+def get_lower_priority_apps():
+ """
+ Yield all app module names below the current app in the INSTALLED_APPS list
+ """
+ self_app_name = ".".join(__name__.split(".")[:-3])
+ reached_self = False
+ for app_config in apps.get_app_configs():
+ if app_config.name == self_app_name:
+ reached_self = True
+ elif reached_self:
+ yield app_config.name
+ yield "django.core"
+
+
+RunserverCommand = get_next_runserver_command()
+
+
+class Command(RunserverCommand):
+ def add_arguments(self, parser):
+ super().add_arguments(parser)
+ if parser.get_default("use_static_handler") is True:
+ parser.set_defaults(use_static_handler=False)
+ parser.description += (
+ "\n(Wrapped by 'whitenoise.runserver_nostatic' to always"
+ " enable '--nostatic')"
+ )
diff --git a/app_env/Lib/site-packages/whitenoise/storage.py b/app_env/Lib/site-packages/whitenoise/storage.py
new file mode 100644
index 00000000..919ce9b8
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise/storage.py
@@ -0,0 +1,201 @@
+from __future__ import annotations
+
+import errno
+import os
+import re
+import textwrap
+
+from django.conf import settings
+from django.contrib.staticfiles.storage import (
+ ManifestStaticFilesStorage,
+ StaticFilesStorage,
+)
+
+from .compress import Compressor
+
+
+class CompressedStaticFilesMixin:
+ """
+ Wraps a StaticFilesStorage instance to compress output files
+ """
+
+ def post_process(self, *args, **kwargs):
+ super_post_process = getattr(
+ super(),
+ "post_process",
+ self.fallback_post_process,
+ )
+ files = super_post_process(*args, **kwargs)
+ if not kwargs.get("dry_run"):
+ files = self.post_process_with_compression(files)
+ return files
+
+ # Only used if the class we're wrapping doesn't implement its own
+ # `post_process` method
+ def fallback_post_process(self, paths, dry_run=False, **options):
+ if not dry_run:
+ for path in paths:
+ yield path, None, False
+
+ def create_compressor(self, **kwargs):
+ return Compressor(**kwargs)
+
+ def post_process_with_compression(self, files):
+ extensions = getattr(settings, "WHITENOISE_SKIP_COMPRESS_EXTENSIONS", None)
+ compressor = self.create_compressor(extensions=extensions, quiet=True)
+ for name, hashed_name, processed in files:
+ yield name, hashed_name, processed
+ if isinstance(processed, Exception):
+ continue
+ unique_names = set(filter(None, [name, hashed_name]))
+ for name in unique_names:
+ if compressor.should_compress(name):
+ path = self.path(name)
+ prefix_len = len(path) - len(name)
+ for compressed_path in compressor.compress(path):
+ compressed_name = compressed_path[prefix_len:]
+ yield name, compressed_name, True
+
+
+class CompressedStaticFilesStorage(CompressedStaticFilesMixin, StaticFilesStorage):
+ pass
+
+
+class HelpfulExceptionMixin:
+ """
+ If a CSS file contains references to images, fonts etc that can't be found
+ then Django's `post_process` blows up with a not particularly helpful
+ ValueError that leads people to think WhiteNoise is broken.
+
+ Here we attempt to intercept such errors and reformat them to be more
+ helpful in revealing the source of the problem.
+ """
+
+ ERROR_MSG_RE = re.compile("^The file '(.+)' could not be found")
+
+ ERROR_MSG = textwrap.dedent(
+ """\
+ {orig_message}
+
+ The {ext} file '{filename}' references a file which could not be found:
+ {missing}
+
+ Please check the URL references in this {ext} file, particularly any
+ relative paths which might be pointing to the wrong location.
+ """
+ )
+
+ def post_process(self, *args, **kwargs):
+ files = super().post_process(*args, **kwargs)
+ for name, hashed_name, processed in files:
+ if isinstance(processed, Exception):
+ processed = self.make_helpful_exception(processed, name)
+ yield name, hashed_name, processed
+
+ def make_helpful_exception(self, exception, name):
+ if isinstance(exception, ValueError):
+ message = exception.args[0] if len(exception.args) else ""
+ # Stringly typed exceptions. Yay!
+ match = self.ERROR_MSG_RE.search(message)
+ if match:
+ extension = os.path.splitext(name)[1].lstrip(".").upper()
+ message = self.ERROR_MSG.format(
+ orig_message=message,
+ filename=name,
+ missing=match.group(1),
+ ext=extension,
+ )
+ exception = MissingFileError(message)
+ return exception
+
+
+class MissingFileError(ValueError):
+ pass
+
+
+class CompressedManifestStaticFilesStorage(
+ HelpfulExceptionMixin, ManifestStaticFilesStorage
+):
+ """
+ Extends ManifestStaticFilesStorage instance to create compressed versions
+ of its output files and, optionally, to delete the non-hashed files (i.e.
+ those without the hash in their name)
+ """
+
+ _new_files = None
+
+ def __init__(self, *args, **kwargs):
+ manifest_strict = getattr(settings, "WHITENOISE_MANIFEST_STRICT", None)
+ if manifest_strict is not None:
+ self.manifest_strict = manifest_strict
+ super().__init__(*args, **kwargs)
+
+ def post_process(self, *args, **kwargs):
+ files = super().post_process(*args, **kwargs)
+ if not kwargs.get("dry_run"):
+ files = self.post_process_with_compression(files)
+ return files
+
+ def post_process_with_compression(self, files):
+ # Files may get hashed multiple times, we want to keep track of all the
+ # intermediate files generated during the process and which of these
+ # are the final names used for each file. As not every intermediate
+ # file is yielded we have to hook in to the `hashed_name` method to
+ # keep track of them all.
+ hashed_names = {}
+ new_files = set()
+ self.start_tracking_new_files(new_files)
+ for name, hashed_name, processed in files:
+ if hashed_name and not isinstance(processed, Exception):
+ hashed_names[self.clean_name(name)] = hashed_name
+ yield name, hashed_name, processed
+ self.stop_tracking_new_files()
+ original_files = set(hashed_names.keys())
+ hashed_files = set(hashed_names.values())
+ if self.keep_only_hashed_files:
+ files_to_delete = (original_files | new_files) - hashed_files
+ files_to_compress = hashed_files
+ else:
+ files_to_delete = set()
+ files_to_compress = original_files | hashed_files
+ self.delete_files(files_to_delete)
+ for name, compressed_name in self.compress_files(files_to_compress):
+ yield name, compressed_name, True
+
+ def hashed_name(self, *args, **kwargs):
+ name = super().hashed_name(*args, **kwargs)
+ if self._new_files is not None:
+ self._new_files.add(self.clean_name(name))
+ return name
+
+ def start_tracking_new_files(self, new_files):
+ self._new_files = new_files
+
+ def stop_tracking_new_files(self):
+ self._new_files = None
+
+ @property
+ def keep_only_hashed_files(self):
+ return getattr(settings, "WHITENOISE_KEEP_ONLY_HASHED_FILES", False)
+
+ def delete_files(self, files_to_delete):
+ for name in files_to_delete:
+ try:
+ os.unlink(self.path(name))
+ except OSError as e:
+ if e.errno != errno.ENOENT:
+ raise
+
+ def create_compressor(self, **kwargs):
+ return Compressor(**kwargs)
+
+ def compress_files(self, names):
+ extensions = getattr(settings, "WHITENOISE_SKIP_COMPRESS_EXTENSIONS", None)
+ compressor = self.create_compressor(extensions=extensions, quiet=True)
+ for name in names:
+ if compressor.should_compress(name):
+ path = self.path(name)
+ prefix_len = len(path) - len(name)
+ for compressed_path in compressor.compress(path):
+ compressed_name = compressed_path[prefix_len:]
+ yield name, compressed_name
diff --git a/app_env/Lib/site-packages/whitenoise/string_utils.py b/app_env/Lib/site-packages/whitenoise/string_utils.py
new file mode 100644
index 00000000..b56d2624
--- /dev/null
+++ b/app_env/Lib/site-packages/whitenoise/string_utils.py
@@ -0,0 +1,21 @@
+from __future__ import annotations
+
+
+def decode_if_byte_string(s, force_text=False):
+ if isinstance(s, bytes):
+ s = s.decode()
+ if force_text and not isinstance(s, str):
+ s = str(s)
+ return s
+
+
+# Follow Django in treating URLs as UTF-8 encoded (which requires undoing the
+# implicit ISO-8859-1 decoding applied in Python 3). Strictly speaking, URLs
+# should only be ASCII anyway, but UTF-8 can be found in the wild.
+def decode_path_info(path_info):
+ return path_info.encode("iso-8859-1", "replace").decode("utf-8", "replace")
+
+
+def ensure_leading_trailing_slash(path):
+ path = (path or "").strip("/")
+ return f"/{path}/" if path else "/"
diff --git a/venv/Scripts/Activate.ps1 b/app_env/Scripts/Activate.ps1
similarity index 100%
rename from venv/Scripts/Activate.ps1
rename to app_env/Scripts/Activate.ps1
diff --git a/venv/Scripts/activate b/app_env/Scripts/activate
similarity index 95%
rename from venv/Scripts/activate
rename to app_env/Scripts/activate
index d6d734dd..66c2c7b4 100644
--- a/venv/Scripts/activate
+++ b/app_env/Scripts/activate
@@ -38,7 +38,7 @@ deactivate () {
# unset irrelevant variables
deactivate nondestructive
-VIRTUAL_ENV="E:\Websites I create with django\Portfolio Website(my_website)\venv"
+VIRTUAL_ENV="E:\Websites I create with django\Portfolio Website(my_website)\Portfolio_Demo\app_env"
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
@@ -55,9 +55,9 @@ fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
_OLD_VIRTUAL_PS1="${PS1:-}"
- PS1="(venv) ${PS1:-}"
+ PS1="(app_env) ${PS1:-}"
export PS1
- VIRTUAL_ENV_PROMPT="(venv) "
+ VIRTUAL_ENV_PROMPT="(app_env) "
export VIRTUAL_ENV_PROMPT
fi
diff --git a/venv/Scripts/activate.bat b/app_env/Scripts/activate.bat
similarity index 90%
rename from venv/Scripts/activate.bat
rename to app_env/Scripts/activate.bat
index 85b590b7..da74278a 100644
--- a/venv/Scripts/activate.bat
+++ b/app_env/Scripts/activate.bat
@@ -8,7 +8,7 @@ if defined _OLD_CODEPAGE (
"%SystemRoot%\System32\chcp.com" 65001 > nul
)
-set VIRTUAL_ENV=E:\Websites I create with django\Portfolio Website(my_website)\venv
+set VIRTUAL_ENV=E:\Websites I create with django\Portfolio Website(my_website)\Portfolio_Demo\app_env
if not defined PROMPT set PROMPT=$P$G
@@ -16,7 +16,7 @@ if defined _OLD_VIRTUAL_PROMPT set PROMPT=%_OLD_VIRTUAL_PROMPT%
if defined _OLD_VIRTUAL_PYTHONHOME set PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%
set _OLD_VIRTUAL_PROMPT=%PROMPT%
-set PROMPT=(venv) %PROMPT%
+set PROMPT=(app_env) %PROMPT%
if defined PYTHONHOME set _OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%
set PYTHONHOME=
@@ -25,7 +25,7 @@ if defined _OLD_VIRTUAL_PATH set PATH=%_OLD_VIRTUAL_PATH%
if not defined _OLD_VIRTUAL_PATH set _OLD_VIRTUAL_PATH=%PATH%
set PATH=%VIRTUAL_ENV%\Scripts;%PATH%
-set VIRTUAL_ENV_PROMPT=(venv)
+set VIRTUAL_ENV_PROMPT=(app_env)
:END
if defined _OLD_CODEPAGE (
diff --git a/venv/Scripts/deactivate.bat b/app_env/Scripts/deactivate.bat
similarity index 100%
rename from venv/Scripts/deactivate.bat
rename to app_env/Scripts/deactivate.bat
diff --git a/venv/Scripts/django-admin.exe b/app_env/Scripts/django-admin.exe
similarity index 99%
rename from venv/Scripts/django-admin.exe
rename to app_env/Scripts/django-admin.exe
index f99459a0..8f84f058 100644
Binary files a/venv/Scripts/django-admin.exe and b/app_env/Scripts/django-admin.exe differ
diff --git a/app_env/Scripts/gunicorn.exe b/app_env/Scripts/gunicorn.exe
new file mode 100644
index 00000000..2113f554
Binary files /dev/null and b/app_env/Scripts/gunicorn.exe differ
diff --git a/venv/Scripts/pip.exe b/app_env/Scripts/pip.exe
similarity index 99%
rename from venv/Scripts/pip.exe
rename to app_env/Scripts/pip.exe
index aaf1605e..229ae560 100644
Binary files a/venv/Scripts/pip.exe and b/app_env/Scripts/pip.exe differ
diff --git a/venv/Scripts/pip3.10.exe b/app_env/Scripts/pip3.10.exe
similarity index 99%
rename from venv/Scripts/pip3.10.exe
rename to app_env/Scripts/pip3.10.exe
index aaf1605e..229ae560 100644
Binary files a/venv/Scripts/pip3.10.exe and b/app_env/Scripts/pip3.10.exe differ
diff --git a/venv/Scripts/pip3.exe b/app_env/Scripts/pip3.exe
similarity index 99%
rename from venv/Scripts/pip3.exe
rename to app_env/Scripts/pip3.exe
index aaf1605e..229ae560 100644
Binary files a/venv/Scripts/pip3.exe and b/app_env/Scripts/pip3.exe differ
diff --git a/venv/Scripts/python.exe b/app_env/Scripts/python.exe
similarity index 100%
rename from venv/Scripts/python.exe
rename to app_env/Scripts/python.exe
diff --git a/venv/Scripts/pythonw.exe b/app_env/Scripts/pythonw.exe
similarity index 100%
rename from venv/Scripts/pythonw.exe
rename to app_env/Scripts/pythonw.exe
diff --git a/venv/Scripts/sqlformat.exe b/app_env/Scripts/sqlformat.exe
similarity index 99%
rename from venv/Scripts/sqlformat.exe
rename to app_env/Scripts/sqlformat.exe
index de05b9a7..f9c9e54d 100644
Binary files a/venv/Scripts/sqlformat.exe and b/app_env/Scripts/sqlformat.exe differ
diff --git a/venv/pyvenv.cfg b/app_env/pyvenv.cfg
similarity index 100%
rename from venv/pyvenv.cfg
rename to app_env/pyvenv.cfg
diff --git a/db.sqlite3 b/db.sqlite3
index 9c47cdd6..b18ca87c 100644
Binary files a/db.sqlite3 and b/db.sqlite3 differ
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 00000000..60149ed8
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,9 @@
+asgiref==3.5.2
+dj-database-url==1.0.0
+Django==4.1
+django-heroku==0.3.1
+gunicorn==20.1.0
+psycopg2==2.9.3
+sqlparse==0.4.2
+tzdata==2022.2
+whitenoise==6.2.0
diff --git a/runtime.txt b/runtime.txt
new file mode 100644
index 00000000..ee92de7a
--- /dev/null
+++ b/runtime.txt
@@ -0,0 +1 @@
+python-3.10.6
\ No newline at end of file
diff --git a/venv/Lib/site-packages/Django-4.1.dist-info/RECORD b/venv/Lib/site-packages/Django-4.1.dist-info/RECORD
deleted file mode 100644
index 058b08d0..00000000
--- a/venv/Lib/site-packages/Django-4.1.dist-info/RECORD
+++ /dev/null
@@ -1,4451 +0,0 @@
-../../Scripts/django-admin.exe,sha256=xz481RaqoDHb7SIYQziv4cDsJtuF4LgrcMVozvVzs8w,107977
-Django-4.1.dist-info/AUTHORS,sha256=b_y4N35p-aWq7Cs0Wjxcf_nqJNRfzh5dzQqWEK3GKXg,40464
-Django-4.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
-Django-4.1.dist-info/LICENSE,sha256=uEZBXRtRTpwd_xSiLeuQbXlLxUbKYSn5UKGM0JHipmk,1552
-Django-4.1.dist-info/LICENSE.python,sha256=pSxfIaEVix6-28uSiusYmITnfjxeOIw41mDVk-cf7x8,14383
-Django-4.1.dist-info/METADATA,sha256=cTKTRBgEtV7Wn5DxLFA8bLAA3aLUkjLd5Bld02eV_Ao,4048
-Django-4.1.dist-info/RECORD,,
-Django-4.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-Django-4.1.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
-Django-4.1.dist-info/entry_points.txt,sha256=daYW_s0r8Z5eiRi_bNU6vodHqVUXQWzm-DHFOQHTV2Q,83
-Django-4.1.dist-info/top_level.txt,sha256=V_goijg9tfO20ox_7os6CcnPvmBavbxu46LpJiNLwjA,7
-django/__init__.py,sha256=cMhksD06ta8OgVa6iG_WgWzZe1V_8bwwrhpd-y7-acA,799
-django/__main__.py,sha256=9a5To1vQXqf2Jg_eh8nLvIc0GXmDjEXv4jE1QZEqBFk,211
-django/__pycache__/__init__.cpython-310.pyc,,
-django/__pycache__/__main__.cpython-310.pyc,,
-django/__pycache__/shortcuts.cpython-310.pyc,,
-django/apps/__init__.py,sha256=8WZTI_JnNuP4tyfuimH3_pKQYbDAy2haq-xkQT1UXkc,90
-django/apps/__pycache__/__init__.cpython-310.pyc,,
-django/apps/__pycache__/config.cpython-310.pyc,,
-django/apps/__pycache__/registry.cpython-310.pyc,,
-django/apps/config.py,sha256=1Zhxt4OrwRnOmsT_B_BurImz3oi8330TJG0rRRJ58bQ,11482
-django/apps/registry.py,sha256=6AG3X1-GUf4-omJcVxxaH8Zyts6k8HWb53BPu4Ehmk4,17661
-django/conf/__init__.py,sha256=ahM_p29M2vWmbP9a6xJNoO8B9TN0z8PMCAF04OkmQks,11366
-django/conf/__pycache__/__init__.cpython-310.pyc,,
-django/conf/__pycache__/global_settings.cpython-310.pyc,,
-django/conf/app_template/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/app_template/admin.py-tpl,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63
-django/conf/app_template/apps.py-tpl,sha256=jrRjsh9lSkUvV4NnKdlAhLDtvydwBNjite0w2J9WPtI,171
-django/conf/app_template/migrations/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/app_template/models.py-tpl,sha256=Vjc0p2XbAPgE6HyTF6vll98A4eDhA5AvaQqsc4kQ9AQ,57
-django/conf/app_template/tests.py-tpl,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
-django/conf/app_template/views.py-tpl,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
-django/conf/global_settings.py,sha256=zoiWZBad0S35BHqUW0g-kymD4B0boI1c6tW2Emfd1Nw,22936
-django/conf/locale/__init__.py,sha256=-5CQ68LtJOAC3ulhpP7OGGxyNdGqRG8QiCvgeMZP0YI,13588
-django/conf/locale/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/af/LC_MESSAGES/django.mo,sha256=GqXA00k3sKdvUz3tD5nSLrN7rfAYm9FBvGFzcaa_AFE,24077
-django/conf/locale/af/LC_MESSAGES/django.po,sha256=oVXTZ2E6Z_EnAwAhjllrb34PG773iksXziMUL5kkRxU,28110
-django/conf/locale/ar/LC_MESSAGES/django.mo,sha256=qBaEPhfJxd2mK1uPH7J06hPI3_leRPsWkVgcKtJSAvQ,35688
-django/conf/locale/ar/LC_MESSAGES/django.po,sha256=MQeB4q0H-uDLurniJP5b2SBOTETAUl9k9NHxtaw0nnU,38892
-django/conf/locale/ar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ar/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ar/formats.py,sha256=EI9DAiGt1avNY-a6luMnAqKISKGHXHiKE4QLRx7wGHU,696
-django/conf/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=QosXYYYvQjGu13pLrC9LIVwUQXVwdJpIYn7RB9QCJY8,33960
-django/conf/locale/ar_DZ/LC_MESSAGES/django.po,sha256=2iT_sY4XedSSiHagu03OgpYXWNJVaKDwKUfxgEN4k3k,37626
-django/conf/locale/ar_DZ/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ar_DZ/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ar_DZ/formats.py,sha256=T84q3oMKng-L7_xymPqYwpzs78LvvfHy2drfSRj8XjE,901
-django/conf/locale/ast/LC_MESSAGES/django.mo,sha256=XSStt50HP-49AJ8wFcnbn55SLncJCsS2lx_4UwK-h-8,15579
-django/conf/locale/ast/LC_MESSAGES/django.po,sha256=7qZUb5JjfrWLqtXPRjpNOMNycbcsEYpNO-oYmazLTk4,23675
-django/conf/locale/az/LC_MESSAGES/django.mo,sha256=DMupaHNLr95FRZeF1di-6DygIFSZ6YxYRIHrPv4Gv3E,26983
-django/conf/locale/az/LC_MESSAGES/django.po,sha256=ZF-Qz16zoirRayV4_C9AIzbQwt2thq1WeS0DpcD7SIY,29723
-django/conf/locale/az/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/az/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/az/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/az/formats.py,sha256=JQoS2AYHKJxiH6TJas1MoeYgTeUv5XcNtYUHF7ulDmw,1087
-django/conf/locale/be/LC_MESSAGES/django.mo,sha256=FZivGaKrh1M4tAxfZGF-H1koGnof248obvfA6Xw57rY,36467
-django/conf/locale/be/LC_MESSAGES/django.po,sha256=N2laJ6pArev1YBKRfqpeez0LbULVaIt7TNNlIX_5nWM,39028
-django/conf/locale/bg/LC_MESSAGES/django.mo,sha256=FqbeKBkf9BqYntobFo98EnL5NeHy6DsSIXuinIWoCHE,33758
-django/conf/locale/bg/LC_MESSAGES/django.po,sha256=3FL505XlkCzIA_peYeeb2O-eKS4hQbOKRW7OSCtAX08,36197
-django/conf/locale/bg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/bg/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/bg/formats.py,sha256=LC7P_5yjdGgsxLQ_GDtC8H2bz9NTxUze_CAtzlm37TA,705
-django/conf/locale/bn/LC_MESSAGES/django.mo,sha256=sB0RIFrGS11Z8dx5829oOFw55vuO4vty3W4oVzIEe8Q,16660
-django/conf/locale/bn/LC_MESSAGES/django.po,sha256=rF9vML3LDOqXkmK6R_VF3tQaFEoZI7besJAPx5qHNM0,26877
-django/conf/locale/bn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/bn/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/bn/formats.py,sha256=jynhZ9XNNuxTXeF7f2FrJYYZuFwlLY58fGfQ6gVs7s8,964
-django/conf/locale/br/LC_MESSAGES/django.mo,sha256=Xow2-sd55CZJsvfF8axtxXNRe27EDwxKixCGelVQ4aU,14009
-django/conf/locale/br/LC_MESSAGES/django.po,sha256=ODCUDdEDAvsOVOAr49YiWT2YQaBZmc-38brdgYWc8Bs,24293
-django/conf/locale/bs/LC_MESSAGES/django.mo,sha256=Xa5QAbsHIdLkyG4nhLCD4UHdCngrw5Oh120abCNdWlA,10824
-django/conf/locale/bs/LC_MESSAGES/django.po,sha256=IB-2VvrQKUivAMLMpQo1LGRAxw3kj-7kB6ckPai0fug,22070
-django/conf/locale/bs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/bs/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/bs/formats.py,sha256=760m-h4OHpij6p_BAD2dr3nsWaTb6oR1Y5culX9Gxqw,705
-django/conf/locale/ca/LC_MESSAGES/django.mo,sha256=v6lEJTUbXyEUBsctIdNFOg-Ck5MVFbuz-JgjqkUe32c,27707
-django/conf/locale/ca/LC_MESSAGES/django.po,sha256=16M-EtYLbfKnquh-IPRjWxTdHAqtisDc46Dzo5n-ZMc,30320
-django/conf/locale/ca/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ca/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ca/formats.py,sha256=s7N6Ns3yIqr_KDhatnUvfjbPhUbrhvemB5HtCeodGZo,940
-django/conf/locale/cs/LC_MESSAGES/django.mo,sha256=z8TcGqBp91REABKRFu2Iv6Mfn7B9Xn0RrJpds3x5gA8,29060
-django/conf/locale/cs/LC_MESSAGES/django.po,sha256=pCdIvV7JEvQTgSBexXu7hHX-57IbJjDw3Q9Ub24Q3tw,32110
-django/conf/locale/cs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/cs/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/cs/formats.py,sha256=3MA70CW0wfr0AIYvYqE0ACmX79tNOx-ZdlR6Aetp9e8,1539
-django/conf/locale/cy/LC_MESSAGES/django.mo,sha256=s7mf895rsoiqrPrXpyWg2k85rN8umYB2aTExWMTux7s,18319
-django/conf/locale/cy/LC_MESSAGES/django.po,sha256=S-1PVWWVgYmugHoYUlmTFAzKCpI81n9MIAhkETbpUoo,25758
-django/conf/locale/cy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/cy/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/cy/formats.py,sha256=NY1pYPfpu7XjLMCCuJk5ggdpLcufV1h101ojyxfPUrY,1355
-django/conf/locale/da/LC_MESSAGES/django.mo,sha256=QDsQ8EGINlIyV0gSRhq4J8bMrCcqBH31l-fpIli5DKU,27268
-django/conf/locale/da/LC_MESSAGES/django.po,sha256=AoLYUHCj8DElaIePFv9Tw86qDF76ZGqAtMETdhKuBqI,29670
-django/conf/locale/da/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/da/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/da/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/da/formats.py,sha256=-y3033Fo7COyY0NbxeJVYGFybrnLbgXtRf1yBGlouys,876
-django/conf/locale/de/LC_MESSAGES/django.mo,sha256=MULuNkFdTMFpi8PZxx3TlZ6BhJAPF19ZIhOR7FBsv8Q,28666
-django/conf/locale/de/LC_MESSAGES/django.po,sha256=dQGocjsXW4368meoAtFEq-ItWgfHZAQT0GYKH9BHoYs,31097
-django/conf/locale/de/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/de/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/de/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/de/formats.py,sha256=fysX8z5TkbPUWAngoy_sMeFGWp2iaNU6ftkBz8cqplg,996
-django/conf/locale/de_CH/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/de_CH/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/de_CH/formats.py,sha256=22UDF62ESuU0Jp_iNUqAj-Bhq4_-frpji0-ynBdHXYk,1377
-django/conf/locale/dsb/LC_MESSAGES/django.mo,sha256=GZcKy6ROHonxwDJnP5PLm_Kb1FY4u6ardH_57eBqp-A,30133
-django/conf/locale/dsb/LC_MESSAGES/django.po,sha256=AXSu3PKq07cg6NIgM7tOgxnmHWbMnCUKWTZvNkWi9lw,32625
-django/conf/locale/el/LC_MESSAGES/django.mo,sha256=P5lTOPFcl9x6_j69ZN3hM_mQbhW7Fbbx02RtTNJwfS0,33648
-django/conf/locale/el/LC_MESSAGES/django.po,sha256=rZCComPQcSSr8ZDLPgtz958uBeBZsmV_gEP-sW88kRA,37123
-django/conf/locale/el/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/el/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/el/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/el/formats.py,sha256=RON2aqQaQK3DYVF_wGlBQJDHrhANxypcUW_udYKI-ro,1241
-django/conf/locale/en/LC_MESSAGES/django.mo,sha256=mVpSj1AoAdDdW3zPZIg5ZDsDbkSUQUMACg_BbWHGFig,356
-django/conf/locale/en/LC_MESSAGES/django.po,sha256=uV2Y0_PkmipHC85Top987lITe3ECLqsMp3apbh-PB7c,29816
-django/conf/locale/en/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/en/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/en/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/en/formats.py,sha256=VTQUhaZ_WFhS5rQj0PxbnoMySK0nzUSqrd6Gx-DtXxI,2438
-django/conf/locale/en_AU/LC_MESSAGES/django.mo,sha256=SntsKx21R2zdjj0D73BkOXGTDnoN5unsLMJ3y06nONM,25633
-django/conf/locale/en_AU/LC_MESSAGES/django.po,sha256=6Qh4Z6REzhUdG5KwNPNK9xgLlgq3VbAJuoSXyd_eHdE,28270
-django/conf/locale/en_AU/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/en_AU/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/en_AU/formats.py,sha256=BoI5UviKGZ4TccqLmxpcdMf0Yk1YiEhY_iLQUddjvi0,1650
-django/conf/locale/en_GB/LC_MESSAGES/django.mo,sha256=jSIe44HYGfzQlPtUZ8tWK2vCYM9GqCKs-CxLURn4e1o,12108
-django/conf/locale/en_GB/LC_MESSAGES/django.po,sha256=PTXvOpkxgZFRoyiqftEAuMrFcYRLfLDd6w0K8crN8j4,22140
-django/conf/locale/en_GB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/en_GB/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/en_GB/formats.py,sha256=cJN8YNthkIOHCIMnwiTaSZ6RCwgSHkjWYMcfw8VFScE,1650
-django/conf/locale/eo/LC_MESSAGES/django.mo,sha256=G5VNi-7AMozkh0vK3UhPJi1tCbqJWSTeFSMoHo4jfvM,20433
-django/conf/locale/eo/LC_MESSAGES/django.po,sha256=0UwyG4ncz-dI6tkC2gLWg56EgmU1YLBspAh50Caj7-o,26212
-django/conf/locale/eo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/eo/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/eo/formats.py,sha256=zIEAk-SiLX0cvQVmRc3LpmV69jwRrejMMdC7vtVsSh0,1715
-django/conf/locale/es/LC_MESSAGES/django.mo,sha256=NE4hL7be5aoRbgXMWkD1NIOj8Jd7hcyrL0v2F0Dvtlg,28004
-django/conf/locale/es/LC_MESSAGES/django.po,sha256=xZ49QEuS196ELNFXx9jFSpiQBo2Pe0QRTDr2M9dcm8w,31666
-django/conf/locale/es/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/es/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/es/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/es/formats.py,sha256=j2k3I4e_4ePYFsJbkREtmknqlhqDPxSrvWN3lIQE0oA,953
-django/conf/locale/es_AR/LC_MESSAGES/django.mo,sha256=69pEWgzTseHSfje9YI-UrFQDAVfKm03vAs6itIzL22s,28363
-django/conf/locale/es_AR/LC_MESSAGES/django.po,sha256=i9ufMn-fE8P1kOheUXL0LitBFF850k6J-5v8aR1wqIU,30564
-django/conf/locale/es_AR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/es_AR/formats.py,sha256=4qgOJoR2K5ZE-pA2-aYRwFW7AbK-M9F9u3zVwgebr2w,935
-django/conf/locale/es_CO/LC_MESSAGES/django.mo,sha256=ehUwvqz9InObH3fGnOLuBwivRTVMJriZmJzXcJHsfjc,18079
-django/conf/locale/es_CO/LC_MESSAGES/django.po,sha256=XRgn56QENxEixlyix3v4ZSTSjo4vn8fze8smkrv_gc4,25107
-django/conf/locale/es_CO/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/es_CO/formats.py,sha256=0uAbBvOkdJZKjvhrrd0htScdO7sTgbofOkkC8A35_a8,691
-django/conf/locale/es_MX/LC_MESSAGES/django.mo,sha256=UkpQJeGOs_JQRmpRiU6kQmmYGL_tizL4JQOWb9i35M4,18501
-django/conf/locale/es_MX/LC_MESSAGES/django.po,sha256=M0O6o1f3V-EIY9meS3fXP_c7t144rXWZuERF5XeG5Uo,25870
-django/conf/locale/es_MX/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/es_MX/formats.py,sha256=fBvyAqBcAXARptSE3hxwzFYNx3lEE8QrhNrCWuuGNlA,768
-django/conf/locale/es_NI/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/es_NI/formats.py,sha256=UiOadPoMrNt0iTp8jZVq65xR_4LkOwp-fjvFb8MyNVg,711
-django/conf/locale/es_PR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/es_PR/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/es_PR/formats.py,sha256=VVTlwyekX80zCKlg1P4jhaAdKNpN5I64pW_xgrhpyVs,675
-django/conf/locale/es_VE/LC_MESSAGES/django.mo,sha256=h-h1D_Kr-LI_DyUJuIG4Zbu1HcLWTM1s5X515EYLXO8,18840
-django/conf/locale/es_VE/LC_MESSAGES/django.po,sha256=Xj38imu4Yw-Mugwge5CqAqWlcnRWnAKpVBPuL06Twjs,25494
-django/conf/locale/et/LC_MESSAGES/django.mo,sha256=AAtf-jezxKyK4-4vqKpCnbTRmXW2Qij4YA2X8ckt6Jw,26794
-django/conf/locale/et/LC_MESSAGES/django.po,sha256=6DeZWGsqrsoNbsPYa-1d7Q0F0fyWQAzqnXXn6aUcmX0,29326
-django/conf/locale/et/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/et/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/et/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/et/formats.py,sha256=DyFSZVuGSYGoImrRI2FodeM51OtvIcCkKzkI0KvYTQw,707
-django/conf/locale/eu/LC_MESSAGES/django.mo,sha256=OQAi-HVXLCx_xY8GcHYPYs5I_K1NVaPYhgqxjL_T5ds,21877
-django/conf/locale/eu/LC_MESSAGES/django.po,sha256=RKD5sVlCq-orCsMQfudiUz3Xi0Y46Z_wxMGvpY51OU0,27448
-django/conf/locale/eu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/eu/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/eu/formats.py,sha256=-PuRA6eHeXP8R3YV0aIEQRbk2LveaZk-_kjHlBT-Drg,749
-django/conf/locale/fa/LC_MESSAGES/django.mo,sha256=MgVsOtPARiZvxJWzBm4BakPSPYa8Df-X4BHEqu_T02Q,31611
-django/conf/locale/fa/LC_MESSAGES/django.po,sha256=MM5M0HKztRKGP3WAFkXRLHxSJiG7GnSVf1qTH1X-nWY,34779
-django/conf/locale/fa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/fa/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/fa/formats.py,sha256=v0dLaIh6-CWCAQHkmX0PaIlA499gTeRcJEi7lVJzw9o,722
-django/conf/locale/fi/LC_MESSAGES/django.mo,sha256=9Q4AgsDXCPtoCtqjfvvEmINGPRW0yg_OLFJC6likxFY,27747
-django/conf/locale/fi/LC_MESSAGES/django.po,sha256=fuZejrZ3-25WLM6UVxh1cOqaygSKNrWcB2WDoo6k4nQ,30042
-django/conf/locale/fi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/fi/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/fi/formats.py,sha256=CO_wD5ZBHwAVgjxArXktLCD7M-PPhtHbayX_bBKqhlA,1213
-django/conf/locale/fr/LC_MESSAGES/django.mo,sha256=8GLrPuSzlHQnBRbgPE3jh4npqgkwH8uoe05Hmne6hxk,28937
-django/conf/locale/fr/LC_MESSAGES/django.po,sha256=qQDyQPKB1Dl4mx5ZPHX_Ys5dZxgWTiL7xQ5Xwj5eACc,31380
-django/conf/locale/fr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/fr/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/fr/formats.py,sha256=Idd_fVXKJHJSOuB3jRbo_FgwQ2P6VK2AjJbadv5UxK8,1293
-django/conf/locale/fy/LC_MESSAGES/django.mo,sha256=9P7zoJtaYHfXly8d6zBoqkxLM98dO8uI6nmWtsGu-lM,2286
-django/conf/locale/fy/LC_MESSAGES/django.po,sha256=jveK-2MjopbqC9jWcrYbttIb4DUmFyW1_-0tYaD6R0I,19684
-django/conf/locale/fy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/fy/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/fy/formats.py,sha256=mJXj1dHUnO883PYWPwuI07CNbjmnfBTQVRXZMg2hmOk,658
-django/conf/locale/ga/LC_MESSAGES/django.mo,sha256=abQpDgeTUIdZzldVuZLZiBOgf1s2YVSyrvEhxwl0GK8,14025
-django/conf/locale/ga/LC_MESSAGES/django.po,sha256=rppcWQVozZdsbl7Gud6KnJo6yDB8T0xH6hvIiLFi_zA,24343
-django/conf/locale/ga/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ga/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ga/formats.py,sha256=Qh7R3UMfWzt7QIdMZqxY0o4OMpVsqlchHK7Z0QnDWds,682
-django/conf/locale/gd/LC_MESSAGES/django.mo,sha256=2VKzI7Nqd2NjABVQGdcduWHjj0h2b3UBGQub7xaTVPs,30752
-django/conf/locale/gd/LC_MESSAGES/django.po,sha256=3PfuhhmosuarfPjvM2TVf2kHhZaw5_G8oIM2VWTc3gI,33347
-django/conf/locale/gd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/gd/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/gd/formats.py,sha256=7doL7JIoCqA_o-lpCwM3jDHMpptA3BbSgeLRqdZk8Lc,715
-django/conf/locale/gl/LC_MESSAGES/django.mo,sha256=utB99vnkb5SLff8K0i3gFI8Nu_eirBxDEpFKbZ_voPY,14253
-django/conf/locale/gl/LC_MESSAGES/django.po,sha256=rvhCJsURGjM2ekm6NBjY5crVGc5lrQv2qpHj35dM3qc,23336
-django/conf/locale/gl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/gl/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/gl/formats.py,sha256=ygSFv-YTS8htG_LW0awegkkOarPRTZNPbUck5sxkAwI,757
-django/conf/locale/he/LC_MESSAGES/django.mo,sha256=46lIe8tACJ_ga70yOY5qNNDIZhvGZAqNh25zHRoBo_c,30227
-django/conf/locale/he/LC_MESSAGES/django.po,sha256=NrzjGVZoDiXeg6Uolt8m9emSNHpmOCzzIxnyipggDzo,33362
-django/conf/locale/he/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/he/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/he/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/he/formats.py,sha256=M-tu-LmTZd_oYPNH6CZEsdxJN526RUOfnLHlQxRL0N0,712
-django/conf/locale/hi/LC_MESSAGES/django.mo,sha256=8pV5j5q8VbrxdVkcS0qwhVx6DmXRRXPKfRsm3nWhI2g,19712
-django/conf/locale/hi/LC_MESSAGES/django.po,sha256=DPV-I1aXgIiZB7zHdEgAHShZFyb9zlNmMXlyjH5ug0I,29221
-django/conf/locale/hi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/hi/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/hi/formats.py,sha256=JArVM9dMluSP-cwpZydSVXHB5Vs9QKyR9c-bftI9hds,684
-django/conf/locale/hr/LC_MESSAGES/django.mo,sha256=HP4PCb-i1yYsl5eqCamg5s3qBxZpS_aXDDKZ4Hlbbcc,19457
-django/conf/locale/hr/LC_MESSAGES/django.po,sha256=qeVJgKiAv5dKR2msD2iokSOApZozB3Gp0xqzC09jnvs,26329
-django/conf/locale/hr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/hr/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/hr/formats.py,sha256=F4mIdDoaOYJ_lPmsJ_6bQo4Zj8pOSVwuldm92zRy4Fo,1723
-django/conf/locale/hsb/LC_MESSAGES/django.mo,sha256=lD79U1OLYaJKq3Q6XrPMTmkrX3qwLiGbr8c-T-Oe6mg,29491
-django/conf/locale/hsb/LC_MESSAGES/django.po,sha256=MkKgegENDgUK9urEUskxfZ__ETOR6IbXqgxyUJq47q0,31920
-django/conf/locale/hu/LC_MESSAGES/django.mo,sha256=zORP8fLsHnlY5RRY7i_mlVlx8f3erqSfPziYNAOIAe8,28217
-django/conf/locale/hu/LC_MESSAGES/django.po,sha256=6zz8Tvs_InxZDyuSKyo7f-JbNVM2JjkE_XXYbb0skMk,30680
-django/conf/locale/hu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/hu/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/hu/formats.py,sha256=xAD7mNsC5wFA2_KGRbBMPKwj884pq0jCKmXhEenGAEk,1001
-django/conf/locale/hy/LC_MESSAGES/django.mo,sha256=KfmTnB-3ZUKDHeNgLiego2Af0WZoHTuNKss3zE-_XOE,22207
-django/conf/locale/hy/LC_MESSAGES/django.po,sha256=kNKlJ5NqZmeTnnxdqhmU3kXiqT9t8MgAFgxM2V09AIc,28833
-django/conf/locale/ia/LC_MESSAGES/django.mo,sha256=JcrpersrDAoJXrD3AnPYBCQyGJ-6kUzH_Q8StbqmMeE,21428
-django/conf/locale/ia/LC_MESSAGES/django.po,sha256=LG0juYDjf3KkscDxwjY3ac6H1u5BBwGHljW3QWvr1nc,26859
-django/conf/locale/id/LC_MESSAGES/django.mo,sha256=4_75xU4TTvtl40dTB29V3SKnDp3auNve6Y8nwlXW6I4,27163
-django/conf/locale/id/LC_MESSAGES/django.po,sha256=EhUuZElmadPi8aOc20wWkbqVNlIozUDAjryvLvyrr2Q,29469
-django/conf/locale/id/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/id/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/id/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/id/formats.py,sha256=kYyOxWHN3Jyif3rFxLFyBUjTzFUwmuaLrkw5JvGbEz8,1644
-django/conf/locale/ig/LC_MESSAGES/django.mo,sha256=tAZG5GKhEbrUCJtLrUxzmrROe1RxOhep8w-RR7DaDYo,27188
-django/conf/locale/ig/LC_MESSAGES/django.po,sha256=DB_I4JXKMY4M7PdAeIsdqnLSFpq6ImkGPCuY82rNBpY,28931
-django/conf/locale/ig/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ig/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ig/formats.py,sha256=P3IsxhF5rNFZ5nCWUSyJfFLb0V1QdX_Xn-tYdrcll5Q,1119
-django/conf/locale/io/LC_MESSAGES/django.mo,sha256=uI78C7Qkytf3g1A6kVWiri_CbS55jReO2XmRfLTeNs0,14317
-django/conf/locale/io/LC_MESSAGES/django.po,sha256=FyN4ZTfNPV5TagM8NEhRts8y_FhehIPPouh_MfslnWY,23124
-django/conf/locale/is/LC_MESSAGES/django.mo,sha256=1pFU-dTPg2zs87L0ZqFFGS9q-f-XrzTOlhKujlyNL2E,24273
-django/conf/locale/is/LC_MESSAGES/django.po,sha256=76cQ_9DLg1jR53hiKSc1tLUMeKn8qTdPwpHwutEK014,28607
-django/conf/locale/is/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/is/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/is/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/is/formats.py,sha256=scsNfP4vVacxWIoN03qc2Fa3R8Uh5Izr1MqBicrAl3A,688
-django/conf/locale/it/LC_MESSAGES/django.mo,sha256=ueSC7tB6nn0-7W-d1on008avcjDiYyXaBckZH5-6OUs,27732
-django/conf/locale/it/LC_MESSAGES/django.po,sha256=7xb9UtuFoUoeQ8dMgzjtLJyXslALMsJONa_MDWjAyQ8,30660
-django/conf/locale/it/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/it/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/it/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/it/formats.py,sha256=KzkSb3KXBwfM3gk2FezyR-W8_RYKpnlFeFuIi5zl-S0,1774
-django/conf/locale/ja/LC_MESSAGES/django.mo,sha256=vEJ_s5BLfHsqhzIqba3HHk9m0-ZUeEGFXbUsGJB4g4I,29816
-django/conf/locale/ja/LC_MESSAGES/django.po,sha256=cw8bOnqjzhZ5bg5x9Kz_4FYAFaC-g1SNaCpL5Q48YWQ,32567
-django/conf/locale/ja/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ja/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ja/formats.py,sha256=MQ1KA6l1qmW07rXLYplRs-V1hR1Acbx30k2RpXnMhQg,729
-django/conf/locale/ka/LC_MESSAGES/django.mo,sha256=4e8at-KNaxYJKIJd8r6iPrYhEdnaJ1qtPw-QHPMh-Sc,24759
-django/conf/locale/ka/LC_MESSAGES/django.po,sha256=pIgaLU6hXgVQ2WJp1DTFoubI7zHOUkkKMddwV3PTdt8,32088
-django/conf/locale/ka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ka/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ka/formats.py,sha256=elTGOjS-mxuoSCAKOm8Wz2aLfh4pWvNyClUFcrYq9ng,1861
-django/conf/locale/kab/LC_MESSAGES/django.mo,sha256=x5Kyq2Uf3XNlQP06--4lT8Q1MacA096hZbyMJRrHYIc,7139
-django/conf/locale/kab/LC_MESSAGES/django.po,sha256=DsFL3IzidcAnPoAWIfIbGJ6Teop1yKPBRALeLYrdiFA,20221
-django/conf/locale/kk/LC_MESSAGES/django.mo,sha256=krjcDvA5bu591zcP76bWp2mD2FL1VUl7wutaZjgD668,13148
-django/conf/locale/kk/LC_MESSAGES/django.po,sha256=RgM4kzn46ZjkSDHMAsyOoUg7GdxGiZ-vaEOdf7k0c5A,23933
-django/conf/locale/km/LC_MESSAGES/django.mo,sha256=kEvhZlH7lkY1DUIHTHhFVQzOMAPd_-QMItXTYX0j1xY,7223
-django/conf/locale/km/LC_MESSAGES/django.po,sha256=QgRxEiJMopO14drcmeSG6XEXQpiAyfQN0Ot6eH4gca8,21999
-django/conf/locale/km/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/km/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/km/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/km/formats.py,sha256=0UMLrZz1aI2sdRPkJ0YzX99co2IV6tldP7pEvGEPdP0,750
-django/conf/locale/kn/LC_MESSAGES/django.mo,sha256=fQ7AD5tUiV_PZFBxUjNPQN79dWBJKqfoYwRdrOaQjU4,17515
-django/conf/locale/kn/LC_MESSAGES/django.po,sha256=fS4Z7L4NGVQ6ipZ7lMHAqAopTBP0KkOc-eBK0IYdbBE,28133
-django/conf/locale/kn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/kn/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/kn/formats.py,sha256=X5j9VHIW2XRdeTzDFEyS8tG05OBFzP2R7sEGUQa_INg,680
-django/conf/locale/ko/LC_MESSAGES/django.mo,sha256=1l9RjA5r-TH1KGUuL5EayxgkdY6iYJd5BDgYRmun5Ow,28101
-django/conf/locale/ko/LC_MESSAGES/django.po,sha256=dIMJhzKS8dDBHH-zCIfeP0EGVBazRWyCUJd3C9JCUyw,31179
-django/conf/locale/ko/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ko/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ko/formats.py,sha256=qn36EjiO4Bu12D_6qitjMDkBfy4M0LgFE-FhK8bPOto,2061
-django/conf/locale/ky/LC_MESSAGES/django.mo,sha256=IBVfwPwaZmaoljMRBGww_wWGMJqbF_IOHHnH2j-yJw8,31395
-django/conf/locale/ky/LC_MESSAGES/django.po,sha256=5ACTPMMbXuPJbU7Rfzs0yZHh3xy483pqo5DwSBQp4s4,33332
-django/conf/locale/ky/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ky/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ky/formats.py,sha256=QCq7vxAD5fe9VhcjRhG6C3N28jNvdzKR-c-EvDSJ1Pg,1178
-django/conf/locale/lb/LC_MESSAGES/django.mo,sha256=tQSJLQUeD5iUt-eA2EsHuyYqsCSYFtbGdryATxisZsc,8008
-django/conf/locale/lb/LC_MESSAGES/django.po,sha256=GkKPLO3zfGTNync-xoYTf0vZ2GUSAotAjfPSP01SDMU,20622
-django/conf/locale/lt/LC_MESSAGES/django.mo,sha256=cdUzK5RYW-61Upf8Sd8ydAg9wXg21pJaIRWFSKPv17c,21421
-django/conf/locale/lt/LC_MESSAGES/django.po,sha256=Lvpe_xlbxSa5vWEossxBCKryDVT7Lwz0EnuL1kSO6OY,28455
-django/conf/locale/lt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/lt/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/lt/formats.py,sha256=C9ScR3gYswT1dQXFedUUnYe6DQPVGAS_nLxs0h2E3dE,1637
-django/conf/locale/lv/LC_MESSAGES/django.mo,sha256=oHLK2lWrPkhtLmMzKbST8UG0SHt8RrPfPgihZFKNmkU,28628
-django/conf/locale/lv/LC_MESSAGES/django.po,sha256=pymIlo7VJE6bcum_xxjCoxgHdo-Tqh6APKDigT8U7og,31209
-django/conf/locale/lv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/lv/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/lv/formats.py,sha256=k8owdq0U7-x6yl8ll1W5VjRoKdp8a1G2enH04G5_nvU,1713
-django/conf/locale/mk/LC_MESSAGES/django.mo,sha256=uQKmcys0rOsRynEa812XDAaeiNTeBMkqhR4LZ_cfdAk,22737
-django/conf/locale/mk/LC_MESSAGES/django.po,sha256=4K11QRb493wD-FM6-ruCxks9_vl_jB59V1c1rx-TdKg,29863
-django/conf/locale/mk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/mk/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/mk/formats.py,sha256=xwnJsXLXGogOqpP18u6GozjehpWAwwKmXbELolYV_k4,1451
-django/conf/locale/ml/LC_MESSAGES/django.mo,sha256=MGvV0e3LGUFdVIA-h__BuY8Ckom2dAhSFvAtZ8FiAXU,30808
-django/conf/locale/ml/LC_MESSAGES/django.po,sha256=iLllS6vlCpBNZfy9Xd_2Cuwi_1-Vz9fW4G1lUNOuZ6k,37271
-django/conf/locale/ml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ml/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ml/formats.py,sha256=ZR7tMdJF0U6K1H95cTqrFH4gop6ZuSQ7vD2h0yKq6mo,1597
-django/conf/locale/mn/LC_MESSAGES/django.mo,sha256=sd860BHXfgAjDzU3CiwO3JirA8S83nSr4Vy3QUpXHyU,24783
-django/conf/locale/mn/LC_MESSAGES/django.po,sha256=VBgXVee15TTorC7zwYFwmHM4qgpYy11yclv_u7UTNwA,30004
-django/conf/locale/mn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/mn/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/mn/formats.py,sha256=fsexJU9_UTig2PS_o11hcEmrbPBS8voI4ojuAVPOd_U,676
-django/conf/locale/mr/LC_MESSAGES/django.mo,sha256=aERpEBdJtkSwBj6zOtiKDaXuFzepi8_IwvPPHi8QtGU,1591
-django/conf/locale/mr/LC_MESSAGES/django.po,sha256=GFtk4tVQVi8b7N7KEhoNubVw_PV08pyRvcGOP270s1Q,19401
-django/conf/locale/ms/LC_MESSAGES/django.mo,sha256=U4_kzfbYF7u78DesFRSReOIeVbOnq8hi_pReFfHfyUQ,27066
-django/conf/locale/ms/LC_MESSAGES/django.po,sha256=49pG3cykGjVfC9N8WPyskz-m7r6KmQiq5i8MR6eOi54,28985
-django/conf/locale/ms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ms/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ms/formats.py,sha256=YtOBs6s4j4SOmfB3cpp2ekcxVFoVGgUN8mThoSueCt0,1522
-django/conf/locale/my/LC_MESSAGES/django.mo,sha256=SjYOewwnVim3-GrANk2RNanOjo6Hy2omw0qnpkMzTlM,2589
-django/conf/locale/my/LC_MESSAGES/django.po,sha256=b_QSKXc3lS2Xzb45yVYVg307uZNaAnA0eoXX2ZmNiT0,19684
-django/conf/locale/nb/LC_MESSAGES/django.mo,sha256=XDCGV0qH1f2V-w_Hp2uqkl5w08--EGoqHKAnrBdViGo,26572
-django/conf/locale/nb/LC_MESSAGES/django.po,sha256=DGM90Bk4YsbVffQ18ECsWV4QsZcjw3sCblA_lbt2PNM,28941
-django/conf/locale/nb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/nb/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/nb/formats.py,sha256=y1QLE-SG00eHwje0lkAToHtz4t621Rz_HQRyBWCgK8c,1552
-django/conf/locale/ne/LC_MESSAGES/django.mo,sha256=BcK8z38SNWDXXWVWUmOyHEzwk2xHEeaW2t7JwrxehKM,27248
-django/conf/locale/ne/LC_MESSAGES/django.po,sha256=_Kj_i2zMb7JLU7EN7Z7JcUn89YgonJf6agSFCjXa49w,33369
-django/conf/locale/nl/LC_MESSAGES/django.mo,sha256=Kkpwz7ewcF-IgAVofSHExXzLzJA1wpmUF5bnk2r-SZQ,27641
-django/conf/locale/nl/LC_MESSAGES/django.po,sha256=ThDoNwUAe4EqEUD-VgzfyYUGbaWX4tJVvV1xOEHIMMU,30388
-django/conf/locale/nl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/nl/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/nl/formats.py,sha256=cKaaOvRdeauORjvuZ1xyVcVsl36J3Zk4FSE-lnx2Xwg,3927
-django/conf/locale/nn/LC_MESSAGES/django.mo,sha256=Ccj8kjvjTefC8H6TuDCOdSrTmtkYXkmRR2V42HBMYo4,26850
-django/conf/locale/nn/LC_MESSAGES/django.po,sha256=oaVJTl0NgZ92XJv9DHdsXVaKAc81ky_R3CA6HljTH-8,29100
-django/conf/locale/nn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/nn/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/nn/formats.py,sha256=y1QLE-SG00eHwje0lkAToHtz4t621Rz_HQRyBWCgK8c,1552
-django/conf/locale/os/LC_MESSAGES/django.mo,sha256=LBpf_dyfBnvGOvthpn5-oJuFiSNHrgiVHBzJBR-FxOw,17994
-django/conf/locale/os/LC_MESSAGES/django.po,sha256=WYlAnNYwGFnH76Elnnth6YP2TWA-fEtvV5UinnNj7AA,26278
-django/conf/locale/pa/LC_MESSAGES/django.mo,sha256=H1hCnQzcq0EiSEaayT6t9H-WgONO5V4Cf7l25H2930M,11253
-django/conf/locale/pa/LC_MESSAGES/django.po,sha256=26ifUdCX9fOiXfWvgMkOXlsvS6h6nNskZcIBoASJec4,23013
-django/conf/locale/pl/LC_MESSAGES/django.mo,sha256=qnQP87WqTze8ogwt9Vi5DPKxrXpZqitDmi8QYcovaQs,30088
-django/conf/locale/pl/LC_MESSAGES/django.po,sha256=VfWmnTl93LQbN62DAWenXLh5YbwhkCHk3KauoWJWGq4,33953
-django/conf/locale/pl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/pl/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/pl/formats.py,sha256=KREhPtHuzKS_ZsAqXs5LqYPGhn6O-jLd4WZQ-39BA8I,1032
-django/conf/locale/pt/LC_MESSAGES/django.mo,sha256=nlj_L7Z2FkXs1w6wCGGseuZ_U-IecnlfYRtG5jPkGrs,20657
-django/conf/locale/pt/LC_MESSAGES/django.po,sha256=ETTedbjU2J4FLi2QDHNN8C7zlAsvLWNUlYzkEV1WB6s,26224
-django/conf/locale/pt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/pt/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/pt/formats.py,sha256=RQ9MuIwUPhiY2u-1hFU2abs9Wqv1qZE2AUAfYVK-NU8,1520
-django/conf/locale/pt_BR/LC_MESSAGES/django.mo,sha256=bSQXQlNIcBdrntNc6OvcfwfbaTSxlgnKEdyslZo_WpA,27271
-django/conf/locale/pt_BR/LC_MESSAGES/django.po,sha256=OGtV8cTdQwBHEQ6Xck_JJaxR-tHI7THLmgD9JbGTsEM,31185
-django/conf/locale/pt_BR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/pt_BR/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/pt_BR/formats.py,sha256=J1IKV7cS2YMJ5_qlT9h1dDYUX9tLFvqA95l_GpZTLUY,1285
-django/conf/locale/ro/LC_MESSAGES/django.mo,sha256=IMUybfJat0koxf_jSv6urQQuiHlldUhjrqo3FR303WA,22141
-django/conf/locale/ro/LC_MESSAGES/django.po,sha256=mdMWVR6kXJwUSxul2bpu3IoWom6kWDiES6Iw5ziynj0,27499
-django/conf/locale/ro/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ro/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ro/formats.py,sha256=e_dp0zyfFfoydrGyn6Kk3DnQIj7RTRuvRc6rQ6tSxzA,928
-django/conf/locale/ru/LC_MESSAGES/django.mo,sha256=rTITYVXoFAoqCIKj21rjgnWXCEMwE41QeyX26PqC05M,36220
-django/conf/locale/ru/LC_MESSAGES/django.po,sha256=A98tjI-zPro3bx0zopl5maKKDedF3f2AE5yU4AAZ-mE,40123
-django/conf/locale/ru/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ru/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ru/formats.py,sha256=lTfYbecdSmHCxebog_2bd0N32iD3nEq_f5buh9il-nI,1098
-django/conf/locale/sk/LC_MESSAGES/django.mo,sha256=LLHZDII9g__AFTHCgyLy05I7DQEjZjk20LO-CkrdhS0,27800
-django/conf/locale/sk/LC_MESSAGES/django.po,sha256=iH6cKWjUfKMqVd4Q6HPEnZwOB-39SpllevZIythjk9M,31062
-django/conf/locale/sk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/sk/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/sk/formats.py,sha256=bWj0FNpYfOAgi9J-L4VuiN6C_jsgPsKNdLYd9gTnFs0,1051
-django/conf/locale/sl/LC_MESSAGES/django.mo,sha256=uaPbjsAAam_SrzenHjeHgTC3Pxn6BEecXgnDY9HOzwg,21921
-django/conf/locale/sl/LC_MESSAGES/django.po,sha256=MZ8Lz3dN5JSxw7l8bFRN0ozeW4Sue0jnRURm2zpOcuI,27860
-django/conf/locale/sl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/sl/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/sl/formats.py,sha256=Nq4IfEUnlGebMZeRvB2l9aps-5G5b4y1kQ_3MiJTfe8,1642
-django/conf/locale/sq/LC_MESSAGES/django.mo,sha256=TTrYuB6WUU3b41ExbnFbncIfsPOY07EMLCp5dCNbDlM,27849
-django/conf/locale/sq/LC_MESSAGES/django.po,sha256=wGzpVg1uPm2XL0v0RBVo4dnh73lH9AlkzG3kyYIUgM8,30400
-django/conf/locale/sq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/sq/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/sq/formats.py,sha256=SA_jCSNwI8-p79skHoLxrPLZnkyq1PVadwT6gMt7n_M,688
-django/conf/locale/sr/LC_MESSAGES/django.mo,sha256=XVnYuUQmoQy6BZnPmHnSrWVz75J4sTYKxGn4NqdJU4c,34059
-django/conf/locale/sr/LC_MESSAGES/django.po,sha256=jvlDoqR-OhFigYmrjPWm2cXMVqeYvT9qpbT-yAlp7Lg,36513
-django/conf/locale/sr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/sr/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/sr/formats.py,sha256=F3_gYopOXINcllaPFzTqZrZ2oZ1ye3xzR0NQtlqXYp0,1729
-django/conf/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=XFg0D4jJjXqpYOGoMV1r9tmibEcebm9gczrjCNeWJfw,24760
-django/conf/locale/sr_Latn/LC_MESSAGES/django.po,sha256=ZBkqSDwmnfn-tefNaWRCBmBL8Nxtzgf2f2c95_YP9jU,28890
-django/conf/locale/sr_Latn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/sr_Latn/formats.py,sha256=BDZm-ajQgCIxQ8mCcckEH32IoCN9233TvAOXkg4mc38,1728
-django/conf/locale/sv/LC_MESSAGES/django.mo,sha256=Dc0PI7-iytD6Yamr_08Bn2DHFECsBbnr2Ap3w2pj2Eg,27469
-django/conf/locale/sv/LC_MESSAGES/django.po,sha256=W9ufs2Y0Tklyd0Q3ccIouXBqX2IP92-zdtkiJy-xqNo,30235
-django/conf/locale/sv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/sv/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/sv/formats.py,sha256=9o8ZtaSq1UOa5y6Du3rQsLAAl5ZOEdVY1OVVMbj02RA,1311
-django/conf/locale/sw/LC_MESSAGES/django.mo,sha256=aUmIVLANgSCTK5Lq8QZPEKWjZWnsnBvm_-ZUcih3J6g,13534
-django/conf/locale/sw/LC_MESSAGES/django.po,sha256=GOE6greXZoLhpccsfPZjE6lR3G4vpK230EnIOdjsgPk,22698
-django/conf/locale/ta/LC_MESSAGES/django.mo,sha256=WeM8tElbcmL11P_D60y5oHKtDxUNWZM9UNgXe1CsRQ4,7094
-django/conf/locale/ta/LC_MESSAGES/django.po,sha256=kgHTFqysEMj1hqktLr-bnL1NRM715zTpiwhelqC232s,22329
-django/conf/locale/ta/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/ta/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/ta/formats.py,sha256=vmjfiM54oJJxqcdgZJUNNQN7oMS-XLVBYJ4lWBb5ctY,682
-django/conf/locale/te/LC_MESSAGES/django.mo,sha256=Sk45kPC4capgRdW5ImOKYEVxiBjHXsosNyhVIDtHLBc,13259
-django/conf/locale/te/LC_MESSAGES/django.po,sha256=IQxpGTpsKUtBGN1P-KdGwvE7ojNCqKqPXEvYD3qT5A4,25378
-django/conf/locale/te/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/te/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/te/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/te/formats.py,sha256=-HOoZgmnME4--4CuXzcnhXqNma0Wh7Ninof3RCCGZkU,680
-django/conf/locale/tg/LC_MESSAGES/django.mo,sha256=ePzS2pD84CTkHBaiaMyXBxiizxfFBjHdsGH7hCt5p_4,28497
-django/conf/locale/tg/LC_MESSAGES/django.po,sha256=oSKu3YT3griCrDLPqptZmHcuviI99wvlfX6I6nLJnDk,33351
-django/conf/locale/tg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/tg/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/tg/formats.py,sha256=TG5TGfLNy4JSjl-QAWk46gIEb0ijdBpqPrDtwfJzshw,1160
-django/conf/locale/th/LC_MESSAGES/django.mo,sha256=SJeeJWbdF-Lae5BendxlyMKqx5zdDmh3GCQa8ER5FyY,18629
-django/conf/locale/th/LC_MESSAGES/django.po,sha256=K4ITjzHLq6DyTxgMAfu3CoGxrTd3aG2J6-ZxQj2KG1U,27507
-django/conf/locale/th/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/th/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/th/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/th/formats.py,sha256=SmCUD-zVgI1QE2HwqkFtAO87rJ-FoCjw1s-2-cfl1h0,1072
-django/conf/locale/tk/LC_MESSAGES/django.mo,sha256=B80ko55qX70bXz0b7f5azf1_6Vqyp0ELIiB1T-RJMW8,25628
-django/conf/locale/tk/LC_MESSAGES/django.po,sha256=FaDJ7UkoZzRvLhy25uo2l2IQkBGFVQuW-izXHzKdNCM,28772
-django/conf/locale/tk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/tk/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/tk/formats.py,sha256=TG5TGfLNy4JSjl-QAWk46gIEb0ijdBpqPrDtwfJzshw,1160
-django/conf/locale/tr/LC_MESSAGES/django.mo,sha256=bYmigAMi7l_Us4acWtA2sA_gvafEO0M9zJ6msr0TOA4,28298
-django/conf/locale/tr/LC_MESSAGES/django.po,sha256=rgwQ9ZRR4l22a5erSPIVe-RivJlsCqQfWMtlitzsuA4,30857
-django/conf/locale/tr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/tr/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/tr/formats.py,sha256=yJg-7hmevD1gvj9iBRMCiYGgd5DxKZcL7T_C3K3ztME,1019
-django/conf/locale/tt/LC_MESSAGES/django.mo,sha256=r554DvdPjD_S8hBRjW8ehccEjEk8h7czQsp46FZZ_Do,14500
-django/conf/locale/tt/LC_MESSAGES/django.po,sha256=W8QgEAH7yXNmjWoF-UeqyVAu5jEMHZ5MXE60e5sawJc,24793
-django/conf/locale/udm/LC_MESSAGES/django.mo,sha256=cIf0i3TjY-yORRAcSev3mIsdGYT49jioTHZtTLYAEyc,12822
-django/conf/locale/udm/LC_MESSAGES/django.po,sha256=n9Az_8M8O5y16yE3iWmK20R9F9VoKBh3jR3iKwMgFlY,23113
-django/conf/locale/uk/LC_MESSAGES/django.mo,sha256=W_AqqHC1n_9RO4gSgWyC3APjhP4v2a0Xq4f3gk16oTQ,29755
-django/conf/locale/uk/LC_MESSAGES/django.po,sha256=634AZnTlE7dfetHkYrWbk4sMtRVDqRBkhx3S2xeOcFw,35793
-django/conf/locale/uk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/uk/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/uk/formats.py,sha256=ZmeYmL0eooFwQgmE054V36RQ469ZTfAv6k8SUJrDYQ8,1241
-django/conf/locale/ur/LC_MESSAGES/django.mo,sha256=M6R2DYFRBvcVRAsgVxVOLvH3e8v14b2mJs650UlUb2I,12291
-django/conf/locale/ur/LC_MESSAGES/django.po,sha256=Lr0DXaPqWtCFAxn10BQ0vlvZIMNRvCg_QJQxAC01eWk,23479
-django/conf/locale/uz/LC_MESSAGES/django.mo,sha256=c8eHLqubZqScsU8LjGK-j2uAGeWzHCSmCy-tYu9x_FA,27466
-django/conf/locale/uz/LC_MESSAGES/django.po,sha256=TxmmhZCC1zrAgo0xM0JQKywju0XBd1BujMKZ9HtOLKY,29376
-django/conf/locale/uz/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/uz/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/uz/formats.py,sha256=cdmqOUBVnPSyi2k9AkOGl27s89PymFePG2gtnYzYbiw,1176
-django/conf/locale/vi/LC_MESSAGES/django.mo,sha256=TMsBzDnf9kZndozqVUnEKtKxfH2N1ajLdrm8hJ4HkYI,17396
-django/conf/locale/vi/LC_MESSAGES/django.po,sha256=tL2rvgunvaN_yqpPSBYAKImFDaFaeqbnpEw_egI11Lo,25342
-django/conf/locale/vi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/vi/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/vi/formats.py,sha256=_xIugkqLnjN9dzIhefMpsJXaTPldr4blKSGS-c3swg0,762
-django/conf/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=rbn0fcTiKcXc6cl33-rMn1dn4cyjIN3tXLpx9fOFXkE,26430
-django/conf/locale/zh_Hans/LC_MESSAGES/django.po,sha256=s1BAFMz7gA0ejgPVKBeiv-uHrPA6VH5ws20A60eHS2A,29472
-django/conf/locale/zh_Hans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/zh_Hans/formats.py,sha256=iMb9Taj6xQQA3l_NWCC7wUlQuh4YfNUgs2mHcQ6XUEo,1598
-django/conf/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=1U3cID-BpV09p0sgYryzJCCApQYVlCtb4fJ5IPB8wtc,19560
-django/conf/locale/zh_Hant/LC_MESSAGES/django.po,sha256=buHXYy_UKFoGW8xz6PNrSwbMx-p8gwmPRgdWGBYwT2U,24939
-django/conf/locale/zh_Hant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc,,
-django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc,,
-django/conf/locale/zh_Hant/formats.py,sha256=iMb9Taj6xQQA3l_NWCC7wUlQuh4YfNUgs2mHcQ6XUEo,1598
-django/conf/project_template/manage.py-tpl,sha256=JDuGG02670bELmn3XLUSxHFZ8VFhqZTT_oN9VbT5Acc,674
-django/conf/project_template/project_name/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/conf/project_template/project_name/asgi.py-tpl,sha256=q_6Jo5tLy6ba-S7pLs3YTK7byxSBmU0oYylYJlNvwHI,428
-django/conf/project_template/project_name/settings.py-tpl,sha256=JskIPIEWPSX2p7_rlsPr60JDjmFC0bVEeMChmq--0OY,3342
-django/conf/project_template/project_name/urls.py-tpl,sha256=vrokVPIRgYajr3Osw2_D1gCndrJ-waGU3tkpnzhWync,775
-django/conf/project_template/project_name/wsgi.py-tpl,sha256=OCfjjCsdEeXPkJgFIrMml_FURt7msovNUPnjzb401fs,428
-django/conf/urls/__init__.py,sha256=qmpaRi5Gn2uaY9h3g9RNu0z3LDEpEeNL9JlfSLed9s0,292
-django/conf/urls/__pycache__/__init__.cpython-310.pyc,,
-django/conf/urls/__pycache__/i18n.cpython-310.pyc,,
-django/conf/urls/__pycache__/static.cpython-310.pyc,,
-django/conf/urls/i18n.py,sha256=Xz83EPb1MwylIF1z3NimtAD7TlJwd_0ZpZoxj2HEO1E,1184
-django/conf/urls/static.py,sha256=gZOYaiIf3SxQ75N69GyVm9C0OmQv1r1IDrUJ0E7zMe0,908
-django/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/admin/__init__.py,sha256=s4yCvpvHN4PbCIiNNZKSCaUhN_0NdkrLq-qihnJH4L4,1169
-django/contrib/admin/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/admin/__pycache__/actions.cpython-310.pyc,,
-django/contrib/admin/__pycache__/apps.cpython-310.pyc,,
-django/contrib/admin/__pycache__/checks.cpython-310.pyc,,
-django/contrib/admin/__pycache__/decorators.cpython-310.pyc,,
-django/contrib/admin/__pycache__/exceptions.cpython-310.pyc,,
-django/contrib/admin/__pycache__/filters.cpython-310.pyc,,
-django/contrib/admin/__pycache__/forms.cpython-310.pyc,,
-django/contrib/admin/__pycache__/helpers.cpython-310.pyc,,
-django/contrib/admin/__pycache__/models.cpython-310.pyc,,
-django/contrib/admin/__pycache__/options.cpython-310.pyc,,
-django/contrib/admin/__pycache__/sites.cpython-310.pyc,,
-django/contrib/admin/__pycache__/tests.cpython-310.pyc,,
-django/contrib/admin/__pycache__/utils.cpython-310.pyc,,
-django/contrib/admin/__pycache__/widgets.cpython-310.pyc,,
-django/contrib/admin/actions.py,sha256=vjwAZGMGf4rjlJSIaGOX-7SfP0XmkJT_065sGhYDyD8,3257
-django/contrib/admin/apps.py,sha256=BOiulA4tsb3wuAUtLGTGjrbywpSXX0dLo2pUCGV8URw,840
-django/contrib/admin/checks.py,sha256=bf-DZBU7hY_-7zdkpAUX6E5C5oK4UTZI71_9Sp8uu7Y,49782
-django/contrib/admin/decorators.py,sha256=dki7GLFKOPT-mB5rxsYX12rox18BywroxmrzjG_VJXM,3481
-django/contrib/admin/exceptions.py,sha256=wpzdKnp6V_aTYui_4tQZ8hFJf7W5xYkEMym0Keg1k0k,333
-django/contrib/admin/filters.py,sha256=TC5JIp0ounPi1o12t03N-CFvmZ9li78LsuSzgmnoPA0,20886
-django/contrib/admin/forms.py,sha256=0UCJstmmBfp_c_0AqlALJQYy9bxXo9fqoQQICQONGEo,1023
-django/contrib/admin/helpers.py,sha256=IXn_pbqxk_RocYbVRW2uJdXQglrJTrT4JAfsZntJhBA,18363
-django/contrib/admin/locale/af/LC_MESSAGES/django.mo,sha256=3VNfQp5JaJy4XRqxM7Uu9uKHDihJCvKXYhdWPXOofc8,16216
-django/contrib/admin/locale/af/LC_MESSAGES/django.po,sha256=R2ix5AnK5X35wnhjT38K85JgwewQkmwrYwyVx4YqikQ,17667
-django/contrib/admin/locale/af/LC_MESSAGES/djangojs.mo,sha256=dmctO7tPkPwdbpp-tVmZrR0QLZekrJ1aE3rnm6vvUQM,4477
-django/contrib/admin/locale/af/LC_MESSAGES/djangojs.po,sha256=1wwspqp0rsSupVes7zjYLyNT_wY4lFefqhpXH5wBdJM,4955
-django/contrib/admin/locale/am/LC_MESSAGES/django.mo,sha256=UOwMxYH1r5AEBpu-P9zxHazk3kwI4CtsPosGIYtl6Hs,8309
-django/contrib/admin/locale/am/LC_MESSAGES/django.po,sha256=NmsIZoBEQwyBIqbKjkwCJ2_iMHnMKB87atoT0iuNXrw,14651
-django/contrib/admin/locale/ar/LC_MESSAGES/django.mo,sha256=tzGQ8jSJc406IBBwtAErlXVqaA10glxB8krZtWp1Rq4,19890
-django/contrib/admin/locale/ar/LC_MESSAGES/django.po,sha256=RBJbiYNDy57K592OKghugZFYiHpTvxUoEQ_B26-5i8A,21339
-django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo,sha256=xoI2xNKgspuuJe1UCUB9H6Kyp3AGhj5aeo_WEg5e23A,6545
-django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po,sha256=jwehFDFk3lMIEH43AEU_JyHOm84Seo-OLd5FmGBbaxo,7281
-django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=ipELNNGQYb_nHTEQbUFED8IT26L9c2UXsELf4wk0q6k,19947
-django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.po,sha256=2mGF2NfofR8WgSJPShF5CrMjECXj0dGFcFaZ2lriulc,21378
-django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.mo,sha256=L3N1U9OFXYZ8OfrvKHLbVvXa40biIDdmon0ZV8BOIvY,6423
-django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.po,sha256=Atzp95E2dFtSHZHHna0pBCqU_2V7partODX675OBkQs,7206
-django/contrib/admin/locale/ast/LC_MESSAGES/django.mo,sha256=3uffu2zPbQ1rExUsG_ambggq854Vy8HbullkCYdazA4,2476
-django/contrib/admin/locale/ast/LC_MESSAGES/django.po,sha256=wCWFh9viYUhTGOX0mW3fpN2z0kdE6b7IaA-A5zzb3Yo,11676
-django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.mo,sha256=kiG-lzQidkXER5s_6POO1G91mcAv9VAkAXI25jdYBLE,2137
-django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.po,sha256=s4s6aHocTlzGcFi0p7cFGTi3K8AgoPvFCv7-Hji6At0,4085
-django/contrib/admin/locale/az/LC_MESSAGES/django.mo,sha256=wgOltdxxboFzjUqoaqdU_rmlVptlfIpGEWKNdKz3ORo,16008
-django/contrib/admin/locale/az/LC_MESSAGES/django.po,sha256=AK41oVjiPgrYRhnBNGgKUr7NFtxsW_ASfknO2Dj20Uw,18246
-django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo,sha256=sre90ULGTqwvLUyrrTJrj3kEPwlbP-VDg-fqT_02fsE,5225
-django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po,sha256=-o9woCOf9ikbIptd9uTej6G-TtTQPKRSuK86N0Ta0yU,5968
-django/contrib/admin/locale/be/LC_MESSAGES/django.mo,sha256=npxIePwS6kY6UScaQl13xx1MPecYJcFCATuGNZB7a5c,21347
-django/contrib/admin/locale/be/LC_MESSAGES/django.po,sha256=4gG-r4SS9yEc9riM3e0fh46FSQHhB6E4vCw9jx1AsNc,22579
-django/contrib/admin/locale/be/LC_MESSAGES/djangojs.mo,sha256=ujRhIpDAf0W8YQpXiWgVOsbjpmS6QqI9I49WkKfqDpc,6558
-django/contrib/admin/locale/be/LC_MESSAGES/djangojs.po,sha256=Gg9mu6NJp4K0Fqs7TSPbGkTyn5YkXICHTAlRqL57rMw,7190
-django/contrib/admin/locale/bg/LC_MESSAGES/django.mo,sha256=wCkAQIkSfSql0ToXDm-3Ns7s-NDcBWOUFp342L2c_fg,21549
-django/contrib/admin/locale/bg/LC_MESSAGES/django.po,sha256=j08HkzolcVnB6AHwsb6EJd6kQHbNvWQEnZ2WvJLAfh8,23006
-django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo,sha256=jg3XbDGEJcfsBegtgjkFa6i_lcm2gf64-Gimh99vKcM,6483
-django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po,sha256=aIRSQTjvzcUDcL3LnCKd8gCqsfw8GiMnT_ZwnLiw75M,7093
-django/contrib/admin/locale/bn/LC_MESSAGES/django.mo,sha256=I3KUX53ePEC-8x_bwkR5spx3WbJRR8Xf67_2Xrr7Ccg,18585
-django/contrib/admin/locale/bn/LC_MESSAGES/django.po,sha256=UvKCBSa5MuxxZ7U5pRWXH6CEQ9WCJH2cQND0jjBmgpQ,22889
-django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo,sha256=t_OiMyPMsR2IdH65qfD9qvQfpWbwFueNuY72XSed2Io,2313
-django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po,sha256=iFwEJi4k3ULklCq9eQNUhKVblivQPJIoC_6lbyEkotY,4576
-django/contrib/admin/locale/br/LC_MESSAGES/django.mo,sha256=yCuMwrrEB_H44UsnKwY0E87sLpect_AMo0GdBjMZRPs,6489
-django/contrib/admin/locale/br/LC_MESSAGES/django.po,sha256=WMU_sN0ENWgyEbKOm8uVQfTQh9sabvKihtSdMt4XQBM,13717
-django/contrib/admin/locale/br/LC_MESSAGES/djangojs.mo,sha256=n7Yx2k9sAVSNtdY-2Ao6VFsnsx4aiExZ3TF_DnnrKU0,1658
-django/contrib/admin/locale/br/LC_MESSAGES/djangojs.po,sha256=gjg-VapbI9n_827CqNYhbtIQ8W9UcMmMObCsxCzReUU,4108
-django/contrib/admin/locale/bs/LC_MESSAGES/django.mo,sha256=44D550fxiO59Pczu5HZ6gvWEClsfmMuaxQWbA4lCW2M,8845
-django/contrib/admin/locale/bs/LC_MESSAGES/django.po,sha256=FrieR1JB4ssdWwYitJVpZO-odzPBKrW4ZsGK9LA595I,14317
-django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo,sha256=SupUK-RLDcqJkpLEsOVjgZOWBRKQMALZLRXGEnA623M,1183
-django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po,sha256=TOtcfw-Spn5Y8Yugv2OlPoaZ5DRwJjRIl-YKiyU092U,3831
-django/contrib/admin/locale/ca/LC_MESSAGES/django.mo,sha256=Wj8KdBSUuUtebE45FK3kvzl155GdTv4KgecoMxFi0_g,17535
-django/contrib/admin/locale/ca/LC_MESSAGES/django.po,sha256=5s5RIsOY5uL1oQQ5IrOhsOgAWWFZ25vTcYURO2dlR8g,19130
-django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo,sha256=_c1kqrOKLefixnqinutLyjB_3At56keptkowLCVX7w8,5309
-django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po,sha256=o-S3be-tNLWkQzJE1yXnByvMKDQvnk1tjZALQ1RKLZs,5990
-django/contrib/admin/locale/cs/LC_MESSAGES/django.mo,sha256=SGPfh9-MhUiRmguk3CGa5GC-Q8LHIo5aHZa4zkpWgow,17736
-django/contrib/admin/locale/cs/LC_MESSAGES/django.po,sha256=4HVVC6Bb4MhileINcde8RmKbHKomhW4xpiyUx91cTdc,19306
-django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo,sha256=OiM40p3ioK9FD4JWLb2jYP75kcurEcn9ih_HDL7Pyus,5851
-django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po,sha256=hh7P3DpEzkCb7M6d2iFwHKp1CzbrmMgeyAGP96BxprE,6629
-django/contrib/admin/locale/cy/LC_MESSAGES/django.mo,sha256=7ifUyqraN1n0hbyTVb_UjRIG1jdn1HcwehugHBiQvHs,12521
-django/contrib/admin/locale/cy/LC_MESSAGES/django.po,sha256=bS_gUoKklZwd3Vs0YlRTt24-k5ure5ObTu-b5nB5qCA,15918
-django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo,sha256=fOCA1fXEmJw_QaXEISLkuBhaMnEmP1ssP9lhqdCCC3c,3801
-django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po,sha256=OVcS-3tlMJS_T58qnZbWLGczHwFyAjbuWr35YwuxAVM,5082
-django/contrib/admin/locale/da/LC_MESSAGES/django.mo,sha256=cVt89SPwOqy_CZa6JhS-0E9CbdOZkCxdIxCxUVIuJvU,16982
-django/contrib/admin/locale/da/LC_MESSAGES/django.po,sha256=5l36QeymZCvaMOBcu2dzNotqQIBVwOppxsAe3P5u14Y,18379
-django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo,sha256=6O8b3TROAA7i4rrbLHRPuA8ZaJTwZoi5ywJw1HGtQw4,5289
-django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po,sha256=ftLxLh9uNfSlSos_Z5a01AAcv8Y-ba5cyFO67G0kKFQ,6072
-django/contrib/admin/locale/de/LC_MESSAGES/django.mo,sha256=Rq0G7Ij06S9hvzQ6Q5LkHYmDt5ehT03C2gD4iLlLJB8,17860
-django/contrib/admin/locale/de/LC_MESSAGES/django.po,sha256=O_ML2rpctXX8zZA6UPcQdi681QPrFL6J8_lkL6etY-k,19338
-django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo,sha256=ip_E7Un1XcToobQxWHXY4-ZrptRARH36w2Meu_vmKfw,5398
-django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po,sha256=a-XOnpUUCVw7YjmLUtyTFreYfTdlAq-NWqDx4irxQQw,6077
-django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo,sha256=iqugj0SQqkyVoIeWad9G8i3vzyu9BB4zh3GuaxOsDPY,17909
-django/contrib/admin/locale/dsb/LC_MESSAGES/django.po,sha256=jukfdoKP0rHwk8S0unh28CropoJU_lnWHBG2jGUZEfA,19105
-django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo,sha256=Gqy8gtip449Bgp9ReWKj5e9T31LAUPgKDEySOlgwKLY,5808
-django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po,sha256=cBy02WOUqZFRHatnUSems1FNBT0QtQqC9AM9sGXiox0,6400
-django/contrib/admin/locale/el/LC_MESSAGES/django.mo,sha256=54kG_94nJigDgJpZM8Cy58G_AGLdS5csJFEjTTvJBfM,22968
-django/contrib/admin/locale/el/LC_MESSAGES/django.po,sha256=f2gUQtedb0sZCBxAoy3hP2rGXT9ysP5UTOlCBvu2NvI,24555
-django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo,sha256=cix1Bkj2hYO_ofRvtPDhJ9rBnTR6-cnKCFKpZrsxJ34,6509
-django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po,sha256=R05tMMuQEjVQpioy_ayQgFBlLM4WdwXthkMguW6ga24,7339
-django/contrib/admin/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/admin/locale/en/LC_MESSAGES/django.po,sha256=akScm2Ru7ERfuMkGskyGkAtUPsrQxMmv2hSfb_LkDFw,24115
-django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po,sha256=NZ5-3PHlp9O9oNHJRXTsTPXCsRzFLGhj7V1cEvJWBbo,7636
-django/contrib/admin/locale/en_AU/LC_MESSAGES/django.mo,sha256=QEvxPxDqNUmq8NxN-8c_F6KMEcWWum3YzERlc3_S_DM,16191
-django/contrib/admin/locale/en_AU/LC_MESSAGES/django.po,sha256=BoVuGaPoGdQcF3zdgGRxrNKSq2XLHTvKfINCyU8t86Y,17548
-django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.mo,sha256=s0qPS8TjODtPo4miSznQfS6M8CQK9URDeMKeQsp7DK4,5001
-django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.po,sha256=YecPU6VmUDDNNIzZVl2Wgd6lNRp3msJaW8FhdHMtEyc,5553
-django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo,sha256=pFkTMRDDj76WA91wtGPjUB7Pq2PN7IJEC54Tewobrlc,11159
-django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po,sha256=REUJMGLGRyDMkqh4kJdYXO9R0Y6CULFVumJ_P3a0nv0,15313
-django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo,sha256=hW325c2HlYIIdvNE308c935_IaDu7_qeP-NlwPnklhQ,3147
-django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po,sha256=Ol5j1-BLbtSIDgbcC0o7tg_uHImcjJQmkA4-kSmZY9o,4581
-django/contrib/admin/locale/eo/LC_MESSAGES/django.mo,sha256=rrRYsz82QIaUEuHREYIw7mPLBhUhJ4EcX8PdND7btyk,13656
-django/contrib/admin/locale/eo/LC_MESSAGES/django.po,sha256=2AacIHf1R3030J0Deo-2LR8VZhmPmG4nii6mi8q9kbY,16778
-django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo,sha256=I1Ue345qSHPmJpX4yiYgomQ8vMgshRt1S1D_ZVJWf7g,4452
-django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po,sha256=BdSRWCYCDxLxtbcPSfRdAMGoTRWOWaxRGpdCIm-3HA0,5040
-django/contrib/admin/locale/es/LC_MESSAGES/django.mo,sha256=lHBMJveopDZkJ2pUiNMNjh3WJN6tBB6VAp1ycUodsTI,17696
-django/contrib/admin/locale/es/LC_MESSAGES/django.po,sha256=9bOk-Ye-JWUdyqZzSkUE11NQgX7xnCOgSd-Uy4YspeQ,19639
-django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo,sha256=FWXwW5YUTD6HHoYV2Snc2WeNmllz9vJVy5rjSCjQlA4,5203
-django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po,sha256=v1xp_eeyFsrW9rvXk5V6pOVyzHP_ZX06_fCbQppdE-4,6035
-django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo,sha256=andQgB0m5i0gUXQQ1apigqdL8-P9Y6EHb_Y8xRA1NGo,17979
-django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po,sha256=oPc3BcEwgvjFgyB9eJxWSdaYJllx9cDA2snKRFr1rrE,19240
-django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo,sha256=wnTfaWZm_wIl_MpxHQwCLS7exNgsPxfIwLT6hydPCkg,5585
-django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po,sha256=ztJtT2YVV5f2r6vptiiTgBLJ0bapPLAIq_V5tJxAlAQ,6177
-django/contrib/admin/locale/es_CO/LC_MESSAGES/django.mo,sha256=0k8kSiwIawYCa-Lao0uetNPLUzd4m_me3tCAVBvgcSw,15156
-django/contrib/admin/locale/es_CO/LC_MESSAGES/django.po,sha256=4T_syIsVY-nyvn5gEAtfN-ejPrJSUpNT2dmzufxaBsE,17782
-django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.mo,sha256=PLS10KgX10kxyy7MUkiyLjqhMzRgkAFGPmzugx9AGfs,3895
-django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.po,sha256=Y4bkC8vkJE6kqLbN8t56dR5670B06sB2fbtVzmQygK8,5176
-django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo,sha256=O8CbY83U4fTvvPPuONtlMx6jpA-qkrYxNTkLuMrWiRQ,11517
-django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po,sha256=8MSKNxhHMp0ksr5AUUAbs_H6MtMjIqkaFwmaJlBxELs,16307
-django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo,sha256=2w3CMJFBugP8xMOmXsDU82xUm8cWGRUGZQX5XjiTCpM,3380
-django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po,sha256=OP9cBsdCf3zZAXiKBMJPvY1AHwC_WE1k2vKlzVCtUec,4761
-django/contrib/admin/locale/es_VE/LC_MESSAGES/django.mo,sha256=himCORjsM-U3QMYoURSRbVv09i0P7-cfVh26aQgGnKg,16837
-django/contrib/admin/locale/es_VE/LC_MESSAGES/django.po,sha256=mlmaSYIHpa-Vp3f3NJfdt2RXB88CVZRoPEMfl-tccr0,18144
-django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.mo,sha256=Zy-Hj_Mr2FiMiGGrZyssN7GZJrbxRj3_yKQFZKR36Ro,4635
-django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.po,sha256=RI8CIdewjL3bAivniMOl7lA9tD7caP4zEo2WK71cX7c,5151
-django/contrib/admin/locale/et/LC_MESSAGES/django.mo,sha256=kDX-u-gvkXFaOrfFbZ4bIEs838IX-t_-rj8031wvZ8Q,16736
-django/contrib/admin/locale/et/LC_MESSAGES/django.po,sha256=tJqtqniPIp0a7b4E0pp5PW1fUxrti263mvAzPtDoXac,18234
-django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo,sha256=kxz2ZDbL-1BxlF6iYTIk2tl5yefzh1NCHRdoJI4xlJ8,4965
-django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po,sha256=fEGMNYwWRUXoJcb8xi95SYOcdm4FYxwAzearlMk76yc,5694
-django/contrib/admin/locale/eu/LC_MESSAGES/django.mo,sha256=CBk_9H8S8LlK8hfGQsEB7IgSms-BsURzAFrX9Zrsw4c,15009
-django/contrib/admin/locale/eu/LC_MESSAGES/django.po,sha256=9vnPgJRPcdSa4P5rguB5zqWQC1xAt4POzDw-mSD8UHs,17489
-django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo,sha256=vKtO_mbexiW-EO-L-G0PYruvc8N7GOF94HWQCkDnJNQ,4480
-django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po,sha256=BAWU-6kH8PLBxx_d9ZeeueB_lV5KFXjbRJXgKN43nQ4,5560
-django/contrib/admin/locale/fa/LC_MESSAGES/django.mo,sha256=Og9enbwYKrRvYCgnhAxxCLPiR5a3qqi-6k7YMr9pH7E,20345
-django/contrib/admin/locale/fa/LC_MESSAGES/django.po,sha256=729GcmVyQ9tksaff4VJbvaeKdaoly5gQhad06Tn42YY,22018
-django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo,sha256=MAje4ub3vWYhiKrVR_LvxAIqkvOlFpVcXQEBz3ezlPs,6050
-django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po,sha256=1nzEmRuswDmyCCMShGH2CYdjMY7tUuedfN4kDCEnTCM,6859
-django/contrib/admin/locale/fi/LC_MESSAGES/django.mo,sha256=KkQFxmyPelc56DyeqzNcYkxmLL0qKRME7XTGFSAXr58,16940
-django/contrib/admin/locale/fi/LC_MESSAGES/django.po,sha256=yxbVs2mpWa3tTA5LJ-erc3roqZfPD1UAiOTA4nrUjks,18282
-django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo,sha256=C9Rk5eZ6B_4OF5jTb2IZOjw_58Shos4T0qwci8-unSE,5378
-django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po,sha256=3_9X1ytlRSGdoye16RQZWVA8PBzF7s_nFxLOtp1uZlI,6024
-django/contrib/admin/locale/fr/LC_MESSAGES/django.mo,sha256=ywp3CKt0VKzWkWtVGVg6PdjzTk-TDhhn_wnmX2sz1Tk,18652
-django/contrib/admin/locale/fr/LC_MESSAGES/django.po,sha256=e47hTmm733L5Oind_AdlJV-ySvOsnv3XGx9BhI77fNU,19961
-django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo,sha256=0CYD92BO8bZZH74BO9HQ-FfN-mO-mLfaAVq1jUJpxuU,5532
-django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po,sha256=VeVgLXnB9fRwQuh6mNNPvnAbs-9f0QW1efQVRSZ1SMk,6141
-django/contrib/admin/locale/fy/LC_MESSAGES/django.mo,sha256=mWnHXGJUtiewo1F0bsuJCE_YBh7-Ak9gjTpwjOAv-HI,476
-django/contrib/admin/locale/fy/LC_MESSAGES/django.po,sha256=oSKEF_DInUC42Xzhw9HiTobJjE2fLNI1VE5_p6rqnCE,10499
-django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
-django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.po,sha256=efBDCcu43j4SRxN8duO5Yfe7NlpcM88kUPzz-qOkC04,2864
-django/contrib/admin/locale/ga/LC_MESSAGES/django.mo,sha256=cIOjVge5KC37U6g-0MMaP5p8N0XJxzK6oJqWNUw9jfI,15075
-django/contrib/admin/locale/ga/LC_MESSAGES/django.po,sha256=Qx1D0cEGIIPnO10I_83IfU3faEYpp0lm-KHg48lJMxE,17687
-django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo,sha256=G-9VfhiMcooTbAI1IMvbvUwj_h_ttNyxGS89nIgrpw4,5247
-django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po,sha256=DsDMYhm5PEpFBBGepf2iRD0qCkh2r45Y4tIHzFtjJAo,5920
-django/contrib/admin/locale/gd/LC_MESSAGES/django.mo,sha256=HEqiGvjMp0NnfIS0Z-c1i8SicEtMPIg8LvNMh-SXiPg,18871
-django/contrib/admin/locale/gd/LC_MESSAGES/django.po,sha256=cZWnJyEoyGFLbk_M4-eddTJLKJ0dqTIlIj4w6YwcjJg,20139
-django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo,sha256=QA2_hxHGzt_y0U8sAGQaT27IvvyWrehLPKP2X1jAvEs,5904
-django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po,sha256=KyYGpFHq2E55dK005xzH0I2RD-C2kD6BlJi8bcMjtRA,6540
-django/contrib/admin/locale/gl/LC_MESSAGES/django.mo,sha256=rRBlaoBQzzpFHN9ZuuHvXTJnLYciMYHA8IX9K6-4fmw,10785
-django/contrib/admin/locale/gl/LC_MESSAGES/django.po,sha256=OEOpmZuXMGG_SSHX0zdw_bgy3gDzcjWz9zgb9esYHrA,15902
-django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo,sha256=YkT7l3U9ffSGqXmu6S41Ex0r7tbK-0BKH5lS6O8PAGs,3279
-django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po,sha256=EDccOpm1mpT8mVRvu5LBsq8nao50oP1V7aKEnuRmtF8,4803
-django/contrib/admin/locale/he/LC_MESSAGES/django.mo,sha256=5Ckbdd-vF0C-W6tHf2_o2SZzMiRyrv9u9W0CLsqt0XM,16297
-django/contrib/admin/locale/he/LC_MESSAGES/django.po,sha256=FoVOVR6iqKlFLhkHMLJMnQJmLLwzkVKe5wQ7IsFPX_c,18924
-django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo,sha256=sdc97pmpMSUAvoMwrWOHyGPYV4j3DDhz4DlqFeRVTT4,5791
-django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po,sha256=ZXy7lexBNYbzAriBG27Jn-mv2DFoGobsV1Ur2lDtRMQ,6573
-django/contrib/admin/locale/hi/LC_MESSAGES/django.mo,sha256=yWjTYyrVxXxwBWgPsC7IJ9IxL_85v378To4PCEEcwuI,13811
-django/contrib/admin/locale/hi/LC_MESSAGES/django.po,sha256=FpKFToDAMsgc1aG6-CVpi5wAxhMQjkZxz_89kCiKmS4,19426
-django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo,sha256=yCUHDS17dQDKcAbqCg5q8ualaUgaa9qndORgM-tLCIw,4893
-django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po,sha256=U9rb5tPMICK50bRyTl40lvn-tvh6xL_6o7xIPkzfKi0,6378
-django/contrib/admin/locale/hr/LC_MESSAGES/django.mo,sha256=3TR3uFcd0pnkDi551WaB9IyKX1aOazH7USxqc0lA0KQ,14702
-django/contrib/admin/locale/hr/LC_MESSAGES/django.po,sha256=qcW7tvZoWZIR8l-nMRexGDD8VlrOD7l5Fah6-ecilMk,17378
-django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo,sha256=KR34lviGYh1esCkPE9xcDE1pQ_q-RxK1R2LPjnG553w,3360
-django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po,sha256=w7AqbYcLtu88R3KIKKKXyRt2gwBBBnr-ulxONWbw01I,4870
-django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo,sha256=-ParKlCmKrzENtnyHqh4a0yJE18J5yi0TP-r9jQfArI,17520
-django/contrib/admin/locale/hsb/LC_MESSAGES/django.po,sha256=9e_sWbpB1UlyORWsbjOMXvA2vtsiff1saZfhOoGhX50,18700
-django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo,sha256=nx5PHpjnFVOL_64Ui3HGTgUOZWnIUy5HF0DxHi7Dyz0,5681
-django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po,sha256=XMpmL1mYKGymExY5KXl9FBBZgMrJIGNSBBvc92y8yno,6281
-django/contrib/admin/locale/hu/LC_MESSAGES/django.mo,sha256=O_QBDJcYI_rVYvXdI3go3YA2Y1u-NOuKOwshF6Ic7bs,17427
-django/contrib/admin/locale/hu/LC_MESSAGES/django.po,sha256=Gt0lw5n8KxK0ReE0HWrMjPFOXxVGZxxZ3YX4MiV9z1M,18962
-django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo,sha256=CgDVu17Y4DDNfuzUGWyfHyAMFc4ZulYcTFPcU7Yot74,5121
-django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po,sha256=U52dESIGFfZIzUTgeNUKcLjZGGFmTGU0fSxDw2LMhiQ,5816
-django/contrib/admin/locale/hy/LC_MESSAGES/django.mo,sha256=Dcx9cOsYBfbgQgoAQoLhn_cG1d2sKGV6dag4DwnUTaY,18274
-django/contrib/admin/locale/hy/LC_MESSAGES/django.po,sha256=CnQlRZ_DUILMIqVEgUTT2sufAseEKJHHjWsYr_LAqi8,20771
-django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.mo,sha256=ttfGmyEN0-3bM-WmfCge2lG8inubMPOzFXfZrfX9sfw,5636
-django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.po,sha256=jf94wzUOMQaKSBR-77aijQXfdRAqiYSeAQopiT_8Obc,6046
-django/contrib/admin/locale/ia/LC_MESSAGES/django.mo,sha256=SRKlr8RqW8FQhzMsXdA9HNqttO3hc0xf4QdQJd4Dy8c,11278
-django/contrib/admin/locale/ia/LC_MESSAGES/django.po,sha256=pBQLQsMinRNh0UzIHBy3qEW0etUWMhFALu4-h-woFyE,15337
-django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.mo,sha256=28MiqUf-0-p3PIaongqgPQp2F3D54MLAujPslVACAls,3177
-django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.po,sha256=CauoEc8Fiowa8k6K-f9N8fQDle40qsgtXdNPDHBiudQ,4567
-django/contrib/admin/locale/id/LC_MESSAGES/django.mo,sha256=u97GjdI4jRBI2YqxZFdSA-2wUlTUlExsLerRnNEQDEw,16835
-django/contrib/admin/locale/id/LC_MESSAGES/django.po,sha256=pLW14pRvriYdkpR2aIVD_Mqu4nmcUbo6ZsrZG1s1zmU,18295
-django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo,sha256=x7BZREqK1nPL5aKuVJXcVyK2aPEePDzqJv_rcQQOeB4,5206
-django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po,sha256=16gYF3igZkmfU8B_T0AlSXBNdKDKG4mMBMJ1ZTJ0fiQ,5878
-django/contrib/admin/locale/io/LC_MESSAGES/django.mo,sha256=URiYZQZpROBedC-AkpVo0q3Tz78VfkmwN1W7j6jYpMo,12624
-django/contrib/admin/locale/io/LC_MESSAGES/django.po,sha256=y0WXY7v_9ff-ZbFasj33loG-xWlFO8ttvCB6YPyF7FQ,15562
-django/contrib/admin/locale/io/LC_MESSAGES/djangojs.mo,sha256=nMu5JhIy8Fjie0g5bT8-h42YElCiS00b4h8ej_Ie-w0,464
-django/contrib/admin/locale/io/LC_MESSAGES/djangojs.po,sha256=WLh40q6yDs-8ZG1hpz6kfMQDXuUzOZa7cqtEPDywxG4,2852
-django/contrib/admin/locale/is/LC_MESSAGES/django.mo,sha256=csD3bmz3iQgLLdSqCKOmY_d893147TvDumrpRVoRTY0,16804
-django/contrib/admin/locale/is/LC_MESSAGES/django.po,sha256=tXgb3ARXP5tPa5iEYwwiHscDGfjS5JgIV2BsUX8OnjE,18222
-django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo,sha256=Z3ujWoenX5yYTAUmHUSCvHcuV65nQmYKPv6Jo9ygx_c,5174
-django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po,sha256=YPf4XqfnpvrS9irAS8O4G0jgU5PCoQ9C-w3MoDipelk,5847
-django/contrib/admin/locale/it/LC_MESSAGES/django.mo,sha256=QJfOdbdLtflGKz1CVQlpwcyLXbf1YqqedQ0KsVlu9iQ,17443
-django/contrib/admin/locale/it/LC_MESSAGES/django.po,sha256=UZkkmGJYah8D1I2nUEPdC9ZKh9g3ErCE8Qc3-8_-5fI,19190
-django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo,sha256=kfR_8xBba-a3AJYhFWw59gg_bdrRNiwIaAzxlRqOkj0,5301
-django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po,sha256=OrNlIiIOY7iJiJlI-bMkb7cg5qmw97Sfs0zcGZuJ6P0,6157
-django/contrib/admin/locale/ja/LC_MESSAGES/django.mo,sha256=XuHILa1vd1pSQAI2u-Z-tAFb2T3_JfgDT215bPiGnM4,18553
-django/contrib/admin/locale/ja/LC_MESSAGES/django.po,sha256=4MtIoWafdzn5UMzlU1pS88933VMAPUCUFn9skh9F08Y,20037
-django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo,sha256=FVs4HxrhvIXVfZMxHq5vPSx55ggb8Mmd0F4Go47JDvA,5284
-django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po,sha256=v2P8YcTDTOWKPWgw0J45V1m5Tzpz752xmaIh_CzRYQQ,5899
-django/contrib/admin/locale/ka/LC_MESSAGES/django.mo,sha256=M3FBRrXFFa87DlUi0HDD_n7a_0IYElQAOafJoIH_i60,20101
-django/contrib/admin/locale/ka/LC_MESSAGES/django.po,sha256=abkt7pw4Kc-Y74ZCpAk_VpFWIkr7trseCtQdM6IUYpQ,23527
-django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo,sha256=GlPU3qUavvU0FXPfvCl-8KboYhDOmMsKM-tv14NqOac,5516
-django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po,sha256=jDpB9c_edcLoFPHFIogOSPrFkssOjIdxtCA_lum8UCs,6762
-django/contrib/admin/locale/kab/LC_MESSAGES/django.mo,sha256=9QKEWgr8YQV17OJ14rMusgV8b79ZgOOsX4aIFMZrEto,3531
-django/contrib/admin/locale/kab/LC_MESSAGES/django.po,sha256=cSOG_HqsNE4tA5YYDd6txMFoUul8d5UKvk77ZhaqOK0,11711
-django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.mo,sha256=nqwZHJdtjHUSFDJmC0nPNyvWcAdcoRcN3f-4XPIItvs,1844
-django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.po,sha256=tF3RH22p2E236Cv6lpIWQxtuPFeWOvJ-Ery3vBUv6co,3713
-django/contrib/admin/locale/kk/LC_MESSAGES/django.mo,sha256=f2WU3e7dOz0XXHFFe0gnCm1MAPCJ9sva2OUnWYTHOJg,12845
-django/contrib/admin/locale/kk/LC_MESSAGES/django.po,sha256=D1vF3nqANT46f17Gc2D2iGCKyysHAyEmv9nBei6NRA4,17837
-django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.mo,sha256=cBxp5pFJYUF2-zXxPVBIG06UNq6XAeZ72uRLwGeLbiE,2387
-django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.po,sha256=Y30fcDpi31Fn7DU7JGqROAiZY76iumoiW9qGAgPCCbU,4459
-django/contrib/admin/locale/km/LC_MESSAGES/django.mo,sha256=eOe9EcFPzAWrTjbGUr-m6RAz2TryC-qHKbqRP337lPY,10403
-django/contrib/admin/locale/km/LC_MESSAGES/django.po,sha256=RSxy5vY2sgC43h-9sl6eomkFvxClvH_Ka4lFiwTvc2I,17103
-django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo,sha256=Ja8PIXmw6FMREHZhhBtGrr3nRKQF_rVjgLasGPnU95w,1334
-django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po,sha256=LH4h4toEgpVBb9yjw7d9JQ8sdU0WIZD-M025JNlLXAU,3846
-django/contrib/admin/locale/kn/LC_MESSAGES/django.mo,sha256=955iPq05ru6tm_iPFVMebxwvZMtEa5_7GaFG1mPt6HU,9203
-django/contrib/admin/locale/kn/LC_MESSAGES/django.po,sha256=-4YAm0MyhS-wp4RQmo0TzWvqYqmzHFNpIBtdQlg_8Dw,16059
-django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo,sha256=kJsCOGf62XOWTKcB9AF6Oc-GqHl2LFtz-qw0spjcU_w,1847
-django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po,sha256=zzl7QZ5DfdyNWrkIqYlpUcZiTdlZXx_ktahyXqM2-0Q,5022
-django/contrib/admin/locale/ko/LC_MESSAGES/django.mo,sha256=rd728pDJK-C5vwjEbvRzwca2VGGqN0PB_Jo6wwsFoJ0,18011
-django/contrib/admin/locale/ko/LC_MESSAGES/django.po,sha256=gVhVnCT-t87yjPACa2GfQjx8hWwZKl2aj6t5F0O9aUg,19875
-django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo,sha256=NQOPmHV4Z1wMqS1WobZrNb6z-f-uPgNFh5WY6W2nLNo,5092
-django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po,sha256=FUqBIciM_sVkeIMdu0_WYtIDhIINpIDp5MElLTPTsug,5824
-django/contrib/admin/locale/ky/LC_MESSAGES/django.mo,sha256=eg-TnIzJO4h3q_FS2a1LnCs7qOf5dpNJwvRD99ZZ0GQ,20129
-django/contrib/admin/locale/ky/LC_MESSAGES/django.po,sha256=dWxU3yUAKHUGKdVJbRLkS6fJEefPBk2XM0i2INcRPms,21335
-django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.mo,sha256=VuBYBwFwIHC27GFZiHY2_4AB0cME2R0Q3juczjOs3G0,5888
-django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.po,sha256=uMk9CxL1wP45goq2093lYMza7LRuO4XbVo5RRWlsbaE,6432
-django/contrib/admin/locale/lb/LC_MESSAGES/django.mo,sha256=8GGM2sYG6GQTQwQFJ7lbg7w32SvqgSzNRZIUi9dIe6M,913
-django/contrib/admin/locale/lb/LC_MESSAGES/django.po,sha256=PZ3sL-HvghnlIdrdPovNJP6wDrdDMSYp_M1ok6dodrw,11078
-django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
-django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.po,sha256=fiMelo6K0_RITx8b9k26X1R86Ck2daQXm86FLJpzt20,2862
-django/contrib/admin/locale/lt/LC_MESSAGES/django.mo,sha256=SpaNUiaGtDlX5qngVj0dWdqNLSin8EOXXyBvRM9AnKg,17033
-django/contrib/admin/locale/lt/LC_MESSAGES/django.po,sha256=tHnRrSNG2ENVduP0sOffCIYQUn69O6zIev3Bb7PjKb0,18497
-django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo,sha256=vZtnYQupzdTjVHnWrtjkC2QKNpsca5yrpb4SDuFx0_0,5183
-django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po,sha256=dMjFClA0mh5g0aNFTyHC8nbYxwmFD0-j-7gCKD8NFnw,5864
-django/contrib/admin/locale/lv/LC_MESSAGES/django.mo,sha256=kylNfAlBxZeUzD79TIGlcv9P3zpnv0hIQIlgmNGcGls,17244
-django/contrib/admin/locale/lv/LC_MESSAGES/django.po,sha256=tGt0IdggCWU_s6MUU0-wn6nMHNUIVeoJwOUnH3ZbKwU,18671
-django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo,sha256=eGwQ-uPRiAEdmPpFjOmbTA1o7S3b6pvJL0sraqGHhGc,5677
-django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po,sha256=EE4vnRBWpfLbKzuST7OJPcJM1Qv8cjoVpJBHn4biCdY,6375
-django/contrib/admin/locale/mk/LC_MESSAGES/django.mo,sha256=wy8NuOl_ojwSrY0pWjJ7XXbPl_O0kckp618zIE0a8Hk,15611
-django/contrib/admin/locale/mk/LC_MESSAGES/django.po,sha256=DYsVd2DM6QYWWLcYnOROHN_oFilWmjxIpUMyF9RtmvM,19505
-django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo,sha256=8BkWjadml2f1lDeH-IULdxsogXSK8NpVuu293GvcQc8,4719
-django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po,sha256=u9mVSzbIgA1uRgV_L8ZOZLelyknoKFvXH0HbBurezf8,6312
-django/contrib/admin/locale/ml/LC_MESSAGES/django.mo,sha256=4Y1KAip3NNsoRc9Zz3k0YFLzes3DNRFvAXWSTBivXDk,20830
-django/contrib/admin/locale/ml/LC_MESSAGES/django.po,sha256=jL9i3kmOnoKYDq2RiF90WCc55KeA8EBN9dmPHjuUfmo,24532
-django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo,sha256=COohY0mAHAOkv1eNzLkaGZy8mimXzcDK1EgRd3tTB_E,6200
-django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po,sha256=NvN0sF_w5tkc3bND4lBtCHsIDLkwqdEPo-8wi2MTQ14,7128
-django/contrib/admin/locale/mn/LC_MESSAGES/django.mo,sha256=Lu8mM_3lJuByz4xXE7shq4nuBwE71_yh4_HIuy7KK64,14812
-django/contrib/admin/locale/mn/LC_MESSAGES/django.po,sha256=yNbv9cOeXEHPiDOKPXIbq2-cBZvUXSXCfL4TPe74x0s,18851
-django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo,sha256=H7fIPdWTK3_iuC0WRBJdfXN8zO77p7-IzTviEUVQJ2U,5228
-django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po,sha256=vJIqqVG34Zd7q8-MhTgZcXTtl6gukOSb6egt70AOyAc,5757
-django/contrib/admin/locale/mr/LC_MESSAGES/django.mo,sha256=UAxGnGliid2PTx6SMgIuHVfbCcqVvcwC4FQUWtDuSTc,468
-django/contrib/admin/locale/mr/LC_MESSAGES/django.po,sha256=TNARpu8Pfmu9fGOLUP0bRwqqDdyFmlh9rWjFspboTyc,10491
-django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
-django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.po,sha256=uGe9kH2mwrab97Ue77oggJBlrpzZNckKGRUMU1vaigs,2856
-django/contrib/admin/locale/ms/LC_MESSAGES/django.mo,sha256=Xj5v1F4_m1ZFUn42Rbep9eInxIV-NE-oA_NyfQkbp00,16840
-django/contrib/admin/locale/ms/LC_MESSAGES/django.po,sha256=ykFH-mPbv2plm2NIvKgaj3WVukJ3SquU8nQIAXuOrWA,17967
-django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.mo,sha256=9VY_MrHK-dGOIkucLCyR9psy4o5p4nHd8kN_5N2E-gY,5018
-django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.po,sha256=P4GvM17rlX1Vl-7EbCyfWVasAJBEv_RvgWEvfJqcErA,5479
-django/contrib/admin/locale/my/LC_MESSAGES/django.mo,sha256=xvlgM0vdYxZuA7kPQR7LhrLzgmyVCHAvqaqvFhKX9wY,3677
-django/contrib/admin/locale/my/LC_MESSAGES/django.po,sha256=zdUCYcyq2-vKudkYvFcjk95YUtbMDDSKQHCysmQ-Pvc,12522
-django/contrib/admin/locale/my/LC_MESSAGES/djangojs.mo,sha256=1fS9FfWi8b9NJKm3DBKETmuffsrTX-_OHo9fkCCXzpg,3268
-django/contrib/admin/locale/my/LC_MESSAGES/djangojs.po,sha256=-z1j108uoswi9YZfh3vSIswLXu1iUKgDXNdZNEA0yrA,5062
-django/contrib/admin/locale/nb/LC_MESSAGES/django.mo,sha256=viQKBFH6ospYn2sE-DokVJGGYhSqosTgbNMn5sBVnmM,16244
-django/contrib/admin/locale/nb/LC_MESSAGES/django.po,sha256=x0ANRpDhe1rxxAH0qjpPxRfccCvR73_4g5TNUdJqmrc,17682
-django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo,sha256=KwrxBpvwveERK4uKTIgh-DCc9aDLumpHQYh5YroqxhQ,4939
-django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po,sha256=ygn6a5zkHkoIYMC8Hgup8Uw1tMbZcLGgwwDu3x33M-o,5555
-django/contrib/admin/locale/ne/LC_MESSAGES/django.mo,sha256=yrm85YXwXIli7eNaPyBTtV7y3TxQuH4mokKuHdAja2A,15772
-django/contrib/admin/locale/ne/LC_MESSAGES/django.po,sha256=F8vfWKvSNngkLPZUIwik_qDYu0UAnrWepbI9Z9Iz35g,20400
-django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.mo,sha256=mJdtpLT9k4vDbN9fk2fOeiy4q720B3pLD3OjLbAjmUI,5362
-django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.po,sha256=N91RciTV1m7e8-6Ihod5U2xR9K0vrLoFnyXjn2ta098,6458
-django/contrib/admin/locale/nl/LC_MESSAGES/django.mo,sha256=Sk06I7RNlzalBB7waVFyOlWxFGlkVXejmstQDjk3kZo,17426
-django/contrib/admin/locale/nl/LC_MESSAGES/django.po,sha256=ANHtLahN6G5CW8lSDs8bJNF69Qukh_67OmYbqEfcHP8,19144
-django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo,sha256=HATZkr9m09TLZqQqxvsxTfRz7U1Qw4sjnNwu7sqUTx8,5401
-django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po,sha256=chyt-p5vexp07EjxAnYA-cf8nlNaVskLdmzYuTvEW8A,6387
-django/contrib/admin/locale/nn/LC_MESSAGES/django.mo,sha256=yAdb8Yew1ARlnAnvd5gHL7-SDzpkXedBwCSSPEzGCKk,16504
-django/contrib/admin/locale/nn/LC_MESSAGES/django.po,sha256=sFxr3UYzltQRqiotm_d5Qqtf8iLXI0LgCw_V6kYffJ0,17932
-django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo,sha256=RsDri1DmCwrby8m7mLWkFdCe6HK7MD7GindOarVYPWc,4939
-django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po,sha256=koVTt2mmdku1j7SUDRbnug8EThxXuCIF2XPnGckMi7A,5543
-django/contrib/admin/locale/os/LC_MESSAGES/django.mo,sha256=c51PwfOeLU2YcVNEEPCK6kG4ZyNc79jUFLuNopmsRR8,14978
-django/contrib/admin/locale/os/LC_MESSAGES/django.po,sha256=yugDw7iziHto6s6ATNDK4yuG6FN6yJUvYKhrGxvKmcY,18188
-django/contrib/admin/locale/os/LC_MESSAGES/djangojs.mo,sha256=0gMkAyO4Zi85e9qRuMYmxm6JV98WvyRffOKbBVJ_fLQ,3806
-django/contrib/admin/locale/os/LC_MESSAGES/djangojs.po,sha256=skiTlhgUEN8uKk7ihl2z-Rxr1ZXqu5qV4wB4q9qXVq0,5208
-django/contrib/admin/locale/pa/LC_MESSAGES/django.mo,sha256=mSBJpzzGEhkKnqAhofa2vC6MPG8t--uJhF5xvRsx_1I,8556
-django/contrib/admin/locale/pa/LC_MESSAGES/django.po,sha256=tYtU9_fGdp83ea1cWiJfa6aVG-DYo_WfvXPFZB0W7Cg,15671
-django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo,sha256=Hub-6v7AfF-tWhw53abpyhnVHo76h_xBgGIhlGIcS70,1148
-django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po,sha256=7L8D4qqhq53XG83NJUZNoM8zCCScwMwzsrzzsyO4lHY,4357
-django/contrib/admin/locale/pl/LC_MESSAGES/django.mo,sha256=rxiy2hX5Qx0borg7EcI711HPhRJZe4YZa8TbVUQJpyM,18165
-django/contrib/admin/locale/pl/LC_MESSAGES/django.po,sha256=nRDqWFkHxRbb-q7De6C69Q-YZUKKuxr9dfj-Byj2axI,19993
-django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo,sha256=5FVKTSzIqCvS4Vx_g3CHFOyJLADo3-1cJo_CrHi5xbs,5848
-django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po,sha256=WXL2uo9jp0UAPec9ZIuQYVJS_PHBLbSNGSbzuZb0MRc,6834
-django/contrib/admin/locale/pt/LC_MESSAGES/django.mo,sha256=MTFRTfUKot-0r-h7qtggPe8l_q0JPAzVF9GzdtB9600,16912
-django/contrib/admin/locale/pt/LC_MESSAGES/django.po,sha256=gzRkbl35HZ-88mlA1Bdj1Y-CUJ752pZKCUIG-NNw2os,18436
-django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo,sha256=D6-8QwX6lsACkEcYXq1tK_4W2q_NMc6g5lZQJDZRFHw,4579
-django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po,sha256=__a9WBgO_o0suf2xvMhyRk_Wkg2tfqNHmJOM5YF86sk,5118
-django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo,sha256=9ECxBALjuRB_HZsZ-fL6pS0jglCHUptpyyDb851rnuQ,17350
-django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po,sha256=S8zYpQG2_Wk1lgAIy2x8yVO5eqyF3yb_F228WMEMRmM,19832
-django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo,sha256=moTW7LW6HTDEGGpzq8JxPZ8_xNWjABPK-qkIVpgcshY,5208
-django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po,sha256=FsmX0dINSguDwJUOWZqmbbV529VeA--_iU1wINdRTUE,6073
-django/contrib/admin/locale/ro/LC_MESSAGES/django.mo,sha256=vkDRRqbQXemsY69kUYonzahIeafWAoIWEJ85aS33Hk8,14387
-django/contrib/admin/locale/ro/LC_MESSAGES/django.po,sha256=fyO2ylCXWZqU3GgHnZJtZfr5tssHMv8RUfkJFKhlvt0,17365
-django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo,sha256=voEqSN3JUgJM9vumLxE_QNPV7kA0XOoTktN7E7AYV6o,4639
-django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po,sha256=SO7FAqNnuvIDfZ_tsWRiwSv91mHx5NZHyR2VnmoYBWY,5429
-django/contrib/admin/locale/ru/LC_MESSAGES/django.mo,sha256=QJ6L9257dATWvsiBLc9QLn886vKaaEIFWglBBG5zWJo,22080
-django/contrib/admin/locale/ru/LC_MESSAGES/django.po,sha256=GFDQeIY3pDT7CbKCttBkz81AzUE1ztaUUCLd62Il_vg,23779
-django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo,sha256=RiHcf9X0qZaOjCeaJKnyNpoEV52AQ4NRe3ANgAyQ5u8,7149
-django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po,sha256=RmQxQ4zn3rJgeHYvVBcQ_svbkBklIhExAw4v8jTtYhI,8161
-django/contrib/admin/locale/sk/LC_MESSAGES/django.mo,sha256=hSHmImczSCOq8Fq1zVyZD5Sn5bhqUGBHiqM7WFMIMnw,17090
-django/contrib/admin/locale/sk/LC_MESSAGES/django.po,sha256=u4mxos-LzwOoZ0KqzYlynCFGagw9y2kQhx9nHE8svJg,18791
-django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo,sha256=-9dSuiVIPqZDSkF5arXISKP3TXbHtEveZO3vXy5ZotQ,5291
-django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po,sha256=wHjVgHIHxubOaeAuf8nBmj1vlXcPeWTGf1xMrhdVL2E,6083
-django/contrib/admin/locale/sl/LC_MESSAGES/django.mo,sha256=iqcg1DYwwDVacRAKJ3QR4fTmKQhRGXU4WkwYco9ASaA,16136
-django/contrib/admin/locale/sl/LC_MESSAGES/django.po,sha256=VeIJDh1PojyUy-4AdPcVezbQ-XVWqp04vFE_u3KU2tU,17508
-django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo,sha256=0jqGv5lgcfyxh9pdnB0Nt7e0bF2G0nO-iVWJjKwyZqI,4724
-django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po,sha256=1DEs7obfCCf-hNM2nIkMizcRcq1KoLBvngMaXLlozUo,5269
-django/contrib/admin/locale/sq/LC_MESSAGES/django.mo,sha256=2IjIa4WD6rU_v9nLXzaKfuafgoR0PIwtGKgGgg-2QDM,17607
-django/contrib/admin/locale/sq/LC_MESSAGES/django.po,sha256=qdc7lIPZ1LC5qZWC08PEFRoEsPTfXP9_M8XQYG1RvB0,18940
-django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo,sha256=LJWibyMGnQnV6YFFrMiiBkVb3fV2ZQMjn6LTmFhxGEU,5370
-django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po,sha256=szwQ63QJQttX7mLTAaDLCuodZ9nVw7OePu0hN3bgKDk,6013
-django/contrib/admin/locale/sr/LC_MESSAGES/django.mo,sha256=AMEp3NrqHBcqdJb41fQowVTkx8F9-fdg2PluKKykT9w,15816
-django/contrib/admin/locale/sr/LC_MESSAGES/django.po,sha256=ifY6hofsf9PhuDNCa38Y2gkGteylhesQzKBdvIWJcVY,19622
-django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo,sha256=sUOlK4V6-Ct0VKemqbcHPMk81jEGumujgorhpUVD6yw,6125
-django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po,sha256=GGzmoBQBaFHy9QB_PkUUIxWy0Ot-GL5BfY-jWVtNmS0,6785
-django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=8wcRn4O2WYMFJal760MvjtSPBNoDgHAEYtedg8CC7Ao,12383
-django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po,sha256=N4fPEJTtUrQnc8q1MioPZ2a7E55YXrE-JvfAcWZubfA,16150
-django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo,sha256=eE2Xu7W3ggV0lo62WghIbME2jkAVZXMUWGexwz2V0fI,5136
-django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po,sha256=YuKlU4CyKwrc0yumnUH_6tetOzBwbjTCjkhcO8VcTyU,5753
-django/contrib/admin/locale/sv/LC_MESSAGES/django.mo,sha256=h0DiLogqg6Q-ufbQxcn08U6OQE-ONI0zf9x_CW8ViG4,16935
-django/contrib/admin/locale/sv/LC_MESSAGES/django.po,sha256=h18990BRW1ZupXT_266Uu2z93jO1Bt7Aq67K4ekO0gI,18594
-django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo,sha256=xaik7riKlY_kanfHZ34gGM6bu87hNmGoJLhEfy-bPg4,5304
-django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po,sha256=B1BUjK6MANg5I7GiMCwz6Y9siAj5unMzkbG7KIuQELs,6110
-django/contrib/admin/locale/sw/LC_MESSAGES/django.mo,sha256=Mtj7jvbugkVTj0qyJ_AMokWEa2btJNSG2XrhpY0U1Mc,14353
-django/contrib/admin/locale/sw/LC_MESSAGES/django.po,sha256=ElU-s0MgtNKF_aXdo-uugBnuJIDzHqMmy1ToMDQhuD0,16419
-django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.mo,sha256=p0pi6-Zg-qsDVMDjNHO4aav3GfJ3tKKhy6MK7mPtC50,3647
-django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.po,sha256=lZFP7Po4BM_QMTj-SXGlew1hqyJApZxu0lxMP-YduHI,4809
-django/contrib/admin/locale/ta/LC_MESSAGES/django.mo,sha256=ZdtNRZLRqquwMk7mE0XmTzEjTno9Zni3mV6j4DXL4nI,10179
-django/contrib/admin/locale/ta/LC_MESSAGES/django.po,sha256=D0TCLM4FFF7K9NqUGXNFE2KfoEzx5IHcJQ6-dYQi2Eg,16881
-django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo,sha256=2-37FOw9Bge0ahIRxFajzxvMkAZL2zBiQFaELmqyhhY,1379
-django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po,sha256=Qs-D7N3ZVzpZVxXtMWKOzJfSmu_Mk9pge5W15f21ihI,3930
-django/contrib/admin/locale/te/LC_MESSAGES/django.mo,sha256=aIAG0Ey4154R2wa-vNe2x8X4fz2L958zRmTpCaXZzds,10590
-django/contrib/admin/locale/te/LC_MESSAGES/django.po,sha256=-zJYrDNmIs5fp37VsG4EAOVefgbBNl75c-Pp3RGBDAM,16941
-django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo,sha256=VozLzWQwrY-USvin5XyVPtUUKEmCr0dxaWC6J14BReo,1362
-django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po,sha256=HI8IfXqJf4I6i-XZB8ELGyp5ZNr-oi5hW9h7n_8XSaQ,3919
-django/contrib/admin/locale/tg/LC_MESSAGES/django.mo,sha256=gJfgsEn9doTT0erBK77OBDi7_0O7Rb6PF9tRPacliXU,15463
-django/contrib/admin/locale/tg/LC_MESSAGES/django.po,sha256=Wkx7Hk2a9OzZymgrt9N91OL9K5HZXTbpPBXMhyE0pjI,19550
-django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.mo,sha256=SEaBcnnKupXbTKCJchkSu_dYFBBvOTAOQSZNbCYUuHE,5154
-django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.po,sha256=CfUjLtwMmz1h_MLE7c4UYv05ZTz_SOclyKKWmVEP9Jg,5978
-django/contrib/admin/locale/th/LC_MESSAGES/django.mo,sha256=EVlUISdKOvNkGMG4nbQFzSn5p7d8c9zOGpXwoHsHNlY,16394
-django/contrib/admin/locale/th/LC_MESSAGES/django.po,sha256=OqhGCZ87VX-WKdC2EQ8A8WeXdWXu9mj6k8mG9RLZMpM,20187
-django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo,sha256=ukj5tyDor9COi5BT9oRLucO2wVTI6jZWclOM-wNpXHM,6250
-django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po,sha256=3L5VU3BNcmfiqzrAWK0tvRRVOtgR8Ceg9YIxL54RGBc,6771
-django/contrib/admin/locale/tr/LC_MESSAGES/django.mo,sha256=BDQ810gSv20dUcd147upRhzCXYOhw4jYyqsWT-dOEjA,17595
-django/contrib/admin/locale/tr/LC_MESSAGES/django.po,sha256=WAYCi2mc9qDx8OIErUNzPLu1VSEcgm5aaY2bKMEzSsw,19092
-django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo,sha256=DCICOQRNaxcM3ihteo4SQSzonao3e5SIq7dGqHIqUeE,5313
-django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po,sha256=VVcx20QjHhZW_iN7bWHB-oZ51l5uqzIk8ru16Ay2LjQ,5946
-django/contrib/admin/locale/tt/LC_MESSAGES/django.mo,sha256=ObJ8zwVLhFsS6XZK_36AkNRCeznoJJwLTMh4_LLGPAA,12952
-django/contrib/admin/locale/tt/LC_MESSAGES/django.po,sha256=VDjg5nDrLqRGXpxCyQudEC_n-6kTCIYsOl3izt1Eblc,17329
-django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.mo,sha256=Sz5qnMHWfLXjaCIHxQNrwac4c0w4oeAAQubn5R7KL84,2607
-django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.po,sha256=_Uh3yH_RXVB3PP75RFztvSzVykVq0SQjy9QtTnyH3Qk,4541
-django/contrib/admin/locale/udm/LC_MESSAGES/django.mo,sha256=2Q_lfocM7OEjFKebqNR24ZBqUiIee7Lm1rmS5tPGdZA,622
-django/contrib/admin/locale/udm/LC_MESSAGES/django.po,sha256=L4TgEk2Fm2mtKqhZroE6k_gfz1VC-_dXe39CiJvaOPE,10496
-django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
-django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.po,sha256=ZLYr0yHdMYAl7Z7ipNSNjRFIMNYmzIjT7PsKNMT6XVk,2811
-django/contrib/admin/locale/uk/LC_MESSAGES/django.mo,sha256=D-0dfr47zYAHURvoZSdX9cgZ7voCeSpL-B29nItwbxA,21364
-django/contrib/admin/locale/uk/LC_MESSAGES/django.po,sha256=aXB8kh-IAEFmQVVaKFGPaxoHPY9S9wY-3ONPlXMP2aE,23366
-django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo,sha256=_YwTcBttv3DZNYkBq4Rsl6oq30o8nDvUHPI5Yx0GaA4,5787
-django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po,sha256=4lYvm_LDX5xha4Qj1dXE5tGs4BjGPUgjigvG2n6y1S4,6993
-django/contrib/admin/locale/ur/LC_MESSAGES/django.mo,sha256=HvyjnSeLhUf1JVDy759V_TI7ygZfLaMhLnoCBJxhH_s,13106
-django/contrib/admin/locale/ur/LC_MESSAGES/django.po,sha256=BFxxLbHs-UZWEmbvtWJNA7xeuvO9wDc32H2ysKZQvF4,17531
-django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo,sha256=eYN9Q9KKTV2W0UuqRc-gg7y42yFAvJP8avMeZM-W7mw,2678
-django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po,sha256=Nj-6L6axLrqA0RHUQbidNAT33sXYfVdGcX4egVua-Pk,4646
-django/contrib/admin/locale/uz/LC_MESSAGES/django.mo,sha256=bWJujZSbu9Q4u2hcVJAkHDQCjx8Uo_Bj5gcU3CbkeLw,4610
-django/contrib/admin/locale/uz/LC_MESSAGES/django.po,sha256=3fxRPvC5_1md4LrntCTLUXVINdrHxgHOav04xabwYUg,13107
-django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.mo,sha256=LpuFvNKqNRCCiV5VyRnJoZ8gY3Xieb05YV9KakNU7o8,3783
-django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.po,sha256=joswozR3I1ijRapf50FZMzQQhI_aU2XiiSTLeSxkL64,5235
-django/contrib/admin/locale/vi/LC_MESSAGES/django.mo,sha256=coCDRhju7xVvdSaounXO5cMqCmLWICZPJth6JI3Si2c,18077
-django/contrib/admin/locale/vi/LC_MESSAGES/django.po,sha256=Q1etVmaAb1f79f4uVjbNjPkn-_3m2Spz1buNAV3y9lk,19543
-django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo,sha256=45E-fCQkq-BRLzRzsGkw1-AvWlvjL1rdsRFqfsvAq98,5302
-django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po,sha256=k87QvFnt8psnwMXXrFO6TyH6xCyXIDd_rlnWDfl2FAA,5958
-django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=C3FR5Tw6rPaShwYpY9mCGMqrZtWbPwQl_xqmwOW8H-s,16130
-django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po,sha256=VfLTTW6qCZWKEW0Br8GfvdLojQ1hcaABxXeCYj3zJN8,18142
-django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo,sha256=I8ixtVG4dWB94lhhLIhiFk1KQmvBURaFuKGs2z-0ZOE,4999
-django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po,sha256=_-9VpiJ2_ll2BCKlU_kVdZG2BeGprBFU0jnvwUac4wg,5959
-django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=kEKX-cQPRFCNkiqNs1BnyzEvJQF-EzA814ASnYPFMsw,15152
-django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.po,sha256=iH3w7Xt_MelkZefKi8F0yAWN6QGdQCJBz8VaFY4maUg,16531
-django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.mo,sha256=yFwS8aTJUAG5lN4tYLCxx-FLfTsiOxXrCEhlIA-9vcs,4230
-django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.po,sha256=C4Yk5yuYcmaovVs_CS8YFYY2iS4RGi0oNaUpTm7akeU,4724
-django/contrib/admin/migrations/0001_initial.py,sha256=zFK34hmWHrMGFVyooWug9TdVRPzbq9YtlpzMUa_-wmY,2508
-django/contrib/admin/migrations/0002_logentry_remove_auto_add.py,sha256=Fjda6T9ZALOk0ApouxbPe5Ph4RCGZigpgYEZipqFtT4,554
-django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py,sha256=OYurX3-py7fLmfuwyzhED9efg74mAut92S-NEqgBINc,539
-django/contrib/admin/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/admin/migrations/__pycache__/0001_initial.cpython-310.pyc,,
-django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-310.pyc,,
-django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-310.pyc,,
-django/contrib/admin/migrations/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/admin/models.py,sha256=2eTsW0WRQbXV1GeOPLX76RMFv6GQqIGuZs10GFT7V48,6501
-django/contrib/admin/options.py,sha256=_X0bg12YA-3x2my2oSTWag-hx5CDofsv37NjDFnzKic,98003
-django/contrib/admin/sites.py,sha256=5mIXxP2lKUuUa6bbruu-FW16pjYmbNJOu2ivg48XC0c,22473
-django/contrib/admin/static/admin/css/autocomplete.css,sha256=6-fcQdqClpGf8EpH1NxgS8YL-diGXc8CFq3Sw2I9K8k,9114
-django/contrib/admin/static/admin/css/base.css,sha256=DzDMUL1A_lAl8sX7ZnfvdRo8BN2WrmjLP_6Eu8l3vU8,20344
-django/contrib/admin/static/admin/css/changelists.css,sha256=3QPljyWfSJbLbbnPC9HBttgWmdRlkpUPeZvDtXQKI3I,6395
-django/contrib/admin/static/admin/css/dark_mode.css,sha256=ENFU_VVZojFu9JwRYA0uGiy7-CZGsATBVnFtTwISkm0,796
-django/contrib/admin/static/admin/css/dashboard.css,sha256=i2OcDTa1R_bO6aBTZ66-aRlTXl0l4sjeHfasUrfzjd0,380
-django/contrib/admin/static/admin/css/fonts.css,sha256=SnBl3KjeUZqRmZw3F0iNm1YpqFhjrNC_fNN0H2TkuYc,423
-django/contrib/admin/static/admin/css/forms.css,sha256=g6GSkl90efKzg9YRIGGTPc-G--jHXpByu4C5u-ktgbE,8944
-django/contrib/admin/static/admin/css/login.css,sha256=BdAkR--cxd5HZXDNPInv2Qgs_c305sPbPCctkUkAmDU,958
-django/contrib/admin/static/admin/css/nav_sidebar.css,sha256=FxQJSTRV8xfD3zLuVKEQdaBytBfA0zBSXfpAbpu286I,2619
-django/contrib/admin/static/admin/css/responsive.css,sha256=J7vW9K77r99E3TJPDvF8IieflOMUVMy7tXRGO2T7jMw,18854
-django/contrib/admin/static/admin/css/responsive_rtl.css,sha256=iM8FIfXLuXgurjYK0JwboVuilUg1hnaZw7wa3hx8aI0,1741
-django/contrib/admin/static/admin/css/rtl.css,sha256=tdAHk_hZTCk6N0__MuOM2MRObMT1ukGGFsMJzEYVaac,3598
-django/contrib/admin/static/admin/css/vendor/select2/LICENSE-SELECT2.md,sha256=TuDLxRNwr941hlKg-XeXIFNyntV4tqQvXioDfRFPCzk,1124
-django/contrib/admin/static/admin/css/vendor/select2/select2.css,sha256=kalgQ55Pfy9YBkT-4yYYd5N8Iobe-iWeBuzP7LjVO0o,17358
-django/contrib/admin/static/admin/css/vendor/select2/select2.min.css,sha256=FdatTf20PQr_rWg-cAKfl6j4_IY3oohFAJ7gVC3M34E,14966
-django/contrib/admin/static/admin/css/widgets.css,sha256=nBYZ4hfAm5RZDW1BI-Ioeqb3YfcJpTy11S1Ye1XYD2A,11297
-django/contrib/admin/static/admin/fonts/LICENSE.txt,sha256=Pd-b5cKP4n2tFDpdx27qJSIq0d1ok0oEcGTlbtL6QMU,11560
-django/contrib/admin/static/admin/fonts/README.txt,sha256=E4rvl9Y9cvKx2wpkrgQZjhaKfRhEUG8pNLCoZoBq-rE,214
-django/contrib/admin/static/admin/fonts/Roboto-Bold-webfont.woff,sha256=sXZ6DD5d-zpQCe_uREX_FdY2LpKFRh4Xve0Ybx6UVvA,86184
-django/contrib/admin/static/admin/fonts/Roboto-Light-webfont.woff,sha256=GIJzScf-vUuNAaqQfGfqm4ARJCB4MmskcDl4RU_fNRo,85692
-django/contrib/admin/static/admin/fonts/Roboto-Regular-webfont.woff,sha256=munWVF19fYI_ipQBDbd8Gg_3Hjcei7FY3xy5g5UWJQc,85876
-django/contrib/admin/static/admin/img/LICENSE,sha256=0RT6_zSIwWwxmzI13EH5AjnT1j2YU3MwM9j3U19cAAQ,1081
-django/contrib/admin/static/admin/img/README.txt,sha256=XqN5MlT1SIi6sdnYnKJrOiJ6h9lTIejT7nLSY-Y74pk,319
-django/contrib/admin/static/admin/img/calendar-icons.svg,sha256=gbMu26nfxZphlqKFcVOXpcv5zhv5x_Qm_P4ba0Ze84I,1094
-django/contrib/admin/static/admin/img/gis/move_vertex_off.svg,sha256=ou-ppUNyy5QZCKFYlcrzGBwEEiTDX5mmJvM8rpwC5DM,1129
-django/contrib/admin/static/admin/img/gis/move_vertex_on.svg,sha256=DgmcezWDms_3VhgqgYUGn-RGFHyScBP0MeX8PwHy_nE,1129
-django/contrib/admin/static/admin/img/icon-addlink.svg,sha256=kBtPJJ3qeQPWeNftvprZiR51NYaZ2n_ZwJatY9-Zx1Q,331
-django/contrib/admin/static/admin/img/icon-alert.svg,sha256=aXtd9PA66tccls-TJfyECQrmdWrj8ROWKC0tJKa7twA,504
-django/contrib/admin/static/admin/img/icon-calendar.svg,sha256=_bcF7a_R94UpOfLf-R0plVobNUeeTto9UMiUIHBcSHY,1086
-django/contrib/admin/static/admin/img/icon-changelink.svg,sha256=clM2ew94bwVa2xQ6bvfKx8xLtk0i-u5AybNlyP8k-UM,380
-django/contrib/admin/static/admin/img/icon-clock.svg,sha256=k55Yv6R6-TyS8hlL3Kye0IMNihgORFjoJjHY21vtpEA,677
-django/contrib/admin/static/admin/img/icon-deletelink.svg,sha256=06XOHo5y59UfNBtO8jMBHQqmXt8UmohlSMloUuZ6d0A,392
-django/contrib/admin/static/admin/img/icon-no.svg,sha256=QqBaTrrp3KhYJxLYB5E-0cn_s4A_Y8PImYdWjfQSM-c,560
-django/contrib/admin/static/admin/img/icon-unknown-alt.svg,sha256=LyL9oJtR0U49kGHYKMxmmm1vAw3qsfXR7uzZH76sZ_g,655
-django/contrib/admin/static/admin/img/icon-unknown.svg,sha256=ePcXlyi7cob_IcJOpZ66uiymyFgMPHl8p9iEn_eE3fc,655
-django/contrib/admin/static/admin/img/icon-viewlink.svg,sha256=NL7fcy7mQOQ91sRzxoVRLfzWzXBRU59cFANOrGOwWM0,581
-django/contrib/admin/static/admin/img/icon-yes.svg,sha256=_H4JqLywJ-NxoPLqSqk9aGJcxEdZwtSFua1TuI9kIcM,436
-django/contrib/admin/static/admin/img/inline-delete.svg,sha256=Ni1z8eDYBOveVDqtoaGyEMWG5Mdnt9dniiuBWTlnr5Y,560
-django/contrib/admin/static/admin/img/search.svg,sha256=HgvLPNT7FfgYvmbt1Al1yhXgmzYHzMg8BuDLnU9qpMU,458
-django/contrib/admin/static/admin/img/selector-icons.svg,sha256=0RJyrulJ_UR9aYP7Wbvs5jYayBVhLoXR26zawNMZ0JQ,3291
-django/contrib/admin/static/admin/img/sorting-icons.svg,sha256=cCvcp4i3MAr-mo8LE_h8ZRu3LD7Ma9BtpK-p24O3lVA,1097
-django/contrib/admin/static/admin/img/tooltag-add.svg,sha256=fTZCouGMJC6Qq2xlqw_h9fFodVtLmDMrpmZacGVJYZQ,331
-django/contrib/admin/static/admin/img/tooltag-arrowright.svg,sha256=GIAqy_4Oor9cDMNC2fSaEGh-3gqScvqREaULnix3wHc,280
-django/contrib/admin/static/admin/js/SelectBox.js,sha256=FLFCFiaO4KziwueL83Un_WCR0-Lf66PhVqpvnbat50s,4360
-django/contrib/admin/static/admin/js/SelectFilter2.js,sha256=ec959EpEdpiKHDFQs3sBe1TxaOHrBmpXQeksRhQb1GU,11317
-django/contrib/admin/static/admin/js/actions.js,sha256=90nO6o7754a2w8bNZOrS7EoEoh_MZEnIOJzJji1zTl8,7872
-django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js,sha256=j7CCMFCuwgMWKkaSEbpAcMBOLzTrUdY4cJ5DcZWRCTk,19379
-django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js,sha256=YjerlXCeNSN5T6ilr4ViiExQze_fS6CTLGmNAvdpqFA,8919
-django/contrib/admin/static/admin/js/autocomplete.js,sha256=OAqSTiHZnTWZzJKEvOm-Z1tdAlLjPWX9jKpYkmH0Ozo,1060
-django/contrib/admin/static/admin/js/calendar.js,sha256=vsYjQ4Nv6LPpqMVMhko8mnsv6U5EXkk5hOHhmkC5m7g,8466
-django/contrib/admin/static/admin/js/cancel.js,sha256=UEZdvvWu5s4ZH16lFfxa8UPgWXJ3i8VseK5Lcw2Kreg,884
-django/contrib/admin/static/admin/js/change_form.js,sha256=kBpCeP8J0wLfYIJhQtpjq9qdelJxNHjQLHWzXQ-dtHo,1043
-django/contrib/admin/static/admin/js/collapse.js,sha256=UONBUueHwsm5SMlG0Ufp4mlqdgu7UGimU6psKzpxbuE,1803
-django/contrib/admin/static/admin/js/core.js,sha256=AVLCrqYJOnCuLJLo0jqe0pyEKxA_4tzJ_rMcDQE1szw,5698
-django/contrib/admin/static/admin/js/filters.js,sha256=4f4AXKmsyWUWZIoEbYaEFliYbFfEZODVyYTURola2nM,966
-django/contrib/admin/static/admin/js/inlines.js,sha256=yWB-KSw_aZmVZpIitKde7imygAa36LBdqoBfB7lTvJQ,15526
-django/contrib/admin/static/admin/js/jquery.init.js,sha256=uM_Kf7EOBMipcCmuQHbyubQkycleSWDCS8-c3WevFW0,347
-django/contrib/admin/static/admin/js/nav_sidebar.js,sha256=pN6AcH7ly2eNxwmC3QBAJmzuIHXWFwaO9G6d8Obz4ls,3763
-django/contrib/admin/static/admin/js/popup_response.js,sha256=H4ppG14jfrxB1XF5xZp5SS8PapYuYou5H7uwYjHd7eI,551
-django/contrib/admin/static/admin/js/prepopulate.js,sha256=UYkWrHNK1-OWp1a5IWZdg0udfo_dcR-jKSn5AlxxqgU,1531
-django/contrib/admin/static/admin/js/prepopulate_init.js,sha256=mJIPAgn8QHji_rSqO6WKNREbpkCILFrjRCCOQ1-9SoQ,586
-django/contrib/admin/static/admin/js/urlify.js,sha256=ksu4cDd9JpFsN5cLT8BpOtg0JkkrIlWR1yr3nLlWXbI,7902
-django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt,sha256=1Nuevm8p9RaOrEWtcT8FViOsXQ3NW6ktoj1lCuASAg0,1097
-django/contrib/admin/static/admin/js/vendor/jquery/jquery.js,sha256=H-K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk,288580
-django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js,sha256=_xUj-3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej_m4,89501
-django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md,sha256=TuDLxRNwr941hlKg-XeXIFNyntV4tqQvXioDfRFPCzk,1124
-django/contrib/admin/static/admin/js/vendor/select2/i18n/af.js,sha256=IpI3uo19fo77jMtN5R3peoP0OriN-nQfPY2J4fufd8g,866
-django/contrib/admin/static/admin/js/vendor/select2/i18n/ar.js,sha256=zxQ3peSnbVIfrH1Ndjx4DrHDsmbpqu6mfeylVWFM5mY,905
-django/contrib/admin/static/admin/js/vendor/select2/i18n/az.js,sha256=N_KU7ftojf2HgvJRlpP8KqG6hKIbqigYN3K0YH_ctuQ,721
-django/contrib/admin/static/admin/js/vendor/select2/i18n/bg.js,sha256=5Z6IlHmuk_6IdZdAVvdigXnlj7IOaKXtcjuI0n0FmYQ,968
-django/contrib/admin/static/admin/js/vendor/select2/i18n/bn.js,sha256=wdQbgaxZ47TyGlwvso7GOjpmTXUKaWzvVUr_oCRemEE,1291
-django/contrib/admin/static/admin/js/vendor/select2/i18n/bs.js,sha256=g56kWSu9Rxyh_rarLSDa_8nrdqL51JqZai4QQx20jwQ,965
-django/contrib/admin/static/admin/js/vendor/select2/i18n/ca.js,sha256=DSyyAXJUI0wTp_TbFhLNGrgvgRsGWeV3IafxYUGBggM,900
-django/contrib/admin/static/admin/js/vendor/select2/i18n/cs.js,sha256=t_8OWVi6Yy29Kabqs_l1sM2SSrjUAgZTwbTX_m0MCL8,1292
-django/contrib/admin/static/admin/js/vendor/select2/i18n/da.js,sha256=tF2mvzFYSWYOU3Yktl3G93pCkf-V9gonCxk7hcA5J1o,828
-django/contrib/admin/static/admin/js/vendor/select2/i18n/de.js,sha256=5bspfcihMp8yXDwfcqvC_nV3QTbtBuQDmR3c7UPQtFw,866
-django/contrib/admin/static/admin/js/vendor/select2/i18n/dsb.js,sha256=KtP2xNoP75oWnobUrS7Ep_BOFPzcMNDt0wyPnkbIF_Q,1017
-django/contrib/admin/static/admin/js/vendor/select2/i18n/el.js,sha256=IdvD8eY_KpX9fdHvld3OMvQfYsnaoJjDeVkgbIemfn8,1182
-django/contrib/admin/static/admin/js/vendor/select2/i18n/en.js,sha256=C66AO-KOXNuXEWwhwfjYBFa3gGcIzsPFHQAZ9qSh3Go,844
-django/contrib/admin/static/admin/js/vendor/select2/i18n/es.js,sha256=IhZaIy8ufTduO2-vBrivswMCjlPk7vrk4P81pD6B0SM,922
-django/contrib/admin/static/admin/js/vendor/select2/i18n/et.js,sha256=LgLgdOkKjc63svxP1Ua7A0ze1L6Wrv0X6np-8iRD5zw,801
-django/contrib/admin/static/admin/js/vendor/select2/i18n/eu.js,sha256=rLmtP7bA_atkNIj81l_riTM7fi5CXxVrFBHFyddO-Hw,868
-django/contrib/admin/static/admin/js/vendor/select2/i18n/fa.js,sha256=fqZkE9e8tt2rZ7OrDGPiOsTNdj3S2r0CjbddVUBDeMA,1023
-django/contrib/admin/static/admin/js/vendor/select2/i18n/fi.js,sha256=KVGirhGGNee_iIpMGLX5EzH_UkNe-FOPC_0484G-QQ0,803
-django/contrib/admin/static/admin/js/vendor/select2/i18n/fr.js,sha256=aj0q2rdJN47BRBc9LqvsgxkuPOcWAbZsUFUlbguwdY0,924
-django/contrib/admin/static/admin/js/vendor/select2/i18n/gl.js,sha256=HSJafI85yKp4WzjFPT5_3eZ_-XQDYPzzf4BWmu6uXHk,924
-django/contrib/admin/static/admin/js/vendor/select2/i18n/he.js,sha256=DIPRKHw0NkDuUtLNGdTnYZcoCiN3ustHY-UMmw34V_s,984
-django/contrib/admin/static/admin/js/vendor/select2/i18n/hi.js,sha256=m6ZqiKZ_jzwzVFgC8vkYiwy4lH5fJEMV-LTPVO2Wu40,1175
-django/contrib/admin/static/admin/js/vendor/select2/i18n/hr.js,sha256=NclTlDTiNFX1y0W1Llj10-ZIoXUYd7vDXqyeUJ7v3B4,852
-django/contrib/admin/static/admin/js/vendor/select2/i18n/hsb.js,sha256=FTLszcrGaelTW66WV50u_rS6HV0SZxQ6Vhpi2tngC6M,1018
-django/contrib/admin/static/admin/js/vendor/select2/i18n/hu.js,sha256=3PdUk0SpHY-H-h62womw4AyyRMujlGc6_oxW-L1WyOs,831
-django/contrib/admin/static/admin/js/vendor/select2/i18n/hy.js,sha256=BLh0fntrwtwNwlQoiwLkdQOVyNXHdmRpL28p-W5FsDg,1028
-django/contrib/admin/static/admin/js/vendor/select2/i18n/id.js,sha256=fGJ--Aw70Ppzk3EgLjF1V_QvqD2q_ufXjnQIIyZqYgc,768
-django/contrib/admin/static/admin/js/vendor/select2/i18n/is.js,sha256=gn0ddIqTnJX4wk-tWC5gFORJs1dkgIH9MOwLljBuQK0,807
-django/contrib/admin/static/admin/js/vendor/select2/i18n/it.js,sha256=kGxtapwhRFj3u_IhY_7zWZhKgR5CrZmmasT5w-aoXRM,897
-django/contrib/admin/static/admin/js/vendor/select2/i18n/ja.js,sha256=tZ4sqdx_SEcJbiW5-coHDV8FVmElJRA3Z822EFHkjLM,862
-django/contrib/admin/static/admin/js/vendor/select2/i18n/ka.js,sha256=DH6VrnVdR8SX6kso2tzqnJqs32uCpBNyvP9Kxs3ssjI,1195
-django/contrib/admin/static/admin/js/vendor/select2/i18n/km.js,sha256=x9hyjennc1i0oeYrFUHQnYHakXpv7WD7MSF-c9AaTjg,1088
-django/contrib/admin/static/admin/js/vendor/select2/i18n/ko.js,sha256=ImmB9v7g2ZKEmPFUQeXrL723VEjbiEW3YelxeqHEgHc,855
-django/contrib/admin/static/admin/js/vendor/select2/i18n/lt.js,sha256=ZT-45ibVwdWnTyo-TqsqW2NjIp9zw4xs5So78KMb_s8,944
-django/contrib/admin/static/admin/js/vendor/select2/i18n/lv.js,sha256=hHpEK4eYSoJj_fvA2wl8QSuJluNxh-Tvp6UZm-ZYaeE,900
-django/contrib/admin/static/admin/js/vendor/select2/i18n/mk.js,sha256=PSpxrnBpL4SSs9Tb0qdWD7umUIyIoR2V1fpqRQvCXcA,1038
-django/contrib/admin/static/admin/js/vendor/select2/i18n/ms.js,sha256=NCz4RntkJZf8YDDC1TFBvK-nkn-D-cGNy7wohqqaQD4,811
-django/contrib/admin/static/admin/js/vendor/select2/i18n/nb.js,sha256=eduKCG76J3iIPrUekCDCq741rnG4xD7TU3E7Lib7sPE,778
-django/contrib/admin/static/admin/js/vendor/select2/i18n/ne.js,sha256=QQjDPQE6GDKXS5cxq2JRjk3MGDvjg3Izex71Zhonbj8,1357
-django/contrib/admin/static/admin/js/vendor/select2/i18n/nl.js,sha256=JctLfTpLQ5UFXtyAmgbCvSPUtW0fy1mE7oNYcMI90bI,904
-django/contrib/admin/static/admin/js/vendor/select2/i18n/pl.js,sha256=6gEuKYnJdf8cbPERsw-mtdcgdByUJuLf1QUH0aSajMo,947
-django/contrib/admin/static/admin/js/vendor/select2/i18n/ps.js,sha256=4J4sZtSavxr1vZdxmnub2J0H0qr1S8WnNsTehfdfq4M,1049
-django/contrib/admin/static/admin/js/vendor/select2/i18n/pt-BR.js,sha256=0DFe1Hu9fEDSXgpjPOQrA6Eq0rGb15NRbsGh1U4vEr0,876
-django/contrib/admin/static/admin/js/vendor/select2/i18n/pt.js,sha256=L5jqz8zc5BF8ukrhpI2vvGrNR34X7482dckX-IUuUpA,878
-django/contrib/admin/static/admin/js/vendor/select2/i18n/ro.js,sha256=Aadb6LV0u2L2mCOgyX2cYZ6xI5sDT9OI3V7HwuueivM,938
-django/contrib/admin/static/admin/js/vendor/select2/i18n/ru.js,sha256=bV6emVCE9lY0LzbVN87WKAAAFLUT3kKqEzn641pJ29o,1171
-django/contrib/admin/static/admin/js/vendor/select2/i18n/sk.js,sha256=MnbUcP6pInuBzTW_L_wmXY8gPLGCOcKyzQHthFkImZo,1306
-django/contrib/admin/static/admin/js/vendor/select2/i18n/sl.js,sha256=LPIKwp9gp_WcUc4UaVt_cySlNL5_lmfZlt0bgtwnkFk,925
-django/contrib/admin/static/admin/js/vendor/select2/i18n/sq.js,sha256=oIxJLYLtK0vG2g3s5jsGLn4lHuDgSodxYAWL0ByHRHo,903
-django/contrib/admin/static/admin/js/vendor/select2/i18n/sr-Cyrl.js,sha256=BoT2KdiceZGgxhESRz3W2J_7CFYqWyZyov2YktUo_2w,1109
-django/contrib/admin/static/admin/js/vendor/select2/i18n/sr.js,sha256=7EELYXwb0tISsuvL6eorxzTviMK-oedSvZvEZCMloGU,980
-django/contrib/admin/static/admin/js/vendor/select2/i18n/sv.js,sha256=c6nqUmitKs4_6AlYDviCe6HqLyOHqot2IrvJRGjj1JE,786
-django/contrib/admin/static/admin/js/vendor/select2/i18n/th.js,sha256=saDPLk-2dq5ftKCvW1wddkJOg-mXA-GUoPPVOlSZrIY,1074
-django/contrib/admin/static/admin/js/vendor/select2/i18n/tk.js,sha256=mUEGlb-9nQHvzcTYI-1kjsB7JsPRGpLxWbjrJ8URthU,771
-django/contrib/admin/static/admin/js/vendor/select2/i18n/tr.js,sha256=dDz8iSp07vbx9gciIqz56wmc2TLHj5v8o6es75vzmZU,775
-django/contrib/admin/static/admin/js/vendor/select2/i18n/uk.js,sha256=MixhFDvdRda-wj-TjrN018s7R7E34aQhRjz4baxrdKw,1156
-django/contrib/admin/static/admin/js/vendor/select2/i18n/vi.js,sha256=mwTeySsUAgqu_IA6hvFzMyhcSIM1zGhNYKq8G7X_tpM,796
-django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-CN.js,sha256=olAdvPQ5qsN9IZuxAKgDVQM-blexUnWTDTXUtiorygI,768
-django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-TW.js,sha256=DnDBG9ywBOfxVb2VXg71xBR_tECPAxw7QLhZOXiJ4fo,707
-django/contrib/admin/static/admin/js/vendor/select2/select2.full.js,sha256=ugZkER5OAEGzCwwb_4MvhBKE5Gvmc0S59MKn-dooZaI,173566
-django/contrib/admin/static/admin/js/vendor/select2/select2.full.min.js,sha256=XG_auAy4aieWldzMImofrFDiySK-pwJC7aoo9St7rS0,79212
-django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt,sha256=xnYLh4GL4QG4S1G_JWwF_AR18rY9KmrwD3kxq7PTZNw,1103
-django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js,sha256=rtvcVZex5zUbQQpBDEwPXetC28nAEksnAblw2Flt9tA,232381
-django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js,sha256=e2iDfG6V1sfGUB92i5yNqQamsMCc8An0SFzoo3vbylg,125266
-django/contrib/admin/templates/admin/404.html,sha256=zyawWu1I9IxDGBRsks6-DgtLUGDDYOKHfj9YQqPl0AA,282
-django/contrib/admin/templates/admin/500.html,sha256=rZNmFXr9POnc9TdZwD06qkY8h2W5K05vCyssrIzbZGE,551
-django/contrib/admin/templates/admin/actions.html,sha256=pTlhPi66D3Lrm2RQdAWHqUVdyJECbqx1Oj86Fkv-fPk,1245
-django/contrib/admin/templates/admin/app_index.html,sha256=X-ISFsSrON8osoS93ywjM11MLGhrcx-U0o6tJfpWRqY,389
-django/contrib/admin/templates/admin/app_list.html,sha256=ihZHIZLWNwtvmeDnsdXAVEo_mHNiM6X4CHA7y0I9YdA,1716
-django/contrib/admin/templates/admin/auth/user/add_form.html,sha256=5DL3UbNWW2rTvWrpMsxy5XcVNT6_uYv8DjDZZksiVKQ,320
-django/contrib/admin/templates/admin/auth/user/change_password.html,sha256=G-V75ZioyIY4LAMn5Wroyg5-6RxlcG3_K0x1gToxxjY,2448
-django/contrib/admin/templates/admin/base.html,sha256=qEin8aodL4df2upjWdJvanKypWYpF2JE4SUcP_waOkI,4538
-django/contrib/admin/templates/admin/base_site.html,sha256=3ckWrcAdd7Pw1hk6Zwyknab_Qb-rteV9-mXhMnfo6VI,361
-django/contrib/admin/templates/admin/change_form.html,sha256=6BAfEHMArW-0HKz9vehK34tuChl4L5A1uCLKpFAD_wA,3035
-django/contrib/admin/templates/admin/change_form_object_tools.html,sha256=C0l0BJF2HuSjIvtY-Yr-ByZ9dePFRrTc-MR-OVJD-AI,403
-django/contrib/admin/templates/admin/change_list.html,sha256=BMQtuZIsUxuK_RGjAON2d0dsB-RXsSW034MQHpcy6qI,3291
-django/contrib/admin/templates/admin/change_list_object_tools.html,sha256=-AX0bYTxDsdLtEpAEK3RFpY89tdvVChMAWPYBLqPn48,378
-django/contrib/admin/templates/admin/change_list_results.html,sha256=_beAjUTnFJTVIagZuVcf7XNz_fMseMaNyk1fRtQ-AME,1543
-django/contrib/admin/templates/admin/date_hierarchy.html,sha256=I9Nj9WJb3JM_9ZBHrg4xIFku_a59U-KoqO5yuSaqVJQ,518
-django/contrib/admin/templates/admin/delete_confirmation.html,sha256=GfcMpSIo6Xy4QWX1_oNYilY7c1C8FKSbGWiWfw61VlY,2426
-django/contrib/admin/templates/admin/delete_selected_confirmation.html,sha256=i2sUDTPuSlJqOh_JMKx5VsxOpZC9W5zD94R2XpiNPBk,2341
-django/contrib/admin/templates/admin/edit_inline/stacked.html,sha256=QfR0gASIFiLMbXa1L3FDrfVhAFHfOuOvhKDCWDXs_hM,2594
-django/contrib/admin/templates/admin/edit_inline/tabular.html,sha256=p8a0r2UmS4Hs0hsl6sKjgUxiOQxNEhn-lKZ6HthyGxI,4100
-django/contrib/admin/templates/admin/filter.html,sha256=cvjazGEln3BL_0iyz8Kcsend5WhT9y-gXKRN2kHqejU,395
-django/contrib/admin/templates/admin/includes/fieldset.html,sha256=ph3cIX0dW9t3MGB53L23w_ROvl6bbnSGO7z707R3wB4,1928
-django/contrib/admin/templates/admin/includes/object_delete_summary.html,sha256=OC7VhKQiczmi01Gt_3jyemelerSNrGyDiWghUK6xKEI,192
-django/contrib/admin/templates/admin/index.html,sha256=HKMOp0hspiIOtiXZxMlx60HDIvDd08bjyitDJkpHPIs,1845
-django/contrib/admin/templates/admin/invalid_setup.html,sha256=F5FS3o7S3l4idPrX29OKlM_azYmCRKzFdYjV_jpTqhE,447
-django/contrib/admin/templates/admin/login.html,sha256=7xkw0L9e0pmRxM9BhCaHXnzdR-zbG9hn2rOMMmrb_Cg,1896
-django/contrib/admin/templates/admin/nav_sidebar.html,sha256=CRALc3xH43rRGk3hkhV_NMsrXGEXQ-XrLvyd3yF8oAs,447
-django/contrib/admin/templates/admin/object_history.html,sha256=RgeYvBah9OdXcWQ4WMvym4JdyUajySXkR4HWMW8J0jg,2137
-django/contrib/admin/templates/admin/pagination.html,sha256=OBvC2HWFaH3wIuk6gzKSyCli51NTaW8vnJFyBOpNo_8,549
-django/contrib/admin/templates/admin/popup_response.html,sha256=Lj8dfQrg1XWdA-52uNtWJ9hwBI98Wt2spSMkO4YBjEk,327
-django/contrib/admin/templates/admin/prepopulated_fields_js.html,sha256=PShGpqQWBBVwQ86r7b-SimwJS0mxNiz8AObaiDOSfvY,209
-django/contrib/admin/templates/admin/search_form.html,sha256=7RUdIeFCCgqZDKWtq1B7-JXDEbHm7p6hd9FaoDoTfVg,1267
-django/contrib/admin/templates/admin/submit_line.html,sha256=DgxKlyJ2b8o5NVWzE47yt_2X-xnbobKjdIVK2Y7jXBU,1052
-django/contrib/admin/templates/admin/widgets/clearable_file_input.html,sha256=NWjHNdkTZMAxU5HWXrOQCReeAO5A6PXBDRWO8S9gSGI,618
-django/contrib/admin/templates/admin/widgets/foreign_key_raw_id.html,sha256=Sp46OiJ5ViQMXfSaug4UkqIiXbiGdlQ8GNEhA8kVLUo,341
-django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html,sha256=w18JMKnPKrw6QyqIXBcdPs3YJlTRtHK5HGxj0lVkMlY,54
-django/contrib/admin/templates/admin/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57
-django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html,sha256=yBjMl7QILpaIigtdrIhodKPVEWOyykjt1mrVierljI0,2096
-django/contrib/admin/templates/admin/widgets/split_datetime.html,sha256=BQ9XNv3eqtvNqZZGW38VBM2Nan-5PBxokbo2Fm_wwCQ,238
-django/contrib/admin/templates/admin/widgets/url.html,sha256=Tf7PwdoKAiimfmDTVbWzRVxxUeyfhF0OlsuiOZ1tHgI,218
-django/contrib/admin/templates/registration/logged_out.html,sha256=PuviqzJh7C6SZJl9yKZXDcxxqXNCTDVfRuEpqvwJiPE,425
-django/contrib/admin/templates/registration/password_change_done.html,sha256=jiKInSGT2igaUrCxaA2DsDdD3L8UpNoS2Hq0hQpcyOk,697
-django/contrib/admin/templates/registration/password_change_form.html,sha256=mwSrzqkGc6tkqpwUDha6X8yb4z6DHC659kSQryeupLo,2275
-django/contrib/admin/templates/registration/password_reset_complete.html,sha256=_fc5bDeYBaI5fCUJZ0ZFpmOE2CUqlbk3npGk63uc_Ks,417
-django/contrib/admin/templates/registration/password_reset_confirm.html,sha256=liNee4VBImIVbKqG4llm597x925Eo2m746VnjoFe06s,1366
-django/contrib/admin/templates/registration/password_reset_done.html,sha256=SQsksjWN8vPLpvtFYPBFMMqZtLeiB4nesPq2VxpB3Y8,588
-django/contrib/admin/templates/registration/password_reset_email.html,sha256=rqaoGa900-rsUasaGYP2W9nBd6KOGZTyc1PsGTFozHo,612
-django/contrib/admin/templates/registration/password_reset_form.html,sha256=VkjUrp7hboZAAErAINl42vecYwORxOVG4SOmIJ8RF-E,869
-django/contrib/admin/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/admin/templatetags/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/admin/templatetags/__pycache__/admin_list.cpython-310.pyc,,
-django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-310.pyc,,
-django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-310.pyc,,
-django/contrib/admin/templatetags/__pycache__/base.cpython-310.pyc,,
-django/contrib/admin/templatetags/__pycache__/log.cpython-310.pyc,,
-django/contrib/admin/templatetags/admin_list.py,sha256=oKnqZgQrUlMIeSDeEKKFVtLyuTzszpFgMfPTV1M2Ggk,18492
-django/contrib/admin/templatetags/admin_modify.py,sha256=3t6rainlP3KHTb0OK1Pkr0TlB0PhZ8IC7O8HnRzijMw,4981
-django/contrib/admin/templatetags/admin_urls.py,sha256=GaDOb10w0kPIPYNvlwEaAIqhKvLKpHQDqYBVpOQhXQU,1926
-django/contrib/admin/templatetags/base.py,sha256=SyI_Dwh5OvtdP0DaPNehpvjgZknlJmrucck5tF3eUHY,1474
-django/contrib/admin/templatetags/log.py,sha256=3MT5WKsac8S5H1J2kkM-gasYc9faF91b95TEt3y8E-k,2167
-django/contrib/admin/tests.py,sha256=m4gJTq5xfHo2FTGDmTj-6HXvDLh7bI20C5Ub0i1T_bw,8525
-django/contrib/admin/utils.py,sha256=CktOSINIB7jxqT9jWvssvS5o80tYUzUc4e-iFYEMSKc,20169
-django/contrib/admin/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/admin/views/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/admin/views/__pycache__/autocomplete.cpython-310.pyc,,
-django/contrib/admin/views/__pycache__/decorators.cpython-310.pyc,,
-django/contrib/admin/views/__pycache__/main.cpython-310.pyc,,
-django/contrib/admin/views/autocomplete.py,sha256=yDp5k-zICP16x-EXY_4ntPX3HewTzcPDLQWQlaHbYEs,4316
-django/contrib/admin/views/decorators.py,sha256=4ndYdYoPLhWsdutME0Lxsmcf6UFP5Z2ou3_pMjgNbw8,639
-django/contrib/admin/views/main.py,sha256=2y45kvfecNj_NEOWtFKs4BSIQkClE65Fb2Tz1PJTsFc,23813
-django/contrib/admin/widgets.py,sha256=YiOgl5InGOJTEspprZCSvlLWPsdgn2n8YtDZMzYaJjQ,19169
-django/contrib/admindocs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/admindocs/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/admindocs/__pycache__/apps.cpython-310.pyc,,
-django/contrib/admindocs/__pycache__/middleware.cpython-310.pyc,,
-django/contrib/admindocs/__pycache__/urls.cpython-310.pyc,,
-django/contrib/admindocs/__pycache__/utils.cpython-310.pyc,,
-django/contrib/admindocs/__pycache__/views.cpython-310.pyc,,
-django/contrib/admindocs/apps.py,sha256=FgDGkvhRkMuGvHWxfnt9NNu6NkLwtkj_JGZz0WHj3FU,471
-django/contrib/admindocs/locale/af/LC_MESSAGES/django.mo,sha256=MrncgyILquCzFENxkWfJdzauVt6m3yPnQc1sDR4bCMg,2421
-django/contrib/admindocs/locale/af/LC_MESSAGES/django.po,sha256=yHYO9ZMBSGQLiSxd9PLzzNY7GT518wb7M-JAzTjSbw8,5392
-django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo,sha256=MwAJ0TMsgRN4wrwlhlw3gYCfZK5IKDzNPuvjfJS_Eug,7440
-django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po,sha256=KSmZCjSEizBx5a6yN_u0FPqG5QoXsTV9gdJkqWC8xC8,8052
-django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=lW-fKcGwnRtdpJLfVw9i1HiM25TctVK0oA0bGV7yAzU,7465
-django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.po,sha256=c8LOJTCkHd1objwj6Xqh0wF3LwkLJvWg9FIWSWWMI-I,7985
-django/contrib/admindocs/locale/ast/LC_MESSAGES/django.mo,sha256=d4u-2zZXnnueWm9CLSnt4TRWgZk2NMlrA6gaytJ2gdU,715
-django/contrib/admindocs/locale/ast/LC_MESSAGES/django.po,sha256=TUkc-Hm4h1kD0NKyndteW97jH6bWcJMFXUuw2Bd62qo,4578
-django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo,sha256=oDigGRWoeAjZ4Z2LOrRToycqKjwwV3pjGl1LmedJpwQ,1835
-django/contrib/admindocs/locale/az/LC_MESSAGES/django.po,sha256=MUqRjD4VeiTQluNvnpCbGfwdd8Lw_V_lrxeW-k9ytVQ,5100
-django/contrib/admindocs/locale/be/LC_MESSAGES/django.mo,sha256=VZl0yvgbo0jwQpf-s472jagbUj83A3twnxddQGwGW5c,8163
-django/contrib/admindocs/locale/be/LC_MESSAGES/django.po,sha256=Z8ZtS_t5Tc7iy1p4TTrsKZqiMJl94f1jiTWuv1sep3A,8728
-django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo,sha256=iLkCZ9SUrxFbVuPBiPUajfPYGL928x9NryBtoiaZqss,8236
-django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po,sha256=1OlWLLvowOMsnrZ24R_yoXWuE1RpcLHSpIFpfmIB304,8983
-django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo,sha256=NOKVcE8id9G1OctSly4C5lm64CgEF8dohX-Pdyt4kCM,3794
-django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po,sha256=6M7LjIEjvDTjyraxz70On_TIsgqJPLW7omQ0Fz_zyfQ,6266
-django/contrib/admindocs/locale/br/LC_MESSAGES/django.mo,sha256=UsPTado4ZNJM_arSMXyuBGsKN-bCHXQZdFbh0GB3dtg,1571
-django/contrib/admindocs/locale/br/LC_MESSAGES/django.po,sha256=SHOxPSgozJbOkm8u5LQJ9VmL58ZSBmlxfOVw1fAGl2s,5139
-django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo,sha256=clvhu0z3IF5Nt0tZ85hOt4M37pnGEWeIYumE20vLpsI,1730
-django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po,sha256=1-OrVWFqLpeXQFfh7JNjJtvWjVww7iB2s96dcSgLy90,5042
-django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo,sha256=nI2ctIbZVrsaMbJQGIHQCjwqJNTnH3DKxwI2dWR6G_w,6650
-django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po,sha256=hPjkw0bkoUu-yKU8XYE3ji0NG4z5cE1LGonYPJXeze4,7396
-django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo,sha256=dJ-3fDenE42f6XZFc-yrfWL1pEAmSGt2j1eWAyy-5OQ,6619
-django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po,sha256=uU4n9PsiI96O0UpJzL-inVzB1Kx7OB_SbLkjrFLuyVA,7227
-django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo,sha256=sYeCCq0CMrFWjT6rKtmFrpC09OEFpYLSI3vu9WtpVTY,5401
-django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po,sha256=GhdikiXtx8Aea459uifQtBjHuTlyUeiKu0_rR_mDKyg,6512
-django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo,sha256=vmsIZeMIVpLkSdJNS0G6alAmBBEtLDBLnOd-P3dSOAs,6446
-django/contrib/admindocs/locale/da/LC_MESSAGES/django.po,sha256=bSoTGPcE7MdRfAtBybZT9jsuww2VDH9t5CssaxSs_GU,7148
-django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo,sha256=ReSz0aH1TKT6AtP13lWoONnwNM2OGo4jK9fXJlo75Hc,6567
-django/contrib/admindocs/locale/de/LC_MESSAGES/django.po,sha256=tVkDIPF_wYb_KaJ7PF9cZyBJoYu6RpznoM9JIk3RYN4,7180
-django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.mo,sha256=K_QuInKk1HrrzQivwJcs_2lc1HreFj7_R7qQh3qMTPY,6807
-django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.po,sha256=flF1D0gfTScuC_RddC9njLe6RrnqnksiRxwODVA9Vqw,7332
-django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo,sha256=1x0sTZwWbGEURyRaSn4ONvTPXHwm7XemNlcun9Nm1QI,8581
-django/contrib/admindocs/locale/el/LC_MESSAGES/django.po,sha256=GebfJfW0QPzAQyBKz1Km9a3saCpAWT7d_Qe2nCBvGn4,9320
-django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/admindocs/locale/en/LC_MESSAGES/django.po,sha256=pEypE71l-Ude2e3XVf0tkBpGx6BSYNqBagWnSYmEbxI,10688
-django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.mo,sha256=BQ54LF9Tx88m-pG_QVz_nm_vqvoy6pVJzL8urSO4l1Q,486
-django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.po,sha256=ho7s1uKEs9FGooyZBurvSjvFz1gDSX6R4G2ZKpF1c9Q,5070
-django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo,sha256=xKGbswq1kuWCbn4zCgUQUb58fEGlICIOr00oSdCgtU4,1821
-django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po,sha256=No09XHkzYVFBgZqo7bPlJk6QD9heE0oaI3JmnrU_p24,4992
-django/contrib/admindocs/locale/eo/LC_MESSAGES/django.mo,sha256=114OOVg9hP0H0UU2aQngCm0wE7zEEAp7QFMupOuWCfQ,6071
-django/contrib/admindocs/locale/eo/LC_MESSAGES/django.po,sha256=h8P3lmvBaJ8J2xiytReJvI8iGK0gCe-LPK27kWxSNKI,6799
-django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo,sha256=wVt9I5M6DGKZFhPhYuS2yKRGVzSROthx98TFiJvJA80,6682
-django/contrib/admindocs/locale/es/LC_MESSAGES/django.po,sha256=F72OFWbIZXvopNMzy7eIibNKc5EM0jsYgbN4PobD6tc,7602
-django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo,sha256=mZ7OKAmlj2_FOabKsEiWycxiKLSLCPFldponKNxINjs,6658
-django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po,sha256=deaOq0YMCb1B1PHWYUbgUrQsyXFutn4wQ2BAXiyzugA,7257
-django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.mo,sha256=KFjQyWtSxH_kTdSJ-kNUDAFt3qVZI_3Tlpg2pdkvJfs,6476
-django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.po,sha256=dwrTVjYmueLiVPu2yiJ_fkFF8ZeRntABoVND5H2WIRI,7038
-django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo,sha256=3hZiFFVO8J9cC624LUt4lBweqmpgdksRtvt2TLq5Jqs,1853
-django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po,sha256=gNmx1QTbmyMxP3ftGXGWJH_sVGThiSe_VNKkd7M9jOY,5043
-django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.mo,sha256=sMwJ7t5GqPF496w-PvBYUneZ9uSwmi5jP-sWulhc6BM,6663
-django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.po,sha256=ZOcE0f95Q6uD9SelK6bQlKtS2c3JX9QxNYCihPdlM5o,7201
-django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo,sha256=JQHVKehV0sxNaBQRqbsN-Of22CMV70bQ9TUId3QDudY,6381
-django/contrib/admindocs/locale/et/LC_MESSAGES/django.po,sha256=qrS3cPEy16hEi1857jvqsmr9zHF9_AkkJUw4mKimg98,7096
-django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo,sha256=WHgK7vGaqjO4MwjBkWz2Y3ABPXCqfnwSGelazRhOiuo,6479
-django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po,sha256=718XgJN7UQcHgE9ku0VyFp7Frs-cvmCTO1o-xS5kpqc,7099
-django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo,sha256=Qrkrb_CHPGymnXBoBq5oeTs4W54R6nLz5hLIWH63EHM,7499
-django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po,sha256=L-rxiKqUmlQgrPTLQRaS50woZWB9JuEamJpgDpLvIXw,8251
-django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo,sha256=SzuPvgeiaBwABvkJbOoTHsbP7juAuyyMWAjENr50gYk,6397
-django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po,sha256=jn4ZMVQ_Gh6I-YLSmBhlyTn5ICP5o3oj7u0VKpV2hnI,6972
-django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo,sha256=dD92eLXIDeI-a_BrxX1G49qRwLS4Vt56bTP9cha5MeE,6755
-django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po,sha256=hiUeHTul4Z3JWmkClGZmD5Xn4a1Tj1A5OLRfKU5Zdmo,7329
-django/contrib/admindocs/locale/fy/LC_MESSAGES/django.mo,sha256=_xVO-FkPPoTla_R0CzktpRuafD9fuIP_G5N-Q08PxNg,476
-django/contrib/admindocs/locale/fy/LC_MESSAGES/django.po,sha256=b3CRH9bSUl_jjb9s51RlvFXp3bmsmuxTfN_MTmIIVNA,5060
-django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo,sha256=PkY5sLKd7gEIE2IkuuNJXP5RmjC-D4OODRv6KCCUDX8,1940
-django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po,sha256=-l6VME96KR1KKNACVu7oHzlhCrnkC1PaJQyskOUqOvk,5211
-django/contrib/admindocs/locale/gd/LC_MESSAGES/django.mo,sha256=k5-Ov9BkwYHZ_IvIxQdHKVBdOUN7kWGft1l7w5Scd5o,6941
-django/contrib/admindocs/locale/gd/LC_MESSAGES/django.po,sha256=FyvfRNkSrEZo8x1didB6nFHYD54lZfKSoAGcwJ2wLso,7478
-django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo,sha256=CYtHrSyH_Lw0YxmmmndEnMPU-cw5TMr-8NHUjz6v7JM,2265
-django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po,sha256=0S2CJju3EIiEp6kqJIn0Jl1IyRAg2-5ovYMOW0YRtVA,5188
-django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo,sha256=mJKr2rC_1OWQpRaRCecnz01YDEu5APFhJHqRHgGQxXA,6743
-django/contrib/admindocs/locale/he/LC_MESSAGES/django.po,sha256=sYlIetORzAXaKk7DAhr-6J0TGucV7RsOftT9Zilz6yE,7427
-django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo,sha256=sZhObIxqrmFu5Y-ZOQC0JGM3ly4IVFr02yqOOOHnDag,2297
-django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po,sha256=X6UfEc6q0BeaxVP_C4priFt8irhh-YGOUUzNQyVnEYY,5506
-django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo,sha256=fMsayjODNoCdbpBAk9GHtIUaGJGFz4sD9qYrguj-BQA,2550
-django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po,sha256=qi2IB-fBkGovlEz2JAQRUNE54MDdf5gjNJWXM-dIG1s,5403
-django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.mo,sha256=4CbZ95VHJUg3UNt-FdzPtUtHJLralgnhadz-evigiFA,6770
-django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.po,sha256=ty8zWmqY160ZpSbt1-_2iY2M4RIL7ksh5-ggQGc_TO8,7298
-django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo,sha256=ATEt9wE2VNQO_NMcwepgxpS7mYXdVD5OySFFPWpnBUA,6634
-django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po,sha256=3XKQrlonyLXXpU8xeS1OLXcKmmE2hiBoMJN-QZ3k82g,7270
-django/contrib/admindocs/locale/ia/LC_MESSAGES/django.mo,sha256=KklX2loobVtA6PqHOZHwF1_A9YeVGlqORinHW09iupI,1860
-django/contrib/admindocs/locale/ia/LC_MESSAGES/django.po,sha256=Z7btOCeARREgdH4CIJlVob_f89r2M9j55IDtTLtgWJU,5028
-django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo,sha256=2HZrdwFeJV4Xk2HIKsxp_rDyBrmxCuRb92HtFtW8MxE,6343
-django/contrib/admindocs/locale/id/LC_MESSAGES/django.po,sha256=O01yt7iDXvEwkebUxUlk-vCrLR26ebuqI51x64uqFl4,7041
-django/contrib/admindocs/locale/io/LC_MESSAGES/django.mo,sha256=5t9Vurrh6hGqKohwsZIoveGeYCsUvRBRMz9M7k9XYY8,464
-django/contrib/admindocs/locale/io/LC_MESSAGES/django.po,sha256=SVZZEmaS1WbXFRlLLGg5bzUe09pXR23TeJtHUbhyl0w,5048
-django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo,sha256=pEr-_MJi4D-WpNyFaQe3tVKVLq_9V-a4eIF18B3Qyko,1828
-django/contrib/admindocs/locale/is/LC_MESSAGES/django.po,sha256=-mD5fFnL6xUqeW4MITzm8Lvx6KXq4C9DGsEM9kDluZ8,5045
-django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo,sha256=AzCkkJ8x-V38XSOdOG2kMSUujcn0mD8TIvdAeNT6Qcw,6453
-django/contrib/admindocs/locale/it/LC_MESSAGES/django.po,sha256=SUsGtCKkCVoj5jaM6z_-JQR8kv8W4Wv_OE26hpOb96s,7171
-django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo,sha256=KoPwCbH9VlKoP_7zTEjOzPsHZ7jVWl2grQRckQmshw4,7358
-django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po,sha256=6ZTqM2qfBS_j5aLH52yJPYW4e4X5MqiQFdqV1fmEQGg,8047
-django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo,sha256=w2cHLI1O3pVt43H-h71cnNcjNNvDC8y9uMYxZ_XDBtg,4446
-django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po,sha256=omKVSzNA3evF5Mk_Ud6utHql-Do7s9xDzCVQGQA0pSg,6800
-django/contrib/admindocs/locale/kab/LC_MESSAGES/django.mo,sha256=XTuWnZOdXhCFXEW4Hp0zFtUtAF0wJHaFpQqoDUTWYGw,1289
-django/contrib/admindocs/locale/kab/LC_MESSAGES/django.po,sha256=lQWewMZncWUvGhpkgU_rtwWHcgAyvhIkrDfjFu1l-d8,4716
-django/contrib/admindocs/locale/kk/LC_MESSAGES/django.mo,sha256=mmhLzn9lo4ff_LmlIW3zZuhE77LoSUfpaMMMi3oyi38,1587
-django/contrib/admindocs/locale/kk/LC_MESSAGES/django.po,sha256=72sxLw-QDSFnsH8kuzeQcV5jx7Hf1xisBmxI8XqSCYw,5090
-django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo,sha256=Fff1K0qzialXE_tLiGM_iO5kh8eAmQhPZ0h-eB9iNOU,1476
-django/contrib/admindocs/locale/km/LC_MESSAGES/django.po,sha256=E_CaaYc4GqOPgPh2t7iuo0Uf4HSQQFWAoxSOCG-uEGU,4998
-django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo,sha256=lisxE1zzW-Spdm7hIzXxDAfS7bM-RdrAG_mQVwz9WMU,1656
-django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po,sha256=u6JnB-mYoYWvLl-2pzKNfeNlT1s6A2I3lRi947R_0yA,5184
-django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo,sha256=nVBVLfXUlGQCeF2foSQ2kksBmR3KbweXdbD6Kyq-PrU,6563
-django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po,sha256=y2YjuXM3p0haXrGpxRtm6I84o75TQaMeT4xbHCg7zOM,7342
-django/contrib/admindocs/locale/ky/LC_MESSAGES/django.mo,sha256=HEJo4CLoIOWpK-MPcTqLhbNMA8Mt3totYN1YbJ_SNn4,7977
-django/contrib/admindocs/locale/ky/LC_MESSAGES/django.po,sha256=VaSXjz8Qlr2EI8f12gtziN7yA7IWsaVoEzL3G6dERXs,8553
-django/contrib/admindocs/locale/lb/LC_MESSAGES/django.mo,sha256=N0hKFuAdDIq5clRKZirGh4_YDLsxi1PSX3DVe_CZe4k,474
-django/contrib/admindocs/locale/lb/LC_MESSAGES/django.po,sha256=B46-wRHMKUMcbvMCdojOCxqIVL5qVEh4Czo20Qgz6oU,5058
-django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo,sha256=KOnpaVeomKJIHcVLrkeRVnaqQHzFdYM_wXZbbqxWs4g,6741
-django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po,sha256=-uzCS8193VCZPyhO8VOi11HijtBG9CWVKStFBZSXfI4,7444
-django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo,sha256=5PAE_peuqlRcc45pm6RsSqnBpG-o8OZpfdt2aasYM2w,6449
-django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po,sha256=_mFvAQT1ZVBuDhnWgKY3bVQUWA8DoEf-HFAEsMfkGuU,7085
-django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo,sha256=8H9IpRASM7O2-Ql1doVgM9c4ybZ2KcfnJr12PpprgP4,8290
-django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po,sha256=Uew7tEljjgmslgfYJOP9JF9ELp6NbhkZG_v50CZgBg8,8929
-django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo,sha256=bm4tYwcaT8XyPcEW1PNZUqHJIds9CAq3qX_T1-iD4k4,6865
-django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po,sha256=yNINX5M7JMTbYnFqQGetKGIXqOjGJtbN2DmIW9BKQ_c,8811
-django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo,sha256=KqdcvSpqmjRfA8M4nGB9Cnu9Auj4pTu9aH07XtCep3I,7607
-django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po,sha256=PGhlnzDKyAIRzaPCbNujpxSpf_JaOG66LK_NMlnZy6I,8316
-django/contrib/admindocs/locale/mr/LC_MESSAGES/django.mo,sha256=LDGC7YRyVBU50W-iH0MuESunlRXrNfNjwjXRCBdfFVg,468
-django/contrib/admindocs/locale/mr/LC_MESSAGES/django.po,sha256=5cUgPltXyS2Z0kIKF5ER8f5DuBhwmAINJQyfHj652d0,5052
-django/contrib/admindocs/locale/ms/LC_MESSAGES/django.mo,sha256=vgoSQlIQeFWaVfJv3YK9_0FOywWwxLhWGICKBdxcqJY,6557
-django/contrib/admindocs/locale/ms/LC_MESSAGES/django.po,sha256=Qy_NjgqwEwLGk4oaHB4Np3dVbPeCK2URdI73S73IZLE,7044
-django/contrib/admindocs/locale/my/LC_MESSAGES/django.mo,sha256=AsdUmou0FjCiML3QOeXMdbHiaSt2GdGMcEKRJFonLOQ,1721
-django/contrib/admindocs/locale/my/LC_MESSAGES/django.po,sha256=c75V-PprKrWzgrHbfrZOpm00U_zZRzxAUr2U_j8MF4w,5189
-django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo,sha256=qlzN0-deW2xekojbHi2w6mYKeBe1Cf1nm8Z5FVrmYtA,6308
-django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po,sha256=a60vtwHJXhjbRAtUIlO0w3XfQcQ0ljwmwFG3WbQ7PNo,6875
-django/contrib/admindocs/locale/ne/LC_MESSAGES/django.mo,sha256=fWPAUZOX9qrDIxGhVVouJCVDWEQLybZ129wGYymuS-c,2571
-django/contrib/admindocs/locale/ne/LC_MESSAGES/django.po,sha256=wb8pCm141YfGSHVW84FnAvsKt5KnKvzNyzGcPr-Wots,5802
-django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo,sha256=nZwZekyuJi9U8WhJHasdQ05O1Qky8kJzj3i6c4lj3rw,6463
-django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po,sha256=aP59hIiCQwGCKyHnoJXYJIChzYMbNFlb2IotTX4WBwU,7188
-django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo,sha256=tIOU1WrHkAfxD6JBpdakiMi6pVzzvIg0jun6gii-D08,6299
-django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po,sha256=oekYY3xjjM2sPnHv_ZXxAti1ySPF-HxLrvLLk7Izibk,6824
-django/contrib/admindocs/locale/os/LC_MESSAGES/django.mo,sha256=zSQBgSj4jSu5Km0itNgDtbkb1SbxzRvQeZ5M9sXHI8k,2044
-django/contrib/admindocs/locale/os/LC_MESSAGES/django.po,sha256=hZlMmmqfbGmoiElGbJg7Fp791ZuOpRFrSu09xBXt6z4,5215
-django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo,sha256=yFeO0eZIksXeDhAl3CrnkL1CF7PHz1PII2kIxGA0opQ,1275
-django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po,sha256=DA5LFFLOXHIJIqrrnj9k_rqL-wr63RYX_i-IJFhBuc0,4900
-django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo,sha256=DHxRNP6YK8qocDqSd2DZg7n-wPp2hJSbjNBLFti7U8o,6633
-django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po,sha256=mRjleE2-9r9TfseHWeyjvRwzBZP_t2LMvihq8n_baU8,7575
-django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo,sha256=WcXhSlbGdJgVMvydkPYYee7iOQ9SYdrLkquzgIBhVWU,6566
-django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po,sha256=J98Hxa-ApyzRevBwcAldK9bRYbkn5DFw3Z5P7SMEwx0,7191
-django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo,sha256=L8t589rbg4vs4HArLpgburmMufZ6BTuwxxkv1QUetBA,6590
-django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po,sha256=EG4xELZ8emUIWB78cw8gFeiqTiN9UdAuEaXHyPyNtIE,7538
-django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo,sha256=9K8Sapn6sOg1wtt2mxn7u0cnqPjEHH70qjwM-XMPzNA,6755
-django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po,sha256=b4AsPjWBYHQeThAtLP_TH4pJitwidtoPNkJ7dowUuRg,7476
-django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo,sha256=9pIPv2D0rq29vrBNWZENM_SOdNpaPidxmgT20hWtBis,8434
-django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po,sha256=BTlxkS4C0DdfC9QJCegXwi5ejfG9pMsAdfy6UJzec3s,9175
-django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo,sha256=GtiqSwQxKsrC-HBexRMuV3qQhZa8vJeukTpeJdXxsz4,6639
-django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po,sha256=45J2eddF99_xWbWUoUgQ5NrawMYNreUWpeyXHF6KjsI,7339
-django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo,sha256=FMg_s9ZpeRD42OsSF9bpe8pRQ7wP7-a9WWnaVliqXpU,6508
-django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po,sha256=JWO_WZAwBpXw-4FoB7rkWXGhi9aEVq1tH2fOC69rcgg,7105
-django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo,sha256=XvNDzCc3-Hh5Pz7SHhG8zCT_3dtqGzBLkDqhim4jJpc,6551
-django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po,sha256=0GZvLpxbuYln7GrTsFyzgjIleSw6Z9IRSPgAWWdx6Eo,7165
-django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo,sha256=PyE8DXRYELzSs4RWh1jeADXOPrDEN3k-nLr8sbM1Ssw,3672
-django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po,sha256=ri7v9WHXORY-3Dl-YDKGsCFfQzH-a5y8t1vT6yziIyo,6108
-django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=au90IT43VR162L2jEsYqhRpso2dvOjpCPSCFiglokTc,1932
-django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po,sha256=tJ4tHLJj0tDaVZba3WIkI0kg95_jEYWTmqXD0rFb6T8,5140
-django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo,sha256=5i9qxo9V7TghSIpKCOw5PpITYYHMP-0NhFivwc-w0yw,6394
-django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po,sha256=WhABV5B-rhBly6ueJPOMsIBjSiw7i1yCZUQsXWE_jV4,7137
-django/contrib/admindocs/locale/sw/LC_MESSAGES/django.mo,sha256=pyJfGL7UdPrJAVlCB3YimXxTjTfEkoZQWX-CSpDkcWc,1808
-django/contrib/admindocs/locale/sw/LC_MESSAGES/django.po,sha256=SIywrLX1UGx4OiPxoxUYelmQ1YaY2LMa3dxynGQpHp8,4929
-django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo,sha256=8SjQ9eGGyaZGhkuDoZTdtYKuqcVyEtWrJuSabvNRUVM,1675
-django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po,sha256=k593yzVqpSQOsdpuF-rdsSLwKQU8S_QFMRpZXww__1A,5194
-django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo,sha256=eAzNpYRy_G1erCcKDAMnJC4809ITRHvJjO3vpyAC_mk,1684
-django/contrib/admindocs/locale/te/LC_MESSAGES/django.po,sha256=oDg_J8JxepFKIe5m6lDKVC4YWQ_gDLibgNyQ3508VOM,5204
-django/contrib/admindocs/locale/tg/LC_MESSAGES/django.mo,sha256=jSMmwS6F_ChDAZDyTZxRa3YuxkXWlO-M16osP2NLRc0,7731
-django/contrib/admindocs/locale/tg/LC_MESSAGES/django.po,sha256=mewOHgRsFydk0d5IY3jy3rOWa6uHdatlSIvFNZFONsc,8441
-django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo,sha256=bHK49r45Q1nX4qv0a0jtDja9swKbDHHJVLa3gM13Cb4,2167
-django/contrib/admindocs/locale/th/LC_MESSAGES/django.po,sha256=_GMgPrD8Zs0lPKQOMlBmVu1I59yXSV42kfkrHzeiehY,5372
-django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo,sha256=L1iBsNGqqfdNkZZmvnnBB-HxogAgngwhanY1FYefveE,6661
-django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po,sha256=D4vmznsY4icyKLXQUgAL4WZL5TOUZYVUSCJ4cvZuFg8,7311
-django/contrib/admindocs/locale/tt/LC_MESSAGES/django.mo,sha256=pQmAQOPbrBVzBqtoQ0dsFWFwC6LxA5mQZ9QPqL6pSFw,1869
-django/contrib/admindocs/locale/tt/LC_MESSAGES/django.po,sha256=NCLv7sSwvEficUOSoMJlHGqjgjYvrvm2V3j1Gkviw80,5181
-django/contrib/admindocs/locale/udm/LC_MESSAGES/django.mo,sha256=hwDLYgadsKrQEPi9HiuMWF6jiiYUSy4y-7PVNJMaNpY,618
-django/contrib/admindocs/locale/udm/LC_MESSAGES/django.po,sha256=29fpfn4p8KxxrBdg4QB0GW_l8genZVV0kYi50zO-qKs,5099
-django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo,sha256=G-3yCDj2jK7ZTu80YXGJ_ZR1E7FejbLxTFe866G4Pr0,8468
-django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po,sha256=bbWzP-gpbslzbTBc_AO7WBNmtr3CkLOwkSJHI0Z_dTA,9330
-django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo,sha256=VNg9o_7M0Z2LC0n3_-iwF3zYmncRJHaFqqpxuPmMq84,1836
-django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po,sha256=QTg85c4Z13hMN_PnhjaLX3wx6TU4SH4hPTzNBfNVaMU,5148
-django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo,sha256=F6dyo00yeyUND_w1Ocm9SL_MUdXb60QQpmAQPto53IU,1306
-django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po,sha256=JrVKjT848Y1cS4tpH-eRivFNwM-cUs886UEhY2FkTPw,4836
-django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=ngPlxN85wGOMKoo3OK3wUQeikoaxPKqAIsgw2_0ovN4,6075
-django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.po,sha256=TNdJGJCAi0OijBN6w23SwKieZqNqkgNt2qdlPfY-r20,6823
-django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=7c2QywaTzF_GX8T2PUknQ_PN5s0Cx37_cO-walIg8mk,4725
-django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.po,sha256=uX-3zu8RQdntg__qYBweKtcuBgLsXPUYApf4bQx9eSU,6153
-django/contrib/admindocs/middleware.py,sha256=owqLbigBtxKmhPQmz767KOAkN3nKRIJrwZAUuHRIAQM,1329
-django/contrib/admindocs/templates/admin_doc/bookmarklets.html,sha256=PnfojSYh6lJA03UPjWbvxci64CNPQmrhJhycdyqlT5U,1281
-django/contrib/admindocs/templates/admin_doc/index.html,sha256=o710lPn-AHBJfKSUS6x1eUjAOZYRO9dbnuq_Cg7HEiY,1369
-django/contrib/admindocs/templates/admin_doc/missing_docutils.html,sha256=f8CcVOHCgUmbG_V56rVLV1tttQYPdkcxAHY_IWiMPK4,786
-django/contrib/admindocs/templates/admin_doc/model_detail.html,sha256=0O5-Kxf8RNyZ_slYJ1kq26HmKoarGMkf0S27fqhrFYE,1880
-django/contrib/admindocs/templates/admin_doc/model_index.html,sha256=7fgybgDWYcWZaDPgf25DxFkdxtnrqnpLem7iVmPQmLk,1346
-django/contrib/admindocs/templates/admin_doc/template_detail.html,sha256=C_shsOpJiW0Rngv8ZSXi12dgoepUUCqU3dPdaq9Bmio,1049
-django/contrib/admindocs/templates/admin_doc/template_filter_index.html,sha256=U2HBVHXtgCqUp9hLuOMVqCxBbXyYMMgAORG8fziN7uc,1775
-django/contrib/admindocs/templates/admin_doc/template_tag_index.html,sha256=S4U-G05yi1YIlFEv-HG20bDiq4rhdiZCgebhVBzNzdY,1731
-django/contrib/admindocs/templates/admin_doc/view_detail.html,sha256=u2rjpM0cLlHxSY-Na7wxqnv76zaGf0P1FgdnHl9XqdQ,928
-django/contrib/admindocs/templates/admin_doc/view_index.html,sha256=ZLfmxMkVlPYETRFnjLmU3bagve4ZvY1Xzsya1Lntgkw,1734
-django/contrib/admindocs/urls.py,sha256=zUZG14KLznM6CVtoxnCsJEa7TRwKRN44XLNAp9EgUy8,1310
-django/contrib/admindocs/utils.py,sha256=jQyONR22Ep1-AaMxIYEnNNxgoUOcFRsUM1aO9Jqv4aA,8939
-django/contrib/admindocs/views.py,sha256=yt-SEZ7PqD2aNL7DkKMqAugk8Z0iGd6UKTaMx4z8y6w,18588
-django/contrib/auth/__init__.py,sha256=RfV_3QgS1JKo_ooxEC90Jik4QXP7xxkzxkx3CLje6uw,7974
-django/contrib/auth/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/auth/__pycache__/admin.cpython-310.pyc,,
-django/contrib/auth/__pycache__/apps.cpython-310.pyc,,
-django/contrib/auth/__pycache__/backends.cpython-310.pyc,,
-django/contrib/auth/__pycache__/base_user.cpython-310.pyc,,
-django/contrib/auth/__pycache__/checks.cpython-310.pyc,,
-django/contrib/auth/__pycache__/context_processors.cpython-310.pyc,,
-django/contrib/auth/__pycache__/decorators.cpython-310.pyc,,
-django/contrib/auth/__pycache__/forms.cpython-310.pyc,,
-django/contrib/auth/__pycache__/hashers.cpython-310.pyc,,
-django/contrib/auth/__pycache__/middleware.cpython-310.pyc,,
-django/contrib/auth/__pycache__/mixins.cpython-310.pyc,,
-django/contrib/auth/__pycache__/models.cpython-310.pyc,,
-django/contrib/auth/__pycache__/password_validation.cpython-310.pyc,,
-django/contrib/auth/__pycache__/signals.cpython-310.pyc,,
-django/contrib/auth/__pycache__/tokens.cpython-310.pyc,,
-django/contrib/auth/__pycache__/urls.cpython-310.pyc,,
-django/contrib/auth/__pycache__/validators.cpython-310.pyc,,
-django/contrib/auth/__pycache__/views.cpython-310.pyc,,
-django/contrib/auth/admin.py,sha256=jOLuaoiasplhn_HWMqqAo9VdQpDAVIfGPBFwpdMopVQ,9020
-django/contrib/auth/apps.py,sha256=JE5zuVw7Tx6NFULN_u8sOxs0OnHczMC9bM0N_m1xsmA,1224
-django/contrib/auth/backends.py,sha256=jyxtlgvVZ02fl-L7PbGnTbKmMiK0pq_NbPPMbGf1zRc,9268
-django/contrib/auth/base_user.py,sha256=KpR-mxMFOXQwZfaJlVUfjdxCrLAiuajwM0jF0UYEkoQ,4484
-django/contrib/auth/checks.py,sha256=q05m4ylm3r3z8t7BPKeJLlpz5qfv6HOiPNcEl6sgAfw,8442
-django/contrib/auth/common-passwords.txt.gz,sha256=CnCdMuzzpa5EVwTpCqtO7-x3CIPsy47PWWw7GUT9C5M,81355
-django/contrib/auth/context_processors.py,sha256=8BbvdbTVPl8GVgB5-2LTzx6FrGsMzev-E7JMnUgr-rM,1911
-django/contrib/auth/decorators.py,sha256=YWxmna4E6nQSgNzEpcNkW6aoawqVGDmUnRoOJqZAxhs,2901
-django/contrib/auth/forms.py,sha256=YgfDipDFlWLAtuhFeUwPpOoKa_gkSAJXVB9zxFfr8QQ,16433
-django/contrib/auth/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/auth/handlers/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/auth/handlers/__pycache__/modwsgi.cpython-310.pyc,,
-django/contrib/auth/handlers/modwsgi.py,sha256=bTXKVMezywsn1KA2MVyDWeHvTNa2KrwIxn2olH7o_5I,1248
-django/contrib/auth/hashers.py,sha256=MfhkqNrOkItdOYvqBIvRVvedHO-FXE3Qyyt2ZEpOR7Q,28161
-django/contrib/auth/locale/af/LC_MESSAGES/django.mo,sha256=UKEGdzrpTwNnuhPcejOS-682hL88yV83xh-55dMZzyg,7392
-django/contrib/auth/locale/af/LC_MESSAGES/django.po,sha256=GFM0MbuRB9axSqvFQzZXhyeZF9JTKqoMMdfNEgNQVFY,7618
-django/contrib/auth/locale/ar/LC_MESSAGES/django.mo,sha256=7LhxFfL9y6RAfZ8PU-1lKI2V02LbHxXtB1UAf_vXpuc,10040
-django/contrib/auth/locale/ar/LC_MESSAGES/django.po,sha256=2QIaioY0RedAB0CFKVZLhGoCnhLzgUh84sAR7i6QUnQ,10520
-django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=0UokSPc3WDs_0PozSalfBaq4JFYgF1Rt7b90CKvY5jE,10228
-django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.po,sha256=GDvm2m1U7NOY5l7FijKGR77DEZt6rYWoSPCxsY5BZ3Y,10574
-django/contrib/auth/locale/ast/LC_MESSAGES/django.mo,sha256=Pt3gYY3j8Eroo4lAEmf-LR6u9U56mpE3vqLhjR4Uq-o,2250
-django/contrib/auth/locale/ast/LC_MESSAGES/django.po,sha256=Kiq4s8d1HnYpo3DQGlgUl3bOkxmgGW8CvGp9AbryRk8,5440
-django/contrib/auth/locale/az/LC_MESSAGES/django.mo,sha256=kwobdDjncjpc7x7AQgAGSrAdrNlV3mJm1rxyAwweGKo,7576
-django/contrib/auth/locale/az/LC_MESSAGES/django.po,sha256=HQB__hodya8egKUqZElnuw47NYOHKpNnXYUpnl3P8LI,7932
-django/contrib/auth/locale/be/LC_MESSAGES/django.mo,sha256=PKHL5EabL4jB0bQkw6GGiWhUK56Wa6tJxzZ09ymAF-M,10033
-django/contrib/auth/locale/be/LC_MESSAGES/django.po,sha256=ncUrvZfc57_WF38MxBV_rpLJeMcIg14D6d2M8NvLogk,10355
-django/contrib/auth/locale/bg/LC_MESSAGES/django.mo,sha256=iCuCi9MbjhsOUaUh2-OR_Ox9odgtBFSwyzJhmIOH9iQ,9466
-django/contrib/auth/locale/bg/LC_MESSAGES/django.po,sha256=NGss8TqtnQ_KrEtl433W8y3dbgYoezne1w2ylqGrn7s,9994
-django/contrib/auth/locale/bn/LC_MESSAGES/django.mo,sha256=cJSawQn3rNh2I57zK9vRi0r1xc598Wr26AyHh6D50ZQ,5455
-django/contrib/auth/locale/bn/LC_MESSAGES/django.po,sha256=5Vqd4n9ab98IMev4GHLxpO7f4r9nnhC3Nfx27HQNd8s,7671
-django/contrib/auth/locale/br/LC_MESSAGES/django.mo,sha256=nxLj88BBhT3Hudev1S_BRC8P6Jv7eoR8b6CHGt5eoPo,1436
-django/contrib/auth/locale/br/LC_MESSAGES/django.po,sha256=rFo68wfXMyju633KCAhg0Jcb3GVm3rk4opFQqI89d6Y,5433
-django/contrib/auth/locale/bs/LC_MESSAGES/django.mo,sha256=jDjP1qIs02k6RixY9xy3V7Cr6zi-henR8nDnhqNG18s,3146
-django/contrib/auth/locale/bs/LC_MESSAGES/django.po,sha256=NOICHHU8eFtltH0OBlnasz9TF0uZGZd3hMibRmn158E,5975
-django/contrib/auth/locale/ca/LC_MESSAGES/django.mo,sha256=lqiOLv_LZDLeXbJZYsrWRHzcnwd1vd00tW5Jrh-HHkY,7643
-django/contrib/auth/locale/ca/LC_MESSAGES/django.po,sha256=v-3t7bDTh1835nZnjYh3_HyN4yw4a1HyHpC3-jX79Z0,8216
-django/contrib/auth/locale/cs/LC_MESSAGES/django.mo,sha256=7TuyZNQ11j4iLxxr_xch3gBDQ0cSTh0VFUa0FMzH1Uo,7836
-django/contrib/auth/locale/cs/LC_MESSAGES/django.po,sha256=qoA5lHFEwLZZakgYONzA-TxBqpBNhBytGHxS40YCf0s,8292
-django/contrib/auth/locale/cy/LC_MESSAGES/django.mo,sha256=lSfCwEVteW4PDaiGKPDxnSnlDUcGMkPfsxIluExZar0,4338
-django/contrib/auth/locale/cy/LC_MESSAGES/django.po,sha256=-LPAKGXNzB77lVHfCRmFlH3SUaLgOXk_YxfC0BomcEs,6353
-django/contrib/auth/locale/da/LC_MESSAGES/django.mo,sha256=r3_2TSpbpLSK62t8KdD2VQqAxUXzdBaox5fyjgtoS7w,7478
-django/contrib/auth/locale/da/LC_MESSAGES/django.po,sha256=3ZgzujWtZwIsdk7gtvzXOxQusiFgzLTZBhXS3jUESAg,7958
-django/contrib/auth/locale/de/LC_MESSAGES/django.mo,sha256=ewzAnUawN_euTDtXmroxkktzKAHsTkHRjZQOkuYHu7k,7529
-django/contrib/auth/locale/de/LC_MESSAGES/django.po,sha256=J8GJ8N1RvQDRACYUfeZwqFnnEwi3PtYe7QaJ_UDFp3Q,8033
-django/contrib/auth/locale/dsb/LC_MESSAGES/django.mo,sha256=QOnCzO9Nf3_JBX9WP2pGfZXISgyAHv3p62OAF6fxkG8,8135
-django/contrib/auth/locale/dsb/LC_MESSAGES/django.po,sha256=g1o_S2lb_fN7aL_YIpOI0KicRiz72gh5sz2DYuwNYNI,8434
-django/contrib/auth/locale/el/LC_MESSAGES/django.mo,sha256=KaP9RLYThwYWLBx0W90HI0zJZ09iNhZ3tk8UVF63n74,10072
-django/contrib/auth/locale/el/LC_MESSAGES/django.po,sha256=O5JsNCUNr1YcNNqMugoM5epN6nC5pgq3E6nKXDh3OY0,10795
-django/contrib/auth/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/auth/locale/en/LC_MESSAGES/django.po,sha256=VLGYW9XtfDKb1uNmH5-6q_8vh7WFfpOLV8dleeQFUkE,8219
-django/contrib/auth/locale/en_AU/LC_MESSAGES/django.mo,sha256=7cPKOZX0ZmWCYU2ZwgCp8LwXj7FAdP3lMoI2u4nzgeU,7183
-django/contrib/auth/locale/en_AU/LC_MESSAGES/django.po,sha256=92Q42wfwKhGxDkomv8JlGBHVUdFIc_wvm_LUNBc9Q1k,7467
-django/contrib/auth/locale/en_GB/LC_MESSAGES/django.mo,sha256=p57gDaYVvgEk1x80Hq4Pn2SZbsp9ly3XrJ5Ttlt2yOE,3179
-django/contrib/auth/locale/en_GB/LC_MESSAGES/django.po,sha256=-yDflw5-81VOlyqkmLJN17FRuwDrhYXItFUJwx2aqpE,5787
-django/contrib/auth/locale/eo/LC_MESSAGES/django.mo,sha256=0Z-qGFJc_j9rV2-BN4YoVTeGQd15yoHHpt0fSEMwiwg,7329
-django/contrib/auth/locale/eo/LC_MESSAGES/django.po,sha256=cghgKB3ZOFTNdjBuCpWXn1WFXJQLRCQGEzBwiLU5D-c,7731
-django/contrib/auth/locale/es/LC_MESSAGES/django.mo,sha256=9BfzdvlAsARjd4CVzSritsWzQJsP5w7sM7nLO-KXF9A,7782
-django/contrib/auth/locale/es/LC_MESSAGES/django.po,sha256=Km0bEjiIkOoNXvC4hhId3CXKqIqFHWSFEdK6OgEHx04,8571
-django/contrib/auth/locale/es_AR/LC_MESSAGES/django.mo,sha256=tPRhIvlvgn5urawLpgF-YIoO4zqc06LtHflK_G_FYFU,7943
-django/contrib/auth/locale/es_AR/LC_MESSAGES/django.po,sha256=XqPd_mBJmPG-YYZrDdfVe7nbC6B5NLcHp2aISkk23xI,8214
-django/contrib/auth/locale/es_CO/LC_MESSAGES/django.mo,sha256=K5VaKTyeV_WoKsLR1x8ZG4VQmk3azj6ZM8Phqjs81So,6529
-django/contrib/auth/locale/es_CO/LC_MESSAGES/django.po,sha256=qJywTaYi7TmeMB1sjwsiwG8GXtxAOaOX0voj7lLVZRw,7703
-django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo,sha256=dCav1yN5q3bU4PvXZd_NxHQ8cZ9KqQCiNoe4Xi8seoY,7822
-django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po,sha256=_4un21ALfFsFaqpLrkE2_I18iEfJlcAnd_X8YChfdWo,8210
-django/contrib/auth/locale/es_VE/LC_MESSAGES/django.mo,sha256=GwpZytNHtK7Y9dqQKDiVi4SfA1AtPlk824_k7awqrdI,7415
-django/contrib/auth/locale/es_VE/LC_MESSAGES/django.po,sha256=G3mSCo_XGRUfOAKUeP_UNfWVzDPpbQrVYQt8Hv3VZVM,7824
-django/contrib/auth/locale/et/LC_MESSAGES/django.mo,sha256=yilio-iPwr09MPHPgrDLQ-G5d2xNg1o75lcv5-yzcM4,7393
-django/contrib/auth/locale/et/LC_MESSAGES/django.po,sha256=OvUyjbna_KS-bI4PUUHagS-JuwtB7G0J1__MtFGxB-M,7886
-django/contrib/auth/locale/eu/LC_MESSAGES/django.mo,sha256=K0AoFJGJJSnD1IzYqCY9qB4HZHwx-F7QaDTAGehyo7w,7396
-django/contrib/auth/locale/eu/LC_MESSAGES/django.po,sha256=y9BAASQYTTYfoTKWFVQUYs5-zPlminfJ6C5ZORD6g-s,7749
-django/contrib/auth/locale/fa/LC_MESSAGES/django.mo,sha256=yeA_5LAPu7OyQssunvUNlH07bPVCyGLpnvijNenrtHQ,8979
-django/contrib/auth/locale/fa/LC_MESSAGES/django.po,sha256=NChJSgpkXrwAiTrCJzvwlm9mh-LFSD1rR1ESdRQD43o,9513
-django/contrib/auth/locale/fi/LC_MESSAGES/django.mo,sha256=fH_rcYkl9L2dK1G3MjVETXAHunCPhsXQYMTbDcNe-00,7537
-django/contrib/auth/locale/fi/LC_MESSAGES/django.po,sha256=PVwyNBaToxjyHkxy4t4L-kULjJslTe94coSxWNseyn4,7892
-django/contrib/auth/locale/fr/LC_MESSAGES/django.mo,sha256=nppbd8aA9qHRmmneAz9Ld0PtnnaWranJ0Gil2j1ZqP8,8155
-django/contrib/auth/locale/fr/LC_MESSAGES/django.po,sha256=UfsLNtSLwfWgFgHIigXUSM-atmNRoOKm2U4lCUOU2Qo,8530
-django/contrib/auth/locale/fy/LC_MESSAGES/django.mo,sha256=95N-77SHF0AzQEer5LuBKu5n5oWf3pbH6_hQGvDrlP4,476
-django/contrib/auth/locale/fy/LC_MESSAGES/django.po,sha256=8XOzOFx-WerF7whzTie03hgO-dkbUFZneyrpZtat5JY,3704
-django/contrib/auth/locale/ga/LC_MESSAGES/django.mo,sha256=Nd02Ed9ACCY6JCCSwtiWl3DTODLFFu9Mq6JVlr5YbYk,3572
-django/contrib/auth/locale/ga/LC_MESSAGES/django.po,sha256=FQJMR5DosuKqo4vvF0NAQnjfqbH54MSzqL2-4BO4-uM,6127
-django/contrib/auth/locale/gd/LC_MESSAGES/django.mo,sha256=BLBYJV9Adx1BsXZaM0qZ54mNRAF5s4dxB1TBLtIyMHQ,8743
-django/contrib/auth/locale/gd/LC_MESSAGES/django.po,sha256=rqPK26mtE_U-TG2qyjc5xCR-feI3sGXZR5H6ohNzx4s,9099
-django/contrib/auth/locale/gl/LC_MESSAGES/django.mo,sha256=ZqVb1YCn_0_HyVtb_rnxmn0BSYAuKTVTFNHf2gftt5c,4022
-django/contrib/auth/locale/gl/LC_MESSAGES/django.po,sha256=YN_7iJTGc1Kh5llxHnwqq1kZmdQVMUMv1bkti30fMCI,6371
-django/contrib/auth/locale/he/LC_MESSAGES/django.mo,sha256=MeI7B43KSAIZL7_qxceKnnFKnyoUVYeZDRkGWabrclw,8606
-django/contrib/auth/locale/he/LC_MESSAGES/django.po,sha256=aDJlOsxyGpm-t6BydtqPMDB9lPcBCie8a1IfW_Ennvc,9012
-django/contrib/auth/locale/hi/LC_MESSAGES/django.mo,sha256=7CxV1H37hMbgKIhnAWx-aJmipLRosJe1qg8BH2CABfw,5364
-django/contrib/auth/locale/hi/LC_MESSAGES/django.po,sha256=DU5YM6r1kd5fo40yqFXzEaNh42ezFQFQ-0dmVqkaKQ0,7769
-django/contrib/auth/locale/hr/LC_MESSAGES/django.mo,sha256=GEap3QClwCkuwQZKJE7qOZl93RRxmyyvTTnOTYaAWUo,5894
-django/contrib/auth/locale/hr/LC_MESSAGES/django.po,sha256=ALftoYSaI1U90RNDEvnaFATbw1SL0m8fNXAyl6DkSvo,7355
-django/contrib/auth/locale/hsb/LC_MESSAGES/django.mo,sha256=J28d-As2avF34TlqEkhOzy91URZAXF47SY27qCPysPg,7974
-django/contrib/auth/locale/hsb/LC_MESSAGES/django.po,sha256=P3onPBZkAYofZpYnTsJ0ILbRFRhHtZorsHZ4-DVuu8w,8264
-django/contrib/auth/locale/hu/LC_MESSAGES/django.mo,sha256=TLGY7EaLD12NHYM1hQlqb4D4BM0T68jv8yhECOHIgcA,7655
-django/contrib/auth/locale/hu/LC_MESSAGES/django.po,sha256=E51MM5qqplgrOSrh60bfz-EvyL91Ik3kL3YJOK-dqzk,8040
-django/contrib/auth/locale/hy/LC_MESSAGES/django.mo,sha256=zoLe0EqIH8HQYC5XAWd8b8mA2DpbmDSEBsF-WIKX_OQ,8001
-django/contrib/auth/locale/hy/LC_MESSAGES/django.po,sha256=wIWLbz6f0n44ZcjEbZZsgoWTpzXRGND15hudr_DQ3l0,8787
-django/contrib/auth/locale/ia/LC_MESSAGES/django.mo,sha256=OTxh6u0QmsytMrp8IKWBwMnhrYCpyS6qVnF7YBCAWe0,7626
-django/contrib/auth/locale/ia/LC_MESSAGES/django.po,sha256=ue4RXEXweO1-9sZOKkLZsyZe8yxnPWB3JZyyh3qzmlA,7895
-django/contrib/auth/locale/id/LC_MESSAGES/django.mo,sha256=Shn7YL4gYpKmw3tkL3upWpehmSMkLs6ODIFpIhmHSeM,7243
-django/contrib/auth/locale/id/LC_MESSAGES/django.po,sha256=7bCK44c-CqLcgcltuOfoTsDJ-tYNW0Fdfq6KaSHLKd4,7638
-django/contrib/auth/locale/io/LC_MESSAGES/django.mo,sha256=YwAS3aWljAGXWcBhGU_GLVuGJbHJnGY8kUCE89CPdks,464
-django/contrib/auth/locale/io/LC_MESSAGES/django.po,sha256=W36JXuA1HQ72LspixRxeuvxogVxtk7ZBbT0VWI38_oM,3692
-django/contrib/auth/locale/is/LC_MESSAGES/django.mo,sha256=0PBYGqQKJaAG9m2jmJUzcqRVPc16hCe2euECMCrNGgI,7509
-django/contrib/auth/locale/is/LC_MESSAGES/django.po,sha256=o6dQ8WMuPCw4brSzKUU3j8PYhkLBO7XQ3M7RlsIw-VY,7905
-django/contrib/auth/locale/it/LC_MESSAGES/django.mo,sha256=cKZiZxBLLKL3HqbBWCtMxkP_Y5o9tgo5J-dMLPPthk0,7608
-django/contrib/auth/locale/it/LC_MESSAGES/django.po,sha256=VTurpVr2_2HRZpw1bUqjehWaypfGfI6ySGjoYA_MFFM,8178
-django/contrib/auth/locale/ja/LC_MESSAGES/django.mo,sha256=MB36xS89-mlWuDRood1NGARfcWmqj7dp2JMCXuA16fA,8085
-django/contrib/auth/locale/ja/LC_MESSAGES/django.po,sha256=aAVHTduL9eq_BuCvjLjBxOmU7_Oq3MnrsZ4JqutCSFM,8436
-django/contrib/auth/locale/ka/LC_MESSAGES/django.mo,sha256=0QWYd58Dz5Az3OfZo7wV3o-QCre2oc5dgEPu0rnLVJI,10625
-django/contrib/auth/locale/ka/LC_MESSAGES/django.po,sha256=oCtz7gS4--mhv7biS1rIh43I4v1UpZX4DKdrB-xZ2RA,11217
-django/contrib/auth/locale/kab/LC_MESSAGES/django.mo,sha256=9qKeQ-gDByoOdSxDpSbLaM4uSP5sIi7qlTn8tJidVDs,2982
-django/contrib/auth/locale/kab/LC_MESSAGES/django.po,sha256=8cq5_rjRXPzTvn1jPo6H_Jcrv6IXkWr8n9fTPvghsS8,5670
-django/contrib/auth/locale/kk/LC_MESSAGES/django.mo,sha256=RJablrXpRba6YVB_8ACSt2q_BjmxrHQZzX6RxMJImlA,3542
-django/contrib/auth/locale/kk/LC_MESSAGES/django.po,sha256=OebwPN9iWBvjDu0P2gQyBbShvIFxFIqCw8DpKuti3xk,6360
-django/contrib/auth/locale/km/LC_MESSAGES/django.mo,sha256=FahcwnCgzEamtWcDEPOiJ4KpXCIHbnSowfSRdRQ2F9U,2609
-django/contrib/auth/locale/km/LC_MESSAGES/django.po,sha256=lvRHHIkClbt_8-9Yn0xY57dMxcS72z4sUkxLb4cohP0,5973
-django/contrib/auth/locale/kn/LC_MESSAGES/django.mo,sha256=u0YygqGJYljBZwI9rm0rRk_DdgaBEMA1etL-Lk-7Mls,4024
-django/contrib/auth/locale/kn/LC_MESSAGES/django.po,sha256=J67MIAas5egVq_FJBNsug3Y7rZ8KakhQt6isyF23HAA,6957
-django/contrib/auth/locale/ko/LC_MESSAGES/django.mo,sha256=vwD0-GW2g4uAPCQbvsr2CyZ1Y-9VHcF4xlN3qaJbolU,7607
-django/contrib/auth/locale/ko/LC_MESSAGES/django.po,sha256=6PX6SMXjv_bYolpgHfcFpzaKPdkwJSVg95GU5EpjdeM,8350
-django/contrib/auth/locale/ky/LC_MESSAGES/django.mo,sha256=mnBXtpInYxaSNIURJTmx8uBg_PH-NuPN9r54pkQY3q4,8924
-django/contrib/auth/locale/ky/LC_MESSAGES/django.po,sha256=7FeO_Kb2er0S84KnFeXVHO3TgAmEJ0gTQEDHImoxiZ4,9170
-django/contrib/auth/locale/lb/LC_MESSAGES/django.mo,sha256=OFhpMA1ZXhrs5fwZPO5IjubvWDiju4wfwWiV94SFkiA,474
-django/contrib/auth/locale/lb/LC_MESSAGES/django.po,sha256=dOfY9HjTfMQ0nkRYumw_3ZaywbUrTgT-oTXAnrRyfxo,3702
-django/contrib/auth/locale/lt/LC_MESSAGES/django.mo,sha256=-nlZHl7w__TsFUmBb5pQV_XJtKGsi9kzP6CBZXkfM8M,8146
-django/contrib/auth/locale/lt/LC_MESSAGES/django.po,sha256=-rdhB6eroSSemsdZkG1Jl4CruNZc_7dj4m5IVoyRBUQ,8620
-django/contrib/auth/locale/lv/LC_MESSAGES/django.mo,sha256=Og4Jnkv3BAYSMx1-JipnUaLqwnefk7XDrR7dxbydI5o,7656
-django/contrib/auth/locale/lv/LC_MESSAGES/django.po,sha256=Jmkz7K1_W387FSobu-L8dzbsm_-uj0OCMqa4xx-XBC4,8070
-django/contrib/auth/locale/mk/LC_MESSAGES/django.mo,sha256=XS9dslnD_YBeD07P8WQkss1gT7GIV-qLiCx4i5_Vd_k,9235
-django/contrib/auth/locale/mk/LC_MESSAGES/django.po,sha256=QOLgcwHub9Uo318P2z6sp69MI8syIIWCcr4VOom9vfs,9799
-django/contrib/auth/locale/ml/LC_MESSAGES/django.mo,sha256=UEaqq7nnGvcZ8vqFicLiuqsuEUhEjd2FpWfyzy2HqdU,12611
-django/contrib/auth/locale/ml/LC_MESSAGES/django.po,sha256=xBROIwJb5h2LmyBLAafZ2tUlPVTAOcMgt-olq5XnPT8,13107
-django/contrib/auth/locale/mn/LC_MESSAGES/django.mo,sha256=hBYT0p3LcvIKKPtIn2NzPk_2di9L8jYrUt9j3TcVvaY,9403
-django/contrib/auth/locale/mn/LC_MESSAGES/django.po,sha256=R3wAEwnefEHZsma8J-XOn4XlLtuWYKDPLwJ99DUYmvE,9913
-django/contrib/auth/locale/mr/LC_MESSAGES/django.mo,sha256=zGuqUTqcWZZn8lZY56lf5tB0_lELn7Dd0Gj78wwO5T4,468
-django/contrib/auth/locale/mr/LC_MESSAGES/django.po,sha256=yLW9WuaBHqdp9PXoDEw7c05Vt0oOtlks5TS8oxYPAO8,3696
-django/contrib/auth/locale/ms/LC_MESSAGES/django.mo,sha256=eCAZrzQxsM_pAxr_XQo2fIOsCbj5LjGKpLNCzob2l-I,7654
-django/contrib/auth/locale/ms/LC_MESSAGES/django.po,sha256=FAtyzSGcD1mIhRIg8O_1SHLdisTPGYZK-QUjzgw-wCY,7847
-django/contrib/auth/locale/my/LC_MESSAGES/django.mo,sha256=gYzFJKi15RbphgG1IHbJF3yGz3P2D9vaPoHZpA7LoH8,1026
-django/contrib/auth/locale/my/LC_MESSAGES/django.po,sha256=lH5mrq-MyY8gvrNkH2_20rkjFnbviq23wIUqIjPIgFI,5130
-django/contrib/auth/locale/nb/LC_MESSAGES/django.mo,sha256=T6aK_x_t3c0uoALxmraqrK4--Ln5vTUMPb2m7iuR9bM,7191
-django/contrib/auth/locale/nb/LC_MESSAGES/django.po,sha256=jwECmnO6m_sk9O3PXnmEnh3FC9LJKVdSliRZ8nNPNLY,7585
-django/contrib/auth/locale/ne/LC_MESSAGES/django.mo,sha256=pq8dEr1ugF5ldwkCDHOq5sXaXV31InbLHYyXU56U_Ao,7722
-django/contrib/auth/locale/ne/LC_MESSAGES/django.po,sha256=bV-uWvT1ViEejrbRbVTtwC2cZVD2yX-KaESxKBnxeRI,8902
-django/contrib/auth/locale/nl/LC_MESSAGES/django.mo,sha256=rC50p1YuxjzC0qIsV139uhrFkJhPi5sFERoNdD7XYIY,7509
-django/contrib/auth/locale/nl/LC_MESSAGES/django.po,sha256=B1K9ZLH0fvz5jY85bIZI8NUDTOqaufezfTUgEObb-fk,8301
-django/contrib/auth/locale/nn/LC_MESSAGES/django.mo,sha256=83HdNOuNQVgJXBZMytPz1jx3wWDy8-e6t_JNEUu6W8w,7147
-django/contrib/auth/locale/nn/LC_MESSAGES/django.po,sha256=4ciwQsZFYSV6CjFqzxxcESAm16huv9XyXvU-nchD-Fs,7363
-django/contrib/auth/locale/os/LC_MESSAGES/django.mo,sha256=DVsYGz-31nofEjZla4YhM5L7qoBnQaYnZ4TBki03AI4,4434
-django/contrib/auth/locale/os/LC_MESSAGES/django.po,sha256=Akc1qelQWRA1DE6xseoK_zsY7SFI8SpiVflsSTUhQLw,6715
-django/contrib/auth/locale/pa/LC_MESSAGES/django.mo,sha256=PeOLukzQ_CZjWBa5FGVyBEysat4Gwv40xGMS29UKRww,3666
-django/contrib/auth/locale/pa/LC_MESSAGES/django.po,sha256=7ts9PUSuvfXGRLpfyVirJLDtsQcsVWFXDepVKUVlmtc,6476
-django/contrib/auth/locale/pl/LC_MESSAGES/django.mo,sha256=-Ie-Wmu6bIpQFabfX9apO1uYvjnK-lPj-99jTOhtH44,7950
-django/contrib/auth/locale/pl/LC_MESSAGES/django.po,sha256=9dyBmCqSvGEZ4BALTTzokZNx46NTJ04RHOYnrMfNCnU,8704
-django/contrib/auth/locale/pt/LC_MESSAGES/django.mo,sha256=oyKCSXRo55UiO3-JKcodMUnK7fuOuQxQrXcU7XkWidA,7756
-django/contrib/auth/locale/pt/LC_MESSAGES/django.po,sha256=tEazw0kctJ3BaP21IblsMhno6qooOGW54zwende522Q,8128
-django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.mo,sha256=VMLdFwEk6QYtA-73C4EnwJY_1wwWuGv3nAn6yHiXark,7795
-django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.po,sha256=eAum_H4BToVsEkZo7kFBMHTshlduJYzShvbFlQAg6Ic,8607
-django/contrib/auth/locale/ro/LC_MESSAGES/django.mo,sha256=GD04tb5R6nEeD6ZMAcZghVhXwr8en1omw0c6BxnyHas,7777
-django/contrib/auth/locale/ro/LC_MESSAGES/django.po,sha256=YfkFuPrMwAR50k6lfOYeBbMosEbvXGWwMBD8B7p_2ZA,8298
-django/contrib/auth/locale/ru/LC_MESSAGES/django.mo,sha256=4MRl7yEBk9G9R_GewxkBxHK5ic4ww_WopNQymluwbYs,10347
-django/contrib/auth/locale/ru/LC_MESSAGES/django.po,sha256=y9e6hrsZO4GwIOWedYNuU2h7PX9Sa0uomKTyOlKGPw0,10963
-django/contrib/auth/locale/sk/LC_MESSAGES/django.mo,sha256=1xmFLKSKxwWOoW7MLQ6oLhOi5fRs_YEqYQ6VlQ0f7ag,7853
-django/contrib/auth/locale/sk/LC_MESSAGES/django.po,sha256=sNAtYJYT-QLmTRaYpoyAeC9j3adeQwvQqtxjKuDFkn0,8292
-django/contrib/auth/locale/sl/LC_MESSAGES/django.mo,sha256=UAzD5UAqHBdiCMIPjZdouGt14xoHuo5EXDctNSDTEJk,7552
-django/contrib/auth/locale/sl/LC_MESSAGES/django.po,sha256=tUqZLZJegGLteWOQiDwFRUGayBB2j9qATmL6SMgEhb8,7943
-django/contrib/auth/locale/sq/LC_MESSAGES/django.mo,sha256=3bm81rsRuQmV_1mD9JrAwSjRIDUlsb3lPmBxRNHfz8w,7813
-django/contrib/auth/locale/sq/LC_MESSAGES/django.po,sha256=BWfyT4qg1jMoDGwmpLq4uPHJ1hJXLHI7gyo4BnzVHZI,8128
-django/contrib/auth/locale/sr/LC_MESSAGES/django.mo,sha256=3dRNH8jjE8I2vQwyTZ5J6tGLeBr3_XhlAjdPqcMea0M,9761
-django/contrib/auth/locale/sr/LC_MESSAGES/django.po,sha256=33D4YxtMpY3s0cDsK0L2-bCvfZHlbfxR4XX9oMjCQXM,10081
-django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=SXl_MvkY_idYMT3sF7nIuh8z2qMdMC1lJ69Y6FcJMaA,3191
-django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.po,sha256=hlU8JVlqIKv-Wx9urJDnFxvyT_m8mLz0vTl8Tcat4lw,5958
-django/contrib/auth/locale/sv/LC_MESSAGES/django.mo,sha256=hdFeVy7UXyyHylfvuWrzcLE9eIDBTGWy91ReCvFgXAg,7484
-django/contrib/auth/locale/sv/LC_MESSAGES/django.po,sha256=Ia6YyrYr3hOKBojOfMVQBlY1LvcX0hi3LRvMmf9mOIw,8130
-django/contrib/auth/locale/sw/LC_MESSAGES/django.mo,sha256=I_lEsKuMGm07X1vM3-ReGDx2j09PGLkWcG0onC8q1uQ,5029
-django/contrib/auth/locale/sw/LC_MESSAGES/django.po,sha256=TiZS5mh0oN0e6dFEdh-FK81Vk-tdv35ngJ-EbM1yX80,6455
-django/contrib/auth/locale/ta/LC_MESSAGES/django.mo,sha256=T1t5CKEb8hIumvbOtai-z4LKj2et8sX-PgBMd0B3zuA,2679
-django/contrib/auth/locale/ta/LC_MESSAGES/django.po,sha256=X8UDNmk02X9q1leNV1qWWwPNakhvNd45mCKkQ8EpZQQ,6069
-django/contrib/auth/locale/te/LC_MESSAGES/django.mo,sha256=i9hG4thA0P-Hc-S2oX7GufWFDO4Y_LF4RcdQ22cbLyE,2955
-django/contrib/auth/locale/te/LC_MESSAGES/django.po,sha256=txND8Izv2oEjSlcsx3q6l5fEUqsS-zv-sjVVILB1Bmc,6267
-django/contrib/auth/locale/tg/LC_MESSAGES/django.mo,sha256=MwdyYwC4ILX4MFsqCy46NNfPKLbW1GzRhFxMV0uIbLI,7932
-django/contrib/auth/locale/tg/LC_MESSAGES/django.po,sha256=miOPNThjHZODwjXMbON8PTMQhaCGJ0Gy6FZr6Jcj4J8,8938
-django/contrib/auth/locale/th/LC_MESSAGES/django.mo,sha256=zRpZ2xM5JEQoHtfXm2_XYdhe2FtaqH-hULJadLJ1MHU,6013
-django/contrib/auth/locale/th/LC_MESSAGES/django.po,sha256=Yhh_AQS_aM_9f_yHNNSu_3THbrU-gOoMpfiDKhkaSHo,7914
-django/contrib/auth/locale/tk/LC_MESSAGES/django.mo,sha256=AqCIDe-6QrLMN3CNbMZsfrL0KxnQ3zuZwN8KvFmwRhE,7343
-django/contrib/auth/locale/tk/LC_MESSAGES/django.po,sha256=LpVXh4T0ZS3EzbIpJud8Dlms0Bu1vWf6c0JqkpoD8q8,7605
-django/contrib/auth/locale/tr/LC_MESSAGES/django.mo,sha256=jQyJ55Sr_xkHTgcfvl3smdWjum0tGCzp4NY0U1w9aig,7506
-django/contrib/auth/locale/tr/LC_MESSAGES/django.po,sha256=5DXWBmUc3fAwVHwcCTeu7M2y8X9VqrI_Ex3ZFKqzCgA,8090
-django/contrib/auth/locale/tt/LC_MESSAGES/django.mo,sha256=g4pTk8QLQFCOkU29RZvR1wOd1hkOZe_o5GV9Cg5u8N4,1371
-django/contrib/auth/locale/tt/LC_MESSAGES/django.po,sha256=owkJ7iPT-zJYkuKLykfWsw8j7O8hbgzVTOD0DVv956E,5222
-django/contrib/auth/locale/udm/LC_MESSAGES/django.mo,sha256=zey19UQmS79AJFxHGrOziExPDDpJ1AbUegbCRm0x0hM,462
-django/contrib/auth/locale/udm/LC_MESSAGES/django.po,sha256=gLVgaMGg0GA3Tey1_nWIjV1lnM7czLC0XR9NFBgL2Zk,3690
-django/contrib/auth/locale/uk/LC_MESSAGES/django.mo,sha256=1CE7KRwdtP3D0UmEQcgydqXLGWVNZRUs4hpkoQJGMlo,10077
-django/contrib/auth/locale/uk/LC_MESSAGES/django.po,sha256=7KbG2N4XhLlgjtaO20ZXCPIIotoWO7fr_nFUlWxzv6s,10776
-django/contrib/auth/locale/ur/LC_MESSAGES/django.mo,sha256=rippTNHoh49W19c4HDUF8G5Yo3SknL3C87Afu8YXxzA,698
-django/contrib/auth/locale/ur/LC_MESSAGES/django.po,sha256=gwSd8noEwbcvDE1Q4ZsrftvoWMwhw1J15gvdtK6E9ns,4925
-django/contrib/auth/locale/uz/LC_MESSAGES/django.mo,sha256=bDkhpvduocjekq6eZiuEfWJqnIt5hQmxxoIMhLQWzqM,2549
-django/contrib/auth/locale/uz/LC_MESSAGES/django.po,sha256=tPp8tRZwSMQCQ9AyAeUDtnRfmOk54UQMwok3HH8VNSQ,5742
-django/contrib/auth/locale/vi/LC_MESSAGES/django.mo,sha256=eBMTwnpRWRj8SZVZ1tN592Re_8CPyJzuF4Vtg9IMmFw,7892
-django/contrib/auth/locale/vi/LC_MESSAGES/django.po,sha256=mOr5WgFpwztdW-pEZ4O80MGlltYQyL2cAMhz6-Esfo0,8246
-django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=xV9wTiaL7hMCKmUOHuEs5XtxEibXWLnywDYTjeXoVCA,6907
-django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po,sha256=CUdR2ch2mOf5v3GTOTIQg2IOj-7M1mS6Dw9yvz891Yw,7638
-django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=yQ5Gllu4hXzuBpBNAgtJaBMVivJeXUUlpfDS4CT1wg4,6728
-django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po,sha256=Rw18_ZEtobUhmj2oF544zdQ6Vrac0T9UI9RJO4plOdc,7145
-django/contrib/auth/management/__init__.py,sha256=uKE77RX6iQSDb0B6ZP-QTt-kjSelmBY6FQSqxXv3zvI,5327
-django/contrib/auth/management/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/auth/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/auth/management/commands/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/auth/management/commands/__pycache__/changepassword.cpython-310.pyc,,
-django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-310.pyc,,
-django/contrib/auth/management/commands/changepassword.py,sha256=uMA0bm8Xy2JovP9M4WrVdZF4qxgRLMaebx3sET2BKSY,2633
-django/contrib/auth/management/commands/createsuperuser.py,sha256=373N6FpNGrAGdQb6ui4iT3uoMPQcSEX-HL_R7oBsBls,13262
-django/contrib/auth/middleware.py,sha256=_Y3pB-F4WhZdAZZMHL4iQ-TSBQrivkz2flALIjodXiM,5431
-django/contrib/auth/migrations/0001_initial.py,sha256=gos3cWdK6busgmjH4dUBR-S9_7m-LIYF7AtTIlGRFq4,7282
-django/contrib/auth/migrations/0002_alter_permission_name_max_length.py,sha256=Ofj3HGISrF35pqmD-VBr1rlbLTszxaePWXrULRDc0gM,347
-django/contrib/auth/migrations/0003_alter_user_email_max_length.py,sha256=7sFie4LLqpe74dZB6gjymc2PJ6Fm8R1i-_L_1Otr204,419
-django/contrib/auth/migrations/0004_alter_user_username_opts.py,sha256=8Yebbje2LQMo8RlvLhiuNxXT_Fjo60zEMSGwWTctD2A,881
-django/contrib/auth/migrations/0005_alter_user_last_login_null.py,sha256=NvFKl9IxcAEz2Oi21u3XSvkK1DI6ZYg0emW_7PQMqe8,411
-django/contrib/auth/migrations/0006_require_contenttypes_0002.py,sha256=EBEPNuSJtXBj58m2x-rr3WWCSc30ssHWI0Ni6_g9gtk,370
-django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py,sha256=2mOgZgr3in1UU8JAROculPKm_8hqSTbPPFV3XgFc_Ko,803
-django/contrib/auth/migrations/0008_alter_user_username_max_length.py,sha256=vKKsmPu5_6EqyIDrSRByKn9jhrd-_OGgSwQ-4-x_ZRQ,815
-django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py,sha256=T5-y4RVYe5R9dhrP2VvFrmruuNs-UJ8bHL45FIfQtjM,416
-django/contrib/auth/migrations/0010_alter_group_name_max_length.py,sha256=j7YCblkuVz50X1pZdMzRWXJSdwBrHEOt1kyVAe3AsqY,379
-django/contrib/auth/migrations/0011_update_proxy_permissions.py,sha256=Do06UrWbcE6d_tmqkhRfU8TspxSXi-TIMPcT1dGU57k,2879
-django/contrib/auth/migrations/0012_alter_user_first_name_max_length.py,sha256=9AvEG8YCXFe4mm_bjxjp6-5IvIeou6b_QP7Kr5FTD-U,412
-django/contrib/auth/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/auth/migrations/__pycache__/0001_initial.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-310.pyc,,
-django/contrib/auth/migrations/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/auth/mixins.py,sha256=rHq9HsX4W8lKtfXsazxM3chhTFLqd3eKI-OVKpbeLjQ,4652
-django/contrib/auth/models.py,sha256=7DKhZJdEgTkm1j38W_BSfMQ3qh1y-AhqmElQ8kHKhAY,16500
-django/contrib/auth/password_validation.py,sha256=JIZvQAwkQZOGH1iO__jZJzo-jhYtfvpr3dN_3uN4k1c,9376
-django/contrib/auth/signals.py,sha256=BFks70O0Y8s6p1fr8SCD4-yk2kjucv7HwTcdRUzVDFM,118
-django/contrib/auth/templates/auth/widgets/read_only_password_hash.html,sha256=cMrG-iMsrVQ6Qd6T_Xz21b6WIWhXxaIwgNDW2NpDpuM,185
-django/contrib/auth/templates/registration/password_reset_subject.txt,sha256=-TZcy_r0vArBgdPK7feeUY6mr9EkYwy7esQ62_onbBk,132
-django/contrib/auth/tokens.py,sha256=ljqQWO0dAkd45-bBJ6W85oZZU9pEjzNh3VbZfeANwxQ,4328
-django/contrib/auth/urls.py,sha256=Uh8DrSqpJXDA5a17Br9fMmIbEcgLkxdN9FvCRg-vxyg,1185
-django/contrib/auth/validators.py,sha256=N67vd_FgRCMKk9MXsXulprJPKA4UGPgSLWZcGb13yLw,687
-django/contrib/auth/views.py,sha256=8CbrdLoy6NnCdxmzm4BETTHIZvVzS654Fnbu3g61JKw,14446
-django/contrib/contenttypes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/contenttypes/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/contenttypes/__pycache__/admin.cpython-310.pyc,,
-django/contrib/contenttypes/__pycache__/apps.cpython-310.pyc,,
-django/contrib/contenttypes/__pycache__/checks.cpython-310.pyc,,
-django/contrib/contenttypes/__pycache__/fields.cpython-310.pyc,,
-django/contrib/contenttypes/__pycache__/forms.cpython-310.pyc,,
-django/contrib/contenttypes/__pycache__/models.cpython-310.pyc,,
-django/contrib/contenttypes/__pycache__/views.cpython-310.pyc,,
-django/contrib/contenttypes/admin.py,sha256=a0KrlT8k2aPIKn54fNwCDTaAVdVr1fLY1BDz_FrE3ts,5200
-django/contrib/contenttypes/apps.py,sha256=1Q1mWjPvfYU7EaO50JvsWuDg_3uK8DoCwpvdIdT7iKY,846
-django/contrib/contenttypes/checks.py,sha256=KKB-4FOfPO60TM-uxqK8m9sIXzB3CRx7Imr-jaauM_U,1268
-django/contrib/contenttypes/fields.py,sha256=Jy8ucnQY4C67YishiQjSlUVtJ1QVvbmvbRuQyXC3oG8,28663
-django/contrib/contenttypes/forms.py,sha256=T6fZZkJjPrD6R3h5Wos2a9aDM3mZJLerHSh6NXHJp4I,3956
-django/contrib/contenttypes/locale/af/LC_MESSAGES/django.mo,sha256=93nlniPFfVcxfBCs_PsLtMKrJ2BqpcofPRNYYTTlels,1070
-django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po,sha256=SY04sW55-xpO_qBjv8pHoN7eqB2C5q_9CxQguMz7Q94,1244
-django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.mo,sha256=2t3y_6wxi0khsYi6s9ZyJwjRB8bnRT1PKvazWOKhJcQ,1271
-django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po,sha256=t6M3XYQLotNMFCjzB8aWFXnlRI8fU744YZvAoFdScQY,1634
-django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=upFxoSvOvdmqCvC5irRV_8yYpFidanHfRk6i3tPrFAc,1233
-django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.po,sha256=jUg-4BVi0arx5v-osaUDAfM6cQgaBh7mE8Mr8aVTp5A,1447
-django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.mo,sha256=y88CPGGbwTVRmZYIipCNIWkn4OuzuxEk2QCYsBhc7RY,643
-django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po,sha256=H-qMo5ikva84ycnlmBT4XXEWhzMIw-r7J_zuqxo3wu4,1088
-django/contrib/contenttypes/locale/az/LC_MESSAGES/django.mo,sha256=VTQ2qQ7aoZYUVl2yht2DbYzj2acs71Szqz7iZyySAqI,1065
-django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po,sha256=9NcmP1jMQPfjPraoXui6iqJn3z3f3uG1RYN7K5-_-dU,1359
-django/contrib/contenttypes/locale/be/LC_MESSAGES/django.mo,sha256=Kp1TpXX1v0IgGp9HZxleXJ6y5ZvMZ6AqJrSIVcDs7xA,1353
-django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po,sha256=Oy5QXZBmBM_OYLT5OeXJQzTBCHXBp8NVMYuKmr_TUm0,1615
-django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.mo,sha256=IFghXuYj0yxP5j-LfRsNJXlyS2b2dUNJXD01uhUqxLg,1225
-django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po,sha256=y-OpKdDHxHDYATSmi8DAUXuhpIwgujKZUe48G8So8AU,1613
-django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.mo,sha256=2Z1GL6c1ukKQCMcls7R0_n4eNdH3YOXZSR8nCct7SLI,1201
-django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po,sha256=PLjnppx0FxfGBQMuWVjo0N4sW2QYc2DAEMK6ziGWUc8,1491
-django/contrib/contenttypes/locale/br/LC_MESSAGES/django.mo,sha256=kAlOemlwBvCdktgYoV-4NpC7XFDaIue_XN7GJYzDu88,1419
-django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po,sha256=BQmHVQqOc6xJWJLeAo49rl_Ogfv-lFtx18mj82jT_to,1613
-django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.mo,sha256=klj9n7AKBkTf7pIa9m9b-itsy4UlbYPnHiuvSLcFZXY,700
-django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po,sha256=pmJaMBLWbYtYFFXYBvPEvwXkTPdjQDv2WkFI5jNGmTI,1151
-django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.mo,sha256=uYq1BXdw1AXjnLusUQfN7ox1ld6siiy41C8yKVTry7Q,1095
-django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po,sha256=-dsOzvzVzEPVvA9lYsIP-782BbtJxGRo-OHtS3fIjmU,1403
-django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.mo,sha256=QexBQDuGdMFhVBtA9XWUs2geFBROcxyzdU_IBUGQ7x4,1108
-django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po,sha256=8pdPwZmpGOeSZjILGLZEAzqvmmV69ogpkh0c3tukT2g,1410
-django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.mo,sha256=2QyCWeXFyymoFu0Jz1iVFgOIdLtt4N1rCZATZAwiH-8,1159
-django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po,sha256=ZWDxQTHJcw1UYav1C3MX08wCFrSeJNNI2mKjzRVd6H0,1385
-django/contrib/contenttypes/locale/da/LC_MESSAGES/django.mo,sha256=EyancRrTWxM6KTpLq65gIQB0sO_PLtVr1ESN2v1pSNU,1038
-django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po,sha256=J09u3IjLgv4g77Kea_WQAhevHb8DskGU-nVxyucYf_0,1349
-django/contrib/contenttypes/locale/de/LC_MESSAGES/django.mo,sha256=MGUZ4Gw8rSFjBO2OfFX9ooGGpJYwAapgNkc-GdBMXa0,1055
-django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po,sha256=T5ucSqa6VyfUcoN6nFWBtjUkrSrz7wxr8t0NGTBrWow,1308
-django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.mo,sha256=QpdSZObmfb-DQZb3Oh6I1bFRnaPorXMznNZMyVIM7Hc,1132
-django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po,sha256=_tNajamEnnf9FEjI-XBRraKjJVilwvpv2TBf9PAzPxw,1355
-django/contrib/contenttypes/locale/el/LC_MESSAGES/django.mo,sha256=1ySEbSEzhH1lDjHQK9Kv59PMA3ZPdqY8EJe6xEQejIM,1286
-django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po,sha256=8rlMKE5SCLTtm1myjLFBtbEIFyuRmSrL9HS2PA7gneQ,1643
-django/contrib/contenttypes/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po,sha256=BRgOISCCJb4TU0dNxG4eeQJFe-aIe7U3GKLPip03d_Q,1110
-django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTndJxA-F1IE_nMUOtf1sRr7Kq2s_8yjgKk6mkWkVu4,486
-django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po,sha256=wmxyIJtz628AbsxgkB-MjdImcIJWhcW7NV3tWbDpedg,1001
-django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.mo,sha256=_uM-jg43W7Pz8RQhMcR_o15wRkDaYD8aRcl2_NFGoNs,1053
-django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po,sha256=SyzwSvqAgKF8BEhXYh4598GYP583OK2GUXH1lc4iDMk,1298
-django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.mo,sha256=MFC-mQeWLeFry7d2EXeAf2G47YRLLKFhenGLCwo5O9A,1087
-django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po,sha256=BgQ7lRtsjD-XHaNvlHMu9AxCCqx38XdOCG4zYpKgDn4,1279
-django/contrib/contenttypes/locale/es/LC_MESSAGES/django.mo,sha256=KzgypFDwIlVzr_h9Dq2X8dXu3XnsbdSaHwJKJWZ6qc8,1096
-django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po,sha256=Dpn9dTvdy87bVf3It8pZFOdEEKnO91bDeYyY1YujkIA,1456
-django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.mo,sha256=WkHABVDmtKidPyo6zaYGVGrgXpe6tZ69EkxaIBu6mtg,1084
-django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po,sha256=yVSu_fJSKwS4zTlRud9iDochIaY0zOPILF59biVfkeY,1337
-django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.mo,sha256=aACo1rOrgs_BYK3AWzXEljCdAc4bC3BXpyXrwE4lzAs,1158
-django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po,sha256=vemhoL-sESessGmIlHoRvtWICqF2aO05WvcGesUZBRM,1338
-django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.mo,sha256=vD9rSUAZC_rgkwiOOsrrra07Gnx7yEpNHI96tr8xD3U,840
-django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po,sha256=tLgjAi9Z1kZloJFVQuUdAvyiJy1J-5QHfoWmxbqQZCc,1237
-django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.mo,sha256=TVGDydYVg_jGfnYghk_cUFjCCtpGchuoTB4Vf0XJPYk,1152
-django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po,sha256=vJW37vuKYb_KpXBPmoNSqtNstFgCDlKmw-8iOoSCenU,1342
-django/contrib/contenttypes/locale/et/LC_MESSAGES/django.mo,sha256=TE84lZl6EP54-pgmv275jiTOW0vIsnsGU97qmtxMEVg,1028
-django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po,sha256=KO9fhmRCx25VeHNDGXVNhoFx3VFH-6PSLVXZJ6ohOSA,1368
-django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.mo,sha256=K0f1cXEhfg_djPzgCL9wC0iHGWF_JGIhWGFL0Y970g0,1077
-django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po,sha256=sSuVV0o8MeWN6BxlaeKcjKA3h4H29fCo1kKEtkczEp4,1344
-django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.mo,sha256=hW3A3_9b-NlLS4u6qDnPS1dmNdn1UJCt-nihXvnXywI,1130
-django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po,sha256=TPiYsGGN-j-VD--Rentx1p-IcrNJYoYxrxDO_5xeZHI,1471
-django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.mo,sha256=dWar3g1rJAkUG1xRLlmGkH63Fy_h2YqzhMVv0Z25aWc,1036
-django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po,sha256=yALWMFU8-gFD2G0NdWqIDIenrAMUY4VCW1oi8TJXFAc,1325
-django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.mo,sha256=CTOu_JOAQeC72VX5z9cg8Bn3HtZsdgbtjA7XKcy681o,1078
-django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po,sha256=6LArEWoBpdaJa7UPcyv4HJKD3YoKUxrwGQGd16bi9DM,1379
-django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
-django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po,sha256=SB07aEGG7n4oX_5rqHB6OnjpK_K0KwFM7YxaWYNpB_4,991
-django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.mo,sha256=GYQYfYWbgwL3nQJR5d7XGjc5KeYYXsB0yRQJz7zxd_k,1097
-django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po,sha256=byvw9sQ9VLVjS7Au81LcNpxOzwA29_4Al9nB1ZyV2b4,1408
-django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.mo,sha256=dQz7j45qlY3M1rL2fCVdPnuHMUdUcJ0K6cKgRD7Js2w,1154
-django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po,sha256=_hwx9XqeX5QYRFtDpEYkChswn8WMdYTQlbzL1LjREbY,1368
-django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.mo,sha256=gMDLuxVazSNvwLmi5AqJEsxugmDVLk8DlxseHRRoQoc,1072
-django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po,sha256=hFPL2GH-o6XN0SKu5kqgiEaGT8lKnbi_zmlUNCn3Obg,1364
-django/contrib/contenttypes/locale/he/LC_MESSAGES/django.mo,sha256=oaxWykyc3N63WpxyHPI5CyhCTBqhM5-2Sasp_DNm1xc,1219
-django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po,sha256=wCm08UMCiCa6y1-5E-7bEz-8Kd0oMRMwgzoEJjMwFyw,1486
-django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.mo,sha256=KAZuQMKOvIPj3a7GrNJE3yhT70O2abCEF2GOsbwTE5A,1321
-django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po,sha256=PcsNgu2YmT0biklhwOF_nSvoGTvWVKw2IsBxIwSVAtI,1577
-django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.mo,sha256=DbOUA8ks3phsEwQvethkwZ9-ymrd36aQ6mP7OnGdpjU,1167
-django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po,sha256=722KxvayO6YXByAmO4gfsfzyVbT-HqqrLYQsr02KDc8,1445
-django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.mo,sha256=tPtv_lIzCPIUjGkAYalnNIUxVUQFE3MShhVXTnfVx3Q,1106
-django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po,sha256=rbI3G8ARG7DF7uEe82SYCfotBnKTRJJ641bGhjdptTQ,1329
-django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.mo,sha256=2nsylOwBIDOnkUjE2GYU-JRvgs_zxent7q3_PuscdXk,1102
-django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po,sha256=Dzcf94ZSvJtyNW9EUKpmyNJ1uZbXPvc7dIxCccZrDYc,1427
-django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.mo,sha256=hKOErB5dzj44ThQ1_nZHak2-aXZlwMoxYcDWmPb3Xo8,1290
-django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po,sha256=UeGzaghsEt9Lt5DsEzRb9KCbuphWUQwLayt4AN194ao,1421
-django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.mo,sha256=9B0XhxH0v3FvkEvS5MOHHqVbgV6KQITPrjzx1Sn76GA,1105
-django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po,sha256=NX8jpTaIhtVbVlwEsOl5aufZ80ljHZZwqtsVVozQb4M,1318
-django/contrib/contenttypes/locale/id/LC_MESSAGES/django.mo,sha256=4-6RBAvrtA1PY3LNxMrgwzBLZE0ZKwWaXa7SmtmAIyk,1031
-django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po,sha256=xdxEOgfta1kaXyQAngmmbL8wDQzJU6boC9HdbmoM1iI,1424
-django/contrib/contenttypes/locale/io/LC_MESSAGES/django.mo,sha256=3SSRXx4tYiMUc00LZ9kGHuvTgaWpsICEf5G208CEqgg,1051
-django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po,sha256=1ku9WPcenn47DOF05HL2eRqghZeRYfklo2huYUrkeJ0,1266
-django/contrib/contenttypes/locale/is/LC_MESSAGES/django.mo,sha256=ZYWbT4qeaco8h_J9SGF2Bs7Rdu3auZ969xZ0RQ_03go,1049
-django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po,sha256=iNdghSbBVPZmfrHu52hRG8vHMgGUfOjLqie09fYcuso,1360
-django/contrib/contenttypes/locale/it/LC_MESSAGES/django.mo,sha256=GSP0BJc3bGLoNS0tnhiz_5dtSh5NXCrBiZbnwEhWbpk,1075
-django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po,sha256=njEgvhDwWOc-CsGBDz1_mtEsXx2aTU6cP3jZzcLkkYk,1457
-django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.mo,sha256=tVH6RvZ5tXz56lEM3aoJtFp5PKsSR-XXpi8ZNCHjiFw,1211
-django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po,sha256=5_-Uo7Ia3X9gAWm2f72ezQnNr_pQzf6Ax4AUutULuZU,1534
-django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.mo,sha256=1_yGL68sK0QG_mhwFAVdksiDlB57_1W5QkL7NGGE5L0,1429
-django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po,sha256=6iUBbKjXsIgrq7Dj_xhxzoxItSSSKwQjIZsDayefGr8,1654
-django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.mo,sha256=SNY0vydwLyR2ExofAHjmg1A2ykoLI7vU5Ryq-QFu5Gs,627
-django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po,sha256=PU-NAl6xUEeGV0jvJx9siVBTZIzHywL7oKc4DgUjNkc,1130
-django/contrib/contenttypes/locale/km/LC_MESSAGES/django.mo,sha256=BXifukxf48Lr0t0V3Y0GJUMhD1KiHN1wwbueoK0MW1A,678
-django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po,sha256=fTPlBbnaNbLZxjzJutGvqe33t6dWsEKiHQYaw27m7KQ,1123
-django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.mo,sha256=a4sDGaiyiWn-1jFozYI4vdAvuHXrs8gbZErP_SAUk9Y,714
-django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po,sha256=A6Vss8JruQcPUKQvY-zaubVZDTLEPwHsnd_rXcyzQUs,1168
-django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.mo,sha256=myRfFxf2oKcbpmCboongTsL72RTM95nEmAC938M-ckE,1089
-django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po,sha256=uui_LhgGTrW0uo4p-oKr4JUzhjvkLbFCqRVLNMrptzY,1383
-django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.mo,sha256=ULoIe36zGKPZZs113CenA6J9HviYcBOKagXrPGxyBUI,1182
-django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.po,sha256=FnW5uO8OrTYqbvoRuZ6gnCD6CHnuLjN00s2Jo1HX1NE,1465
-django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
-django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po,sha256=dwVKpCRYmXTD9h69v5ivkZe-yFtvdZNZ3VfuyIl4olY,989
-django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.mo,sha256=HucsRl-eqfxw6ESTuXvl7IGjPGYSI9dxM5lMly_P1sc,1215
-django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po,sha256=odzYqHprxKFIrR8TzdxA4WeeMK0W0Nvn2gAVuzAsEqI,1488
-django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.mo,sha256=nWfy7jv2VSsKYT6yhk_xqxjk1TlppJfsQcurC40CeTs,1065
-django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po,sha256=pHlbzgRpIJumDMp2rh1EKrxFBg_DRcvLLgkQ3mi_L0s,1356
-django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.mo,sha256=KTFZWm0F4S6lmi1FX76YKOyJqIZN5cTsiTBI_D4ADHs,1258
-django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po,sha256=mQZosS90S-Bil6-EoGjs9BDWYlvOF6mtUDZ8h9NxEdE,1534
-django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.mo,sha256=rtmLWfuxJED-1KuqkUT8F5CU1KGJP0Of718n2Gl_gI0,1378
-django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po,sha256=Z-kL9X9CD7rYfa4Uoykye2UgCNQlgyql0HTv1eUXAf4,1634
-django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.mo,sha256=J6kKYjUOsQxptNXDcCaY4d3dHJio4HRibRk3qfwO6Xc,1225
-django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po,sha256=x8aRJH2WQvMBBWlQt3T3vpV4yHeZXLmRTT1U0at4ZIk,1525
-django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
-django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po,sha256=FgZKD9E-By0NztUnBM4llpR59K0MJSIMZIrJYGKDqpc,983
-django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.mo,sha256=EIwbOZ0QahW9AFFWRmRdKGKBtYYY_eTcfU4eqDVSVxw,1035
-django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.po,sha256=t7nKsOMxycn_CsXw2nIfU-owJRge3FAixgbTsDhffvo,1225
-django/contrib/contenttypes/locale/my/LC_MESSAGES/django.mo,sha256=YYa2PFe9iJygqL-LZclfpgR6rBmIvx61JRpBkKS6Hrs,1554
-django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po,sha256=6F3nXd9mBc-msMchkC8OwAHME1x1O90xrsZp7xmynpU,1732
-django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.mo,sha256=EHU9Lm49U7WilR5u-Lq0Fg8ChR_OzOce4UyPlkZ6Zs4,1031
-django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po,sha256=lbktPYsJudrhe4vxnauzpzN9eNwyoVs0ZmZSdkwjkOk,1403
-django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.mo,sha256=-zZAn5cex4PkScoZVqS74PUMThJJuovZSk3WUKZ8hnw,1344
-django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po,sha256=1ZCUkulQ9Gxb50yMKFKWaTJli2SinBeNj0KpXkKpsNE,1519
-django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.mo,sha256=aXDHgg891TyTiMWNcbNaahfZQ2hqtl5yTkx5gNRocMU,1040
-django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po,sha256=zDJ_vyQxhP0mP06U-e4p6Uj6v1g863s8oaxc0JIAMjg,1396
-django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.mo,sha256=a_X8e2lMieWwUtENJueBr8wMvkw6at0QSaWXd5AM6yQ,1040
-django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po,sha256=xFSirHUAKv78fWUpik6xv-6WQSEoUgN5jjPbTOy58C4,1317
-django/contrib/contenttypes/locale/os/LC_MESSAGES/django.mo,sha256=QV533Wu-UpjV3XiCe83jlz7XGuwgRviV0ggoeMaIOIY,1116
-django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po,sha256=UZahnxo8z6oWJfEz4JNHGng0EAifXYtJupB6lx0JB60,1334
-django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.mo,sha256=qacd7eywof8rvJpstNfEmbHgvDiQ9gmkcyG7gfato8s,697
-django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po,sha256=Kq2NTzdbgq8Q9jLLgV-ZJaSRj43D1dDHcRIgNnJXu-s,1145
-django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.mo,sha256=J5sC36QwKLvrMB4adsojhuw2kYuEckHz6eoTrZwYcnI,1208
-django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po,sha256=gxP59PjlIHKSiYZcbgIY4PUZSoKYx4YKCpm4W4Gj22g,1577
-django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.mo,sha256=MjyyKlA75YtEG9m6hm0GxKhU-cF3m1PA_j63BuIPPlE,1125
-django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.po,sha256=X2Rec6LXIqPa9AVqF4J2mzYrwfls1BdUfN8XOe0zkdQ,1379
-django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.mo,sha256=qjl-3fBqNcAuoviGejjILC7Z8XmrRd7gHwOgwu1x1zw,1117
-django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.po,sha256=Xp0iBhseS8v13zjDcNQv4BDaroMtDJVs4-BzNc0UOpU,1494
-django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.mo,sha256=sCthDD10v7GY2cui9Jj9HK8cofVEg2WERCm6aktOM-4,1142
-django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.po,sha256=n-BPEfua0Gd6FN0rsP7qAlTGbQEZ14NnDMA8jI2844Y,1407
-django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.mo,sha256=OSf206SFmVLULHmwVhTaRhWTQtyDKsxe03gIzuvAUnY,1345
-django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.po,sha256=xHyJYD66r8We3iN5Hqo69syWkjhz4zM7X9BWPIiI6mU,1718
-django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.mo,sha256=xf95XGPB9Tyz7p8JH1aqiY4BYMkug2cnN5gNNlHV7xU,1082
-django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.po,sha256=wqbW-x6NEJU7nIAmYnKw9ncgmrcD3TKW7aPg7rIiX_M,1395
-django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.mo,sha256=sMML-ubI_9YdKptzeri1du8FOdKcEzJbe4Tt0J4ePFI,1147
-django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.po,sha256=0zxiyzRWWDNVpNNLlcwl-OLh5sLukma1vm-kYrGHYrE,1392
-django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.mo,sha256=jYDQH3OpY4Vx9hp6ISFMI88uxBa2GDQK0BkLGm8Qulk,1066
-django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.po,sha256=JIvguXVOFpQ3MRqRXHpxlg8_YhEzCsZBBMdpekYTxlk,1322
-django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo,sha256=GUXj97VN15HdY7XMy5jmMLEu13juD3To5NsztcoyPGs,1204
-django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po,sha256=T1w_EeB6yT-PXr7mrwzqu270linf_KY3_ZCgl4wfLAQ,1535
-django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=m2plistrI8O-ztAs5HmDYXG8N_wChaDfXFev0GYWVys,1102
-django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.po,sha256=lJrhLPDbJAcXgBPco-_lfUXqs31imj_vGwE5p1EXZjk,1390
-django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.mo,sha256=J5ha8X6jnQ4yuafk-JCqPM5eIGNwKpDOpTwIVCrnGNE,1055
-django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.po,sha256=HeKnQJaRNflAbKxTiC_2EFAg2Sx-e3nDXrReJyVoNTQ,1400
-django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.mo,sha256=XLPle0JYPPkmm5xpJRmWztMTF1_3a2ZubWE4ur2sav8,563
-django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.po,sha256=jRc8Eh6VuWgqc4kM-rxjbVE3yV9uip6mOJLdD6yxGLM,1009
-django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.mo,sha256=L3eF4z9QSmIPqzEWrNk8-2uLteQUMsuxiD9VZyRuSfo,678
-django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.po,sha256=iDb9lRU_-YPmO5tEQeXEZeGeFe-wVZy4k444sp_vTgw,1123
-django/contrib/contenttypes/locale/te/LC_MESSAGES/django.mo,sha256=S_UF_mZbYfScD6Z36aB-kwtTflTeX3Wt4k7z_pEcOV8,690
-django/contrib/contenttypes/locale/te/LC_MESSAGES/django.po,sha256=aAGMMoJPg_pF9_rCNZmda5A_TvDCvQfYEL64Xdoa4jo,1135
-django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.mo,sha256=dkLic6fD2EMzrB7m7MQazaGLoJ_pBw55O4nYZc5UYEs,864
-django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.po,sha256=1nv1cVJewfr44gbQh1Szzy3DT4Y9Dy7rUgAZ81otJQs,1232
-django/contrib/contenttypes/locale/th/LC_MESSAGES/django.mo,sha256=qilt-uZMvt0uw-zFz7-eCmkGEx3XYz7NNo9Xbq3s7uI,1186
-django/contrib/contenttypes/locale/th/LC_MESSAGES/django.po,sha256=42F34fNEn_3yQKBBJnCLttNeyktuLVpilhMyepOd6dg,1444
-django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.mo,sha256=0fuA3E487-pceoGpX9vMCwSnCItN_pbLUIUzzcrAGOE,1068
-django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.po,sha256=pS8wX9dzxys3q8Vvz3PyoVJYqplXhNuAqfq7Dsb07fw,1283
-django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.mo,sha256=gKg2FCxs2fHpDB1U6gh9xrP7mOpYG65pB4CNmdPYiDg,1057
-django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.po,sha256=gmI3RDhq39IlDuvNohT_FTPY5QG8JD0gFxG5CTsvVZs,1345
-django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.mo,sha256=_LQ1N04FgosdDLUYXJOEqpCB2Mg92q95cBRgYPi1MyY,659
-django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.po,sha256=L7wMMpxGnpQiKd_mjv2bJpE2iqCJ8XwiXK0IN4EHSbM,1110
-django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
-django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.po,sha256=YVyej0nAhhEf7knk4vCeRQhmSQeGZLhMPPXyIyWObnM,977
-django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.mo,sha256=GgAuuLexfhYl1fRKPfZI5uMTkt2H42Ogil6MQHcejkU,1404
-django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.po,sha256=1HzO_Wmxqk0Kd5gtACKZODiH8ZEpOf5Eh8Mkrg3IMf8,1779
-django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.mo,sha256=OJs_EmDBps-9a_KjFJnrS8IqtJfd25LaSWeyG8u8UfI,671
-django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.po,sha256=f0FnsaAM_qrBuCXzLnkBrW5uFfVc6pUh7S-qp4918Ng,1122
-django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.mo,sha256=kGYgEI1gHkyU4y_73mBJN1hlKC2JujVXMg6iCdWncDg,1155
-django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.po,sha256=RIDUgsElfRF8bvBdUKtshizuMnupdMGAM896s7qZKD4,1439
-django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=RviK0bqLZzPrZ46xUpc0f8IKkw3JLtsrt0gNA74Ypj0,1015
-django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.po,sha256=vSKJDEQ_ANTj3-W8BFJd9u_QGdTMF12iS15rVgeujOs,1380
-django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=NMumOJ9dPX-7YjQH5Obm4Yj0-lnGXJmCMN5DGbsLQG4,1046
-django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.po,sha256=7WIqYRpcs986MjUsegqIido5k6HG8d3FVvkrOQCRVCI,1338
-django/contrib/contenttypes/management/__init__.py,sha256=ZVHVJAYi_jCIXxWUZSkxq0IDECe6bvbFsWayrqbutfc,4937
-django/contrib/contenttypes/management/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/contenttypes/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-310.pyc,,
-django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py,sha256=t2IpqEgqW7bmS6o59arCGWA7G95fg1r7oVGUny6syao,4533
-django/contrib/contenttypes/migrations/0001_initial.py,sha256=6-NKdPKCI-2eJnQkspHtLV4pwFLxt8CC0oRPzCjaa6k,1435
-django/contrib/contenttypes/migrations/0002_remove_content_type_name.py,sha256=I-nWyZcwqZTCmhMydWM86t0wtdxoS2sPggc4brhh2SM,1200
-django/contrib/contenttypes/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-310.pyc,,
-django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-310.pyc,,
-django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/contenttypes/models.py,sha256=6TDDAS8C6tmsp4S5M8xM2oblm49uPGVVkLdPy5oxSTU,6821
-django/contrib/contenttypes/views.py,sha256=HBoIbNpgHTQN5pH8mul77UMEMZHbbkEH_Qdln-XFgd0,3549
-django/contrib/flatpages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/flatpages/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/flatpages/__pycache__/admin.cpython-310.pyc,,
-django/contrib/flatpages/__pycache__/apps.cpython-310.pyc,,
-django/contrib/flatpages/__pycache__/forms.cpython-310.pyc,,
-django/contrib/flatpages/__pycache__/middleware.cpython-310.pyc,,
-django/contrib/flatpages/__pycache__/models.cpython-310.pyc,,
-django/contrib/flatpages/__pycache__/sitemaps.cpython-310.pyc,,
-django/contrib/flatpages/__pycache__/urls.cpython-310.pyc,,
-django/contrib/flatpages/__pycache__/views.cpython-310.pyc,,
-django/contrib/flatpages/admin.py,sha256=ynemOSDgvKoCfRFLXZrPwj27U0mPUXmxdrue7SOZeqQ,701
-django/contrib/flatpages/apps.py,sha256=_OlaDxWbMrUmFNCS4u-RnBsg67rCWs8Qzh_c58wvtXA,252
-django/contrib/flatpages/forms.py,sha256=MyuENmsP1Wn01frdVSug7JnabiwoHf8nm-PthAlcoQw,2493
-django/contrib/flatpages/locale/af/LC_MESSAGES/django.mo,sha256=c0XEKXJYgpy2snfmWFPQqeYeVla1F5s_wXIBaioiyPc,2297
-django/contrib/flatpages/locale/af/LC_MESSAGES/django.po,sha256=_psp14JfICDxrKx_mKF0uLnItkJPkCNMvrNOyE35nFw,2428
-django/contrib/flatpages/locale/ar/LC_MESSAGES/django.mo,sha256=dBHaqsaKH9QOIZ0h2lIDph8l9Bv2UAcD-Hr9TAxj8Ac,2636
-django/contrib/flatpages/locale/ar/LC_MESSAGES/django.po,sha256=-0ZdfA-sDU8fOucgT2Ow1iM3QnRMuQeslMOSwYhAH9M,2958
-django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=jp6sS05alESJ4-SbEIf574UPVcbllAd_J-FW802lGyk,2637
-django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.po,sha256=yezpjWcROwloS08TEMo9oPXDKS1mfFE9NYI66FUuLaA,2799
-django/contrib/flatpages/locale/ast/LC_MESSAGES/django.mo,sha256=4SEsEE2hIZJwQUNs8jDgN6qVynnUYJUIE4w-usHKA6M,924
-django/contrib/flatpages/locale/ast/LC_MESSAGES/django.po,sha256=5UlyS59bVo1lccM6ZgdYSgHe9NLt_WeOdXX-swLKubU,1746
-django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo,sha256=6ID6KejChxQzsUT4wevUAjd9u7Ly21mfJ22dgbitNN4,2373
-django/contrib/flatpages/locale/az/LC_MESSAGES/django.po,sha256=v7tkbuUUqkbUzXoOOWxS75TpvuMESqoZAEXDXisfbiA,2679
-django/contrib/flatpages/locale/be/LC_MESSAGES/django.mo,sha256=mOQlbfwwIZiwWCrFStwag2irCwsGYsXIn6wZDsPRvyA,2978
-django/contrib/flatpages/locale/be/LC_MESSAGES/django.po,sha256=wlIfhun5Jd6gxbkmmYPSIy_tzPVmSu4CjMwPzBNnvpo,3161
-django/contrib/flatpages/locale/bg/LC_MESSAGES/django.mo,sha256=9Un5mKtsAuNeYWFQKFkIyCpQquE6qVD3zIrFoq8sCDI,2802
-django/contrib/flatpages/locale/bg/LC_MESSAGES/django.po,sha256=Vr6d-9XjgK4_eXdWY3FEpdTlCEGgbCv93bLGyMTE9hs,3104
-django/contrib/flatpages/locale/bn/LC_MESSAGES/django.mo,sha256=2oK2Rm0UtAI7QFRwpUR5aE3-fOltE6kTilsTbah737Y,2988
-django/contrib/flatpages/locale/bn/LC_MESSAGES/django.po,sha256=QrbX69iqXOD6oByLcgPkD1QzAkfthpfTjezIFQ-6kVg,3172
-django/contrib/flatpages/locale/br/LC_MESSAGES/django.mo,sha256=SKbykdilX_NcpkVi_lHF8LouB2G49ZAzdF09xw49ERc,2433
-django/contrib/flatpages/locale/br/LC_MESSAGES/django.po,sha256=O_mwrHIiEwV4oB1gZ7Yua4nVKRgyIf3j5UtedZWAtwk,2783
-django/contrib/flatpages/locale/bs/LC_MESSAGES/django.mo,sha256=bd7ID7OsEhp57JRw_TXoTwsVQNkFYiR_sxSkgi4WvZU,1782
-django/contrib/flatpages/locale/bs/LC_MESSAGES/django.po,sha256=IyFvI5mL_qesEjf6NO1nNQbRHhCAZQm0UhIpmGjrSwQ,2233
-django/contrib/flatpages/locale/ca/LC_MESSAGES/django.mo,sha256=GcMVbg4i5zKCd2Su7oN30WVJN7Q9K7FsFifgTB8jDPI,2237
-django/contrib/flatpages/locale/ca/LC_MESSAGES/django.po,sha256=-aJHSbWPVyNha_uF6R35Q6yn4-Hse3jTInr9jtaxKOI,2631
-django/contrib/flatpages/locale/cs/LC_MESSAGES/django.mo,sha256=8nwep22P86bMCbW7sj4n0BMGl_XaJIJV0fjnVp-_dqY,2340
-django/contrib/flatpages/locale/cs/LC_MESSAGES/django.po,sha256=1agUeRthwpam1UvZY4vRnZtLLbiop75IEXb6ul_e3mg,2611
-django/contrib/flatpages/locale/cy/LC_MESSAGES/django.mo,sha256=zr_2vsDZsrby3U8AmvlJMU3q1U_4IrrTmz6oS29OWtQ,2163
-django/contrib/flatpages/locale/cy/LC_MESSAGES/django.po,sha256=E_NC_wtuhWKYKB3YvYGB9ccJgKI3AfIZlB2HpXSyOsk,2370
-django/contrib/flatpages/locale/da/LC_MESSAGES/django.mo,sha256=nALoI50EvFPa4f3HTuaHUHATF1zHMjo4v5zcHj4n6sA,2277
-django/contrib/flatpages/locale/da/LC_MESSAGES/django.po,sha256=j4dpnreB7LWdZO7Drj7E9zBwFx_Leuj7ZLyEPi-ccAQ,2583
-django/contrib/flatpages/locale/de/LC_MESSAGES/django.mo,sha256=I4CHFzjYM_Wd-vuIYOMf8E58ntOgkLmgOAg35Chdz3s,2373
-django/contrib/flatpages/locale/de/LC_MESSAGES/django.po,sha256=P6tPVPumP9JwBIv-XXi1QQYJyj1PY3OWoM4yOAmgTRE,2592
-django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.mo,sha256=oTILSe5teHa9XTYWoamstpyPu02yb_xo8S0AtkP7WP8,2391
-django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.po,sha256=1xD2aH5alerranvee6QLZqgxDVXxHThXCHR4kOJAV48,2576
-django/contrib/flatpages/locale/el/LC_MESSAGES/django.mo,sha256=LQ8qIGwzoKwewtLz_1NhnhEeR4dPx2rrQ_hAN4BF6Og,2864
-django/contrib/flatpages/locale/el/LC_MESSAGES/django.po,sha256=gbLO52fcZK7LoG5Rget2Aq5PTFoz467ackXpSsR81kY,3221
-django/contrib/flatpages/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/flatpages/locale/en/LC_MESSAGES/django.po,sha256=0bNWKiu-1MkHFJ_UWrCLhp9ENr-pHzBz1lkhBkkrhJM,2169
-django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTt7KtwiEyMEKYVzkPSqs6VS0CiUfK7ISz2c6rV2erA,2210
-django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po,sha256=_V4RTf0JtmyU7DRQv7jIwtPJs05KA2THPid5nKQ0ego,2418
-django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.mo,sha256=7zyXYOsqFkUGxclW-VPPxrQTZKDuiYQ7MQJy4m8FClo,1989
-django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.po,sha256=oHrBd6lVnO7-SdnO-Taa7iIyiqp_q2mQZjkuuU3Qa_s,2232
-django/contrib/flatpages/locale/eo/LC_MESSAGES/django.mo,sha256=QsmIOjVlQGcgeAFTa8ND9Uuuihyl63OIJnFwh4MkvZ0,2032
-django/contrib/flatpages/locale/eo/LC_MESSAGES/django.po,sha256=uVTSEAswL_siMnbhOsqWyMGziQr9byUQPiltEEZpS7I,2530
-django/contrib/flatpages/locale/es/LC_MESSAGES/django.mo,sha256=9Q7Qf1eSPvAfPTZSGWq7QMWrROY-CnpUkeRpiH8rpJw,2258
-django/contrib/flatpages/locale/es/LC_MESSAGES/django.po,sha256=3vGZ3uVCyWnIkDSUt6DMMOqyphv3EQteTPLx7e9J_sU,2663
-django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.mo,sha256=bUnFDa5vpxl27kn2ojTbNaCmwRkBCH-z9zKXAvXe3Z0,2275
-django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.po,sha256=vEg3wjL_7Ee-PK4FZTaGRCXFscthkoH9szJ7H01K8w8,2487
-django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.mo,sha256=jt8wzeYky5AEnoNuAv8W4nGgd45XsMbpEdRuLnptr3U,2140
-django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.po,sha256=xrbAayPoxT7yksXOGPb-0Nc-4g14UmWANaKTD4ItAFA,2366
-django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.mo,sha256=Y5IOKRzooJHIhJzD9q4PKOe39Z4Rrdz8dBKuvmGkqWU,2062
-django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.po,sha256=Y-EXhw-jISttA9FGMz7gY_kB-hQ3wEyKEaOc2gu2hKQ,2246
-django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.mo,sha256=EI6WskepXUmbwCPBNFKqLGNcWFVZIbvXayOHxOCLZKo,2187
-django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.po,sha256=ipG6a0A2d0Pyum8GcknA-aNExVLjSyuUqbgHM9VdRQo,2393
-django/contrib/flatpages/locale/et/LC_MESSAGES/django.mo,sha256=zriqETEWD-DDPiNzXgAzgEhjvPAaTo7KBosyvBebyc0,2233
-django/contrib/flatpages/locale/et/LC_MESSAGES/django.po,sha256=tMuITUlzy6LKJh3X3CxssFpTQogg8OaGHlKExzjwyOI,2525
-django/contrib/flatpages/locale/eu/LC_MESSAGES/django.mo,sha256=FoKazUkuPpDgsEEI6Gm-xnZYVHtxILiy6Yzvnu8y-L0,2244
-django/contrib/flatpages/locale/eu/LC_MESSAGES/django.po,sha256=POPFB5Jd8sE9Z_ivYSdnet14u-aaXneTUNDMuOrJy00,2478
-django/contrib/flatpages/locale/fa/LC_MESSAGES/django.mo,sha256=2rA7-OR8lQbl_ZhlAC4cmHEmQ9mwxnA8q5M-gx3NmVQ,2612
-django/contrib/flatpages/locale/fa/LC_MESSAGES/django.po,sha256=_-yKW2xIN9XSXEwZTdkhEpRHJoacN8f56D3AkCvlFs0,3006
-django/contrib/flatpages/locale/fi/LC_MESSAGES/django.mo,sha256=VsQdof8hE_AKQGS-Qp82o8PTN_7NxxEdxelGenIAE-8,2256
-django/contrib/flatpages/locale/fi/LC_MESSAGES/django.po,sha256=RL7eruNkgDjr1b3cF2yCqeM8eDKHwAqF6h8hYuxl6R4,2552
-django/contrib/flatpages/locale/fr/LC_MESSAGES/django.mo,sha256=ZqD4O3_Ny8p5i6_RVHlANCnPiowMd19Qi_LOPfTHav4,2430
-django/contrib/flatpages/locale/fr/LC_MESSAGES/django.po,sha256=liAoOgT2CfpANL_rYzyzsET1MhsM19o7wA2GBnoDvMA,2745
-django/contrib/flatpages/locale/fy/LC_MESSAGES/django.mo,sha256=DRsFoZKo36F34XaiQg_0KUOr3NS_MG3UHptzOI4uEAU,476
-django/contrib/flatpages/locale/fy/LC_MESSAGES/django.po,sha256=9JIrRVsPL1m0NPN6uHiaAYxJXHp5IghZmQhVSkGo5g8,1523
-django/contrib/flatpages/locale/ga/LC_MESSAGES/django.mo,sha256=KKvDhZULHQ4JQ_31ltLkk88H2BKUbBXDQFSvdKFqjn8,2191
-django/contrib/flatpages/locale/ga/LC_MESSAGES/django.po,sha256=Yat7oU2XPQFQ8vhNq1nJFAlX2rqfxz4mjpU5TcnaYO8,2400
-django/contrib/flatpages/locale/gd/LC_MESSAGES/django.mo,sha256=KbaTL8kF9AxDBLDQWlxcP5hZ4zWnbkvY0l2xRKZ9Dg0,2469
-django/contrib/flatpages/locale/gd/LC_MESSAGES/django.po,sha256=DVY_1R0AhIaI1qXIeRej3XSHMtlimeKNUwzFjc4OmwA,2664
-django/contrib/flatpages/locale/gl/LC_MESSAGES/django.mo,sha256=VXyPsc6cXB97dJJFGfD8Oh2lYpn8TFYjIOeFUQeYpVU,2039
-django/contrib/flatpages/locale/gl/LC_MESSAGES/django.po,sha256=MzE7lepmRu60wy9gn6Wxx-LtKIO9JwScSdJ3SyLRU9s,2366
-django/contrib/flatpages/locale/he/LC_MESSAGES/django.mo,sha256=PbypHBhT3W_rp37u8wvaCJdtYB4IP-UeE02VUvSHPf0,2517
-django/contrib/flatpages/locale/he/LC_MESSAGES/django.po,sha256=f7phCRqJPFL7CsuSE1xg9xlaBoOpdd-0zoTYotff29M,2827
-django/contrib/flatpages/locale/hi/LC_MESSAGES/django.mo,sha256=w29ukoF48C7iJ6nE045YoWi7Zcrgu_oXoxT-r6gcQy8,2770
-django/contrib/flatpages/locale/hi/LC_MESSAGES/django.po,sha256=nXq5y1FqMGVhpXpQVdV3uU5JcUtBc2BIrf-n__C2q30,3055
-django/contrib/flatpages/locale/hr/LC_MESSAGES/django.mo,sha256=Mt4gpBuUXvcBl8K714ls4PimHQqee82jFxY1BEAYQOE,2188
-django/contrib/flatpages/locale/hr/LC_MESSAGES/django.po,sha256=ZbUMJY6a-os-xDmcDCJNrN4-YqRe9b_zJ4V5gt2wlGI,2421
-django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.mo,sha256=Pk44puT-3LxzNdGYxMALWpFdw6j6W0G-dWwAfv8sopI,2361
-django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.po,sha256=mhnBXgZSK19E4JU8p2qzqyZqozSzltK-3iY5glr9WG8,2538
-django/contrib/flatpages/locale/hu/LC_MESSAGES/django.mo,sha256=rZxICk460iWBubNq53g9j2JfKIw2W7OqyPG5ylGE92s,2363
-django/contrib/flatpages/locale/hu/LC_MESSAGES/django.po,sha256=DDP7OLBkNbWXr-wiulmQgG461qAubJ8VrfCCXbyPk2g,2700
-django/contrib/flatpages/locale/hy/LC_MESSAGES/django.mo,sha256=qocNtyLcQpjmGqQ130VGjJo-ruaOCtfmZehS9If_hWk,2536
-django/contrib/flatpages/locale/hy/LC_MESSAGES/django.po,sha256=WD8ohMnsaUGQItyqQmS46d76tKgzhQ17X_tGevqULO0,2619
-django/contrib/flatpages/locale/ia/LC_MESSAGES/django.mo,sha256=bochtCPlc268n0WLF0bJtUUT-XveZLPOZPQUetnOWfU,500
-django/contrib/flatpages/locale/ia/LC_MESSAGES/django.po,sha256=gOJ850e8sFcjR2G79zGn3_0-9-KSy591i7ketBRFjyw,1543
-django/contrib/flatpages/locale/id/LC_MESSAGES/django.mo,sha256=2kRHbcmfo09pIEuBb8q5AOkgC0sISJrAG37Rb5F0vts,2222
-django/contrib/flatpages/locale/id/LC_MESSAGES/django.po,sha256=1avfX88CkKMh2AjzN7dxRwj9pgohIBgKE0aXB_shZfc,2496
-django/contrib/flatpages/locale/io/LC_MESSAGES/django.mo,sha256=N8R9dXw_cnBSbZtwRbX6Tzw5XMr_ZdRkn0UmsQFDTi4,464
-django/contrib/flatpages/locale/io/LC_MESSAGES/django.po,sha256=_pJveonUOmMu3T6WS-tV1OFh-8egW0o7vU3i5YqgChA,1511
-django/contrib/flatpages/locale/is/LC_MESSAGES/django.mo,sha256=lFtP1N5CN-x2aMtBNpB6j5HsZYZIZYRm6Y-22gNe1Ek,2229
-django/contrib/flatpages/locale/is/LC_MESSAGES/django.po,sha256=9e132zDa-n6IZxB8jO5H8I0Wr7ubYxrFEMBYj2W49vI,2490
-django/contrib/flatpages/locale/it/LC_MESSAGES/django.mo,sha256=oOEG327VGpi0K5P2UOQgQa39ln15t0lAz2Z36MIQQAc,2209
-django/contrib/flatpages/locale/it/LC_MESSAGES/django.po,sha256=ar8i-bTtAKhiXLULCsKMddpmYBjKyg2paYxBI6ImY1s,2526
-django/contrib/flatpages/locale/ja/LC_MESSAGES/django.mo,sha256=Qax3t7FFRonMrszVEeiyQNMtYyWQB3dmOeeIklEmhAg,2469
-django/contrib/flatpages/locale/ja/LC_MESSAGES/django.po,sha256=N6PBvnXLEWELKTx8nHm5KwydDuFFKq5pn6AIHsBSM5M,2848
-django/contrib/flatpages/locale/ka/LC_MESSAGES/django.mo,sha256=R4OSbZ-lGxMdeJYsaXVXpo6-KSZWeKPuErKmEsUvEQE,3022
-django/contrib/flatpages/locale/ka/LC_MESSAGES/django.po,sha256=TWKtkRamM6YD-4WMoqfZ7KY-ZPs5ny7G82Wst6vQRko,3306
-django/contrib/flatpages/locale/kk/LC_MESSAGES/django.mo,sha256=lMPryzUQr21Uy-NAGQhuIZjHz-4LfBHE_zxEc2_UPaw,2438
-django/contrib/flatpages/locale/kk/LC_MESSAGES/django.po,sha256=3y9PbPw-Q8wM7tCq6u3KeYUT6pfTqcQwlNlSxpAXMxQ,2763
-django/contrib/flatpages/locale/km/LC_MESSAGES/django.mo,sha256=FYRfhNSqBtavYb10sHZNfB-xwLwdZEfVEzX116nBs-k,1942
-django/contrib/flatpages/locale/km/LC_MESSAGES/django.po,sha256=d2AfbR78U0rJqbFmJQvwiBl_QvYIeSwsPKEnfYM4JZA,2471
-django/contrib/flatpages/locale/kn/LC_MESSAGES/django.mo,sha256=n5HCZEPYN_YIVCXrgA1qhxvfhZtDbhfiannJy5EkHkI,1902
-django/contrib/flatpages/locale/kn/LC_MESSAGES/django.po,sha256=-CHwu13UuE2-Qg6poG949I_dw3YiPI9ZhMh5h2vP4xw,2443
-django/contrib/flatpages/locale/ko/LC_MESSAGES/django.mo,sha256=M-IInVdIH24ORarb-KgY60tEorJZgrThDfJQOxW-S0c,2304
-django/contrib/flatpages/locale/ko/LC_MESSAGES/django.po,sha256=DjAtWVAN_fwOvZb-7CUSLtO8WN0Sr08z3jQLNqZ98wY,2746
-django/contrib/flatpages/locale/ky/LC_MESSAGES/django.mo,sha256=WmdWR6dRgmJ-nqSzFDUETypf373fj62igDVHC4ww7hQ,2667
-django/contrib/flatpages/locale/ky/LC_MESSAGES/django.po,sha256=0XDF6CjQTGkuaHADytG95lpFRVndlf_136q0lrQiU1U,2907
-django/contrib/flatpages/locale/lb/LC_MESSAGES/django.mo,sha256=Wkvlh5L_7CopayfNM5Z_xahmyVje1nYOBfQJyqucI_0,502
-django/contrib/flatpages/locale/lb/LC_MESSAGES/django.po,sha256=gGeTuniu3ZZ835t9HR-UtwCcd2s_Yr7ihIUm3jgQ7Y0,1545
-django/contrib/flatpages/locale/lt/LC_MESSAGES/django.mo,sha256=es6xV6X1twtqhIMkV-MByA7KZ5SoVsrx5Qh8BuzJS0Q,2506
-django/contrib/flatpages/locale/lt/LC_MESSAGES/django.po,sha256=T__44veTC_u4hpPvkLekDOWfntXYAMzCd5bffRtGxWA,2779
-django/contrib/flatpages/locale/lv/LC_MESSAGES/django.mo,sha256=RJbVUR8qS8iLL3dD5x1TOau4hcdscHUJBfxge3p3dsM,2359
-django/contrib/flatpages/locale/lv/LC_MESSAGES/django.po,sha256=M6GT6S-5-7__RtSbJ9oqkIlxfU3FIWMlGAQ03NEfcKo,2610
-django/contrib/flatpages/locale/mk/LC_MESSAGES/django.mo,sha256=55H8w6fB-B-RYlKKkGw3fg2m-djxUoEp_XpupK-ZL70,2699
-django/contrib/flatpages/locale/mk/LC_MESSAGES/django.po,sha256=OhHJ5OVWb0jvNaOB3wip9tSIZ1yaPPLkfQR--uUEyUI,2989
-django/contrib/flatpages/locale/ml/LC_MESSAGES/django.mo,sha256=VMMeOujp5fiLzrrbDeH24O2qKBPUkvI_YTSPH-LQjZc,3549
-django/contrib/flatpages/locale/ml/LC_MESSAGES/django.po,sha256=KR2CGnZ1sVuRzSGaPj5IlspoAkVuVEdf48XsAzt1se0,3851
-django/contrib/flatpages/locale/mn/LC_MESSAGES/django.mo,sha256=tqwROY6D-bJ4gbDQIowKXfuLIIdCWksGwecL2sj_wco,2776
-django/contrib/flatpages/locale/mn/LC_MESSAGES/django.po,sha256=jqiBpFLXlptDyU4F8ZWbP61S4APSPh0-nuTpNOejA6c,3003
-django/contrib/flatpages/locale/mr/LC_MESSAGES/django.mo,sha256=GvSfsp0Op7st6Ifd8zp8Cj4tTHoFMltQb4p64pebrqI,468
-django/contrib/flatpages/locale/mr/LC_MESSAGES/django.po,sha256=sayU0AfVaSFpBj0dT32Ri55LRafQFUHLi03K06kI7gc,1515
-django/contrib/flatpages/locale/ms/LC_MESSAGES/django.mo,sha256=5t_67bMQhux6v6SSWqHfzzCgc6hm3olxgHAsKOMGGZU,2184
-django/contrib/flatpages/locale/ms/LC_MESSAGES/django.po,sha256=-ZzZ8lfAglGkO_BRYz1lRlywxaF1zZ28-Xv74O2nT04,2336
-django/contrib/flatpages/locale/my/LC_MESSAGES/django.mo,sha256=OcbiA7tJPkyt_WNrqyvoFjHt7WL7tMGHV06AZSxzkho,507
-django/contrib/flatpages/locale/my/LC_MESSAGES/django.po,sha256=EPWE566Vn7tax0PYUKq93vtydvmt-A4ooIau9Cwcdfc,1550
-django/contrib/flatpages/locale/nb/LC_MESSAGES/django.mo,sha256=L_XICESZ0nywkk1dn6RqzdUbFTcR92ju-zHCT1g3iEg,2208
-django/contrib/flatpages/locale/nb/LC_MESSAGES/django.po,sha256=ZtcBVD0UqIcsU8iLu5a2wnHLqu5WRLLboVFye2IuQew,2576
-django/contrib/flatpages/locale/ne/LC_MESSAGES/django.mo,sha256=gDZKhcku1NVlSs5ZPPupc7RI8HOF7ex0R4Rs8tMmrYE,1500
-django/contrib/flatpages/locale/ne/LC_MESSAGES/django.po,sha256=GWlzsDaMsJkOvw2TidJOEf1Fvxx9WxGdGAtfZIHkHwk,2178
-django/contrib/flatpages/locale/nl/LC_MESSAGES/django.mo,sha256=_yV_-SYYjpbo-rOHp8NlRzVHFPOSrfS-ndHOEJ9JP3Y,2231
-django/contrib/flatpages/locale/nl/LC_MESSAGES/django.po,sha256=xUuxx2b4ZTCA-1RIdoMqykLgjLLkmpO4ur1Vh93IITU,2669
-django/contrib/flatpages/locale/nn/LC_MESSAGES/django.mo,sha256=sHkuZneEWo1TItSlarlnOUR7ERjc76bJfHUcuFgd9mQ,2256
-django/contrib/flatpages/locale/nn/LC_MESSAGES/django.po,sha256=MpI9qkWqj4rud__xetuqCP-eFHUgMYJpfBhDnWRKPK4,2487
-django/contrib/flatpages/locale/os/LC_MESSAGES/django.mo,sha256=cXGTA5M229UFsgc7hEiI9vI9SEBrNQ8d3A0XrtazO6w,2329
-django/contrib/flatpages/locale/os/LC_MESSAGES/django.po,sha256=m-qoTiKePeFviKGH1rJRjZRH-doJ2Fe4DcZ6W52rG8s,2546
-django/contrib/flatpages/locale/pa/LC_MESSAGES/django.mo,sha256=69_ZsZ4nWlQ0krS6Mx3oL6c4sP5W9mx-yAmOhZOnjPU,903
-django/contrib/flatpages/locale/pa/LC_MESSAGES/django.po,sha256=N6gkoRXP5MefEnjywzRiE3aeU6kHQ0TUG6IGdLV7uww,1780
-django/contrib/flatpages/locale/pl/LC_MESSAGES/django.mo,sha256=5M5-d-TOx2WHlD6BCw9BYIU6bYrSR0Wlem89ih5k3Pc,2448
-django/contrib/flatpages/locale/pl/LC_MESSAGES/django.po,sha256=oKeeo-vNfPaCYVUbufrJZGk0vsgzAE0kLQOTF5qHAK4,2793
-django/contrib/flatpages/locale/pt/LC_MESSAGES/django.mo,sha256=xD2pWdS3XMg7gAqBrUBmCEXFsOzEs0Npe8AJnlpueRY,2115
-django/contrib/flatpages/locale/pt/LC_MESSAGES/django.po,sha256=-K2jipPUWjXpfSPq3upnC_bvtaRAeOw0OLRFv03HWFY,2326
-django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.mo,sha256=YGyagSFIc-ssFN8bnqVRce1_PsybvLmI8RVCygjow8E,2291
-django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.po,sha256=pFA8RPNefZpuhbxBHLt9KrI2RiHxct5V-DnZA-XqBv0,2942
-django/contrib/flatpages/locale/ro/LC_MESSAGES/django.mo,sha256=oS3MXuRh2USyLOMrMH0WfMSFpgBcZWfrbCrovYgbONo,2337
-django/contrib/flatpages/locale/ro/LC_MESSAGES/django.po,sha256=UNKGNSZKS92pJDjxKDLqVUW87DKCWP4_Q51xS16IZl0,2632
-django/contrib/flatpages/locale/ru/LC_MESSAGES/django.mo,sha256=AACtHEQuytEohUZVgk-o33O7rJTFAluq22VJOw5JqII,2934
-django/contrib/flatpages/locale/ru/LC_MESSAGES/django.po,sha256=H6JOPAXNxji1oni9kfga_hNZevodStpEl0O6cDnZ148,3312
-django/contrib/flatpages/locale/sk/LC_MESSAGES/django.mo,sha256=8_NZkzRd3Bcewp4GiczCAjQshq5rl29TPEj1RbBPipo,2321
-django/contrib/flatpages/locale/sk/LC_MESSAGES/django.po,sha256=qo9Xvr2whYmwtc1n39T_9ADcI3nP-t-jtVh2S51KkFQ,2601
-django/contrib/flatpages/locale/sl/LC_MESSAGES/django.mo,sha256=MBjwhw6wppQUl0Lb_rShXZj_Sq-JLSkdYU5Xhi0OtYY,2173
-django/contrib/flatpages/locale/sl/LC_MESSAGES/django.po,sha256=6zbOXzkLTsdWRKAhuLzBVBc53n6MQKpvOeHw4cRrAlc,2400
-django/contrib/flatpages/locale/sq/LC_MESSAGES/django.mo,sha256=Jv2sebdAM6CfiLzgi1b7rHo5hp-6_BFeeMQ4_BwYpjk,2328
-django/contrib/flatpages/locale/sq/LC_MESSAGES/django.po,sha256=Xm87FbWaQ1JGhhGx8uvtqwUltkTkwk5Oysagu8qIPUA,2548
-django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo,sha256=p--v7bpD8Pp6zeP3cdh8fnfC8g2nuhbzGJTdN9eoE58,2770
-django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po,sha256=jxcyMN2Qh_osmo4Jf_6QUC2vW3KVKt1BupDWMMZyAXA,3071
-django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=3N4mGacnZj0tI5tFniLqC2LQCPSopDEM1SGaw5N1bsw,2328
-django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.po,sha256=od7r3dPbZ7tRAJUW80Oe-nm_tHcmIiG6b2OZMsFg53s,2589
-django/contrib/flatpages/locale/sv/LC_MESSAGES/django.mo,sha256=1pFmNWiExWo5owNijZHZb8-Tbd0nYPqqvTmIitcFPbY,2252
-django/contrib/flatpages/locale/sv/LC_MESSAGES/django.po,sha256=l3anvdgLQJzYehCalwr1AAh8e-hRKrL_bSNwmkfgbbc,2613
-django/contrib/flatpages/locale/sw/LC_MESSAGES/django.mo,sha256=Lhf99AGmazKJHzWk2tkGrMInoYOq0mtdCd8SGblnVCQ,1537
-django/contrib/flatpages/locale/sw/LC_MESSAGES/django.po,sha256=cos3eahuznpTfTdl1Vj_07fCOSYE8C9CRYHCBLYZrVw,1991
-django/contrib/flatpages/locale/ta/LC_MESSAGES/django.mo,sha256=nNuoOX-FPAmTvM79o7colM4C7TtBroTFxYtETPPatcQ,1945
-django/contrib/flatpages/locale/ta/LC_MESSAGES/django.po,sha256=XE4SndPZPLf1yXGl5xQSb0uor4OE8CKJ0EIXBRDA3qU,2474
-django/contrib/flatpages/locale/te/LC_MESSAGES/django.mo,sha256=bMxhDMTQc_WseqoeqJMCSNy71o4U5tJZYgD2G0p-jD0,1238
-django/contrib/flatpages/locale/te/LC_MESSAGES/django.po,sha256=tmUWOrAZ98B9T6Cai8AgLCfb_rLeoPVGjDTgdsMOY1Y,2000
-django/contrib/flatpages/locale/tg/LC_MESSAGES/django.mo,sha256=gpzjf_LxwWX6yUrcUfNepK1LGez6yvnuYhmfULDPZ6E,2064
-django/contrib/flatpages/locale/tg/LC_MESSAGES/django.po,sha256=lZFLes8BWdJ-VbczHFDWCSKhKg0qmmk10hTjKcBNr5o,2572
-django/contrib/flatpages/locale/th/LC_MESSAGES/django.mo,sha256=mct17_099pUn0aGuHu8AlZG6UqdKDpYLojqGYDLRXRg,2698
-django/contrib/flatpages/locale/th/LC_MESSAGES/django.po,sha256=PEcRx5AtXrDZvlNGWFH-0arroD8nZbutdJBe8_I02ag,2941
-django/contrib/flatpages/locale/tk/LC_MESSAGES/django.mo,sha256=5iVSzjcnJLfdAnrI1yOKua_OfHmgUu6ydixKkvayrzQ,753
-django/contrib/flatpages/locale/tk/LC_MESSAGES/django.po,sha256=0VK0Ju55wTvmYXqS9hPKLJXyTtTz9Z8mv_qw66ck5gg,1824
-django/contrib/flatpages/locale/tr/LC_MESSAGES/django.mo,sha256=pPNGylfG8S0iBI4ONZbky3V2Q5AG-M1njp27tFrhhZc,2290
-django/contrib/flatpages/locale/tr/LC_MESSAGES/django.po,sha256=0ULZu3Plp8H9zdirHy3MSduJ_QRdpoaaivf3bL9MCwA,2588
-django/contrib/flatpages/locale/tt/LC_MESSAGES/django.mo,sha256=9RfCKyn0ZNYsqLvFNmY18xVMl7wnmDq5uXscrsFfupk,2007
-django/contrib/flatpages/locale/tt/LC_MESSAGES/django.po,sha256=SUwalSl8JWI9tuDswmnGT8SjuWR3DQGND9roNxJtH1o,2402
-django/contrib/flatpages/locale/udm/LC_MESSAGES/django.mo,sha256=7KhzWgskBlHmi-v61Ax9fjc3NBwHB17WppdNMuz-rEc,490
-django/contrib/flatpages/locale/udm/LC_MESSAGES/django.po,sha256=zidjP05Hx1OpXGqWEmF2cg9SFxASM4loOV85uW7zV5U,1533
-django/contrib/flatpages/locale/uk/LC_MESSAGES/django.mo,sha256=r2RZT8xQ1Gi9Yp0nnoNALqQ4zrEJ0JC7m26E5gSeq4g,3002
-django/contrib/flatpages/locale/uk/LC_MESSAGES/django.po,sha256=qcVizoTiKYc1c9KwSTwSALHgjjSGVY2oito_bBRLVTE,3405
-django/contrib/flatpages/locale/ur/LC_MESSAGES/django.mo,sha256=Li4gVdFoNOskGKAKiNuse6B2sz6ePGqGvZu7aGXMNy0,1976
-django/contrib/flatpages/locale/ur/LC_MESSAGES/django.po,sha256=hDasKiKrYov9YaNIHIpoooJo0Bzba___IuN2Hl6ofSc,2371
-django/contrib/flatpages/locale/vi/LC_MESSAGES/django.mo,sha256=FsFUi96oGTWGlZwM4qSMpuL1M2TAxsW51qO70TrybSM,1035
-django/contrib/flatpages/locale/vi/LC_MESSAGES/django.po,sha256=ITX3MWd7nlWPxTCoNPl22_OMLTt0rfvajGvTVwo0QC8,1900
-django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=UTCQr9t2wSj6dYLK1ftpF8-pZ25dAMYLRE2wEUQva-o,2124
-django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.po,sha256=loi9RvOnrgFs4qp8FW4RGis7wgDzBBXuwha5pFfLRxY,2533
-django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=Y5nDMQ3prLJ6OHuQEeEqjDLBC9_L-4XHDGJSLNoCgqg,2200
-django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.po,sha256=6dKCSJpw_8gnunfTY86_apXdH5Pqe0kKYSVaqRtOIh0,2475
-django/contrib/flatpages/middleware.py,sha256=aXeOeOkUmpdkGOyqZnkR-l1VrDQ161RWIWa3WPBhGac,784
-django/contrib/flatpages/migrations/0001_initial.py,sha256=hTnlVa-FRA-H5lNuNkT2CKhxDViGJ3xyeZaPR7qpWR0,2409
-django/contrib/flatpages/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-310.pyc,,
-django/contrib/flatpages/migrations/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/flatpages/models.py,sha256=3ugRRsDwB5C3GHOWvtOzjJl-y0yqqjYZBSOMt24QYuw,1764
-django/contrib/flatpages/sitemaps.py,sha256=CEhZOsLwv3qIJ1hs4eHlE_0AAtYjicb_yRzsstY19eg,584
-django/contrib/flatpages/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-310.pyc,,
-django/contrib/flatpages/templatetags/flatpages.py,sha256=QH-suzsoPIMSrgyHR9O8uOdmfIkBv_w3LM-hGfQvnU8,3552
-django/contrib/flatpages/urls.py,sha256=Rs37Ij192SOtSBjd4Lx9YtpINfEMg7XRY01dEOY8Rgg,179
-django/contrib/flatpages/views.py,sha256=H4LG7Janb6Dcn-zINLmp358hR60JigAKGzh4A4PMPaM,2724
-django/contrib/gis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/__pycache__/apps.cpython-310.pyc,,
-django/contrib/gis/__pycache__/feeds.cpython-310.pyc,,
-django/contrib/gis/__pycache__/geometry.cpython-310.pyc,,
-django/contrib/gis/__pycache__/measure.cpython-310.pyc,,
-django/contrib/gis/__pycache__/ptr.cpython-310.pyc,,
-django/contrib/gis/__pycache__/shortcuts.cpython-310.pyc,,
-django/contrib/gis/__pycache__/views.cpython-310.pyc,,
-django/contrib/gis/admin/__init__.py,sha256=fPyCk9pBLWojuzrhZ6-dWQIvD3kpYg_HwsFzSxhawg8,672
-django/contrib/gis/admin/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/admin/__pycache__/options.cpython-310.pyc,,
-django/contrib/gis/admin/__pycache__/widgets.cpython-310.pyc,,
-django/contrib/gis/admin/options.py,sha256=7dR6t_kD3yma_pcz8gwrudWiKbaIkIh6cFX7T5lqoWU,6390
-django/contrib/gis/admin/widgets.py,sha256=ASQOB1n1Lv2ovioyNwFi6ikXYh3Kf7-1jtWIjvxD0oM,5096
-django/contrib/gis/apps.py,sha256=dbAFKx9jj9_QdhdNfL5KCC47puH_ZTw098jsJFwDO9Y,417
-django/contrib/gis/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/db/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/db/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/db/backends/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/db/backends/__pycache__/utils.cpython-310.pyc,,
-django/contrib/gis/db/backends/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-310.pyc,,
-django/contrib/gis/db/backends/base/__pycache__/features.cpython-310.pyc,,
-django/contrib/gis/db/backends/base/__pycache__/models.cpython-310.pyc,,
-django/contrib/gis/db/backends/base/__pycache__/operations.cpython-310.pyc,,
-django/contrib/gis/db/backends/base/adapter.py,sha256=qbLG-sLB6EZ_sA6-E_uIClyp5E5hz9UQ-CsR3BWx8W8,592
-django/contrib/gis/db/backends/base/features.py,sha256=fF-AKB6__RjkxVRadNkOP7Av4wMaRGkXKybYV6ES2Gk,3718
-django/contrib/gis/db/backends/base/models.py,sha256=WqpmVLqK21m9J6k_N-SGPXq1VZMuNHafyB9xqxUwR4k,4009
-django/contrib/gis/db/backends/base/operations.py,sha256=SHW9YHjDexxhUN_BMQ85lGND5mLQwNQOJ6UQUXdNDOs,6778
-django/contrib/gis/db/backends/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-310.pyc,,
-django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-310.pyc,,
-django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-310.pyc,,
-django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-310.pyc,,
-django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-310.pyc,,
-django/contrib/gis/db/backends/mysql/base.py,sha256=z75wKhm-e9JfRLCvgDq-iv9OqOjBBAS238JTTrWfHRQ,498
-django/contrib/gis/db/backends/mysql/features.py,sha256=AtlQM3bi4kTxYA-PIg2RGedGFTNeBDvF6_MNhaymWTc,1529
-django/contrib/gis/db/backends/mysql/introspection.py,sha256=ERHtD2ah6e7kwSk5gnUftLgx7tkQoVJilLV7_mE30wo,1793
-django/contrib/gis/db/backends/mysql/operations.py,sha256=pEVvx2k4o8YWpZtXXUZ2PtyJfm-GYHWBN_wjLo26I1o,4226
-django/contrib/gis/db/backends/mysql/schema.py,sha256=aRsCej6zX-6TgrSnSBZzvXK7c9mXQlZZQPeunzyGovo,3238
-django/contrib/gis/db/backends/oracle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-310.pyc,,
-django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-310.pyc,,
-django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-310.pyc,,
-django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-310.pyc,,
-django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-310.pyc,,
-django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-310.pyc,,
-django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-310.pyc,,
-django/contrib/gis/db/backends/oracle/adapter.py,sha256=IB5C_zBe_yvbZ-w71kuh_A77sGESuJOUbxGTFKEHDw4,2025
-django/contrib/gis/db/backends/oracle/base.py,sha256=_7qhvEdbnrJQEKL51sg8YYu8kRYmQNAlBgNb2OUbBkw,507
-django/contrib/gis/db/backends/oracle/features.py,sha256=3yCDutKz4iX01eOjLf0CLe_cemMaRjDmH8ZKNy_Sbyk,1021
-django/contrib/gis/db/backends/oracle/introspection.py,sha256=51_nz8_OKGP1TCw44no20Vt6EV1B9MTKu8irSnkqZBo,1890
-django/contrib/gis/db/backends/oracle/models.py,sha256=7mij7owmmwqAl-4rPJmEU_zW3hZZI0hix7HyFOwJkms,2084
-django/contrib/gis/db/backends/oracle/operations.py,sha256=x6zraAyoMZa8rdcLAc2k35rprJxBAoqzDSdFYMcm52k,8652
-django/contrib/gis/db/backends/oracle/schema.py,sha256=4bjssdtSl2_n3CWX67k4yLOCLzevU5CYg-yx8s4A39Y,4469
-django/contrib/gis/db/backends/postgis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-310.pyc,,
-django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-310.pyc,,
-django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-310.pyc,,
-django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-310.pyc,,
-django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-310.pyc,,
-django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-310.pyc,,
-django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-310.pyc,,
-django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-310.pyc,,
-django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-310.pyc,,
-django/contrib/gis/db/backends/postgis/adapter.py,sha256=BGkZyVqSQ0VJ1lL-St1uqQZZbSS_9Qddb9BIS-6-AvA,2232
-django/contrib/gis/db/backends/postgis/base.py,sha256=Ai3kvz6JqH1HqJG_XqjfnZOX26Uo7qmwbUPavudCcTI,937
-django/contrib/gis/db/backends/postgis/const.py,sha256=_ODq71ixhGpojzbO1DAWs5O4REFgzruIpQkNhPw9O-E,2007
-django/contrib/gis/db/backends/postgis/features.py,sha256=GuBG7N5_zUuyf49ZIOLMI0AxQciUMav5A1VxAmWlCuk,457
-django/contrib/gis/db/backends/postgis/introspection.py,sha256=ihrNd_qHQ64DRjoaPj9-1a0y3H8Ko4gWbK2N5fDA3_g,3164
-django/contrib/gis/db/backends/postgis/models.py,sha256=nFFshpCS4Az4js853MuZxdsp_SOOIlghjuu2XZEeB-Y,2002
-django/contrib/gis/db/backends/postgis/operations.py,sha256=UgGtQbBIEjSi44DUTUM1Z7OmyNb1nAZLOE0gS5xY6sA,16103
-django/contrib/gis/db/backends/postgis/pgraster.py,sha256=_cxT4yPT4123YdIs5M8_gV4ela-YdGd-B3fGISSD-5M,4658
-django/contrib/gis/db/backends/postgis/schema.py,sha256=gA5w4fEwKqP-S52OEYDLXSFD8MWCBKnAAXD6-ySMfE8,2879
-django/contrib/gis/db/backends/spatialite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-310.pyc,,
-django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-310.pyc,,
-django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-310.pyc,,
-django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-310.pyc,,
-django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-310.pyc,,
-django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-310.pyc,,
-django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-310.pyc,,
-django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-310.pyc,,
-django/contrib/gis/db/backends/spatialite/adapter.py,sha256=qTiA5BBGUFND3D7xGK_85oo__HSexTH32XF4uin3ZV0,318
-django/contrib/gis/db/backends/spatialite/base.py,sha256=wU1fgp68CLyKELsMfO6zYM85ox4g_GloWESEK8EPrfM,3218
-django/contrib/gis/db/backends/spatialite/client.py,sha256=dNM7mqDyTzFlgQR1XhqZIftnR9VRH7AfcSvvy4vucEs,138
-django/contrib/gis/db/backends/spatialite/features.py,sha256=zkmJPExFtRqjRj608ZTlsSpxkYaPbV3A3SEfX3PcaFY,876
-django/contrib/gis/db/backends/spatialite/introspection.py,sha256=V_iwkz0zyF1U-AKq-UlxvyDImqQCsitcmvxk2cUw81A,3118
-django/contrib/gis/db/backends/spatialite/models.py,sha256=Of5O1At0W9wQ5PPLVpO0LWth2KDCOJt6Cfz5_OwaYR0,1930
-django/contrib/gis/db/backends/spatialite/operations.py,sha256=me6dv6Ejt5VQ2-lkiQC3TkiT-DABB92YqY9z7AcEra0,8308
-django/contrib/gis/db/backends/spatialite/schema.py,sha256=Uqo4Zp3q_HlmdjTWXvMAVn4_p5piK35iJ7UGXzqQ0Hc,7204
-django/contrib/gis/db/backends/utils.py,sha256=rLwSv79tKJPxvDHACY8rhPDLFZC79mEIlIySTyl_qqc,785
-django/contrib/gis/db/models/__init__.py,sha256=TrCS27JdVa-Q7Hok-YaJxb4eLrPdyvRmasJGIu05fvA,865
-django/contrib/gis/db/models/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/db/models/__pycache__/aggregates.cpython-310.pyc,,
-django/contrib/gis/db/models/__pycache__/fields.cpython-310.pyc,,
-django/contrib/gis/db/models/__pycache__/functions.cpython-310.pyc,,
-django/contrib/gis/db/models/__pycache__/lookups.cpython-310.pyc,,
-django/contrib/gis/db/models/__pycache__/proxy.cpython-310.pyc,,
-django/contrib/gis/db/models/aggregates.py,sha256=kM-GKfjwurd7D3P6sDbkEpZXBaocqobcSarQ89OEJko,2969
-django/contrib/gis/db/models/fields.py,sha256=n40s9HYbqVpFKIW9b4X4IQ8INWUus7QZi5QdiWVPsTI,14312
-django/contrib/gis/db/models/functions.py,sha256=v-DSLE-QfBCghNn-M2ZzXbKEoyMDulS581CIeSBICvg,18259
-django/contrib/gis/db/models/lookups.py,sha256=1raEdKM1m7e2rdMRZ4g30UKzLieJ1QCXcAdeAyuH1LA,11798
-django/contrib/gis/db/models/proxy.py,sha256=o2wXW3sFIWhjhkSrzrwFaCdatvZLF8Z5Zs3s1ugmriA,3173
-django/contrib/gis/db/models/sql/__init__.py,sha256=-rzcC3izMJi2bnvyQUCMzIOrigBnY6N_5EQIim4wCSY,134
-django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-310.pyc,,
-django/contrib/gis/db/models/sql/conversion.py,sha256=AZLJCMSw_svSLQPB5LTvA-YRFnMZSXYdHdvPSTFmK4Y,2432
-django/contrib/gis/feeds.py,sha256=0vNVVScIww13bOxvlQfXAOCItIOGWSXroKKl6QXGB58,5995
-django/contrib/gis/forms/__init__.py,sha256=Zyid_YlZzHUcMYkfGX1GewmPPDNc0ni7HyXKDTeIkjo,318
-django/contrib/gis/forms/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/forms/__pycache__/fields.cpython-310.pyc,,
-django/contrib/gis/forms/__pycache__/widgets.cpython-310.pyc,,
-django/contrib/gis/forms/fields.py,sha256=FrZaZWXFUdWK1QEu8wlda3u6EtqaVHjQRYrSKKu66PA,4608
-django/contrib/gis/forms/widgets.py,sha256=JYsXnfglVDttWxUbpd6GcoliXDwYUenVB2NfCfQo6iw,4000
-django/contrib/gis/gdal/LICENSE,sha256=VwoEWoNyts1qAOMOuv6OPo38Cn_j1O8sxfFtQZ62Ous,1526
-django/contrib/gis/gdal/__init__.py,sha256=m5cRj_qvD3jbLDjMk0ggDxW_hifeZ-CbtRtHZUIsRiQ,1827
-django/contrib/gis/gdal/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/base.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/datasource.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/driver.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/envelope.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/error.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/feature.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/field.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/geometries.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/geomtype.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/layer.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/libgdal.cpython-310.pyc,,
-django/contrib/gis/gdal/__pycache__/srs.cpython-310.pyc,,
-django/contrib/gis/gdal/base.py,sha256=yymyL0vZRMBfiFUzrehvaeaunIxMH5ucGjPRfKj-rAo,181
-django/contrib/gis/gdal/datasource.py,sha256=78S8Z5H61PCJS1_-CCJbiJAOP12X-IWo79PwCfyiVXI,4611
-django/contrib/gis/gdal/driver.py,sha256=eCzrqEVOwyTlcRItrUirmEdNaSrsAIvw9jP_Z669xds,3351
-django/contrib/gis/gdal/envelope.py,sha256=Aj3Qn33QWjDYrwX1je2AZOmokffzs-s4kD96HL1easQ,7323
-django/contrib/gis/gdal/error.py,sha256=Vt-Uis9z786UGE3tD7fjiH8_0P5HSTO81n4fad4l6kw,1578
-django/contrib/gis/gdal/feature.py,sha256=HPWoCZjwzsUnhc7QmKh-BBMRqJCjj07RcFI6vjbdnp4,4017
-django/contrib/gis/gdal/field.py,sha256=EKE-Ioj5L79vo93Oixz_JE4TIZbDTRy0YVGvZH-I1z4,6886
-django/contrib/gis/gdal/geometries.py,sha256=tYXqoHD0kY8LWN1SVcabj15kfeXy2WTQW9zKIeR8-iQ,24346
-django/contrib/gis/gdal/geomtype.py,sha256=VD_w5GymdaKJwgBW1cq2Xjtl3EVXCvJh26LIlKgW_PM,3071
-django/contrib/gis/gdal/layer.py,sha256=PygAgsRZzWekp6kq6NEAZ6vhQTSo1Nk4c1Yi_pOdK58,8825
-django/contrib/gis/gdal/libgdal.py,sha256=81WzGM6MUjycMhbQM6n_QcFCzn_Y_vnOi2hd_9WDYDw,3538
-django/contrib/gis/gdal/prototypes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-310.pyc,,
-django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-310.pyc,,
-django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-310.pyc,,
-django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-310.pyc,,
-django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-310.pyc,,
-django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-310.pyc,,
-django/contrib/gis/gdal/prototypes/ds.py,sha256=aWeItuRLGr9N3qcnB7vuooNbeGerkixnDRUjtaX7zk0,4525
-django/contrib/gis/gdal/prototypes/errcheck.py,sha256=wlRqrVnozMingrYIBH_9oMMzY9DMrX00BYzP_n54iu0,4173
-django/contrib/gis/gdal/prototypes/generation.py,sha256=c4m3x0QkDhDDaYxavGcvMLs3RNNb9EzfKTzHudWF1f8,4889
-django/contrib/gis/gdal/prototypes/geom.py,sha256=LjygKS-WbNMXj4Y8kaYGSn0OU5-UlQpjCmpmj3aPjhY,5046
-django/contrib/gis/gdal/prototypes/raster.py,sha256=HPLc2gAsGRhNwkjTgtZzHdjWG8LKbcSdwRl1A3qjQDk,5994
-django/contrib/gis/gdal/prototypes/srs.py,sha256=uJ7XgnrX7TuvpgJu8uwes7CWidC7-C6PSSqNeEpJur8,3731
-django/contrib/gis/gdal/raster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/gdal/raster/__pycache__/band.cpython-310.pyc,,
-django/contrib/gis/gdal/raster/__pycache__/base.cpython-310.pyc,,
-django/contrib/gis/gdal/raster/__pycache__/const.cpython-310.pyc,,
-django/contrib/gis/gdal/raster/__pycache__/source.cpython-310.pyc,,
-django/contrib/gis/gdal/raster/band.py,sha256=RPdut6BeQ9vW71rrPMwb2CnXrbCys8YAt1BA8Aholy0,8343
-django/contrib/gis/gdal/raster/base.py,sha256=2GGlL919lPr7YVGFtdIynLPIH-QKYhzrUpoXwVRlM1k,2882
-django/contrib/gis/gdal/raster/const.py,sha256=xBoMW6PeykWg3_IfVIEaGdrKTahxCMENCtDVzHOB8V8,2981
-django/contrib/gis/gdal/raster/source.py,sha256=yUh6gpu04EyynuDubIhPXAVSCqcb-5g9kk3mmez6z9c,18324
-django/contrib/gis/gdal/srs.py,sha256=uIF9WL5FGThhV_rspN79DATEJ41Xtcco3H-Zg7RyuNc,12675
-django/contrib/gis/geoip2/__init__.py,sha256=YY9IoFvLImeagLMqouHeY62qKfo0qXl3AFQh63-_Ego,824
-django/contrib/gis/geoip2/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/geoip2/__pycache__/base.cpython-310.pyc,,
-django/contrib/gis/geoip2/__pycache__/resources.cpython-310.pyc,,
-django/contrib/gis/geoip2/base.py,sha256=XyX4Qklk05iC245aNtKzEW2oC3wuotipR2FLDLtS9O0,8865
-django/contrib/gis/geoip2/resources.py,sha256=Lzz-Ok677UBmMZQdHsPv1-qPBeJ8bc4HKTk7_UzmY0I,819
-django/contrib/gis/geometry.py,sha256=0INgLWg4LeRjoO3fUm7f68vXXWmaJGBZGbt-GJovTlc,666
-django/contrib/gis/geos/LICENSE,sha256=CL8kt1USOK4yUpUkVCWxyuua0PQvni0wPHs1NQJjIEU,1530
-django/contrib/gis/geos/__init__.py,sha256=LCGbpFFWXYm6SunsMzV9LoPLNRtDKEWaQ7P4VUtsk84,660
-django/contrib/gis/geos/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/base.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/collections.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/coordseq.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/error.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/factory.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/geometry.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/io.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/libgeos.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/linestring.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/mutable_list.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/point.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/polygon.cpython-310.pyc,,
-django/contrib/gis/geos/__pycache__/prepared.cpython-310.pyc,,
-django/contrib/gis/geos/base.py,sha256=NdlFg5l9akvDp87aqzh9dk0A3ZH2TI3cOq10mmmuHBk,181
-django/contrib/gis/geos/collections.py,sha256=p3-m7yjqxsKPhLZxvLoQUtNKElM3tQjbs860LTCSnYM,3940
-django/contrib/gis/geos/coordseq.py,sha256=zK2p4lzNHzgw6HgYT1vXwEgQg_ad3BdUIMSDHSS2H-U,7284
-django/contrib/gis/geos/error.py,sha256=r3SNTnwDBI6HtuyL3mQ_iEEeKlOqqqdkHnhNoUkMohw,104
-django/contrib/gis/geos/factory.py,sha256=KQF6lqAh5KRlFSDgN-BSXWojmWFabbEUFgz2IGYX_vk,961
-django/contrib/gis/geos/geometry.py,sha256=y7T5PMD4pR_XA3WbKnTzHVjZyVXnm-WawMMykl40GTU,26400
-django/contrib/gis/geos/io.py,sha256=P3bfg3AIWv99lrqmzFZyP-i6e5YiCuC32fql_IXPgUo,799
-django/contrib/gis/geos/libgeos.py,sha256=rEoKvo3cJ9yqIUyVCeQSIxxuHdVAmburE1cqFQFbtZM,4987
-django/contrib/gis/geos/linestring.py,sha256=BJAoWfHW08EX1UpNFVB09iSKXdTS6pZsTIBc6DcZcfc,6372
-django/contrib/gis/geos/mutable_list.py,sha256=nthCtQ0FsJrDGd29cSERwXb-tJkpK35Vc0T_ywCnXgc,10121
-django/contrib/gis/geos/point.py,sha256=bvatsdXTb1XYy1EaSZvp4Rnr2LwXZU12zILefLu6sRw,4781
-django/contrib/gis/geos/polygon.py,sha256=xjXuXiHJnxiJwP2b30BnDN93kyxOKQotwpT0W_GOqzE,6734
-django/contrib/gis/geos/prepared.py,sha256=J5Dj6e3u3gEfVPNOM1E_rvcmcXR2-CdwtbAcoiDU5a0,1577
-django/contrib/gis/geos/prototypes/__init__.py,sha256=YEg8BbMqHRMxqy9aQWxItqfa80hzrGpu9GaH6D3fgog,1412
-django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-310.pyc,,
-django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-310.pyc,,
-django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-310.pyc,,
-django/contrib/gis/geos/prototypes/__pycache__/io.cpython-310.pyc,,
-django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-310.pyc,,
-django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-310.pyc,,
-django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-310.pyc,,
-django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-310.pyc,,
-django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-310.pyc,,
-django/contrib/gis/geos/prototypes/coordseq.py,sha256=fIcSIzmyCbazQSR-XdvCwtP2YZItQur1Y27vfAKXNfw,3122
-django/contrib/gis/geos/prototypes/errcheck.py,sha256=aW4kLew3tdXZ4NmJhOF2NFY837ACid6Vm-_a10ET5Q8,2788
-django/contrib/gis/geos/prototypes/geom.py,sha256=NlR-rUFCj_V3lppSmYSI2bapLim_VUJXABwElTldZM0,3398
-django/contrib/gis/geos/prototypes/io.py,sha256=gyiOOrXxY3r7J9DWN2pVvM6-gK2TL997q_koEaBmrWA,11360
-django/contrib/gis/geos/prototypes/misc.py,sha256=3Ek1DTeDo4BBsS7LloseeSHPBz70Vu-4mF-dxSjyXLU,1168
-django/contrib/gis/geos/prototypes/predicates.py,sha256=67HWiwf5NWFWNjiDJ8GvdlS5rCw0BcO7brqcDMwv_5s,1599
-django/contrib/gis/geos/prototypes/prepared.py,sha256=4I9pS75Q5MZ1z8A1v0mKkmdCly33Kj_0sDcrqxOppzM,1175
-django/contrib/gis/geos/prototypes/threadsafe.py,sha256=n1yCYvQCtc7piFrhjeZCWH8Pf0-AiOGBH33VZusTgWI,2302
-django/contrib/gis/geos/prototypes/topology.py,sha256=7TNgvTU8L3cyoU0VMXbox3RA3qmUePDXejJiHMntXlU,2327
-django/contrib/gis/locale/af/LC_MESSAGES/django.mo,sha256=TN3GddZjlqXnhK8UKLlMoMIXNw2szzj7BeRjoKjsR5c,470
-django/contrib/gis/locale/af/LC_MESSAGES/django.po,sha256=XPdXaQsZ6yDPxF3jVMEI4bli_5jrEawoO-8DHMk8Q_A,1478
-django/contrib/gis/locale/ar/LC_MESSAGES/django.mo,sha256=5LCO903yJTtRVaaujBrmwMx8f8iLa3ihasgmj8te9eg,2301
-django/contrib/gis/locale/ar/LC_MESSAGES/django.po,sha256=pfUyK0VYgY0VC2_LvWZvG_EEIWa0OqIUfhiPT2Uov3Q,2569
-django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=1e2lutVEjsa5vErMdjS6gaBbOLPTVIpDv15rax-wvKg,2403
-django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.po,sha256=dizXM36w-rUtI7Dv2mSoJDR5ouVR6Ar7zqjywX3xKr0,2555
-django/contrib/gis/locale/ast/LC_MESSAGES/django.mo,sha256=8o0Us4wR14bdv1M5oBeczYC4oW5uKnycWrj1-lMIqV4,850
-django/contrib/gis/locale/ast/LC_MESSAGES/django.po,sha256=0beyFcBkBOUNvPP45iqewTNv2ExvCPvDYwpafCJY5QM,1684
-django/contrib/gis/locale/az/LC_MESSAGES/django.mo,sha256=liiZOQ712WIdLolC8_uIHY6G4QPJ_sYhp5CfwxTXEv0,1976
-django/contrib/gis/locale/az/LC_MESSAGES/django.po,sha256=kUxBJdYhLZNnAO3IWKy4R3ijTZBiG-OFMg2wrZ7Jh28,2172
-django/contrib/gis/locale/be/LC_MESSAGES/django.mo,sha256=4B6F3HmhZmk1eLi42Bw90aipUHF4mT-Zlmsi0aKojHg,2445
-django/contrib/gis/locale/be/LC_MESSAGES/django.po,sha256=4QgQvhlM_O4N_8uikD7RASkS898vov-qT_FkQMhg4cE,2654
-django/contrib/gis/locale/bg/LC_MESSAGES/django.mo,sha256=qZKt6jmYT9ecax0Z1H8nCKWwL5qLoUiZB2MfYMu-SQs,2389
-django/contrib/gis/locale/bg/LC_MESSAGES/django.po,sha256=4MDPVwks5pLvqsXQVA2M9m_3nMFEWMsivkLEWkYm1LA,2654
-django/contrib/gis/locale/bn/LC_MESSAGES/django.mo,sha256=7oNsr_vHQfsanyP-o1FG8jZTSBK8jB3eK2fA9AqNOx4,1070
-django/contrib/gis/locale/bn/LC_MESSAGES/django.po,sha256=PTa9EFZdqfznUH7si3Rq3zp1kNkTOnn2HRTEYXQSOdM,1929
-django/contrib/gis/locale/br/LC_MESSAGES/django.mo,sha256=xN8hOvJi_gDlpdC5_lghXuX6yCBYDPfD_SQLjcvq8gU,1614
-django/contrib/gis/locale/br/LC_MESSAGES/django.po,sha256=LQw3Tp_ymJ_x7mJ6g4SOr6aP00bejkjuaxfFFRZnmaQ,2220
-django/contrib/gis/locale/bs/LC_MESSAGES/django.mo,sha256=9EdKtZkY0FX2NlX_q0tIxXD-Di0SNQJZk3jo7cend0A,1308
-django/contrib/gis/locale/bs/LC_MESSAGES/django.po,sha256=eu_qF8dbmlDiRKGNIz80XtIunrF8QIOcy8O28X02GvQ,1905
-django/contrib/gis/locale/ca/LC_MESSAGES/django.mo,sha256=nPWtfc4Fbm2uaY-gCASaye9CxzOYIfjG8mDTQGvn2As,2007
-django/contrib/gis/locale/ca/LC_MESSAGES/django.po,sha256=pPMDNc3hAWsbC_BM4UNmziX2Bq7vs6bHbNqVkEvCSic,2359
-django/contrib/gis/locale/cs/LC_MESSAGES/django.mo,sha256=V7MNXNsOaZ3x1G6LqYu6KJn6zeiFQCZKvF7Xk4J0fkg,2071
-django/contrib/gis/locale/cs/LC_MESSAGES/django.po,sha256=mPkcIWtWRILisD6jOlBpPV7CKYJjhTaBcRLf7OqifdM,2321
-django/contrib/gis/locale/cy/LC_MESSAGES/django.mo,sha256=vUG_wzZaMumPwIlKwuN7GFcS9gnE5rpflxoA_MPM_po,1430
-django/contrib/gis/locale/cy/LC_MESSAGES/django.po,sha256=_QjXT6cySUXrjtHaJ3046z-5PoXkCqtOhvA7MCZsXxk,1900
-django/contrib/gis/locale/da/LC_MESSAGES/django.mo,sha256=kH8GcLFe-XvmznQbiY5Ce2-Iz4uKJUfF4Be0yY13AEs,1894
-django/contrib/gis/locale/da/LC_MESSAGES/django.po,sha256=JOVTWeTnSUASbupCd2Fo0IY_veJb6XKDhyKFu6M2J_8,2179
-django/contrib/gis/locale/de/LC_MESSAGES/django.mo,sha256=1PBxHsFHDrbkCslumxKVD_kD2eIElGWOq2chQopcorY,1965
-django/contrib/gis/locale/de/LC_MESSAGES/django.po,sha256=0XnbUsy9yZHhFsGGhcSnXUqJpDlMVqmrRl-0c-kdcYk,2163
-django/contrib/gis/locale/dsb/LC_MESSAGES/django.mo,sha256=NzmmexcIC525FHQ5XvsKdzCZtkkb5wnrSd12fdAkZ-0,2071
-django/contrib/gis/locale/dsb/LC_MESSAGES/django.po,sha256=aTBfL_NB8uIDt2bWBxKCdKi-EUNo9lQ9JZ0ekWeI4Yk,2234
-django/contrib/gis/locale/el/LC_MESSAGES/django.mo,sha256=OBxHnlLrT4tY0bW5TuaRqBCKtchnz_53RtrEc0fZ3V4,2484
-django/contrib/gis/locale/el/LC_MESSAGES/django.po,sha256=q0YzrFC5seve2ralJJDSmMG2uukAAALhoRflYOPFudg,2937
-django/contrib/gis/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/gis/locale/en/LC_MESSAGES/django.po,sha256=8yvqHG1Mawkhx9RqD5tDXX8U0-a7RWr-wCQPGHWAqG0,2225
-django/contrib/gis/locale/en_AU/LC_MESSAGES/django.mo,sha256=IPn5kRqOvv5S7jpbIUw8PEUkHlyjEL-4GuOANd1iAzI,486
-django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po,sha256=x_58HmrHRia2LoYhmmN_NLb1J3f7oTDvwumgTo0LowI,1494
-django/contrib/gis/locale/en_GB/LC_MESSAGES/django.mo,sha256=WkORQDOsFuV2bI7hwVsJr_JTWnDQ8ZaK-VYugqnLv3w,1369
-django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po,sha256=KWPMoX-X-gQhb47zoVsa79-16-SiCGpO0s4xkcGv9z0,1910
-django/contrib/gis/locale/eo/LC_MESSAGES/django.mo,sha256=qls9V1jybymGCdsutcjP6fT5oMaI-GXnt_oNfwq-Yhs,1960
-django/contrib/gis/locale/eo/LC_MESSAGES/django.po,sha256=WPSkCxwq3ZnR-_L-W-CnS0_Qne3ekX7ZAZVaubiWw5s,2155
-django/contrib/gis/locale/es/LC_MESSAGES/django.mo,sha256=oMQQrOdtyzvfCE844C5vM7wUuqtjMQ_HsG0TkKmfhr4,2025
-django/contrib/gis/locale/es/LC_MESSAGES/django.po,sha256=Tqmpl0-dMQELpOc7o-ig9pf6W4p8X-7Hn1EhLTnBN4Q,2476
-django/contrib/gis/locale/es_AR/LC_MESSAGES/django.mo,sha256=J-A7H9J3DjwlJ-8KvO5MC-sq4hUsJhmioAE-wiwOA8E,2012
-django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po,sha256=uWqoO-Tw7lOyPnOKC2SeSFD0MgPIQHWqTfroAws24aQ,2208
-django/contrib/gis/locale/es_CO/LC_MESSAGES/django.mo,sha256=P79E99bXjthakFYr1BMobTKqJN9S1aj3vfzMTbGRhCY,1865
-django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po,sha256=tyu8_dFA9JKeQ2VCpCUy_6yX97SPJcDwVqqAuf_xgks,2347
-django/contrib/gis/locale/es_MX/LC_MESSAGES/django.mo,sha256=bC-uMgJXdbKHQ-w7ez-6vh9E_2YSgCF_LkOQlvb60BU,1441
-django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po,sha256=MYO9fGclp_VvLG5tXDjXY3J_1FXI4lDv23rGElXAyjA,1928
-django/contrib/gis/locale/es_VE/LC_MESSAGES/django.mo,sha256=5YVIO9AOtmjky90DAXVyU0YltfQ4NLEpVYRTTk7SZ5o,486
-django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po,sha256=R8suLsdDnSUEKNlXzow3O6WIT5NcboZoCjir9GfSTSQ,1494
-django/contrib/gis/locale/et/LC_MESSAGES/django.mo,sha256=xrNWaGCM9t14hygJ7a2g3KmhnFIAxVPrfKdJmP9ysrg,1921
-django/contrib/gis/locale/et/LC_MESSAGES/django.po,sha256=ejWpn0QAyxGCsfY1VpsJhUcY4ngNXG5vcwt_qOF5jbA,2282
-django/contrib/gis/locale/eu/LC_MESSAGES/django.mo,sha256=VCs3BT_AwXUHmLnAftVWs9C9rZl1FYB33u4kkQyoedY,1936
-django/contrib/gis/locale/eu/LC_MESSAGES/django.po,sha256=IrFIeK0oZNh3y3RodKxqG_1c84DdPHYqdfufY5a9C6g,2197
-django/contrib/gis/locale/fa/LC_MESSAGES/django.mo,sha256=5S15sLEZkbyZJ_GaWfysYbSo49X2U15ZFqfRHf-q0ZY,2242
-django/contrib/gis/locale/fa/LC_MESSAGES/django.po,sha256=SBQDQA2E3e1e2XniZtEu4dr6-MwNh-q_uJ022xHO_34,2596
-django/contrib/gis/locale/fi/LC_MESSAGES/django.mo,sha256=wbBTW0tVHJZbyVYDLdHourHKw5m6joaX1X_eP9uD6vY,1887
-django/contrib/gis/locale/fi/LC_MESSAGES/django.po,sha256=FYB9ZYdGMBtxt-7ZkxjtsgxVYFLDLOlscqaeSnNUa4s,2114
-django/contrib/gis/locale/fr/LC_MESSAGES/django.mo,sha256=BpmQ_09rbzFR-dRjX0_SbFAHQJs7bZekLTGwsN96j8A,2052
-django/contrib/gis/locale/fr/LC_MESSAGES/django.po,sha256=Nqsu2ILMuPVFGhHo7vYdQH7lwNupJRjl1SsMmFEo_Dw,2306
-django/contrib/gis/locale/fy/LC_MESSAGES/django.mo,sha256=2kCnWU_giddm3bAHMgDy0QqNwOb9qOiEyCEaYo1WdqQ,476
-django/contrib/gis/locale/fy/LC_MESSAGES/django.po,sha256=7ncWhxC5OLhXslQYv5unWurhyyu_vRsi4bGflZ6T2oQ,1484
-django/contrib/gis/locale/ga/LC_MESSAGES/django.mo,sha256=m6Owcr-5pln54TXcZFAkYEYDjYiAkT8bGFyw4nowNHA,1420
-django/contrib/gis/locale/ga/LC_MESSAGES/django.po,sha256=I0kyTnYBPSdYr8RontzhGPShJhylVAdRLBGWRQr2E7g,1968
-django/contrib/gis/locale/gd/LC_MESSAGES/django.mo,sha256=8TAogB3fzblx48Lv6V94mOlR6MKAW6NjZOkKmAhncRY,2082
-django/contrib/gis/locale/gd/LC_MESSAGES/django.po,sha256=vBafKOhKlhMXU2Qzgbiy7GhEGy-RBdHJi5ey5sHx5_I,2259
-django/contrib/gis/locale/gl/LC_MESSAGES/django.mo,sha256=4OUuNpkYRWjKz_EoY1zDzKOK8YptrwUutQqFvSKsLUs,1421
-django/contrib/gis/locale/gl/LC_MESSAGES/django.po,sha256=s9tiYQLnv1_uzyLpi3qqV_zwJNic1AGFsUGc3FhJbMo,2006
-django/contrib/gis/locale/he/LC_MESSAGES/django.mo,sha256=ngfIMxGYVgNCVs_bfNI2PwjSyj03DF3FmSugZuVti60,2190
-django/contrib/gis/locale/he/LC_MESSAGES/django.po,sha256=N-FTLS0TL8AW5Owtfuqt7mlmqszgfXLUZ_4MQo23F2w,2393
-django/contrib/gis/locale/hi/LC_MESSAGES/django.mo,sha256=3nsy5mxKTPtx0EpqBNA_TJXmLmVZ4BPUZG72ZEe8OPM,1818
-django/contrib/gis/locale/hi/LC_MESSAGES/django.po,sha256=jTFG2gqqYAQct9-to0xL2kUFQu-ebR4j7RGfxn4sBAg,2372
-django/contrib/gis/locale/hr/LC_MESSAGES/django.mo,sha256=0XrRj2oriNZxNhEwTryo2zdMf-85-4X7fy7OJhB5ub4,1549
-django/contrib/gis/locale/hr/LC_MESSAGES/django.po,sha256=iijzoBoD_EJ1n-a5ys5CKnjzZzG299zPoCN-REFkeqE,2132
-django/contrib/gis/locale/hsb/LC_MESSAGES/django.mo,sha256=hA9IBuEZ6JHsTIVjGZdlvD8NcFy6v56pTy1fmA_lWwo,2045
-django/contrib/gis/locale/hsb/LC_MESSAGES/django.po,sha256=LAGSJIa6wd3Dh4IRG5DLigL-mjQzmYwn0o2RmSAdBdw,2211
-django/contrib/gis/locale/hu/LC_MESSAGES/django.mo,sha256=9P8L1-RxODT4NCMBUQnWQJaydNs9FwcAZeuoVmaQUDY,1940
-django/contrib/gis/locale/hu/LC_MESSAGES/django.po,sha256=qTC31EofFBS4HZ5SvxRKDIt2afAV4OS52_LYFnX2OB8,2261
-django/contrib/gis/locale/hy/LC_MESSAGES/django.mo,sha256=4D6em091yzO4s3U_DIdocdlvxtAbXdMt6Ig1ATxRGrQ,2535
-django/contrib/gis/locale/hy/LC_MESSAGES/django.po,sha256=0nkAba1H7qrC5JSakzJuAqsldWPG7lsjH7H8jVfG1SU,2603
-django/contrib/gis/locale/ia/LC_MESSAGES/django.mo,sha256=9MZnSXkQUIfbYB2f4XEtYo_FzuVi5OlsYcX9K_REz3c,1899
-django/contrib/gis/locale/ia/LC_MESSAGES/django.po,sha256=f7OuqSzGHQNldBHp62VIWjqP0BB0bvo8qEx9_wzH090,2116
-django/contrib/gis/locale/id/LC_MESSAGES/django.mo,sha256=FPjGhjf4wy-Wi6f3GnsBhmpBJBFnAPOw5jUPbufHISM,1938
-django/contrib/gis/locale/id/LC_MESSAGES/django.po,sha256=ap7GLVlZO6mmAs6PHgchU5xrChWF-YbwtJU7t0tqz0k,2353
-django/contrib/gis/locale/io/LC_MESSAGES/django.mo,sha256=_yUgF2fBUxVAZAPNw2ROyWly5-Bq0niGdNEzo2qbp8k,464
-django/contrib/gis/locale/io/LC_MESSAGES/django.po,sha256=fgGJ1xzliMK0MlVoV9CQn_BuuS3Kl71Kh5YEybGFS0Y,1472
-django/contrib/gis/locale/is/LC_MESSAGES/django.mo,sha256=UQb3H5F1nUxJSrADpLiYe12TgRhYKCFQE5Xy13MzEqU,1350
-django/contrib/gis/locale/is/LC_MESSAGES/django.po,sha256=8QWtgdEZR7OUVXur0mBCeEjbXTBjJmE-DOiKe55FvMo,1934
-django/contrib/gis/locale/it/LC_MESSAGES/django.mo,sha256=8VddOMr-JMs5D-J5mq-UgNnhf98uutpoJYJKTr8E224,1976
-django/contrib/gis/locale/it/LC_MESSAGES/django.po,sha256=Vp1G-GChjjTsODwABsg5LbmR6_Z-KpslwkNUipuOqk4,2365
-django/contrib/gis/locale/ja/LC_MESSAGES/django.mo,sha256=Ro8-P0647LU_963TJT1uOWTohB77YaGGci_2sMLJwEo,2096
-django/contrib/gis/locale/ja/LC_MESSAGES/django.po,sha256=shMi1KrURuWbFGc3PpSrpatfEQJlW--QTDH6HwHbtv4,2352
-django/contrib/gis/locale/ka/LC_MESSAGES/django.mo,sha256=iqWQ9j8yanPjDhwi9cNSktYgfLVnofIsdICnAg2Y_to,1991
-django/contrib/gis/locale/ka/LC_MESSAGES/django.po,sha256=rkM7RG0zxDN8vqyAudmk5nocajhOYP6CTkdJKu21Pf4,2571
-django/contrib/gis/locale/kk/LC_MESSAGES/django.mo,sha256=NtgQONp0UncUNvrh0W2R7u7Ja8H33R-a-tsQShWq-QI,1349
-django/contrib/gis/locale/kk/LC_MESSAGES/django.po,sha256=78OMHuerBJZJZVo9GjGJ1h5fwdLuSc_X03ZhSRibtf4,1979
-django/contrib/gis/locale/km/LC_MESSAGES/django.mo,sha256=T0aZIZ_gHqHpQyejnBeX40jdcfhrCOjgKjNm2hLrpNE,459
-django/contrib/gis/locale/km/LC_MESSAGES/django.po,sha256=7ARjFcuPQJG0OGLJu9pVfSiAwc2Q-1tT6xcLeKeom1c,1467
-django/contrib/gis/locale/kn/LC_MESSAGES/django.mo,sha256=EkJRlJJSHZJvNZJuOLpO4IIUEoyi_fpKwNWe0OGFcy4,461
-django/contrib/gis/locale/kn/LC_MESSAGES/django.po,sha256=MnsSftGvmgJgGfgayQUVDMj755z8ItkM9vBehORfYbk,1475
-django/contrib/gis/locale/ko/LC_MESSAGES/django.mo,sha256=3cvrvesJ_JU-XWI5oaYSAANVjwFxn3SLd3UrdRSMAfA,1939
-django/contrib/gis/locale/ko/LC_MESSAGES/django.po,sha256=Gg9s__57BxLIYJx5O0c-UJ8cAzsU3TcLuKGE7abn1rE,2349
-django/contrib/gis/locale/ky/LC_MESSAGES/django.mo,sha256=1z_LnGCxvS3_6OBr9dBxsyHrDs7mR3Fzm76sdgNGJrU,2221
-django/contrib/gis/locale/ky/LC_MESSAGES/django.po,sha256=NyWhlb3zgb0iAa6C0hOqxYxA7zaR_XgyjJHffoCIw1g,2438
-django/contrib/gis/locale/lb/LC_MESSAGES/django.mo,sha256=XAyZQUi8jDr47VpSAHp_8nQb0KvSMJHo5THojsToFdk,474
-django/contrib/gis/locale/lb/LC_MESSAGES/django.po,sha256=5rfudPpH4snSq2iVm9E81EBwM0S2vbkY2WBGhpuga1Q,1482
-django/contrib/gis/locale/lt/LC_MESSAGES/django.mo,sha256=9I8bq0gbDGv7wBe60z3QtWZ5x_NgALjCTvR6rBtPPBY,2113
-django/contrib/gis/locale/lt/LC_MESSAGES/django.po,sha256=jD2vv47dySaH1nVzzf7mZYKM5vmofhmaKXFp4GvX1Iw,2350
-django/contrib/gis/locale/lv/LC_MESSAGES/django.mo,sha256=KkVqgndzTA8WAagHB4hg65PUvQKXl_O79fb2r04foXw,2025
-django/contrib/gis/locale/lv/LC_MESSAGES/django.po,sha256=21VWQDPMF27yZ-ctKO-f0sohyvVkIaTXk9MKF-WGmbo,2253
-django/contrib/gis/locale/mk/LC_MESSAGES/django.mo,sha256=PVw73LWWNvaNd95zQbAIA7LA7JNmpf61YIoyuOca2_s,2620
-django/contrib/gis/locale/mk/LC_MESSAGES/django.po,sha256=eusHVHXHRfdw1_JyuBW7H7WPCHFR_z1NBqr79AVqAk0,2927
-django/contrib/gis/locale/ml/LC_MESSAGES/django.mo,sha256=Kl9okrE3AzTPa5WQ-IGxYVNSRo2y_VEdgDcOyJ_Je78,2049
-django/contrib/gis/locale/ml/LC_MESSAGES/django.po,sha256=PWg8atPKfOsnVxg_uro8zYO9KCE1UVhfy_zmCWG0Bdk,2603
-django/contrib/gis/locale/mn/LC_MESSAGES/django.mo,sha256=-Nn70s2On94C-jmSZwTppW2q7_W5xgMpzPXYmxZSKXs,2433
-django/contrib/gis/locale/mn/LC_MESSAGES/django.po,sha256=I0ZHocPlRYrogJtzEGVPsWWHpoVEa7e2KYP9Ystlj60,2770
-django/contrib/gis/locale/mr/LC_MESSAGES/django.mo,sha256=sO2E__g61S0p5I6aEwnoAsA3epxv7_Jn55TyF0PZCUA,468
-django/contrib/gis/locale/mr/LC_MESSAGES/django.po,sha256=McWaLXfWmYTDeeDbIOrV80gwnv07KCtNIt0OXW_v7vw,1476
-django/contrib/gis/locale/ms/LC_MESSAGES/django.mo,sha256=Ws6mtfdx1yajz4NUl1aqrWYc0XNPm2prqAAE8yCNyT0,1887
-django/contrib/gis/locale/ms/LC_MESSAGES/django.po,sha256=wglQEOZ8SF4_d7tZBCoOOSTbRG1U5IM4lIZA1H5MaDg,2017
-django/contrib/gis/locale/my/LC_MESSAGES/django.mo,sha256=e6G8VbCCthUjV6tV6PRCy_ZzsXyZ-1OYjbYZIEShbXI,525
-django/contrib/gis/locale/my/LC_MESSAGES/django.po,sha256=R3v1S-904f8FWSVGHe822sWrOJI6cNJIk93-K7_E_1c,1580
-django/contrib/gis/locale/nb/LC_MESSAGES/django.mo,sha256=a89qhy9BBE_S-MYlOMLaYMdnOvUEJxh8V80jYJqFEj0,1879
-django/contrib/gis/locale/nb/LC_MESSAGES/django.po,sha256=UIk8oXTFdxTn22tTtIXowTl3Nxn2qvpQO72GoQDUmaw,2166
-django/contrib/gis/locale/ne/LC_MESSAGES/django.mo,sha256=nB-Ta8w57S6hIAhAdWZjDT0Dg6JYGbAt5FofIhJT7k8,982
-django/contrib/gis/locale/ne/LC_MESSAGES/django.po,sha256=eMH6uKZZZYn-P3kmHumiO4z9M4923s9tWGhHuJ0eWuI,1825
-django/contrib/gis/locale/nl/LC_MESSAGES/django.mo,sha256=d22j68OCI1Bevtl2WgXHSQHFCiDgkPXmrFHca_uUm14,1947
-django/contrib/gis/locale/nl/LC_MESSAGES/django.po,sha256=ffytg6K7pTQoIRfxY35i1FpolJeox-fpSsG1JQzvb-0,2381
-django/contrib/gis/locale/nn/LC_MESSAGES/django.mo,sha256=Rp1zi-gbaGBPk9MVR4sw1MS4MhCRs6u9v7Aa8IxrkQQ,1888
-django/contrib/gis/locale/nn/LC_MESSAGES/django.po,sha256=ApoLxcaZ3UzO8owOqfDgDMCJuemnGAfrKH_qJVR47eM,2087
-django/contrib/gis/locale/os/LC_MESSAGES/django.mo,sha256=02NpGC8WPjxmPqQkfv9Kj2JbtECdQCtgecf_Tjk1CZc,1594
-django/contrib/gis/locale/os/LC_MESSAGES/django.po,sha256=JBIsv5nJg3Wof7Xy7odCI_xKRBLN_Hlbb__kNqNW4Xw,2161
-django/contrib/gis/locale/pa/LC_MESSAGES/django.mo,sha256=JR1NxG5_h_dFE_7p6trBWWIx-QqWYIgfGomnjaCsWAA,1265
-django/contrib/gis/locale/pa/LC_MESSAGES/django.po,sha256=Ejd_8dq_M0E9XFijk0qj4oC-8_oe48GWWHXhvOrFlnY,1993
-django/contrib/gis/locale/pl/LC_MESSAGES/django.mo,sha256=BkGcSOdz9VE7OYEeFzC9OLANJsTB3pFU1Xs8-CWFgb4,2095
-django/contrib/gis/locale/pl/LC_MESSAGES/django.po,sha256=IIy2N8M_UFanmHB6Ajne9g5NQ7tJCF5JvgrzasFUJDY,2531
-django/contrib/gis/locale/pt/LC_MESSAGES/django.mo,sha256=sE5PPOHzfT8QQXuV5w0m2pnBTRhKYs_vFhk8p_A4Jg0,2036
-django/contrib/gis/locale/pt/LC_MESSAGES/django.po,sha256=TFt6Oj1NlCM3pgs2dIgFZR3S3y_g7oR7S-XRBlM4924,2443
-django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.mo,sha256=5HGIao480s3B6kXtSmdy1AYjGUZqbYuZ9Eapho_jkTk,1976
-django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.po,sha256=4-2WPZT15YZPyYbH7xnBRc7A8675875kVFjM9tr1o5U,2333
-django/contrib/gis/locale/ro/LC_MESSAGES/django.mo,sha256=brEMR8zmBMK6otF_kmR2IVuwM9UImo24vwSVUdRysAY,1829
-django/contrib/gis/locale/ro/LC_MESSAGES/django.po,sha256=EDdumoPfwMHckneEl4OROll5KwYL0ljdY-yJTUkK2JA,2242
-django/contrib/gis/locale/ru/LC_MESSAGES/django.mo,sha256=Beo_YLNtenVNPIyWB-KKMlbxeK0z4DIxhLNkAE8p9Ko,2542
-django/contrib/gis/locale/ru/LC_MESSAGES/django.po,sha256=GKPf50Wm3evmbOdok022P2YZxh-6ROKgDRLyxewPy1g,2898
-django/contrib/gis/locale/sk/LC_MESSAGES/django.mo,sha256=bws9O1h9u-ia1FraYJNIsRCf78_cSo9PNVo802hCMMQ,2043
-django/contrib/gis/locale/sk/LC_MESSAGES/django.po,sha256=DAAMn59_3-aTD8qimDetbY6GFqC311lTD3VOxz80xNQ,2375
-django/contrib/gis/locale/sl/LC_MESSAGES/django.mo,sha256=9-efMT2MoEMa5-SApGWTRiyfvI6vmZzLeMg7qGAr7_A,2067
-django/contrib/gis/locale/sl/LC_MESSAGES/django.po,sha256=foZY7N5QkuAQS7nc3CdnJerCPk-lhSb1xZqU11pNGNo,2303
-django/contrib/gis/locale/sq/LC_MESSAGES/django.mo,sha256=WEq6Bdd9fM_aRhWUBpl_qTc417U9708u9sXNgyB8o1k,1708
-django/contrib/gis/locale/sq/LC_MESSAGES/django.po,sha256=mAOImw7HYWDO2VuoHU-VAp08u5DM-BUC633Lhkc3vRk,2075
-django/contrib/gis/locale/sr/LC_MESSAGES/django.mo,sha256=cQzh-8YOz0FSIE0-BkeQHiqG6Tl4ArHvSN3yMXiaoec,2454
-django/contrib/gis/locale/sr/LC_MESSAGES/django.po,sha256=PQ3FYEidoV200w8WQBFsid7ULKZyGLzCjfCVUUPKWrk,2719
-django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=SASOtA8mOnMPxh1Lr_AC0yR82SqyTiPrlD8QmvYgG58,2044
-django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.po,sha256=BPkwFmsLHVN8jwjf1pqmrTXhxO0fgDzE0-C7QvaBeVg,2271
-django/contrib/gis/locale/sv/LC_MESSAGES/django.mo,sha256=qz5WD6-SV6IYc36G52EccYa6AdGq3_MO35vJjPj5tgA,1944
-django/contrib/gis/locale/sv/LC_MESSAGES/django.po,sha256=VHHxr5TBEBClbH_WosRk8J4vTvkQ0Fa0pbRdflVQlH4,2312
-django/contrib/gis/locale/sw/LC_MESSAGES/django.mo,sha256=uBhpGHluGwYpODTE-xhdJD2e6PHleN07wLE-kjrXr_M,1426
-django/contrib/gis/locale/sw/LC_MESSAGES/django.po,sha256=nHXQQMYYXT1ec3lIBxQIDIAwLtXucX47M4Cozy08kko,1889
-django/contrib/gis/locale/ta/LC_MESSAGES/django.mo,sha256=Rboo36cGKwTebe_MiW4bOiMsRO2isB0EAyJJcoy_F6s,466
-django/contrib/gis/locale/ta/LC_MESSAGES/django.po,sha256=sLYW8_5BSVoSLWUr13BbKRe0hNJ_cBMEtmjCPBdTlAk,1474
-django/contrib/gis/locale/te/LC_MESSAGES/django.mo,sha256=xDkaSztnzQ33Oc-GxHoSuutSIwK9A5Bg3qXEdEvo4h4,824
-django/contrib/gis/locale/te/LC_MESSAGES/django.po,sha256=nYryhktJumcwtZDGZ43xBxWljvdd-cUeBrAYFZOryVg,1772
-django/contrib/gis/locale/tg/LC_MESSAGES/django.mo,sha256=6Jyeaq1ORsnE7Ceh_rrhbfslFskGe12Ar-dQl6NFyt0,611
-django/contrib/gis/locale/tg/LC_MESSAGES/django.po,sha256=9c1zPt7kz1OaRJPPLdqjQqO8MT99KtS9prUvoPa9qJk,1635
-django/contrib/gis/locale/th/LC_MESSAGES/django.mo,sha256=0kekAr7eXc_papwPAxEZ3TxHOBg6EPzdR3q4hmAxOjg,1835
-django/contrib/gis/locale/th/LC_MESSAGES/django.po,sha256=WJPdoZjLfvepGGMhfBB1EHCpxtxxfv80lRjPG9kGErM,2433
-django/contrib/gis/locale/tr/LC_MESSAGES/django.mo,sha256=_bNVyXHbuyM42-fAsL99wW7_Hwu5hF_WD7FzY-yfS8k,1961
-django/contrib/gis/locale/tr/LC_MESSAGES/django.po,sha256=W0pxShIqMePnQvn_7zcY_q4_C1PCnWwFMastDo_gHd0,2242
-django/contrib/gis/locale/tt/LC_MESSAGES/django.mo,sha256=cGVPrWCe4WquVV77CacaJwgLSnJN0oEAepTzNMD-OWk,1470
-django/contrib/gis/locale/tt/LC_MESSAGES/django.po,sha256=98yeRs-JcMGTyizOpEuQenlnWJMYTR1-rG3HGhKCykk,2072
-django/contrib/gis/locale/udm/LC_MESSAGES/django.mo,sha256=I6bfLvRfMn79DO6bVIGfYSVeZY54N6c8BNO7OyyOOsw,462
-django/contrib/gis/locale/udm/LC_MESSAGES/django.po,sha256=B1PCuPYtNOrrhu4fKKJgkqxUrcEyifS2Y3kw-iTmSIk,1470
-django/contrib/gis/locale/uk/LC_MESSAGES/django.mo,sha256=Pnot1RDsNa4HYvy_6ZsFFMGhJ4JyEn6qWbDPPFUXDzg,2586
-django/contrib/gis/locale/uk/LC_MESSAGES/django.po,sha256=uJfVys_Tzi99yJ7F5IEbIDJTcM1MzCz2vpiVv_fVRmc,3090
-django/contrib/gis/locale/ur/LC_MESSAGES/django.mo,sha256=tB5tz7EscuE9IksBofNuyFjk89-h5X7sJhCKlIho5SY,1410
-django/contrib/gis/locale/ur/LC_MESSAGES/django.po,sha256=16m0t10Syv76UcI7y-EXfQHETePmrWX4QMVfyeuX1fQ,2007
-django/contrib/gis/locale/vi/LC_MESSAGES/django.mo,sha256=NT5T0FRCC2XINdtaCFCVUxb5VRv8ta62nE8wwSHGTrc,1384
-django/contrib/gis/locale/vi/LC_MESSAGES/django.po,sha256=y77GtqH5bv1wR78xN5JLHusmQzoENTH9kLf9Y3xz5xk,1957
-django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=g_8mpfbj-6HJ-g1PrFU2qTTfvCbztNcjDym_SegaI8Q,1812
-django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.po,sha256=MBJpb5IJxUaI2k0Hq8Q1GLXHJPFAA-S1w6NRjsmrpBw,2286
-django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=jEgcPJy_WzZa65-5rXb64tN_ehUku_yIj2d7tXwweP8,1975
-django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.po,sha256=iVnQKpbsQ4nJi65PHAO8uGRO6jhHWs22gTOUKPpb64s,2283
-django/contrib/gis/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/management/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/management/commands/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-310.pyc,,
-django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-310.pyc,,
-django/contrib/gis/management/commands/inspectdb.py,sha256=8WhDOBICFAbLFu7kwAAS4I5pNs_p1BrCv8GJYI3S49k,760
-django/contrib/gis/management/commands/ogrinspect.py,sha256=XnWAbLxRxTSvbKSvjgePN7D1o_Ep4qWkvMwVrG1TpYY,6071
-django/contrib/gis/measure.py,sha256=KieLLeQFsV23gnPzj1WoJvN5unOIK5v8QThgX0Rk4Sg,12557
-django/contrib/gis/ptr.py,sha256=NeIBB-plwO61wGOOxGg7fFyVXI4a5vbAGUdaJ_Fmjqo,1312
-django/contrib/gis/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/gis/serializers/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/serializers/__pycache__/geojson.cpython-310.pyc,,
-django/contrib/gis/serializers/geojson.py,sha256=XuElN-Sznbu8QvGrUq01DBrH0yNXpvN9o0y8donUb2g,2853
-django/contrib/gis/shortcuts.py,sha256=aa9zFjVU38qaEvRc0vAH_j2AgAERlI01rphYLHbc7Tg,1027
-django/contrib/gis/sitemaps/__init__.py,sha256=Tjj057omOVcoC5Fb8ITEYVhLm0HcVjrZ1Mbz_tKoD1A,138
-django/contrib/gis/sitemaps/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/sitemaps/__pycache__/kml.cpython-310.pyc,,
-django/contrib/gis/sitemaps/__pycache__/views.cpython-310.pyc,,
-django/contrib/gis/sitemaps/kml.py,sha256=CUn_KKVrwGg2ZmmDcWosBc0QFuJp8hHpeNRCcloVk1U,2573
-django/contrib/gis/sitemaps/views.py,sha256=AFV1ay-oFftFC-IszzeKz3JAGzE0TOCH8pN1cwtg7yI,2353
-django/contrib/gis/static/gis/css/ol3.css,sha256=pJADzfx4_NL2C1onFpU-muconAA5NThN4sEqSNyY_So,657
-django/contrib/gis/static/gis/img/draw_line_off.svg,sha256=6XW83xsR5-Guh27UH3y5UFn9y9FB9T_Zc4kSPA-xSOI,918
-django/contrib/gis/static/gis/img/draw_line_on.svg,sha256=Hx-pXu4ped11esG6YjXP1GfZC5q84zrFQDPUo1C7FGA,892
-django/contrib/gis/static/gis/img/draw_point_off.svg,sha256=PICrywZPwuBkaQAKxR9nBJ0AlfTzPHtVn_up_rSiHH4,803
-django/contrib/gis/static/gis/img/draw_point_on.svg,sha256=raGk3oc8w87rJfLdtZ4nIXJyU3OChCcTd4oH-XAMmmM,803
-django/contrib/gis/static/gis/img/draw_polygon_off.svg,sha256=gnVmjeZE2jOvjfyx7mhazMDBXJ6KtSDrV9f0nSzkv3A,981
-django/contrib/gis/static/gis/img/draw_polygon_on.svg,sha256=ybJ9Ww7-bsojKQJtjErLd2cCOgrIzyqgIR9QNhH_ZfA,982
-django/contrib/gis/static/gis/js/OLMapWidget.js,sha256=JN1naT0I9oXp5RL1oTCdAqoQYj61HFrRsU1gdkwJsV8,9127
-django/contrib/gis/templates/gis/admin/openlayers.html,sha256=41MtWKVz6IR-_-c0zIQi1hvA9wXpD-g5VDJdojkcMgE,1441
-django/contrib/gis/templates/gis/admin/openlayers.js,sha256=KoT3VUMAez9-5QoT5U6OJXzt3MLxlTrJMMwINjQ_k7M,8975
-django/contrib/gis/templates/gis/admin/osm.html,sha256=yvYyZPmgP64r1JT3eZCDun5ENJaaN3d3wbTdCxIOvSo,111
-django/contrib/gis/templates/gis/admin/osm.js,sha256=0wFRJXKZ2plp7tb0F9fgkMzp4NrKZXcHiMkKDJeHMRw,128
-django/contrib/gis/templates/gis/kml/base.kml,sha256=VYnJaGgFVHRzDjiFjbcgI-jxlUos4B4Z1hx_JeI2ZXU,219
-django/contrib/gis/templates/gis/kml/placemarks.kml,sha256=TEC81sDL9RK2FVeH0aFJTwIzs6_YWcMeGnHkACJV1Uc,360
-django/contrib/gis/templates/gis/openlayers-osm.html,sha256=TeiUqCjt73W8Hgrp_6zAtk_ZMBxskNN6KHSmnJ1-GD4,378
-django/contrib/gis/templates/gis/openlayers.html,sha256=-3V4Kgq6dGOAxEvcGfVS-MRKpbGdInJWDmJMJE30Fck,1753
-django/contrib/gis/utils/__init__.py,sha256=om0rPPBwSmvN4_BZpEkvpZqT44S0b7RCJpLAS2nI9-o,604
-django/contrib/gis/utils/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/gis/utils/__pycache__/layermapping.cpython-310.pyc,,
-django/contrib/gis/utils/__pycache__/ogrinfo.cpython-310.pyc,,
-django/contrib/gis/utils/__pycache__/ogrinspect.cpython-310.pyc,,
-django/contrib/gis/utils/__pycache__/srs.cpython-310.pyc,,
-django/contrib/gis/utils/layermapping.py,sha256=hSQ-sBvqD0Qy3_xhnOTYXa6puJDc7p20xn9LpHQGsew,28914
-django/contrib/gis/utils/ogrinfo.py,sha256=6m3KaRzLoZtQ0OSrpRkaFIQXi9YOXTkQcYeqYb0S0nw,1956
-django/contrib/gis/utils/ogrinspect.py,sha256=nxKd1cufjbP86uJcsaNb1c3n9IA-uy4ltQjLGgPjB1E,9169
-django/contrib/gis/utils/srs.py,sha256=UXsbxW0cQzdnPKO0d9E5K2HPdekdab5NaLZWNOUq-zk,2962
-django/contrib/gis/views.py,sha256=zdCV8QfUVfxEFGxESsUtCicsbSVtZNI_IXybdmsHKiM,714
-django/contrib/humanize/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/humanize/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/humanize/__pycache__/apps.cpython-310.pyc,,
-django/contrib/humanize/apps.py,sha256=LH3PTbB4V1gbBc8nmCw3BsSuA8La0fNOb4cSISvJAwI,194
-django/contrib/humanize/locale/af/LC_MESSAGES/django.mo,sha256=bNLjjeZ3H-KD_pm-wa1_5eLCDOmG2FXgDHVOg5vgL7o,5097
-django/contrib/humanize/locale/af/LC_MESSAGES/django.po,sha256=p3OduzjtTGkwlgDJhPgSm9aXI2sWzORspsPf7_RnWjs,8923
-django/contrib/humanize/locale/ar/LC_MESSAGES/django.mo,sha256=PokPfBR8w4AbRtNNabl5vO8r5E8_egHvFBjKp4CCvO4,7510
-django/contrib/humanize/locale/ar/LC_MESSAGES/django.po,sha256=QGW-kx-87DlPMGr5l_Eb6Ge-x4tkz2PuwHDe3EIkIQg,12326
-django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=NwCrL5FX_xdxYdqkW_S8tmU8ktDM8LqimmUvkt8me74,9155
-django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.po,sha256=tt0AxhohGX79OQ_lX1S5soIo-iSCC07SdAhPpy0O7Q4,15234
-django/contrib/humanize/locale/ast/LC_MESSAGES/django.mo,sha256=WvBk8V6g1vgzGqZ_rR-4p7SMh43PFnDnRhIS9HSwdoQ,3468
-django/contrib/humanize/locale/ast/LC_MESSAGES/django.po,sha256=S9lcUf2y5wR8Ufa-Rlz-M73Z3bMo7zji_63cXwtDK2I,5762
-django/contrib/humanize/locale/az/LC_MESSAGES/django.mo,sha256=h7H_-Y-3YiP_98cdIz953QFmQJq86bHfN-U5pXjQLg8,4345
-django/contrib/humanize/locale/az/LC_MESSAGES/django.po,sha256=prn_LypmpP3By-EYF3_DMXtjrn4o60fpMi-SC9uD8fE,7770
-django/contrib/humanize/locale/be/LC_MESSAGES/django.mo,sha256=7KyJKhNqMqv32CPdJi01RPLBefOVCQW-Gx6-Vf9JVrs,6653
-django/contrib/humanize/locale/be/LC_MESSAGES/django.po,sha256=2mbReEHyXhmZysqhSmaT6A2XCHn8mYb2R_O16TMGCAo,10666
-django/contrib/humanize/locale/bg/LC_MESSAGES/django.mo,sha256=jCdDIbqWlhOs-4gML44wSRIXJQxypfak6ByRG_reMsk,4823
-django/contrib/humanize/locale/bg/LC_MESSAGES/django.po,sha256=v2ih4-pL1cdDXaa3uXm9FxRjRKyULLGyz78Q91eKEG8,8267
-django/contrib/humanize/locale/bn/LC_MESSAGES/django.mo,sha256=jbL4ucZxxtexI10jgldtgnDie3I23XR3u-PrMMMqP6U,4026
-django/contrib/humanize/locale/bn/LC_MESSAGES/django.po,sha256=0l4yyy7q3OIWyFk_PW0y883Vw2Pmu48UcnLM9OBxB68,6545
-django/contrib/humanize/locale/br/LC_MESSAGES/django.mo,sha256=V_tPVAyQzVdDwWPNlVGWmlVJjmVZfbh35alkwsFlCNU,5850
-django/contrib/humanize/locale/br/LC_MESSAGES/django.po,sha256=BcAqEV2JpF0hiCQDttIMblp9xbB7zoHsmj7fJFV632k,12245
-django/contrib/humanize/locale/bs/LC_MESSAGES/django.mo,sha256=1-RNRHPgZR_9UyiEn9Djp4mggP3fywKZho45E1nGMjM,1416
-django/contrib/humanize/locale/bs/LC_MESSAGES/django.po,sha256=M017Iu3hyXmINZkhCmn2he-FB8rQ7rXN0KRkWgrp7LI,5498
-django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo,sha256=WDvXis2Y1ivSq6NdJgddO_WKbz8w5MpVpkT4sq-pWXI,4270
-django/contrib/humanize/locale/ca/LC_MESSAGES/django.po,sha256=AD3h2guGADdp1f9EcbP1vc1lmfDOL8-1qQfwvXa6I04,7731
-django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo,sha256=VFyZcn19aQUXhVyh2zo2g3PAuzOO38Kx9fMFOCCxzMc,5479
-django/contrib/humanize/locale/cs/LC_MESSAGES/django.po,sha256=mq3LagwA9hyWOGy76M9n_rD4p3wuVk6oQsneB9CF99w,9527
-django/contrib/humanize/locale/cy/LC_MESSAGES/django.mo,sha256=VjJiaUUhvX9tjOEe6x2Bdp7scvZirVcUsA4-iE2-ElQ,5241
-django/contrib/humanize/locale/cy/LC_MESSAGES/django.po,sha256=sylmceSq-NPvtr_FjklQXoBAfueKu7hrjEpMAsVbQC4,7813
-django/contrib/humanize/locale/da/LC_MESSAGES/django.mo,sha256=vfDHopmWFAomwqmmCX3wfmX870-zzVbgUFC6I77n9tE,4316
-django/contrib/humanize/locale/da/LC_MESSAGES/django.po,sha256=v7Al6UOkbYB1p7m8kOe-pPRIAoyWemoyg_Pm9bD5Ldc,7762
-django/contrib/humanize/locale/de/LC_MESSAGES/django.mo,sha256=aOUax9csInbXnjAJc3jq4dcW_9H-6ueVI-TtKz2b9q0,4364
-django/contrib/humanize/locale/de/LC_MESSAGES/django.po,sha256=gW3OfOfoVMvpVudwghKCYztkLrCIPbbcriZjBNnRyGo,7753
-django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo,sha256=OVKcuW9ZXosNvP_3A98WsIIk_Jl6U_kv3zOx4pvwh-g,5588
-django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po,sha256=VimcsmobK3VXTbbTasg6osWDPOIZ555uimbUoUfNco4,9557
-django/contrib/humanize/locale/el/LC_MESSAGES/django.mo,sha256=o-yjhpzyGRbbdMzwUcG_dBP_FMEMZevm7Wz1p4Wd-pg,6740
-django/contrib/humanize/locale/el/LC_MESSAGES/django.po,sha256=UbD5QEw_-JNoNETaOyDfSReirkRsHnlHeSsZF5hOSkI,10658
-django/contrib/humanize/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/humanize/locale/en/LC_MESSAGES/django.po,sha256=7CzW7XKCntUjZon7-mQU_Z2UX9XReoQ8IsjojNowG1w,9050
-django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.mo,sha256=QFf4EgAsGprbFetnwogmj8vDV7SfGq1E3vhL9D8xTTM,918
-django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.po,sha256=Bnfesr1_T9sa31qkKOMunwKKXbnFzZJhzV8rYC_pdSE,6532
-django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.mo,sha256=mkx192XQM3tt1xYG8EOacMfa-BvgzYCbSsJQsWZGeAo,3461
-django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.po,sha256=MArKzXxY1104jxaq3kvDZs2WzOGYxicfJxFKsLzFavw,5801
-django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo,sha256=b47HphXBi0cax_reCZiD3xIedavRHcH2iRG8pcwqb54,5386
-django/contrib/humanize/locale/eo/LC_MESSAGES/django.po,sha256=oN1YqOZgxKY3L1a1liluhM6X5YA5bawg91mHF_Vfqx8,9095
-django/contrib/humanize/locale/es/LC_MESSAGES/django.mo,sha256=F9UaraI_lUDFSv9etjKWY39bA53FZql4n9qlpXCq4pw,4409
-django/contrib/humanize/locale/es/LC_MESSAGES/django.po,sha256=IwonvoL51Wk6UyzqzDlyS3pq3I9aZA31FjfS7alKT9o,8015
-django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo,sha256=-btiXH3B5M1qkAsW9D5I742Gt9GcJs5VC8ZhJ_DKkGY,4425
-django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po,sha256=UsiuRj-eq-Vl41wNZGw9XijCMEmcXhcGrMTPWgZn4LA,7858
-django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.mo,sha256=2GhQNtNOjK5mTov5RvnuJFTYbdoGBkDGLxzvJ8Vsrfs,4203
-django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.po,sha256=JBf2fHO8jWi6dFdgZhstKXwyot_qT3iJBixQZc3l330,6326
-django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.mo,sha256=82DL2ztdq10X5RIceshK1nO99DW5628ZIjaN8Xzp9ok,3939
-django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.po,sha256=-O7AQluA5Kce9-bd04GN4tfQKoCxb8Sa7EZR6TZBCdM,6032
-django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.mo,sha256=cJECzKpD99RRIpVFKQW65x0Nvpzrm5Fuhfi-nxOWmkM,942
-django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.po,sha256=tDdYtvRILgeDMgZqKHSebe7Z5ZgI1bZhDdvGVtj_anM,4832
-django/contrib/humanize/locale/et/LC_MESSAGES/django.mo,sha256=_vLDxD-e-pBY7vs6gNkhFZNGYu_dAeETVMKGsjjWOHg,4406
-django/contrib/humanize/locale/et/LC_MESSAGES/django.po,sha256=u0tSkVYckwXUv1tVfe1ODdZ8tJ2wUkS0Vv8pakJ8eBM,7915
-django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo,sha256=k_3NJUSo2JS5OZeQmGuCx0PEa_Xy1DvKIknoSv5EhWo,4312
-django/contrib/humanize/locale/eu/LC_MESSAGES/django.po,sha256=YuD0UCpc-tE1l1MS4gLLgDXhWGoEH6b2JYkgCZyAPds,7733
-django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo,sha256=N32l1DsPALoSGe9GtJ5baIo0XUDm8U09JhcHr0lXtw4,4656
-django/contrib/humanize/locale/fa/LC_MESSAGES/django.po,sha256=YsYRnmvABepSAOgEj6dRvdY_jYZqJb0_dbQ_6daiJAQ,8228
-django/contrib/humanize/locale/fi/LC_MESSAGES/django.mo,sha256=FJfyLFkz-oAz9e15e1aQUct7CJ2EJqSkZKh_ztDxtic,4425
-django/contrib/humanize/locale/fi/LC_MESSAGES/django.po,sha256=j5Z5t9zX1kePdM_Es1hu9AKOpOrijVWTsS2t19CIiaE,7807
-django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo,sha256=dZ3JfZyUIqicd2hsit9QOW_2CA2XgpKQgJQ5G3MbrC4,4484
-django/contrib/humanize/locale/fr/LC_MESSAGES/django.po,sha256=z-rfIbTRVEiYaD_kssNLvMFiINveBAq070-YanuL_hw,7872
-django/contrib/humanize/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
-django/contrib/humanize/locale/fy/LC_MESSAGES/django.po,sha256=pPvcGgBWiZwQ5yh30OlYs-YZUd_XsFro71T9wErVv0M,4732
-django/contrib/humanize/locale/ga/LC_MESSAGES/django.mo,sha256=AOEiBNOak_KQkBeGyUpTNO12zyg3CiK66h4kMoS15_0,5112
-django/contrib/humanize/locale/ga/LC_MESSAGES/django.po,sha256=jTXihbd-ysAUs0TEKkOBmXJJj69V0cFNOHM6VbcPCWw,11639
-django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo,sha256=wHsBVluXm4DW7iWxGHMHexqG9ovXEvgcaXvsmvkNHSE,5838
-django/contrib/humanize/locale/gd/LC_MESSAGES/django.po,sha256=CmmpKK7me-Ujitgx2IVkOcJyZOvie6XEBS7wCY4xZQ0,9802
-django/contrib/humanize/locale/gl/LC_MESSAGES/django.mo,sha256=ChoVHsJ_bVIaHtHxhxuUK99Zu1tvRu0iY5vhtB1LDMg,3474
-django/contrib/humanize/locale/gl/LC_MESSAGES/django.po,sha256=U5D505aBKEdg80BGWddcwWuzmYdoNHx1WEPzVHQfbTE,5903
-django/contrib/humanize/locale/he/LC_MESSAGES/django.mo,sha256=phFZMDohKT86DUtiAlnZslPFwSmpcpxTgZaXb8pGohc,5875
-django/contrib/humanize/locale/he/LC_MESSAGES/django.po,sha256=xhEZYcK-fg_mHMyGCEZXEwbd6FvutaGvkDyHTET-sic,9970
-django/contrib/humanize/locale/hi/LC_MESSAGES/django.mo,sha256=qrzm-6vXIUsxA7nOxa-210-6iO-3BPBj67vKfhTOPrY,4131
-django/contrib/humanize/locale/hi/LC_MESSAGES/django.po,sha256=BrypbKaQGOyY_Gl1-aHXiBVlRqrbSjGfZ2OK8omj_9M,6527
-django/contrib/humanize/locale/hr/LC_MESSAGES/django.mo,sha256=29XTvFJHex31hbu2qsOfl5kOusz-zls9eqlxtvw_H0s,1274
-django/contrib/humanize/locale/hr/LC_MESSAGES/django.po,sha256=OuEH4fJE6Fk-s0BMqoxxdlUAtndvvKK7N8Iy-9BP3qA,5424
-django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo,sha256=a1DqdiuRfFSfSrD8IvzQmZdzE0dhkxDChFddrmt3fjA,5679
-django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po,sha256=V5aRblcqKii4RXSQO87lyoQwwvxL59T3m4-KOBTx4bc,9648
-django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo,sha256=8tEqiZHEc6YmfWjf7hO0Fb3Xd-HSleKaR1gT_XFTQ8g,5307
-django/contrib/humanize/locale/hu/LC_MESSAGES/django.po,sha256=KDVYBAGSuMrtwqO98-oGOOAp7Unfm7ode1sv8lfe81c,9124
-django/contrib/humanize/locale/hy/LC_MESSAGES/django.mo,sha256=C1yx1DrYTrZ7WkOzZ5hvunphWABvGX-DqXbChNQ5_yg,1488
-django/contrib/humanize/locale/hy/LC_MESSAGES/django.po,sha256=MGbuYylBt1C5hvSlktydD4oMLZ1Sjzj7DL_nl7uluTg,7823
-django/contrib/humanize/locale/ia/LC_MESSAGES/django.mo,sha256=d0m-FddFnKp08fQYQSC9Wr6M4THVU7ibt3zkIpx_Y_A,4167
-django/contrib/humanize/locale/ia/LC_MESSAGES/django.po,sha256=qX6fAZyn54hmtTU62oJcHF8p4QcYnoO2ZNczVjvjOeE,6067
-django/contrib/humanize/locale/id/LC_MESSAGES/django.mo,sha256=AdUmhfkQOV9Le4jXQyQSyd5f2GqwNt-oqnJV-WVELVw,3885
-django/contrib/humanize/locale/id/LC_MESSAGES/django.po,sha256=lMnTtM27j1EWg1i9d7NzAeueo7mRztGVfNOXtXdZVjw,7021
-django/contrib/humanize/locale/io/LC_MESSAGES/django.mo,sha256=nMu5JhIy8Fjie0g5bT8-h42YElCiS00b4h8ej_Ie-w0,464
-django/contrib/humanize/locale/io/LC_MESSAGES/django.po,sha256=RUs8JkpT0toKOLwdv1oCbcBP298EOk02dkdNSJiC-_A,4720
-django/contrib/humanize/locale/is/LC_MESSAGES/django.mo,sha256=D6ElUYj8rODRsZwlJlH0QyBSM44sVmuBCNoEkwPVxko,3805
-django/contrib/humanize/locale/is/LC_MESSAGES/django.po,sha256=1VddvtkhsK_5wmpYIqEFqFOo-NxIBnL9wwW74Tw9pbw,8863
-django/contrib/humanize/locale/it/LC_MESSAGES/django.mo,sha256=oFaOtzqH0RFuybF1bPI_IZ23YaPVYAvaW-SbNuS4DPU,4653
-django/contrib/humanize/locale/it/LC_MESSAGES/django.po,sha256=nBU8lS9dAIPJuY3vfKkY_Jgkt7ZawnOtor8IZvEIkYU,8342
-django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo,sha256=x8AvfUPBBJkGtE0jvAP4tLeZEByuyo2H4V_UuLoCEmw,3907
-django/contrib/humanize/locale/ja/LC_MESSAGES/django.po,sha256=G2yTPZq6DxgzPV5uJ6zvMK4o3aiuLWbl4vXPH7ylUhc,6919
-django/contrib/humanize/locale/ka/LC_MESSAGES/django.mo,sha256=UeUbonYTkv1d2ljC0Qj8ZHw-59zHu83fuMvnME9Fkmw,4878
-django/contrib/humanize/locale/ka/LC_MESSAGES/django.po,sha256=-eAMexwjm8nSB4ARJU3f811UZnuatHKIFf8FevpJEpo,9875
-django/contrib/humanize/locale/kk/LC_MESSAGES/django.mo,sha256=jujbUM0jOpt3Mw8zN4LSIIkxCJ0ihk_24vR0bXoux78,2113
-django/contrib/humanize/locale/kk/LC_MESSAGES/django.po,sha256=hjZg_NRE9xMA5uEa2mVSv1Hr4rv8inG9es1Yq7uy9Zc,8283
-django/contrib/humanize/locale/km/LC_MESSAGES/django.mo,sha256=mfXs9p8VokORs6JqIfaSSnQshZEhS90rRFhOIHjW7CI,459
-django/contrib/humanize/locale/km/LC_MESSAGES/django.po,sha256=JQBEHtcy-hrV_GVWIjvUJyOf3dZ5jUzzN8DUTAbHKUg,4351
-django/contrib/humanize/locale/kn/LC_MESSAGES/django.mo,sha256=Oq3DIPjgCqkn8VZMb6ael7T8fQ7LnWobPPAZKQSFHl4,461
-django/contrib/humanize/locale/kn/LC_MESSAGES/django.po,sha256=CAJ0etMlQF3voPYrxIRr5ChAwUYO7wI42n5kjpIEVjA,4359
-django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo,sha256=mWmQEoe0MNVn3sNqsz6CBc826x3KIpOL53ziv6Ekf7c,3891
-django/contrib/humanize/locale/ko/LC_MESSAGES/django.po,sha256=UUxIUYM332DOZinJrqOUtQvHfCCHkodFhENDVWj3dpk,7003
-django/contrib/humanize/locale/ky/LC_MESSAGES/django.mo,sha256=jDu1bVgJMDpaZ0tw9-wdkorvZxDdRzcuzdeC_Ot7rUs,4177
-django/contrib/humanize/locale/ky/LC_MESSAGES/django.po,sha256=MEHbKMLIiFEG7BlxsNVF60viXSnlk5iqlFCH3hgamH0,7157
-django/contrib/humanize/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
-django/contrib/humanize/locale/lb/LC_MESSAGES/django.po,sha256=_y0QFS5Kzx6uhwOnzmoHtCrbufMrhaTLsHD0LfMqtcM,4730
-django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo,sha256=O0C-tPhxWNW5J4tCMlB7c7shVjNO6dmTURtIpTVO9uc,7333
-django/contrib/humanize/locale/lt/LC_MESSAGES/django.po,sha256=M5LlRxC1KWh1-3fwS93UqTijFuyRENmQJXfpxySSKik,12086
-django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo,sha256=3gEzmKBtYsFz9wvLw0ltiir91CDLxhK3IG2j55-uM7Y,5033
-django/contrib/humanize/locale/lv/LC_MESSAGES/django.po,sha256=yfeBxpH2J49xHDzZUZI3cK5ms4QbWq0gtTmhj8ejAjE,8836
-django/contrib/humanize/locale/mk/LC_MESSAGES/django.mo,sha256=htUgd6rcaeRPDf6UrEb18onz-Ayltw9LTvWRgEkXm08,4761
-django/contrib/humanize/locale/mk/LC_MESSAGES/django.po,sha256=Wl9Rt8j8WA_0jyxKCswIovSiCQD-ZWFYXbhFsCUKIWo,6665
-django/contrib/humanize/locale/ml/LC_MESSAGES/django.mo,sha256=5As-FXkEJIYetmV9dMtzLtsRPTOm1oUgyx-oeTH_guY,4655
-django/contrib/humanize/locale/ml/LC_MESSAGES/django.po,sha256=I9_Ln0C1nSj188_Zdq9Vy6lC8aLzg_YdNc5gy9hNGjE,10065
-django/contrib/humanize/locale/mn/LC_MESSAGES/django.mo,sha256=gi-b-GRPhg2s2O9wP2ENx4bVlgHBo0mSqoi58d_QpCw,6020
-django/contrib/humanize/locale/mn/LC_MESSAGES/django.po,sha256=0zV7fYPu6xs_DVOCUQ6li36JWOnpc-RQa0HXwo7FrWc,9797
-django/contrib/humanize/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
-django/contrib/humanize/locale/mr/LC_MESSAGES/django.po,sha256=M44sYiBJ7woVZZlDO8rPDQmS_Lz6pDTCajdheyxtdaI,4724
-django/contrib/humanize/locale/ms/LC_MESSAGES/django.mo,sha256=Bcictup-1bGKm0FIa3CeGNvrHg8VyxsqUHzWI7UMscs,3839
-django/contrib/humanize/locale/ms/LC_MESSAGES/django.po,sha256=UQEUC2iZxhtrWim96GaEK1VAKxAC0fTQIghg4Zx4R3Q,6774
-django/contrib/humanize/locale/my/LC_MESSAGES/django.mo,sha256=55CWHz34sy9k6TfOeVI9GYvE9GRa3pjSRE6DSPk9uQ8,3479
-django/contrib/humanize/locale/my/LC_MESSAGES/django.po,sha256=jCiDhSqARfqKcMLEHJd-Xe6zo3Uc9QpiCh3BbAAA5UE,5433
-django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo,sha256=ZQ8RSlS3DXBHmpjZrZza9FPSxb1vDBN87g87dRbGMkQ,5317
-django/contrib/humanize/locale/nb/LC_MESSAGES/django.po,sha256=fpfJStyZSHz0A6fVoRSOs_NKcUGo9fFKmXme4yll62s,9134
-django/contrib/humanize/locale/ne/LC_MESSAGES/django.mo,sha256=YFT2D-yEkUdJBO2GfuUowau1OZQA5mS86CZvMzH38Rk,3590
-django/contrib/humanize/locale/ne/LC_MESSAGES/django.po,sha256=SN7yH65hthOHohnyEmQUjXusRTDRjxWJG_kuv5g2Enk,9038
-django/contrib/humanize/locale/nl/LC_MESSAGES/django.mo,sha256=RxwgVgdHvfFirimjPrpDhzqmI1Z9soDC--raoAzgBkw,4311
-django/contrib/humanize/locale/nl/LC_MESSAGES/django.po,sha256=M7dVQho17p71Ud6imsQLGMiBisLrVNEZNP4ufpkEJnM,7872
-django/contrib/humanize/locale/nn/LC_MESSAGES/django.mo,sha256=wyJDAGJWgvyBYZ_-UQnBQ84-Jelk5forKfk7hMFDGpQ,4336
-django/contrib/humanize/locale/nn/LC_MESSAGES/django.po,sha256=zuKg53XCX-C6Asc9M04BKZVVw1X6u5p5hvOXxc0AXnM,7651
-django/contrib/humanize/locale/os/LC_MESSAGES/django.mo,sha256=BwS3Mj7z_Fg5s7Qm-bGLVhzYLZ8nPgXoB0gXLnrMGWc,3902
-django/contrib/humanize/locale/os/LC_MESSAGES/django.po,sha256=CGrxyL5l-5HexruOc7QDyRbum7piADf-nY8zjDP9wVM,6212
-django/contrib/humanize/locale/pa/LC_MESSAGES/django.mo,sha256=TH1GkAhaVVLk2jrcqAmdxZprWyikAX6qMP0eIlr2tWM,1569
-django/contrib/humanize/locale/pa/LC_MESSAGES/django.po,sha256=_7oP0Hn-IU7IPLv_Qxg_wstLEdhgWNBBTCWYwSycMb0,5200
-django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo,sha256=0QheMbF3Y0Q_sxZlN2wAYJRQyK3K_uq6ttVr7wCc33w,5596
-django/contrib/humanize/locale/pl/LC_MESSAGES/django.po,sha256=6wX50O68aIyKiP6CcyLMXZ3xuUnAzasFPIg_8deJQBY,9807
-django/contrib/humanize/locale/pt/LC_MESSAGES/django.mo,sha256=El9Sdr3kXS-yTol_sCg1dquxf0ThDdWyrWGjjim9Dj4,5408
-django/contrib/humanize/locale/pt/LC_MESSAGES/django.po,sha256=XudOc67ybF_fminrTR2XOCKEKwqB5FX14pl3clCNXGE,9281
-django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo,sha256=QSVNqVd8kUwoX5EO_BBMHyaQZxp9PlrMk1HE7A6qxxs,4436
-django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po,sha256=85lZE7uCCyDXZ_yQYeslIWgVG-ErNWQPWnE-eX60mH8,7985
-django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo,sha256=vP6o72bsgKPsbKGwH0PU8Xyz9BnQ_sPWT3EANLT2wRk,6188
-django/contrib/humanize/locale/ro/LC_MESSAGES/django.po,sha256=JZiW6Y9P5JdQe4vgCvcFg35kFa8bSX0lU_2zdeudQP0,10575
-django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo,sha256=tkKePMXIA1h_TXxXmB2m-QbelTteNKEc5-SEzs7u6FM,8569
-django/contrib/humanize/locale/ru/LC_MESSAGES/django.po,sha256=fXkT7XpiU2_wmnR1__QCxIdndI2M3ssNus8rMM-TSOw,13609
-django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo,sha256=uUeDN0iYDq_3vT3NcTOTpKCGcv2ner5WtkIk6GVIsu0,6931
-django/contrib/humanize/locale/sk/LC_MESSAGES/django.po,sha256=cwmpA5EbD4ZE8aK0I1enRE_4RVbtfp1HQy0g1n_IYAE,11708
-django/contrib/humanize/locale/sl/LC_MESSAGES/django.mo,sha256=f_07etc_G4OdYiUBKPkPqKm2iINqXoNsHUi3alUBgeo,5430
-django/contrib/humanize/locale/sl/LC_MESSAGES/django.po,sha256=mleF0fvn0oEfszhGLoaQkWofTwZJurKrJlIH8o-6kAI,8166
-django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo,sha256=1XXRe0nurGUUxI7r7gbSIuluRuza7VOeNdkIVX3LIFU,5280
-django/contrib/humanize/locale/sq/LC_MESSAGES/django.po,sha256=BS-5o3aG8Im9dWTkx4E_IbbeTRFcjjohinz1823ZepI,9127
-django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo,sha256=kBcoXTmJJlXEOk2M3l-k0PisT2jN_jXXhcOdPLBAiUY,5415
-django/contrib/humanize/locale/sr/LC_MESSAGES/django.po,sha256=u9ECn0qC8OPkHC9n10rljZc1vxed10eI0OOG7iPyA2w,9055
-django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=Z4hRzn0ks-vAj2ia4ovbsv00pOoZ973jRThbtlLKe5U,1017
-django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.po,sha256=T9CYAx-KhtXwrlY4ol3hFv8dzxyJ1FTqeMBgtjYMEj8,6875
-django/contrib/humanize/locale/sv/LC_MESSAGES/django.mo,sha256=7OABdxvdZvKB9j1o99UiecoTXaVGn3XmXnU5xCNov8s,4333
-django/contrib/humanize/locale/sv/LC_MESSAGES/django.po,sha256=71tFrQzwtwzYfeC2BG0v8dZNkSEMbM-tAC5_z2AElLM,7876
-django/contrib/humanize/locale/sw/LC_MESSAGES/django.mo,sha256=cxjSUqegq1JX08xIAUgqq9ByP-HuqaXuxWM8Y2gHdB4,4146
-django/contrib/humanize/locale/sw/LC_MESSAGES/django.po,sha256=bPYrLJ2yY_lZ3y1K-RguNi-qrxq2r-GLlsz1gZcm2A8,6031
-django/contrib/humanize/locale/ta/LC_MESSAGES/django.mo,sha256=1X2vH0iZOwM0uYX9BccJUXqK-rOuhcu5isRzMpnjh2o,466
-django/contrib/humanize/locale/ta/LC_MESSAGES/django.po,sha256=8x1lMzq2KOJveX92ADSuqNmXGIEYf7fZ1JfIJPysS04,4722
-django/contrib/humanize/locale/te/LC_MESSAGES/django.mo,sha256=iKd4dW9tan8xPxgaSoenIGp1qQpvSHHXUw45Tj2ATKQ,1327
-django/contrib/humanize/locale/te/LC_MESSAGES/django.po,sha256=FQdjWKMsiv-qehYZ4AtN9iKRf8Rifzcm5TZzMkQVfQI,5103
-django/contrib/humanize/locale/tg/LC_MESSAGES/django.mo,sha256=1Fiqat0CZSyExRXRjRCBS0AFzwy0q1Iba-2RVnrXoZQ,1580
-django/contrib/humanize/locale/tg/LC_MESSAGES/django.po,sha256=j2iczgQDbqzpthKAAlMt1Jk7gprYLqZ1Ya0ASr2SgD0,7852
-django/contrib/humanize/locale/th/LC_MESSAGES/django.mo,sha256=jT7wGhYWP9HHwOvtr2rNPStiOgZW-rGMcO36w1U8Y4c,3709
-django/contrib/humanize/locale/th/LC_MESSAGES/django.po,sha256=ZO3_wU7z0VASS5E8RSLEtmTveMDjJ0O8QTynb2-jjt0,8318
-django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo,sha256=D4ChMLE1Uz921NIF_Oe1vNkYAGfRpQuC8xANFwtlygE,4319
-django/contrib/humanize/locale/tr/LC_MESSAGES/django.po,sha256=4PjW65seHF9SsWnLv47JhgYPt0Gvzr-7_Ejech3d3ak,7754
-django/contrib/humanize/locale/tt/LC_MESSAGES/django.mo,sha256=z8VgtMhlfyDo7bERDfrDmcYV5aqOeBY7LDgqa5DRxDM,3243
-django/contrib/humanize/locale/tt/LC_MESSAGES/django.po,sha256=j_tRbg1hzLBFAmPQt0HoN-_WzWFtA07PloCkqhvNkcY,5201
-django/contrib/humanize/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
-django/contrib/humanize/locale/udm/LC_MESSAGES/django.po,sha256=AR55jQHmMrbA6RyHGOtqdvUtTFlxWnqvfMy8vZK25Bo,4354
-django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo,sha256=wQOJu-zKyuCazul-elFLZc-iKw2Zea7TGb90OVGZYkQ,6991
-django/contrib/humanize/locale/uk/LC_MESSAGES/django.po,sha256=hxEufGt-NOgSFc5T9OzxCibcfqkhWD7zxhQljoUQssQ,11249
-django/contrib/humanize/locale/ur/LC_MESSAGES/django.mo,sha256=MF9uX26-4FFIz-QpDUbUHUNLQ1APaMLQmISMIaPsOBE,1347
-django/contrib/humanize/locale/ur/LC_MESSAGES/django.po,sha256=D5UhcPEcQ16fsBEdkk_zmpjIF6f0gEv0P86z_pK_1eA,5015
-django/contrib/humanize/locale/uz/LC_MESSAGES/django.mo,sha256=HDah_1qqUz5m_ABBVIEML3WMR2xyomFckX82i6b3n4k,1915
-django/contrib/humanize/locale/uz/LC_MESSAGES/django.po,sha256=Ql3GZOhuoVgS0xHEzxjyYkOWQUyi_jiizfAXBp2Y4uw,7296
-django/contrib/humanize/locale/vi/LC_MESSAGES/django.mo,sha256=ZUK_Na0vnfdhjo0MgnBWnGFU34sxcMf_h0MeyuysKG8,3646
-django/contrib/humanize/locale/vi/LC_MESSAGES/django.po,sha256=DzRpXObt9yP5RK_slWruaIhnVI0-JXux2hn_uGsVZiE,5235
-django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=YgeAjXHMV1rXNNIrlDu_haxnKB0hxU5twJ86LMR10k8,3844
-django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.po,sha256=JGfRVW_5UqwyI2mK_WRK8xDPzwBAO2q_mGsGzf89a88,7122
-django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=qYO9_rWuIMxnlL9Q8V9HfhUu7Ebv1HGOlvsnh7MvZkE,4520
-django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.po,sha256=AijEfvIlJK9oVaLJ7lplmbvhGRKIbYcLh8WxoBYoQkA,7929
-django/contrib/humanize/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/humanize/templatetags/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/humanize/templatetags/__pycache__/humanize.cpython-310.pyc,,
-django/contrib/humanize/templatetags/humanize.py,sha256=FuOhGLO0OS2KT0DgMgnOwllCwVSpwIvrOiCmku-W_fg,12085
-django/contrib/messages/__init__.py,sha256=6myQIwIFgc3SAyH5P1soIjwELREVgbxgxP85fJcge04,106
-django/contrib/messages/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/messages/__pycache__/api.cpython-310.pyc,,
-django/contrib/messages/__pycache__/apps.cpython-310.pyc,,
-django/contrib/messages/__pycache__/constants.cpython-310.pyc,,
-django/contrib/messages/__pycache__/context_processors.cpython-310.pyc,,
-django/contrib/messages/__pycache__/middleware.cpython-310.pyc,,
-django/contrib/messages/__pycache__/utils.cpython-310.pyc,,
-django/contrib/messages/__pycache__/views.cpython-310.pyc,,
-django/contrib/messages/api.py,sha256=3DbnVG5oOBdg499clMU8l2hxCXMXB6S03-HCKVuBXjA,3250
-django/contrib/messages/apps.py,sha256=mepKl1mUA44s4aiIlQ20SnO5YYFTRYcKC432NKnL8jI,542
-django/contrib/messages/constants.py,sha256=JD4TpaR4C5G0oxIh4BmrWiVmCACv7rnVgZSpJ8Rmzeg,312
-django/contrib/messages/context_processors.py,sha256=xMrgYeX6AcT_WwS9AYKNDDstbvAwE7_u1ssDVLN_bbg,354
-django/contrib/messages/middleware.py,sha256=2mxncCpJVUgLtjouUGSVl39mTF-QskQpWo2jCOOqV8A,986
-django/contrib/messages/storage/__init__.py,sha256=gXDHbQ9KgQdfhYOla9Qj59_SlE9WURQiKzIA0cFH0DQ,392
-django/contrib/messages/storage/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/messages/storage/__pycache__/base.cpython-310.pyc,,
-django/contrib/messages/storage/__pycache__/cookie.cpython-310.pyc,,
-django/contrib/messages/storage/__pycache__/fallback.cpython-310.pyc,,
-django/contrib/messages/storage/__pycache__/session.cpython-310.pyc,,
-django/contrib/messages/storage/base.py,sha256=sVkSITZRsdYDvyaS5tqjcw8-fylvcbZpR4ctlpWI5bM,5820
-django/contrib/messages/storage/cookie.py,sha256=wxGdxUbklpS6J3HXW_o-VC9cTyxbptyIxTlrxZObkIM,6344
-django/contrib/messages/storage/fallback.py,sha256=K5CrVJfUDakMjIcqSRt1WZd_1Xco1Bc2AQM3O3ld9aA,2093
-django/contrib/messages/storage/session.py,sha256=kvdVosbBAvI3XBA0G4AFKf0vxLleyzlwbGEgl60DfMQ,1764
-django/contrib/messages/utils.py,sha256=_oItQILchdwdXH08SIyZ-DBdYi7q_uobHQajWwmAeUw,256
-django/contrib/messages/views.py,sha256=I_7C4yr-YLkhTEWx3iuhixG7NrKuyuSDG_CVg-EYRD8,524
-django/contrib/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/postgres/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/apps.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/constraints.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/expressions.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/functions.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/indexes.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/lookups.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/operations.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/search.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/serializers.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/signals.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/utils.cpython-310.pyc,,
-django/contrib/postgres/__pycache__/validators.cpython-310.pyc,,
-django/contrib/postgres/aggregates/__init__.py,sha256=QCznqMKqPbpraxSi1Y8-B7_MYlL42F1kEWZ1HeLgTKs,65
-django/contrib/postgres/aggregates/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/postgres/aggregates/__pycache__/general.cpython-310.pyc,,
-django/contrib/postgres/aggregates/__pycache__/mixins.cpython-310.pyc,,
-django/contrib/postgres/aggregates/__pycache__/statistics.cpython-310.pyc,,
-django/contrib/postgres/aggregates/general.py,sha256=pkp1uyn2JryyHhYq6cvMffjBwmkMtn99fotA8Fg85fY,3380
-django/contrib/postgres/aggregates/mixins.py,sha256=mZqUnHRbI37ls8FWn9KPaL65J3viOHViRUhQ5hooGz0,1033
-django/contrib/postgres/aggregates/statistics.py,sha256=xSWk5Z5ZVpM2LSaMgP97pxcijOnPHiPATe3X45poXCI,1511
-django/contrib/postgres/apps.py,sha256=QaWNrPxKquKapjfmSOWxe7NhaohSJrcRYiUQlFH7OlY,3487
-django/contrib/postgres/constraints.py,sha256=B0gpGn2e4UgVVwn3NIb7wLRUwSrWuMM7xcCUSHlPh1M,10479
-django/contrib/postgres/expressions.py,sha256=fo5YASHJtIjexadqskuhYYk4WutofxzymYsivWWJS84,405
-django/contrib/postgres/fields/__init__.py,sha256=Xo8wuWPwVNOkKY-EwV9U1zusQ2DjMXXtL7_8R_xAi5s,148
-django/contrib/postgres/fields/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/postgres/fields/__pycache__/array.cpython-310.pyc,,
-django/contrib/postgres/fields/__pycache__/citext.cpython-310.pyc,,
-django/contrib/postgres/fields/__pycache__/hstore.cpython-310.pyc,,
-django/contrib/postgres/fields/__pycache__/jsonb.cpython-310.pyc,,
-django/contrib/postgres/fields/__pycache__/ranges.cpython-310.pyc,,
-django/contrib/postgres/fields/__pycache__/utils.cpython-310.pyc,,
-django/contrib/postgres/fields/array.py,sha256=M6oR4upd4OgIaUqge7TJtZbL5eoGxXlVUBUKlOJpZjA,10778
-django/contrib/postgres/fields/citext.py,sha256=_c0QYlKJa5CS2_XFbv1KB0HwG3wJHeQ8PxGVxRrKQrk,438
-django/contrib/postgres/fields/hstore.py,sha256=WWWEoBfMtAjd226vvjFtGqbHMHFCjSly-BEhm9UN1qQ,3276
-django/contrib/postgres/fields/jsonb.py,sha256=ncMGT6WY70lCbcmhwtu2bjRmfDMUIvCr76foUv7tqv0,406
-django/contrib/postgres/fields/ranges.py,sha256=5ktJ1drscwmep4fnfRGnQI-81Cr4F0NkoubhSIZOG4Y,10979
-django/contrib/postgres/fields/utils.py,sha256=TV-Aj9VpBb13I2iuziSDURttZtz355XakxXnFwvtGio,95
-django/contrib/postgres/forms/__init__.py,sha256=NjENn2-C6BcXH4T8YeC0K2AbDk8MVT8tparL3Q4OF6g,89
-django/contrib/postgres/forms/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/postgres/forms/__pycache__/array.cpython-310.pyc,,
-django/contrib/postgres/forms/__pycache__/hstore.cpython-310.pyc,,
-django/contrib/postgres/forms/__pycache__/ranges.cpython-310.pyc,,
-django/contrib/postgres/forms/array.py,sha256=LRUU3fxXePptMh3lolxhX4sbMjNSvnzMvNgcJolKfZc,8401
-django/contrib/postgres/forms/hstore.py,sha256=XN5xOrI-jCeTsWFEjPXf6XMaLzJdXiqA6pTdGSjWdOw,1767
-django/contrib/postgres/forms/ranges.py,sha256=frrqI55xWdvVoZwRGaVTssRGC8ufk_lFvyi-hihlVLQ,3610
-django/contrib/postgres/functions.py,sha256=7v6J01QQvX70KFyg9hDc322PgvT62xZqWlzp_vrl8bA,252
-django/contrib/postgres/indexes.py,sha256=T9qsgSINgv3gFzLEqUl5FPc1mPXzepgT4YYg6-M6yZY,8389
-django/contrib/postgres/jinja2/postgres/widgets/split_array.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
-django/contrib/postgres/locale/af/LC_MESSAGES/django.mo,sha256=kDeL_SZezO8DRNMRh2oXz94YtAK1ZzPiK5dftqAonKI,2841
-django/contrib/postgres/locale/af/LC_MESSAGES/django.po,sha256=ALKUHbZ8DE6IH80STMJhGOoyHB8HSSxI4PlX_SfxJWc,3209
-django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo,sha256=UTBknYC-W7nclTrBCEiCpTglZxZQY80UqGki8I6j3EM,4294
-django/contrib/postgres/locale/ar/LC_MESSAGES/django.po,sha256=_PgF2T3ylO4vnixVoKRsgmpPDHO-Qhj3mShHtHeSna0,4821
-django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=fND1NtGTmEl7Rukt_VlqJeExdJjphBygmI-qJmE83P0,4352
-django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.po,sha256=Z9y3h6lDnbwD4JOn7OACLjEZqNY8OpEwuzoUD8FSdwA,4868
-django/contrib/postgres/locale/az/LC_MESSAGES/django.mo,sha256=K-2weZNapdDjP5-ecOfQhhhWmVR53JneJ2n4amA_zTk,2855
-django/contrib/postgres/locale/az/LC_MESSAGES/django.po,sha256=Pn47g_NvMgSBjguFLT_AE1QzxOGXOYjA-g_heXAT_tU,3214
-django/contrib/postgres/locale/be/LC_MESSAGES/django.mo,sha256=0Y6S-XR45rgw0zEZgjpRJyNm7szHxr9XOUyolo_5cN0,4134
-django/contrib/postgres/locale/be/LC_MESSAGES/django.po,sha256=KIkbhabWDYo4iDaQ8Dt0kxH_VB2wTFsS0rGs9zzKoKU,4635
-django/contrib/postgres/locale/bg/LC_MESSAGES/django.mo,sha256=dkM1WSo5SgBglvJXNVvcIhKHU0ZjUJxmy4cX6_cJgZs,3515
-django/contrib/postgres/locale/bg/LC_MESSAGES/django.po,sha256=jalX0o2VjTVhXJIBKkyEk3aMjqYyNywmSGmyve9cu5M,3974
-django/contrib/postgres/locale/ca/LC_MESSAGES/django.mo,sha256=XR1UEZV9AXKFz7XrchjRkd-tEdjnlmccW_I7XANyMns,2904
-django/contrib/postgres/locale/ca/LC_MESSAGES/django.po,sha256=5wPLvkODU_501cHPZ7v0n89rmFrsuctt7T8dUBMfQ0Q,3430
-django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo,sha256=_EmT9NnoX3xeRU-AI5sPlAszjzC0XwryWOmj8d07ox8,3388
-django/contrib/postgres/locale/cs/LC_MESSAGES/django.po,sha256=dkWVucs3-avEVtk_Xh5p-C8Tvw_oKDASdgab_-ByP-w,3884
-django/contrib/postgres/locale/da/LC_MESSAGES/django.mo,sha256=Pi841HD7j9mPiKNTaBvQP2aa5cF9MtwqbY6zfiouwu4,2916
-django/contrib/postgres/locale/da/LC_MESSAGES/django.po,sha256=3D8kRTXX2nbuvRoDlTf5tHB2S_k2d571L678wa3nBA8,3339
-django/contrib/postgres/locale/de/LC_MESSAGES/django.mo,sha256=B3HwniAOjSHmhuuqpLVa3nqYD5HPzZ7vwtQ_oPKiByE,2993
-django/contrib/postgres/locale/de/LC_MESSAGES/django.po,sha256=dZu8_1FIFKw67QnhXsGibfWT2W3d07Ro9CU8Y_HolvE,3468
-django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo,sha256=4Ymt58bCjpZlmNDZbFO8TtI6agusGvTwlDCjip_q8nQ,3573
-django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po,sha256=m1PlbIRBIkTnbe2jLzcR0_Oi9MujrsS82apXd8GDkcs,4033
-django/contrib/postgres/locale/el/LC_MESSAGES/django.mo,sha256=NmzROkTfSbioGv8exM3UdMDnRAxR65YMteGv9Nhury4,3583
-django/contrib/postgres/locale/el/LC_MESSAGES/django.po,sha256=4WuswUwrInAh-OPX9k7gDdLb-oMKp1vQFUGvfm0ej00,4144
-django/contrib/postgres/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/postgres/locale/en/LC_MESSAGES/django.po,sha256=FtuWLiTQcIvK-kpbZujmawA0yQeRERhzfoJeEiOAyJw,2865
-django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.mo,sha256=WA0RSssD8ljI16g6DynQZQLQhd_0XR8ilrnJnepsIFg,2839
-django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.po,sha256=4JASYUpYlQlSPREPvMxFBqDpDhprlkI1GpAqTJrmb10,3215
-django/contrib/postgres/locale/eo/LC_MESSAGES/django.mo,sha256=1wqM_IVO8Dl9AefzvWYuoS4eNTrBg7LDH6XUMovKi9A,2742
-django/contrib/postgres/locale/eo/LC_MESSAGES/django.po,sha256=r2tpOblfLAAHMacDWU-OVXTQus_vvAPMjUzVfrV_T7U,3217
-django/contrib/postgres/locale/es/LC_MESSAGES/django.mo,sha256=GoDmVupnksF_ypFyzFSjsGYb6EKA--HwvJfByZtSlTA,2917
-django/contrib/postgres/locale/es/LC_MESSAGES/django.po,sha256=kPsH3ohAmLLkEI5xKqge39SDF8FrNTx1emhPPeReYUg,3518
-django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo,sha256=f_gM-9Y0FK-y67lU2b4yYiFt0hz4ps9gH0NhCZScwaE,2917
-django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po,sha256=0qNlBk5v2QhZsb90xX3xHp8gw6jXevERbkOLBjwtJOc,3278
-django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.mo,sha256=Q2eOegYKQFY3fAKZCX7VvZAN6lT304W51aGl0lzkbLU,2484
-django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.po,sha256=bbgOn34B7CSq1Kf2IrJh6oRJWPur_Smc4ebljIxAFGE,3233
-django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.mo,sha256=l6WdS59mDfjsV9EMULjKP2DhXR7x3bYax1iokL-AXcU,689
-django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.po,sha256=_-jzhIT71zV539_4SUbwvOXfDHkxRy1FDGdx23iB7B4,2283
-django/contrib/postgres/locale/et/LC_MESSAGES/django.mo,sha256=oPGqGUQhU9xE7j6hQZSVdC-be2WV-_BNrSAaN4csFR4,2886
-django/contrib/postgres/locale/et/LC_MESSAGES/django.po,sha256=xKkb-0CQCAn37xe0G2jfQmjg2kuYBmXB5yBpTA5lYNI,3404
-django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo,sha256=UG7x642-n3U7mamXuNHD66a_mR0agX72xSwBD3PpyJU,2883
-django/contrib/postgres/locale/eu/LC_MESSAGES/django.po,sha256=dAx6nlRd4FF_8i7Xeylwvj4HkEDKi3swFenkdJkDawU,3321
-django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo,sha256=uLh9fJtCSKg5eaj9uGP2muN_71aFxpZwOjRHtnZhPik,3308
-django/contrib/postgres/locale/fa/LC_MESSAGES/django.po,sha256=adN7bh9Q_R0Wzlf2fWaQnTtvxo0NslyoHH5t5V0eeMM,3845
-django/contrib/postgres/locale/fi/LC_MESSAGES/django.mo,sha256=gB2z3nI8Bz-km3DngYfJulwelHSlWgZeBXlj5yWyA08,2943
-django/contrib/postgres/locale/fi/LC_MESSAGES/django.po,sha256=LNVTHv4-FWT5KOre5qTwLEpKIQbaSIusFH2uUmbwYBg,3315
-django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo,sha256=wmlIBo9os5o1u04uSvk9-VBCCfK47MWj6kIirqMvHMA,3081
-django/contrib/postgres/locale/fr/LC_MESSAGES/django.po,sha256=sLwnf7qCGv5buhPp6kEJhsjx_BqFTxT5k5o3gQQ8fEI,3463
-django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo,sha256=okWU_Ke95EG2pm8rZ4PT5ScO-8f0Hqg65lYZgSid8tM,3541
-django/contrib/postgres/locale/gd/LC_MESSAGES/django.po,sha256=tjt5kfkUGryU3hFzPuAly2DBDLuLQTTD5p-XrxryFEI,4013
-django/contrib/postgres/locale/gl/LC_MESSAGES/django.mo,sha256=MjJ8iObaHWyy2vFg_pDepfkiVH8LlTVHdy5tSqt8Wbw,539
-django/contrib/postgres/locale/gl/LC_MESSAGES/django.po,sha256=uI-7M-VYa4rqbEZcNwfQHUYDGRsz5mmksdigRywKDQc,2222
-django/contrib/postgres/locale/he/LC_MESSAGES/django.mo,sha256=UDu--EyjTrPOqf-XI9rH_Z9z7mhBGnXvrpHrfdGBlKk,3713
-django/contrib/postgres/locale/he/LC_MESSAGES/django.po,sha256=ekkwIceJdQKqL9VlCYwipnrsckSLhGi5OwBKEloZWlU,4188
-django/contrib/postgres/locale/hr/LC_MESSAGES/django.mo,sha256=vdm5GxgpKuVdGoVl3VreD8IB1Mq5HGWuq-2YDeDrNnU,929
-django/contrib/postgres/locale/hr/LC_MESSAGES/django.po,sha256=8TxEnVH2yIQWbmbmDOpR7kksNFSaUGVhimRPQgSgDkM,2501
-django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo,sha256=fnzghbobisOaQTMu6Fm7FMAv7r6afzc8_hFHwlrHU0Y,3482
-django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po,sha256=V35au4H4RIMcVq_T-KEfnQ2oUqxJqyXP--YFHWt_DNw,3933
-django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo,sha256=6-9w_URPmVzSCcFea7eThbIE5Q-QSr5Q-i0zvKhpBBI,2872
-django/contrib/postgres/locale/hu/LC_MESSAGES/django.po,sha256=fx4w4FgjfP0dlik7zGCJsZEHmmwQUSA-GRzg4KeVd_s,3394
-django/contrib/postgres/locale/hy/LC_MESSAGES/django.mo,sha256=2QFIJdmh47IGPqI-8rvuHR0HdH2LOAmaYqEeCwUpRuw,3234
-django/contrib/postgres/locale/hy/LC_MESSAGES/django.po,sha256=MLHMbdwdo1txzFOG-fVK4VUvAoDtrLA8CdpQThybSCQ,3825
-django/contrib/postgres/locale/ia/LC_MESSAGES/django.mo,sha256=gn8lf-gOP4vv-iiqnkcxvjzhJ8pTdetBhHyjl4TapXo,582
-django/contrib/postgres/locale/ia/LC_MESSAGES/django.po,sha256=FsqhPQf0j4g06rGuWSTn8A1kJ7E5U9rX16mtB8CAiIE,2251
-django/contrib/postgres/locale/id/LC_MESSAGES/django.mo,sha256=KKI5fjmuD7jqiGe7SgGkWmF6unHNe8JMVoOSDVemB8o,2733
-django/contrib/postgres/locale/id/LC_MESSAGES/django.po,sha256=Me13R5Oi89IZ0T3CtY0MZ34YK3T-HIZ7GbtFiXl2h50,3300
-django/contrib/postgres/locale/is/LC_MESSAGES/django.mo,sha256=rNL5Un5K_iRAZDtpHo4egcySaaBnNEirYDuWw0eI7gk,2931
-django/contrib/postgres/locale/is/LC_MESSAGES/django.po,sha256=UO53ciyI0jCVtBOXWkaip2AbPE2Hd2YhzK1RAlcxyQ8,3313
-django/contrib/postgres/locale/it/LC_MESSAGES/django.mo,sha256=m7bI5A6ER8TNWQH7m5-vU4xbFeqDlw-Tslv02oLLWJs,2978
-django/contrib/postgres/locale/it/LC_MESSAGES/django.po,sha256=FgyUi-A3zHv-UC21oqQ8NuHKSccRaH5_UqSuOpJFlKk,3600
-django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo,sha256=Up-87OUoJEieJkp8QecimVE-9q2krKt0pdHw1CcSxXs,3027
-django/contrib/postgres/locale/ja/LC_MESSAGES/django.po,sha256=mq2YnEbj6R6EEic2Gyhc56o-BbyJFv4PoJjXzz1CauI,3416
-django/contrib/postgres/locale/ka/LC_MESSAGES/django.mo,sha256=A_VhLUZbocGNF5_5mMoYfB3l654MrPIW4dL1ywd3Tw8,713
-django/contrib/postgres/locale/ka/LC_MESSAGES/django.po,sha256=kRIwQ1Nrzdf5arHHxOPzQcB-XwPNK5lUFKU0L3QHfC8,2356
-django/contrib/postgres/locale/kk/LC_MESSAGES/django.mo,sha256=xMc-UwyP1_jBHcGIAGWmDAjvSL50jJaiZbcT5TmzDOg,665
-django/contrib/postgres/locale/kk/LC_MESSAGES/django.po,sha256=f6Z3VUFRJ3FgSReC0JItjA0RaYbblqDb31lbJ3RRExQ,2327
-django/contrib/postgres/locale/ko/LC_MESSAGES/django.mo,sha256=vK52cwamFt1mrvpSaoVcf2RAmQghw_EbPVrx_EA9onI,2897
-django/contrib/postgres/locale/ko/LC_MESSAGES/django.po,sha256=N_HTD-HK_xI27gZJRm_sEX4qM_Wtgdy5Pwqb8A6h9C8,3445
-django/contrib/postgres/locale/ky/LC_MESSAGES/django.mo,sha256=F0Ws34MbE7zJa8FNxA-9rFm5sNLL22D24LyiBb927lE,3101
-django/contrib/postgres/locale/ky/LC_MESSAGES/django.po,sha256=yAzSeT2jBm7R2ZXiuYBQFSKQ_uWIUfNTAobE1UYnlPs,3504
-django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo,sha256=kJ3ih8HrHt2M_hFW0H9BZg7zcj6sXy6H_fD1ReIzngM,3452
-django/contrib/postgres/locale/lt/LC_MESSAGES/django.po,sha256=PNADIV8hdpLoqwW4zpIhxtWnQN8cPkdcoXYngyjFeFw,3972
-django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo,sha256=zSCp3i4tUkXh-o0uCnOntFhohUId8ctOQIooEgPbrtw,3099
-django/contrib/postgres/locale/lv/LC_MESSAGES/django.po,sha256=HaGoMy-idXgYHqxczydnQSZdzRv-YaShFU2ns4yuPAY,3626
-django/contrib/postgres/locale/mk/LC_MESSAGES/django.mo,sha256=WE4nRJKWAZvXuyU2qT2_FGqGlKYsP1KSACCtT10gQQY,3048
-django/contrib/postgres/locale/mk/LC_MESSAGES/django.po,sha256=CQX91LP1Gbkazpt4hTownJtSqZGR1OJfoD-1MCo6C1Y,3783
-django/contrib/postgres/locale/ml/LC_MESSAGES/django.mo,sha256=N47idWIsmtghZ_D5325TRsDFeoUa0MIvMFtdx7ozAHc,1581
-django/contrib/postgres/locale/ml/LC_MESSAGES/django.po,sha256=lt_7fGZV7BCB2XqFWIQQtH4niU4oMBfGzQQuN5sD0fo,2947
-django/contrib/postgres/locale/mn/LC_MESSAGES/django.mo,sha256=VWeXaMvdqhW0GHs1Irb1ikTceH7jMKH_xMzKLH0vKZg,3310
-django/contrib/postgres/locale/mn/LC_MESSAGES/django.po,sha256=p3141FJiYrkV8rocgqdxnV05FReQYZmosv9LI46FlfE,3867
-django/contrib/postgres/locale/ms/LC_MESSAGES/django.mo,sha256=m3JZm1IIMZwmpvIs3oV0roYCeR_UlswHyCpZjjE6-A8,2712
-django/contrib/postgres/locale/ms/LC_MESSAGES/django.po,sha256=HCMBA1fxKLJct14ywap0PYVBi2bDp2F97Ms5_-G_Pwg,3025
-django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo,sha256=3h8DqEFG39i6uHY0vpXuGFmoJnAxTtRFy1RazcYIXfg,2849
-django/contrib/postgres/locale/nb/LC_MESSAGES/django.po,sha256=gDUg-HDg3LiYMKzb2QaDrYopqaJmbvnw2Fo-qhUHFuI,3252
-django/contrib/postgres/locale/ne/LC_MESSAGES/django.mo,sha256=5XdBLGMkn20qeya3MgTCpsIDxLEa7PV-i2BmK993iRc,875
-django/contrib/postgres/locale/ne/LC_MESSAGES/django.po,sha256=1QLLfbrHneJmxM_5UTpNIYalP-qX7Bn7bmj4AfDLIzE,2421
-django/contrib/postgres/locale/nl/LC_MESSAGES/django.mo,sha256=ttUzGWvxJYw71fVbcXCwzetyTWERBsURTe_nsf_axq0,2951
-django/contrib/postgres/locale/nl/LC_MESSAGES/django.po,sha256=ENw-dI6FHFqxclQKdefthCIVgp41HoIYj0IBmRCz0Vw,3515
-django/contrib/postgres/locale/nn/LC_MESSAGES/django.mo,sha256=RdMFozwxYIckBY40mJhN-jjkghztKn0-ytCtqxFHBMY,2836
-django/contrib/postgres/locale/nn/LC_MESSAGES/django.po,sha256=vl8NkY342eonqbrj89eCR_8PsJpeQuaRjxems-OPIBk,3184
-django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo,sha256=HZOPQ8tC_vWEqsCAtDquwnyhEiECyKSmVHuoklAj6hA,3444
-django/contrib/postgres/locale/pl/LC_MESSAGES/django.po,sha256=gKrgT2Mpuxhs6ym_D4yJQVC0tVr9KSaZBP7Fc4yW-wY,4150
-django/contrib/postgres/locale/pt/LC_MESSAGES/django.mo,sha256=KZvJXjrIdtxbffckcrRV3nJ5GnID6PvqAb7vpOiWpHE,2745
-django/contrib/postgres/locale/pt/LC_MESSAGES/django.po,sha256=2gIDOjnFo6Iom-oTkQek4IX6FYPI9rNp9V-6sJ55aL8,3281
-django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo,sha256=y4D_g5Er3BpERdgloYcjvrhd2b_H77HzLkNUPiQY7d4,2903
-django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po,sha256=NTn26DdAGB90QPXwiWmhuB6un6sL2Rff5DJddtjLid4,3648
-django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo,sha256=w4tyByrZlba_Ju_F2OzD52ut5JSD6UGJfjt3A7CG_uc,3188
-django/contrib/postgres/locale/ro/LC_MESSAGES/django.po,sha256=hnotgrr-zeEmE4lgpqDDiJ051GoGbL_2GVs4O9dVLXI,3700
-django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo,sha256=TQ7EuEipMb-vduqTGhQY8PhjmDrCgujKGRX7Im0BymQ,4721
-django/contrib/postgres/locale/ru/LC_MESSAGES/django.po,sha256=Me728Qfq_PXRZDxjGQbs3lLMueG3bNaqGZuZPgqsZQA,5495
-django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo,sha256=0LY5Axf2dGDPCe0d2eQgEJY6OI3VORrIU9IiXPF2MD8,3358
-django/contrib/postgres/locale/sk/LC_MESSAGES/django.po,sha256=jtXuD3iUdd0_COtBzW57sNgWZ9jgXhNNiWKTj8M2X1A,3846
-django/contrib/postgres/locale/sl/LC_MESSAGES/django.mo,sha256=rBO3S_wTGtqYq3PPasYZ9fMIxbNsCevNwNlj-csP53Y,3026
-django/contrib/postgres/locale/sl/LC_MESSAGES/django.po,sha256=-hQIB9eapgVP-jrewMbtlwZfiNn8N9w03BF9OkP73xE,3642
-django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo,sha256=Pm-uXjVgLGsPwPueqLL4bLJooVzeRFwqk-gpIlxXRDE,2899
-django/contrib/postgres/locale/sq/LC_MESSAGES/django.po,sha256=hQq8PofZztjMCuvv4vZuWYIwHYErygvCz2zAsplfgWs,3281
-django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo,sha256=xNuocml3ql2Cz5cp74N525eaJ7erKcEwLbFc6IZqYBk,3753
-django/contrib/postgres/locale/sr/LC_MESSAGES/django.po,sha256=jQJQzmmrdVOEQRFSmzPPW_rUOeCS6T-1u5_pRDXWRLI,4190
-django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=RsF_fhesv3GZ0cLY3sLrLjNWxy--tUnU3jj8zEDWu2g,3092
-django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.po,sha256=6DwzkQTrhF-hhDd6GfyOZsthi84HKVy7mszvGYJXFpk,3488
-django/contrib/postgres/locale/sv/LC_MESSAGES/django.mo,sha256=5YOk3xT3NJL_G_c32i3id5U-LDgO2fRsiHoUgrRfwRA,2937
-django/contrib/postgres/locale/sv/LC_MESSAGES/django.po,sha256=yGOhPAGticohSts6S3yF9Z159RRgPUUOSYBsW6VLvlw,3461
-django/contrib/postgres/locale/tg/LC_MESSAGES/django.mo,sha256=3yW5NKKsa2f2qDGZ4NGlSn4DHatLOYEv5SEwB9voraA,2688
-django/contrib/postgres/locale/tg/LC_MESSAGES/django.po,sha256=Zuix5sJH5Fz9-joe_ivMRpNz2Fbzefsxz3OOoDV0o1c,3511
-django/contrib/postgres/locale/tk/LC_MESSAGES/django.mo,sha256=ytivs6cnECDuyVKToFQMRnH_RPr4PlVepg8xFHnr0W4,2789
-django/contrib/postgres/locale/tk/LC_MESSAGES/django.po,sha256=bfXIyKNOFRC3U34AEKCsYQn3XMBGtgqHsXpboHvRQq0,3268
-django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo,sha256=2wed5sCHeOFoykqShgnZ1aJ2dF6b6RbygraHUBhcysU,2898
-django/contrib/postgres/locale/tr/LC_MESSAGES/django.po,sha256=9xd_-n_JNSZ8GeYI0NeegzLLsTvREWsD0xbBx6otQQ4,3267
-django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo,sha256=8Hd-F7RZgoSrBlWYHSUw6uhXHdVFiEcWHWuXxJhYrU8,4418
-django/contrib/postgres/locale/uk/LC_MESSAGES/django.po,sha256=jFuGp_wSpAEZ91at1WUhS-S6k5JGv10kbVu4YoDsoDo,5116
-django/contrib/postgres/locale/uz/LC_MESSAGES/django.mo,sha256=PcmhhVC1spz3EFrQ2qdhfPFcA1ELHtBhHGWk9Z868Ss,703
-django/contrib/postgres/locale/uz/LC_MESSAGES/django.po,sha256=lbQxX2cmueGCT8sl6hsNWcrf9H-XEUbioP4L7JHGqiU,2291
-django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=jUqnfwS-XMNKVytVLEcyVsxqyfIHGkSJfW0hi7Sh7w4,2574
-django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.po,sha256=7L9pBCN-dScEAfPIe4u-jY14S6NgVe6seZHaqthgms0,3060
-django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=Twqt8SVetuVV6UQ8ne48RfXILh2I9_-5De7cIrd5Lvc,2586
-django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.po,sha256=5qE-q9uXlHM59soKgNSqeCfP-DnFuYI4fXLAbQctJ8c,2962
-django/contrib/postgres/lookups.py,sha256=Y8x4RxGGkVnlqJfNIWcQvBA1Uk5cKtsr4FPUF7hUSuo,1601
-django/contrib/postgres/operations.py,sha256=wBooH3gFy8arxZvMiPhU6w_5fGwwlcWb8OBvm-iiy1s,11808
-django/contrib/postgres/search.py,sha256=KoGQrV1KiiqJ9ctJznqqjmv-oOLYO8LUBbeOMSUH8hM,11492
-django/contrib/postgres/serializers.py,sha256=wCg0IzTNeuVOiC2cdy1wio6gChjqVvH6Ri4hkCkEeXU,435
-django/contrib/postgres/signals.py,sha256=NmSCh5WHhIgfXvcMDayKFgYARVqHdT_Dq0s5RWeVAG4,2285
-django/contrib/postgres/templates/postgres/widgets/split_array.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
-django/contrib/postgres/utils.py,sha256=32nCnzdMZ7Ra4dDonbIdv1aCppV3tnQnoEX9AhCJe38,1187
-django/contrib/postgres/validators.py,sha256=LT4W70ZC6aJ_uHZzu1VbFTjEY2p0V0hKqnKaTobNV78,2805
-django/contrib/redirects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/redirects/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/redirects/__pycache__/admin.cpython-310.pyc,,
-django/contrib/redirects/__pycache__/apps.cpython-310.pyc,,
-django/contrib/redirects/__pycache__/middleware.cpython-310.pyc,,
-django/contrib/redirects/__pycache__/models.cpython-310.pyc,,
-django/contrib/redirects/admin.py,sha256=1bPOgeZYRYCHdh7s2SpXnuL2WsfdQjD96U5Y3xhRY8g,314
-django/contrib/redirects/apps.py,sha256=1uS5EBp7WwDnY0WHeaRYo7VW9j-s20h4KDdImodjCNg,251
-django/contrib/redirects/locale/af/LC_MESSAGES/django.mo,sha256=EZpwI7hxr96D4CUt6e-kJHgkE3Q5k9RAmPjn6kXvE8A,1136
-django/contrib/redirects/locale/af/LC_MESSAGES/django.po,sha256=kDPrxqvMg3hn12fGyTaImC1gOtTjSxuJtbKdA7jvl_4,1367
-django/contrib/redirects/locale/ar/LC_MESSAGES/django.mo,sha256=FfPauXNUmQxq0R1-eQ2xw2WY1Oi33sLwVhyKX10_zFw,1336
-django/contrib/redirects/locale/ar/LC_MESSAGES/django.po,sha256=X0xX51asSDWedd56riJ4UrsCGEjH-lZdkcilIg4amgI,1595
-django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=hg1lkBEORP2vgLPRbuKcXiIFUcTvAO7KrjbPXlWhvqY,1379
-django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.po,sha256=O4quBKA1jHATGGeDqCONDFfAqvDvOAATIBvueeMphyY,1581
-django/contrib/redirects/locale/ast/LC_MESSAGES/django.mo,sha256=a1ixBQQIdBZ7o-ADnF2r74CBtPLsuatG7txjc05_GXI,1071
-django/contrib/redirects/locale/ast/LC_MESSAGES/django.po,sha256=PguAqeIUeTMWsADOYLTxoC6AuKrCloi8HN18hbm3pZ0,1266
-django/contrib/redirects/locale/az/LC_MESSAGES/django.mo,sha256=KzpRUrONOi5Cdr9sSRz3p0X-gGhD1-3LNhen-XDhO3g,1092
-django/contrib/redirects/locale/az/LC_MESSAGES/django.po,sha256=RGjd2J_pRdSkin4UlKxg7kc3aA8PCQRjDPXkpGZHdn0,1347
-django/contrib/redirects/locale/be/LC_MESSAGES/django.mo,sha256=fVqy28ml508UJf5AA-QVsS5dzKI8Q_ugZZ34WjTpJ-s,1426
-django/contrib/redirects/locale/be/LC_MESSAGES/django.po,sha256=zHBVewcpt0KoavV96v3F4wybqtkGb1jUuPz7sbiWWDI,1662
-django/contrib/redirects/locale/bg/LC_MESSAGES/django.mo,sha256=o-ETSDGtAFZRo3SPd_IHe0mJ3R0RHA32KpgfOmUH11M,1279
-django/contrib/redirects/locale/bg/LC_MESSAGES/django.po,sha256=9qm8s6vj-0LStnyEJ8iYVi13_MfugVAAs2RHvIi7kW8,1587
-django/contrib/redirects/locale/bn/LC_MESSAGES/django.mo,sha256=SbQh_pgxNCogvUFud7xW9T6NTAvpaQb2jngXCtpjICM,1319
-django/contrib/redirects/locale/bn/LC_MESSAGES/django.po,sha256=LgUuiPryDLSXxo_4KMCdjM5XC3BiRfINuEk0s5PUQYQ,1511
-django/contrib/redirects/locale/br/LC_MESSAGES/django.mo,sha256=Yt8xo5B5LJ9HB8IChCkj5mljFQAAKlaW_gurtF8q8Yw,1429
-django/contrib/redirects/locale/br/LC_MESSAGES/django.po,sha256=L2qPx6mZEVUNay1yYEweKBLr_fXVURCnACfsezfP_pI,1623
-django/contrib/redirects/locale/bs/LC_MESSAGES/django.mo,sha256=0Yak4rXHjRRXLu3oYYzvS8qxvk2v4IFvUiDPA68a5YI,1115
-django/contrib/redirects/locale/bs/LC_MESSAGES/django.po,sha256=s9Nhx3H4074hlSqo1zgQRJbozakdJTwA1aTuMSqEJWw,1316
-django/contrib/redirects/locale/ca/LC_MESSAGES/django.mo,sha256=VHE6qHCEoA7rQk0fMUpoTfwqSfu63-CiOFvhvKp5DMQ,1136
-django/contrib/redirects/locale/ca/LC_MESSAGES/django.po,sha256=PSMb_7iZBuYhtdR8byh9zr9dr50Z_tQ518DUlqoEA_M,1484
-django/contrib/redirects/locale/cs/LC_MESSAGES/django.mo,sha256=UwYsoEHsg7FJLVe0JxdOa1cTGypqJFienAbWe7Vldf0,1229
-django/contrib/redirects/locale/cs/LC_MESSAGES/django.po,sha256=hnWJLXX7IjwZK7_8L3p-dpj5XpDmEo7lQ7-F4upjn7U,1504
-django/contrib/redirects/locale/cy/LC_MESSAGES/django.mo,sha256=NSGoK12A7gbtuAuzQEVFPNSZMqqmhHyRvTEn9PUm9So,1132
-django/contrib/redirects/locale/cy/LC_MESSAGES/django.po,sha256=jDmC64z5exPnO9zwRkBmpa9v3DBlaeHRhqZYPoWqiIY,1360
-django/contrib/redirects/locale/da/LC_MESSAGES/django.mo,sha256=_UVfTMRG__5j7Ak8Q3HtXSy_DPGpZ1XvKj9MHdmR_xI,1132
-django/contrib/redirects/locale/da/LC_MESSAGES/django.po,sha256=RAWWbZXbJciNSdw4skUEoTnOb19iKXAe1KXJLWi0zPQ,1418
-django/contrib/redirects/locale/de/LC_MESSAGES/django.mo,sha256=uh-ldy-QkWS5-ARX6cLyzxzdhbTb_chyEbBPFCvCKuE,1155
-django/contrib/redirects/locale/de/LC_MESSAGES/django.po,sha256=hhGNnVCRV4HNxhCYfmVXTOIkabD7qsVQccwxKa5Tz9g,1424
-django/contrib/redirects/locale/dsb/LC_MESSAGES/django.mo,sha256=LXgczA38RzrN7zSWpxKy8_RY4gPg5tZLl30CJGjJ63s,1236
-django/contrib/redirects/locale/dsb/LC_MESSAGES/django.po,sha256=rI9dyDp7zuZ6CjvFyo2OkGUDK5XzdvdI0ma8IGVkjp4,1431
-django/contrib/redirects/locale/el/LC_MESSAGES/django.mo,sha256=sD3HT4e53Yd3HmQap_Mqlxkm0xF98A6PFW8Lil0PihI,1395
-django/contrib/redirects/locale/el/LC_MESSAGES/django.po,sha256=puhVCcshg5HaPHsVAOucneVgBYT6swhCCBpVGOZykgA,1716
-django/contrib/redirects/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/redirects/locale/en/LC_MESSAGES/django.po,sha256=u4RcMkFmNvlG9Bv6kM0a0scWUMDUbTEDJGR90-G8C0E,1123
-django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.mo,sha256=wxCpSLGl_zsE47kDwilDkpihazwHkA363PvtGOLWhdk,1127
-django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.po,sha256=zujH1WuxoHw_32flptG0x2Ob_BlilLKXuMjQxVbZmgw,1307
-django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.mo,sha256=VscL30uJnV-eiQZITpBCy0xk_FfKdnMh4O9Hk4HGxww,1053
-django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.po,sha256=loe8xIVjZ7eyteQNLPoa-QceBZdgky22dR6deK5ubmA,1246
-django/contrib/redirects/locale/eo/LC_MESSAGES/django.mo,sha256=pZo0DSbfGGTHi-jgaTGp29kJK-iplaai-WXJoOPluMA,1138
-django/contrib/redirects/locale/eo/LC_MESSAGES/django.po,sha256=3AxFPHffYw3svHe-MR3zuVGLMtkJPL_SX_vB_ztx98c,1414
-django/contrib/redirects/locale/es/LC_MESSAGES/django.mo,sha256=xyeIQL_pHFyo7p7SkeuxzKdDsma2EXhvnPNDHUhaBv8,1159
-django/contrib/redirects/locale/es/LC_MESSAGES/django.po,sha256=Y3hPQrcbhLtR-pPYRJJXkJME5M8Enr20j9D63hhe9ZA,1490
-django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.mo,sha256=JdKzpdyf9W2m_0_NguvXvyciOh6LAATfE6lqcsp45To,1144
-django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.po,sha256=3zrKJXLh_mrjc4A6g9O6ePyFz8PNUMYTPjNFpvEhaDo,1364
-django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.mo,sha256=wcAMOiqsgz2KEpRwirRH9FNoto6vmo_hxthrQJi0IHU,1147
-django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.po,sha256=n8DM14vHekZRayH0B6Pm3L5XnSo4lto4ZAdu4OhcOmc,1291
-django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.mo,sha256=38fbiReibMAmC75BCCbyo7pA2VA3QvmRqVEo_K6Ejow,1116
-django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.po,sha256=t7R6PiQ1bCc7jhfMrjHlZxVQ6BRlWT2Vv4XXhxBD_Oo,1397
-django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486
-django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.po,sha256=f4XZW8OHjRJoztMJtSDCxd2_Mfy-XK44hLtigjGSsZY,958
-django/contrib/redirects/locale/et/LC_MESSAGES/django.mo,sha256=34-Z1s9msdnj6U7prMctEWCxAR8TNnP44MIoyUuFsls,1131
-django/contrib/redirects/locale/et/LC_MESSAGES/django.po,sha256=1VWcUbM9z_nNmiGnT9Mka3Y3ZLRVHuJdS_j_yNXvmQ0,1479
-django/contrib/redirects/locale/eu/LC_MESSAGES/django.mo,sha256=yHlAEz01pWse4ZworAj7JiATUam5Fp20EZd_3PRgSNw,1126
-django/contrib/redirects/locale/eu/LC_MESSAGES/django.po,sha256=zAvSdahjvq727hXeGjHJ_R5L5meCrOv98tbH3rwlBcE,1404
-django/contrib/redirects/locale/fa/LC_MESSAGES/django.mo,sha256=vZa1KKm2y8duEv9UbJMyiM8WO2EAXcevdR3Lj1ISgLU,1234
-django/contrib/redirects/locale/fa/LC_MESSAGES/django.po,sha256=1quB0Wx5VTIjX2QUCpENl1GA2hpSdsRpgK931jr20B0,1541
-django/contrib/redirects/locale/fi/LC_MESSAGES/django.mo,sha256=xJEd4M2IowXxKBlaGuOEgFKA9OuihcgPoK07Beat4cc,1164
-django/contrib/redirects/locale/fi/LC_MESSAGES/django.po,sha256=1I7AoXMPRDMY6TCjPkQh0Q9g68r9BwKOwki9DybcFWc,1429
-django/contrib/redirects/locale/fr/LC_MESSAGES/django.mo,sha256=YhVNoNaHdSOp2P2F7xfo2MHCd2KkHiehpVjLyJ4VLuw,1155
-django/contrib/redirects/locale/fr/LC_MESSAGES/django.po,sha256=-ljzEKiU05annJ8DHw4OOg8eDCAnWLV2V33R-tQn9dE,1391
-django/contrib/redirects/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
-django/contrib/redirects/locale/fy/LC_MESSAGES/django.po,sha256=D7xverCbf3kTCcFM8h7EKWM5DcxZRqeOSKDB1irbKeE,948
-django/contrib/redirects/locale/ga/LC_MESSAGES/django.mo,sha256=blwOMshClFZKvOZXVvqENK_E_OkdS1ydbjQCDXcHXd4,1075
-django/contrib/redirects/locale/ga/LC_MESSAGES/django.po,sha256=76rdrG4GVbcKwgUQN4bB-B0t6hpivCA_ehf4uzGM_mY,1341
-django/contrib/redirects/locale/gd/LC_MESSAGES/django.mo,sha256=baZXdulbPZwe4_Q3OwfHFl4GJ4hCYtoZz-lE4wcdJvg,1250
-django/contrib/redirects/locale/gd/LC_MESSAGES/django.po,sha256=M4E2giFgzRowd3OsvhD389MyJmT5osKz1Vs1sEfmUpU,1428
-django/contrib/redirects/locale/gl/LC_MESSAGES/django.mo,sha256=LoMrpBThJSmWzZ1wT66xGndnNCVCOq2eCEyo88qKwkA,1127
-django/contrib/redirects/locale/gl/LC_MESSAGES/django.po,sha256=d8qXhC2wI45yXtFJuMBgibzHsCkZSxAD3I6pVdpxlSU,1313
-django/contrib/redirects/locale/he/LC_MESSAGES/django.mo,sha256=MnCcK4Vb3Z5ZQ2A52tb0kM60hmoHQJ0UrWcrhuI2RK0,1204
-django/contrib/redirects/locale/he/LC_MESSAGES/django.po,sha256=gjFr6b15s5JoAT6OoLCA3ApfwiqZ_vhB-EXEWOiUEwo,1427
-django/contrib/redirects/locale/hi/LC_MESSAGES/django.mo,sha256=onR8L7Kvkx6HgFLK7jT-wA_zjarBN8pyltG6BbKFIWU,1409
-django/contrib/redirects/locale/hi/LC_MESSAGES/django.po,sha256=fNv9_qwR9iS-pjWNXnrUFIqvc10lwg3bfj5lgdQOy1U,1649
-django/contrib/redirects/locale/hr/LC_MESSAGES/django.mo,sha256=7wHi6Uu0czZhI6v0ndJJ1wSkalTRfn7D5ovyw8tr4U4,1207
-django/contrib/redirects/locale/hr/LC_MESSAGES/django.po,sha256=HtxZwZ-ymmf-XID0z5s7nGYg-4gJL8i6FDGWt9i4Wns,1406
-django/contrib/redirects/locale/hsb/LC_MESSAGES/django.mo,sha256=6lfIW4LcMGvuLOY0U4w1V6Xwcd_TsUC3r-QzZOOLwys,1221
-django/contrib/redirects/locale/hsb/LC_MESSAGES/django.po,sha256=l5pATo8NHa8ypB8dCigRwqpLZvV8W0v2vPh60oAeGn0,1420
-django/contrib/redirects/locale/hu/LC_MESSAGES/django.mo,sha256=4oYBNGEmFMISzw3LExVf6CHsJD_o20mMy132pwzM-wk,1111
-django/contrib/redirects/locale/hu/LC_MESSAGES/django.po,sha256=UYJ_ZrAnOqA6S8nkkfN_FBLxCyPHJjOMd1OSIUVc8aY,1383
-django/contrib/redirects/locale/hy/LC_MESSAGES/django.mo,sha256=gT5x1TZXMNyBwfmQ-C_cOB60JGYdKIM7tVb3-J5d6nw,1261
-django/contrib/redirects/locale/hy/LC_MESSAGES/django.po,sha256=40QTpth2AVeoy9P36rMJC2C82YsBh_KYup19WL6zM6w,1359
-django/contrib/redirects/locale/ia/LC_MESSAGES/django.mo,sha256=PDB5ZQP6iH31xN6N2YmPZYjt6zzc88TRmh9_gAWH2U0,1152
-django/contrib/redirects/locale/ia/LC_MESSAGES/django.po,sha256=GXjbzY-cQz2QLx_iuqgijT7VUMcoNKL7prbP6yIbj8E,1297
-django/contrib/redirects/locale/id/LC_MESSAGES/django.mo,sha256=XEsvVWMR9As9csO_6iXNAcLZrErxz3HfDj5GTe06fJU,1105
-django/contrib/redirects/locale/id/LC_MESSAGES/django.po,sha256=t8FoC1xIB-XHDplyDJByQGFnHggxR0LSfUMGwWoAKWE,1410
-django/contrib/redirects/locale/io/LC_MESSAGES/django.mo,sha256=vz7TWRML-DFDFapbEXTByb9-pRQwoeJ0ApSdh6nOzXY,1019
-django/contrib/redirects/locale/io/LC_MESSAGES/django.po,sha256=obStuMYYSQ7x2utkGS3gekdPfnsNAwp3DcNwlwdg1sI,1228
-django/contrib/redirects/locale/is/LC_MESSAGES/django.mo,sha256=aMjlGilYfP7clGriAp1Za60uCD40rvLt9sKXuYX3ABg,1040
-django/contrib/redirects/locale/is/LC_MESSAGES/django.po,sha256=nw5fxVV20eQqsk4WKg6cIiKttG3zsITSVzH4p5xBV8s,1299
-django/contrib/redirects/locale/it/LC_MESSAGES/django.mo,sha256=bBj6dvhZSpxojLZ0GiMBamh1xiluxAYMt6RHubi9CxU,1092
-django/contrib/redirects/locale/it/LC_MESSAGES/django.po,sha256=NHSVus7ixtrB7JDIrYw22srZcse5i4Z9y8Ply_-Jcts,1390
-django/contrib/redirects/locale/ja/LC_MESSAGES/django.mo,sha256=XSJw3iLK0gYVjZ86MYuV4jfoiN_-WkH--oMK5uW9cs8,1193
-django/contrib/redirects/locale/ja/LC_MESSAGES/django.po,sha256=SlYrmC3arGgS7SL8cCnq7d37P-bQGcmpgUXAwVC2eRw,1510
-django/contrib/redirects/locale/ka/LC_MESSAGES/django.mo,sha256=0aOLKrhUX6YAIMNyt6KES9q2iFk2GupEr76WeGlJMkk,1511
-django/contrib/redirects/locale/ka/LC_MESSAGES/django.po,sha256=AQWIEdhxp55XnJwwHrUxxQaGbLJPmdo1YLeT86IJqnY,1725
-django/contrib/redirects/locale/kab/LC_MESSAGES/django.mo,sha256=Ogx9NXK1Nfw4ctZfp-slIL81ziDX3f4DZ01OkVNY5Tw,699
-django/contrib/redirects/locale/kab/LC_MESSAGES/django.po,sha256=gI6aUPkXH-XzKrStDsMCMNfQKDEc-D1ffqE-Z-ItQuI,1001
-django/contrib/redirects/locale/kk/LC_MESSAGES/django.mo,sha256=KVLc6PKL1MP_Px0LmpoW2lIvgLiSzlvoJ9062F-s3Zw,1261
-django/contrib/redirects/locale/kk/LC_MESSAGES/django.po,sha256=Xoy4mnOT51F_GS1oIO91EAuwt-ZfePKh-sutedo6D_g,1478
-django/contrib/redirects/locale/km/LC_MESSAGES/django.mo,sha256=tcW1s7jvTG0cagtdRNT0jSNkhX-B903LKl7bK31ZvJU,1248
-django/contrib/redirects/locale/km/LC_MESSAGES/django.po,sha256=KJ4h1umpfFLdsWZtsfXoeOl6cUPUD97U4ISWt80UZ2U,1437
-django/contrib/redirects/locale/kn/LC_MESSAGES/django.mo,sha256=24GHcQlEoCDri-98eLtqLbGjtJz9cTPAfYdAijsL5ck,788
-django/contrib/redirects/locale/kn/LC_MESSAGES/django.po,sha256=xkH24itr2fpuCQMGQ3xssOqaN_7KzM-GLy0u00ti27I,1245
-django/contrib/redirects/locale/ko/LC_MESSAGES/django.mo,sha256=viohri0QV3d46CN-YZP1k7w83Ac8r5lCkWU8fhbAEEc,1134
-django/contrib/redirects/locale/ko/LC_MESSAGES/django.po,sha256=8TsMfyl-BqGb-8fI12pazzlI7x3X1yruIYuvFroLti0,1521
-django/contrib/redirects/locale/ky/LC_MESSAGES/django.mo,sha256=4jX_g-hledmjWEx0RvY99G5QcBj_mQt_HZzpd000J44,1265
-django/contrib/redirects/locale/ky/LC_MESSAGES/django.po,sha256=yvx21nxsqqVzPyyxX9_rF-oeaY2WszXrG4ZDSZTW6-4,1522
-django/contrib/redirects/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
-django/contrib/redirects/locale/lb/LC_MESSAGES/django.po,sha256=Hv1CF9CC78YuVVNpklDtPJDU5-iIUeuXcljewmc9akg,946
-django/contrib/redirects/locale/lt/LC_MESSAGES/django.mo,sha256=reiFMXJnvE4XUosbKjyvUFzl4IKjlJoFK1gVJE9Tbnc,1191
-django/contrib/redirects/locale/lt/LC_MESSAGES/django.po,sha256=G56UIYuuVLgwzHCIj_suHNYPe1z76Y_cauWfGEs4nKI,1448
-django/contrib/redirects/locale/lv/LC_MESSAGES/django.mo,sha256=slGK6O2tYD5yciS8m_7h2WA4LOPf05nQ4oTRKB63etE,1175
-django/contrib/redirects/locale/lv/LC_MESSAGES/django.po,sha256=GUDn1IYQ5UMOQUBvGfuVOeVb-bpf5FHVigqTt_N0I0M,1442
-django/contrib/redirects/locale/mk/LC_MESSAGES/django.mo,sha256=3XGgf2K60LclScPKcgw07TId6x535AW5jtGVJ9lC01A,1353
-django/contrib/redirects/locale/mk/LC_MESSAGES/django.po,sha256=Smsdpid5VByoxvnfzju_XOlp6aTPl8qshFptot3cRYM,1596
-django/contrib/redirects/locale/ml/LC_MESSAGES/django.mo,sha256=IhSkvbgX9xfE4GypOQ7W7SDM-wOOqx1xgSTW7L1JofU,1573
-django/contrib/redirects/locale/ml/LC_MESSAGES/django.po,sha256=9KpXf88GRUB5I51Rj3q9qhvhjHFINuiJ9ig0SZdYE6k,1755
-django/contrib/redirects/locale/mn/LC_MESSAGES/django.mo,sha256=14fdHC_hZrRaA0EAFzBJy8BHj4jMMX6l2e6rLLBtJ8E,1274
-django/contrib/redirects/locale/mn/LC_MESSAGES/django.po,sha256=7_QzUWf5l0P-7gM35p9UW7bOj33NabQq_zSrekUeZsY,1502
-django/contrib/redirects/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
-django/contrib/redirects/locale/mr/LC_MESSAGES/django.po,sha256=0aGKTlriCJoP-Tirl-qCl7tjjpjURhgCjRGmurHVO3c,940
-django/contrib/redirects/locale/ms/LC_MESSAGES/django.mo,sha256=WUk6hvvHPWuylCGiDvy0MstWoQ1mdmwwfqlms1Nv4Ng,1094
-django/contrib/redirects/locale/ms/LC_MESSAGES/django.po,sha256=bsQDwxqtS5FgPCqTrfm9kw2hH_R2y44DnI5nluUgduc,1255
-django/contrib/redirects/locale/my/LC_MESSAGES/django.mo,sha256=H5-y9A3_1yIXJzC4sSuHqhURxhOlnYEL8Nvc0IF4zUE,549
-django/contrib/redirects/locale/my/LC_MESSAGES/django.po,sha256=MZGNt0jMQA6aHA6OmjvaC_ajvRWfUfDiKkV0j3_E480,1052
-django/contrib/redirects/locale/nb/LC_MESSAGES/django.mo,sha256=pxRtj5VFxTQBbi_mDS05iGoQs4BZ4y6LLJZ9pozJezY,1110
-django/contrib/redirects/locale/nb/LC_MESSAGES/django.po,sha256=ALYXciVa0d0sG70dqjtk17Yh_qwzKAzTXDlEZSU9kc0,1392
-django/contrib/redirects/locale/ne/LC_MESSAGES/django.mo,sha256=TxTnBGIi5k0PKAjADeCuOAJQV5dtzLrsFRXBXtfszWI,1420
-django/contrib/redirects/locale/ne/LC_MESSAGES/django.po,sha256=5b5R-6AlSIQrDyTtcmquoW5xrQRGZwlxZpBpZfVo5t4,1607
-django/contrib/redirects/locale/nl/LC_MESSAGES/django.mo,sha256=Xeh1YbEAu7Lhz07RXPTMDyv7AyWF9Bhe-9oHdWT74mo,1129
-django/contrib/redirects/locale/nl/LC_MESSAGES/django.po,sha256=QuNgrX7w2wO15KPEe3ogVhXbkt0v60EwKmKfD7-PedU,1476
-django/contrib/redirects/locale/nn/LC_MESSAGES/django.mo,sha256=8TQXBF2mzENl7lFpcrsKxkJ4nKySTOgXJM5_I2OD7q8,1143
-django/contrib/redirects/locale/nn/LC_MESSAGES/django.po,sha256=pfrKVQd1wLKKpq-b7CBpc-rZnEEgyZFDSjbipsEiwxM,1344
-django/contrib/redirects/locale/os/LC_MESSAGES/django.mo,sha256=joQ-ibV9_6ctGMNPLZQLCx5fUamRQngs6_LDd_s9sMQ,1150
-django/contrib/redirects/locale/os/LC_MESSAGES/django.po,sha256=ZwFWiuGS9comy7r2kMnKuqaPOvVehVdAAuFvXM5ldxM,1358
-django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo,sha256=MY-OIDNXlZth-ZRoOJ52nlUPg_51_F5k0NBIpc7GZEw,748
-django/contrib/redirects/locale/pa/LC_MESSAGES/django.po,sha256=TPDTK2ZvDyvO1ob8Qfr64QDbHVWAREfEeBO5w9jf63E,1199
-django/contrib/redirects/locale/pl/LC_MESSAGES/django.mo,sha256=9Sc_8aDC8-PADnr4hYdat6iRUXj0QxsWR1RGWKIQP3M,1285
-django/contrib/redirects/locale/pl/LC_MESSAGES/django.po,sha256=RLuSAlWQPvxDGSNHL3j5ohMdf4IZL-g21-_QIuTdY4c,1605
-django/contrib/redirects/locale/pt/LC_MESSAGES/django.mo,sha256=WocPaVk3fQEz_MLmGVtFBGwsThD-gNU7GDocqEbeaBA,1129
-django/contrib/redirects/locale/pt/LC_MESSAGES/django.po,sha256=ptCzoE41c9uFAbgSjb6VHSFYPEUv_51YyBdoThXN3XA,1350
-django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.mo,sha256=LxFEZCH75ucCaB5fEmdsjEJi5aJa3barRLqcd6r-gj0,1171
-django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po,sha256=PO5whkwiagEN_s8ViBDN41dW35wdjAuXZBB1j2m09lY,1615
-django/contrib/redirects/locale/ro/LC_MESSAGES/django.mo,sha256=D8FkmV6IxZOn5QAPBu9PwhStBpVQWudU62wKa7ADfJY,1158
-django/contrib/redirects/locale/ro/LC_MESSAGES/django.po,sha256=Z_-pDi2-A7_KXrEQtFlAJ_KLO0vXFKCbMphsNlqfNJk,1477
-django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo,sha256=IvO0IXq1xuX0wpo2hV8po1AMifLS3ElGyQal0vmC_Jw,1457
-django/contrib/redirects/locale/ru/LC_MESSAGES/django.po,sha256=FHb4L3RMVV5ajxGj9y6ZymPtO_XjZrhHmvCZBPwwzmQ,1762
-django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo,sha256=oVA89AU0UVErADtesum66Oo3D27RRy04qLHy3n0Y9-w,1189
-django/contrib/redirects/locale/sk/LC_MESSAGES/django.po,sha256=Kjbdc7nrKsMCaEphxUdGb4VbpJbFhF0cs3ReqrY7638,1468
-django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo,sha256=GAZtOFSUxsOHdXs3AzT40D-3JFWIlNDZU_Z-cMvdaHo,1173
-django/contrib/redirects/locale/sl/LC_MESSAGES/django.po,sha256=gkZTyxNh8L2gNxyLVzm-M1HTiK8KDvughTa2MK9NzWo,1351
-django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo,sha256=f2HyVjWFGnjNXV-EIk0YMFaMH6_ZwYLYgSDwU4fIJfM,1165
-django/contrib/redirects/locale/sq/LC_MESSAGES/django.po,sha256=gbd4JxoevGfDTRx3iYfDtlnh54EwyRKYXxs4XagHvRM,1453
-django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo,sha256=OK90avxrpYxBcvPIZ_tDlSZP6PyRCzFg_7h0F_JlMy8,1367
-django/contrib/redirects/locale/sr/LC_MESSAGES/django.po,sha256=Ipi7j7q5N8aNGWmkz5XGlOPqpD46xCLKarfs-lNbKqM,1629
-django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=qYXT0j80c7a5jMsxeezncAL9Gff2Pb7eJz8iTX0TRX4,1210
-django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po,sha256=CL3ij3uGK8UOMggLXf0MctEydLbyi-9zvkXN5Teuu9c,1424
-django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo,sha256=2j_IyOgbM_yED5lF10r7KGguEC2qX58dRIVogWj5PVY,1134
-django/contrib/redirects/locale/sv/LC_MESSAGES/django.po,sha256=lIFNLfEondtzlwlG3tDf3AH59uEotLtj-XdL87c-QUo,1404
-django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo,sha256=oJnTp9CTgNsg5TSOV_aPZIUXdr6-l65hAZbaARZCO2w,1078
-django/contrib/redirects/locale/sw/LC_MESSAGES/django.po,sha256=CTVwA3O7GUQb7l1WpbmT8kOfqr7DpqnIyQt3HWJ6YTQ,1245
-django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo,sha256=AE6Py2_CV2gQKjKQAa_UgkLT9i61x3i1hegQpRGuZZM,1502
-django/contrib/redirects/locale/ta/LC_MESSAGES/django.po,sha256=ojdq8p4HnwtK0n6By2I6_xuucOpJIobJEGRMGc_TrS8,1700
-django/contrib/redirects/locale/te/LC_MESSAGES/django.mo,sha256=Gtcs4cbgrD7-bSkPKiPbM5DcjONS2fSdHhvWdbs_E1M,467
-django/contrib/redirects/locale/te/LC_MESSAGES/django.po,sha256=RT-t3TjcOLyNQQWljVrIcPWErKssh_HQMyGujloy-EI,939
-django/contrib/redirects/locale/tg/LC_MESSAGES/django.mo,sha256=6e4Pk9vX1csvSz80spVLhNTd3N251JrXaCga9n60AP8,782
-django/contrib/redirects/locale/tg/LC_MESSAGES/django.po,sha256=2Cmle5usoNZBo8nTfAiqCRq3KqN1WKKdc-mogUOJm9I,1177
-django/contrib/redirects/locale/th/LC_MESSAGES/django.mo,sha256=1l6eO0k1KjcmuRJKUS4ZdtJGhAUmUDMAMIeNwEobQqY,1331
-django/contrib/redirects/locale/th/LC_MESSAGES/django.po,sha256=DVVqpGC6zL8Hy8e6P8ZkhKbvcMJmXV5euLxmfoTCtms,1513
-django/contrib/redirects/locale/tk/LC_MESSAGES/django.mo,sha256=NkxO6C7s1HHT1Jrmwad9zaD3pPyW_sPuZz3F2AGUD7M,1155
-django/contrib/redirects/locale/tk/LC_MESSAGES/django.po,sha256=0EQj1I1oNbAovKmF7o2rQ8_QsQiYqEFDab2KlCFw0s0,1373
-django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo,sha256=-qySxKYwxfFO79cBytvzTBeFGdio1wJlM5DeBBfdxns,1133
-django/contrib/redirects/locale/tr/LC_MESSAGES/django.po,sha256=-03z3YMI6tlt12xwFI2lWchOxiIVbkdVRhghaCoMKlk,1408
-django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo,sha256=Hf1JXcCGNwedxy1nVRM_pQ0yUebC-tvOXr7P0h86JyI,1178
-django/contrib/redirects/locale/tt/LC_MESSAGES/django.po,sha256=2WCyBQtqZk-8GXgtu-x94JYSNrryy2QoMnirhiBrgV0,1376
-django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
-django/contrib/redirects/locale/udm/LC_MESSAGES/django.po,sha256=xsxlm4itpyLlLdPQRIHLuvTYRvruhM3Ezc9jtp3XSm4,934
-django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo,sha256=QbN1ABfbr2YbZQXz2U4DI-6iTvWoKPrLAn5tGq57G5Y,1569
-django/contrib/redirects/locale/uk/LC_MESSAGES/django.po,sha256=pH9M4ilsJneoHw6E1E3T54QCHGS_i4tlhDc0nbAJP8I,1949
-django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo,sha256=CQkt-yxyAaTd_Aj1ZZC8s5-4fI2TRyTEZ-SYJZgpRrQ,1138
-django/contrib/redirects/locale/ur/LC_MESSAGES/django.po,sha256=CkhmN49PvYTccvlSRu8qGpcbx2C-1aY7K3Lq1VC2fuM,1330
-django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo,sha256=vD0Y920SSsRsLROKFaU6YM8CT5KjQxJcgMh5bZ4Pugo,743
-django/contrib/redirects/locale/uz/LC_MESSAGES/django.po,sha256=G2Rj-6g8Vse2Bp8L_hGIO84S--akagMXj8gSa7F2lK4,1195
-django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo,sha256=BquXycJKh-7-D9p-rGUNnjqzs1d6S1YhEJjFW8_ARFA,1106
-django/contrib/redirects/locale/vi/LC_MESSAGES/django.po,sha256=xsCASrGZNbQk4d1mhsTZBcCpPJ0KO6Jr4Zz1wfnL67s,1301
-django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=iftb_HccNV383_odHbB6Tikn2h7EtP_9QK-Plq2xwTY,1100
-django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po,sha256=xZmfuCEYx7ou_qvtxBcBly5mBmkSBEhnx0xqJj3nvMw,1490
-django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=-H2o5p5v8j5RqKZ6vOsWToFWGOn8CaO3KSTiU42Zqjk,1071
-django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po,sha256=fQicS5nmJLgloKM83l6NcSJp36-Wjn2Dl9jf03e0pGo,1334
-django/contrib/redirects/middleware.py,sha256=ydqidqi5JTaoguEFQBRzLEkU3HeiohgVsFglHUE-HIU,1921
-django/contrib/redirects/migrations/0001_initial.py,sha256=FmCw6R7-BK2bQIsetCADPKjV_s5bU4_gQLXzs5YySrk,2102
-django/contrib/redirects/migrations/0002_alter_redirect_new_path_help_text.py,sha256=qUWUkoM5ak5ywVulV9dzKNby3iDZgG212c9U659KdQg,636
-django/contrib/redirects/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-310.pyc,,
-django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-310.pyc,,
-django/contrib/redirects/migrations/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/redirects/models.py,sha256=KJ6mj0BS243BNPKp26K7OSqcT9j49FPth5m0gNWWxFM,1083
-django/contrib/sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/sessions/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/sessions/__pycache__/apps.cpython-310.pyc,,
-django/contrib/sessions/__pycache__/base_session.cpython-310.pyc,,
-django/contrib/sessions/__pycache__/exceptions.cpython-310.pyc,,
-django/contrib/sessions/__pycache__/middleware.cpython-310.pyc,,
-django/contrib/sessions/__pycache__/models.cpython-310.pyc,,
-django/contrib/sessions/__pycache__/serializers.cpython-310.pyc,,
-django/contrib/sessions/apps.py,sha256=5WIMqa3ymqEvYMnFHe3uWZB8XSijUF_NSgaorRD50Lg,194
-django/contrib/sessions/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/sessions/backends/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/sessions/backends/__pycache__/base.cpython-310.pyc,,
-django/contrib/sessions/backends/__pycache__/cache.cpython-310.pyc,,
-django/contrib/sessions/backends/__pycache__/cached_db.cpython-310.pyc,,
-django/contrib/sessions/backends/__pycache__/db.cpython-310.pyc,,
-django/contrib/sessions/backends/__pycache__/file.cpython-310.pyc,,
-django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-310.pyc,,
-django/contrib/sessions/backends/base.py,sha256=xm9Rs0ZI8ERP6cZ-N4KdfVww3aWiXC8FcgcxQWNdrqw,11744
-django/contrib/sessions/backends/cache.py,sha256=Dz4lOirEI3ZSrvOWnAffQpyA53TuPm3MmV1u8jkT-hI,2741
-django/contrib/sessions/backends/cached_db.py,sha256=pxPlY9klOH0NCht8OZrHQew_UkMrQlKMtIKMLYIv2DI,2098
-django/contrib/sessions/backends/db.py,sha256=qEYZNmyWk1pBbuXGXbTsLtQ2Xt_HgoRALxTQm55ZLy0,3785
-django/contrib/sessions/backends/file.py,sha256=4o1LB0hZz_SCQjAwXHulDnFB1QZrEprAY4LKQdGfkRc,7754
-django/contrib/sessions/backends/signed_cookies.py,sha256=keRgy5CyvufiEo4A91znOKbX6UOzzH2hzaw51UzK_0Y,2676
-django/contrib/sessions/base_session.py,sha256=1woSGGF4IFWm2apOabxtdQHeVS6OmnivL_fwjUYGJwc,1490
-django/contrib/sessions/exceptions.py,sha256=KhkhXiFwfUflSP_t6wCLOEXz1YjBRTKVNbrLmGhOTLo,359
-django/contrib/sessions/locale/af/LC_MESSAGES/django.mo,sha256=0DS0pgVrMN-bUimDfesgHs8Lgr0loz2c6nJdz58RxyQ,717
-django/contrib/sessions/locale/af/LC_MESSAGES/django.po,sha256=ZJRLBshQCAiTTAUycdB3MZIadLeHR5LxbSlDvSWLnEo,838
-django/contrib/sessions/locale/ar/LC_MESSAGES/django.mo,sha256=yoepqaR68PTGLx--cAOzP94Sqyl5xIYpeQ0IFWgY380,846
-django/contrib/sessions/locale/ar/LC_MESSAGES/django.po,sha256=ZgwtBYIdtnqp_8nKHXF1NVJFzQU81-3yv9b7STrQHMc,995
-django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=_iSasR22CxvNWfei6aE_24woPhhhvNzQl5FUO_649dc,817
-django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.po,sha256=vop5scstamgFSnO_FWXCEnI7R1N26t7jy_mZUAfETcY,978
-django/contrib/sessions/locale/ast/LC_MESSAGES/django.mo,sha256=hz2m-PkrHby2CKfIOARj6kCzisT-Vs0syfDSTx_iVVw,702
-django/contrib/sessions/locale/ast/LC_MESSAGES/django.po,sha256=M90j1Nx6oDJ16hguUkfKYlyb5OymUeZ5xzPixWxSC7I,846
-django/contrib/sessions/locale/az/LC_MESSAGES/django.mo,sha256=_4XcYdtRasbCjRoaWGoULsXX2cEa--KdRdqbnGoaRuM,731
-django/contrib/sessions/locale/az/LC_MESSAGES/django.po,sha256=qYd7vz6A-hHQNwewzI6wEsxRVLdoc2xLGm1RPW0Hxc4,891
-django/contrib/sessions/locale/be/LC_MESSAGES/django.mo,sha256=FHZ72QuOd-vAOjOXisLs4CaEk7uZuzjO_EfUSB6754M,854
-django/contrib/sessions/locale/be/LC_MESSAGES/django.po,sha256=tHsYVn3XNTcukB0SrHUWP1iV763rrQHCimOyJHRPiek,1023
-django/contrib/sessions/locale/bg/LC_MESSAGES/django.mo,sha256=fFZ8EgRlJ1Z-IP8gPtsUXAnqVHbqQRZpYv6PLWNlNVA,759
-django/contrib/sessions/locale/bg/LC_MESSAGES/django.po,sha256=tXcaDPNmFIv0RU-7sGscRkLCbKEgTBowzVj3AYymarY,997
-django/contrib/sessions/locale/bn/LC_MESSAGES/django.mo,sha256=0BdFN7ou9tmoVG00fCA-frb1Tri3iKz43W7SWal398s,762
-django/contrib/sessions/locale/bn/LC_MESSAGES/django.po,sha256=LycmTel6LXV2HGGN6qzlAfID-cVEQCNnW1Nv_hbWXJk,909
-django/contrib/sessions/locale/br/LC_MESSAGES/django.mo,sha256=6ubPQUyXX08KUssyVZBMMkTlD94mlA6wzsteAMiZ8C8,1027
-django/contrib/sessions/locale/br/LC_MESSAGES/django.po,sha256=LKxGGHOQejKpUp18rCU2FXW8D_H3WuP_P6dPlEluwcE,1201
-django/contrib/sessions/locale/bs/LC_MESSAGES/django.mo,sha256=M7TvlJMrSUAFhp7oUSpUKejnbTuIK-19yiGBBECl9Sc,759
-django/contrib/sessions/locale/bs/LC_MESSAGES/django.po,sha256=Ur0AeRjXUsLgDJhcGiw75hRk4Qe98DzPBOocD7GFDRQ,909
-django/contrib/sessions/locale/ca/LC_MESSAGES/django.mo,sha256=tbaZ48PaihGGD9-2oTKiMFY3kbXjU59nNciCRINOBNk,738
-django/contrib/sessions/locale/ca/LC_MESSAGES/django.po,sha256=tJuJdehKuD9aXOauWOkE5idQhsVsLbeg1Usmc6N_SP0,906
-django/contrib/sessions/locale/cs/LC_MESSAGES/django.mo,sha256=wEFP4NNaRQDbcbw96UC906jN4rOrlPJMn60VloXr944,759
-django/contrib/sessions/locale/cs/LC_MESSAGES/django.po,sha256=7XkKESwfOmbDRDbUYr1f62-fDOuyI-aCqLGaEiDrmX8,962
-django/contrib/sessions/locale/cy/LC_MESSAGES/django.mo,sha256=GeWVeV2PvgLQV8ecVUA2g3-VvdzMsedgIDUSpn8DByk,774
-django/contrib/sessions/locale/cy/LC_MESSAGES/django.po,sha256=zo18MXtkEdO1L0Q6ewFurx3lsEWTCdh0JpQJTmvw5bY,952
-django/contrib/sessions/locale/da/LC_MESSAGES/django.mo,sha256=7_YecCzfeYQp9zVYt2B7MtjhAAuVb0BcK2D5Qv_uAbg,681
-django/contrib/sessions/locale/da/LC_MESSAGES/django.po,sha256=qX_Oo7niVo57bazlIYFA6bnVmPBclUUTWvZFYNLaG04,880
-django/contrib/sessions/locale/de/LC_MESSAGES/django.mo,sha256=N3kTal0YK9z7Te3zYGLbJmoSB6oWaviWDLGdPlsPa9g,721
-django/contrib/sessions/locale/de/LC_MESSAGES/django.po,sha256=0qnfDeCUQN2buKn6R0MvwhQP05XWxSu-xgvfxvnJe3k,844
-django/contrib/sessions/locale/dsb/LC_MESSAGES/django.mo,sha256=RABl3WZmY6gLh4IqmTUhoBEXygDzjp_5lLF1MU9U5fA,810
-django/contrib/sessions/locale/dsb/LC_MESSAGES/django.po,sha256=cItKs5tASYHzDxfTg0A_dgBQounpzoGyOEFn18E_W_g,934
-django/contrib/sessions/locale/el/LC_MESSAGES/django.mo,sha256=QbTbmcfgc8_4r5hFrIghDhk2XQ4f8_emKmqupMG2ah0,809
-django/contrib/sessions/locale/el/LC_MESSAGES/django.po,sha256=HeaEbpVmFhhrZt2NsZteYaYoeo8FYKZF0IoNJwtzZkc,971
-django/contrib/sessions/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/sessions/locale/en/LC_MESSAGES/django.po,sha256=afaM-IIUZtcRZduojUTS8tT0w7C4Ya9lXgReOvq_iF0,804
-django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.mo,sha256=FgY1K6IVyQjMjXqVZxcsyWW_Tu5ckfrbmIfNYq5P-_E,693
-django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.po,sha256=cMV15gJq8jNSUzkhn7uyOf2JYMFx7BNH1oFYa1vISnc,853
-django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.mo,sha256=T5NQCTYkpERfP9yKbUvixT0VdBt1zGmGB8ITlkVc420,707
-django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.po,sha256=1ks_VE1qpEfPcyKg0HybkTG0-DTttTHTfUPhQCR53sw,849
-django/contrib/sessions/locale/eo/LC_MESSAGES/django.mo,sha256=eBvYQbZS_WxVV3QCSZAOyHNIljC2ZXxVc4mktUuXVjI,727
-django/contrib/sessions/locale/eo/LC_MESSAGES/django.po,sha256=Ru9xicyTgHWVHh26hO2nQNFRQmwBnYKEagsS8TZRv3E,917
-django/contrib/sessions/locale/es/LC_MESSAGES/django.mo,sha256=jbHSvHjO2OCLlBD66LefocKOEbefWbPhj-l3NugiWuc,734
-django/contrib/sessions/locale/es/LC_MESSAGES/django.po,sha256=fY5WXeONEXHeuBlH0LkvzdZ2CSgbvLZ8BJc429aIbhI,909
-django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.mo,sha256=_8icF2dMUWj4WW967rc5npgndXBAdJrIiz_VKf5D-Rw,694
-django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.po,sha256=AnmvjeOA7EBTJ6wMOkCl8JRLVYRU8KS0egPijcKutns,879
-django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.mo,sha256=UP7ia0gV9W-l0Qq5AS4ZPadJtml8iuzzlS5C9guMgh8,754
-django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.po,sha256=_XeiiRWvDaGjofamsRHr5up_EQvcw0w-GLLeWK27Af8,878
-django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.mo,sha256=MDM0K3xMvyf8ymvAurHYuacpxfG_YfJFyNnp1uuc6yY,756
-django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.po,sha256=Y7VNa16F_yyK7_XJvF36rR2XNW8aBJK4UDweufyXpxE,892
-django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486
-django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.po,sha256=zWjgB0AmsmhX2tjk1PgldttqY56Czz8epOVCaYWXTLU,761
-django/contrib/sessions/locale/et/LC_MESSAGES/django.mo,sha256=aL1jZWourEC7jtjsuBZHD-Gw9lpL6L1SoqjTtzguxD0,737
-django/contrib/sessions/locale/et/LC_MESSAGES/django.po,sha256=VNBYohAOs59jYWkjVMY-v2zwVy5AKrtBbFRJZLwdCFg,899
-django/contrib/sessions/locale/eu/LC_MESSAGES/django.mo,sha256=M9piOB_t-ZnfN6pX-jeY0yWh2S_5cCuo1oGiy7X65A4,728
-django/contrib/sessions/locale/eu/LC_MESSAGES/django.po,sha256=bHdSoknoH0_dy26e93tWVdO4TT7rnCPXlSLPsYAhwyw,893
-django/contrib/sessions/locale/fa/LC_MESSAGES/django.mo,sha256=6DdJcqaYuBnhpFFHR42w-RqML0eQPFMAUEEDY0Redy8,755
-django/contrib/sessions/locale/fa/LC_MESSAGES/django.po,sha256=rklhNf0UFl2bM6mt7x9lWvfzPH4XWGbrW9Gc2w-9rzg,922
-django/contrib/sessions/locale/fi/LC_MESSAGES/django.mo,sha256=oAugvlTEvJmG8KsZw09WcfnifYY5oHnGo4lxcxqKeaY,721
-django/contrib/sessions/locale/fi/LC_MESSAGES/django.po,sha256=BVVrjbZZtLGAuZ9HK63p769CbjZFZMlS4BewSMfNMKU,889
-django/contrib/sessions/locale/fr/LC_MESSAGES/django.mo,sha256=aDGYdzx2eInF6IZ-UzPDEJkuYVPnvwVND3qVuSfJNWw,692
-django/contrib/sessions/locale/fr/LC_MESSAGES/django.po,sha256=hARxGdtBOzEZ_iVyzkNvcKlgyM8fOkdXTH3upj2XFYM,893
-django/contrib/sessions/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
-django/contrib/sessions/locale/fy/LC_MESSAGES/django.po,sha256=U-VEY4WbmIkmrnPK4Mv-B-pbdtDzusBCVmE8iHyvzFU,751
-django/contrib/sessions/locale/ga/LC_MESSAGES/django.mo,sha256=zTrydRCRDiUQwF4tQ3cN1-5w36i6KptagsdA5_SaGy0,747
-django/contrib/sessions/locale/ga/LC_MESSAGES/django.po,sha256=Qpk1JaUWiHSEPdgBk-O_KfvGzwlZ4IAA6c6-nsJe400,958
-django/contrib/sessions/locale/gd/LC_MESSAGES/django.mo,sha256=Yi8blY_fUD5YTlnUD6YXZvv1qjm4QDriO6CJIUe1wIk,791
-django/contrib/sessions/locale/gd/LC_MESSAGES/django.po,sha256=fEa40AUqA5vh743Zqv0FO2WxSFXGYk4IzUR4BoaP-C4,890
-django/contrib/sessions/locale/gl/LC_MESSAGES/django.mo,sha256=uQ2ZmtUNoVCB2mSlMGSy-j4a_hu9PBfJDo796d8beFA,701
-django/contrib/sessions/locale/gl/LC_MESSAGES/django.po,sha256=FovTLHdVK15N9FI9lFFAOP4zt7GsvO0kKdocgeVDkNk,902
-django/contrib/sessions/locale/he/LC_MESSAGES/django.mo,sha256=qhgjSWfGAOgl-i7iwzSrJttx88xcj1pB0iLkEK64mJU,809
-django/contrib/sessions/locale/he/LC_MESSAGES/django.po,sha256=KvQG6wOpokM-2JkhWnB2UUQacy5Ie1402K_pH2zUOu0,1066
-django/contrib/sessions/locale/hi/LC_MESSAGES/django.mo,sha256=naqxOjfAnNKy3qqnUG-4LGf9arLRJpjyWWmSj5tEfao,759
-django/contrib/sessions/locale/hi/LC_MESSAGES/django.po,sha256=WnTGvOz9YINMcUJg2BYCaHceZLKaTfsba_0AZtRNP38,951
-django/contrib/sessions/locale/hr/LC_MESSAGES/django.mo,sha256=axyJAmXmadpFxIhu8rroVD8NsGGadQemh9-_ZDo7L1U,819
-django/contrib/sessions/locale/hr/LC_MESSAGES/django.po,sha256=3G-qOYXBO-eMWWsa5LwTCW9M1oF0hlWgEz7hAK8hJqI,998
-django/contrib/sessions/locale/hsb/LC_MESSAGES/django.mo,sha256=_OXpOlCt4KU0i65Iw4LMjSsyn__E9wH20l9vDNBSEzw,805
-django/contrib/sessions/locale/hsb/LC_MESSAGES/django.po,sha256=yv3vX_UCDrdl07GQ79Mnytwgz2oTvySYOG9enzMpFJA,929
-django/contrib/sessions/locale/hu/LC_MESSAGES/django.mo,sha256=ik40LnsWkKYEUioJB9e11EX9XZ-qWMa-S7haxGhM-iI,727
-django/contrib/sessions/locale/hu/LC_MESSAGES/django.po,sha256=1-UWEEsFxRwmshP2x4pJbitWIGZ1YMeDDxnAX-XGNxc,884
-django/contrib/sessions/locale/hy/LC_MESSAGES/django.mo,sha256=x6VQWGdidRJFUJme-6jf1pcitktcQHQ7fhmw2UBej1Q,815
-django/contrib/sessions/locale/hy/LC_MESSAGES/django.po,sha256=eRMa3_A2Vx195mx2lvza1v-wcEcEeMrU63f0bgPPFjc,893
-django/contrib/sessions/locale/ia/LC_MESSAGES/django.mo,sha256=-o4aQPNJeqSDRSLqcKuYvJuKNBbFqDJDe3IzHgSgZeQ,744
-django/contrib/sessions/locale/ia/LC_MESSAGES/django.po,sha256=PULLDd3QOIU03kgradgQzT6IicoPhLPlUvFgRl-tGbA,869
-django/contrib/sessions/locale/id/LC_MESSAGES/django.mo,sha256=mOaIF0NGOO0-dt-nhHL-i3cfvt9-JKTbyUkFWPqDS9Y,705
-django/contrib/sessions/locale/id/LC_MESSAGES/django.po,sha256=EA6AJno3CaFOO-dEU9VQ_GEI-RAXS0v0uFqn1RJGjEs,914
-django/contrib/sessions/locale/io/LC_MESSAGES/django.mo,sha256=_rqAY6reegqmxmWc-pW8_kDaG9zflZuD-PGOVFsjRHo,683
-django/contrib/sessions/locale/io/LC_MESSAGES/django.po,sha256=tbKMxGuB6mh_m0ex9rO9KkTy6qyuRW2ERrQsGwmPiaw,840
-django/contrib/sessions/locale/is/LC_MESSAGES/django.mo,sha256=3QeMl-MCnBie9Sc_aQ1I7BrBhkbuArpoSJP95UEs4lg,706
-django/contrib/sessions/locale/is/LC_MESSAGES/django.po,sha256=LADIFJv8L5vgDJxiQUmKPSN64zzzrIKImh8wpLBEVWQ,853
-django/contrib/sessions/locale/it/LC_MESSAGES/django.mo,sha256=qTY3O-0FbbpZ5-BR5xOJWP0rlnIkBZf-oSawW_YJWlk,726
-django/contrib/sessions/locale/it/LC_MESSAGES/django.po,sha256=hEv0iTGLuUvEBk-lF-w7a9P3ifC0-eiodNtuSc7cXhg,869
-django/contrib/sessions/locale/ja/LC_MESSAGES/django.mo,sha256=hbv9FzWzXRIGRh_Kf_FLQB34xfmPU_9RQKn9u1kJqGU,757
-django/contrib/sessions/locale/ja/LC_MESSAGES/django.po,sha256=ppGx5ekOWGgDF3vzyrWsqnFUZ-sVZZhiOhvAzl_8v54,920
-django/contrib/sessions/locale/ka/LC_MESSAGES/django.mo,sha256=VZ-ysrDbea_-tMV-1xtlTeW62IAy2RWR94V3Y1iSh4U,803
-django/contrib/sessions/locale/ka/LC_MESSAGES/django.po,sha256=hqiWUiATlrc7qISF7ndlelIrFwc61kzhKje9l-DY6V4,955
-django/contrib/sessions/locale/kab/LC_MESSAGES/django.mo,sha256=W_yE0NDPJrVznA2Qb89VuprJNwyxSg59ovvjkQe6mAs,743
-django/contrib/sessions/locale/kab/LC_MESSAGES/django.po,sha256=FJeEuv4P3NT_PpWHEUsQVSWXu65nYkJ6Z2AlbSKb0ZA,821
-django/contrib/sessions/locale/kk/LC_MESSAGES/django.mo,sha256=FROGz_MuIhsIU5_-EYV38cHnRZrc3-OxxkBeK0ax9Rk,810
-django/contrib/sessions/locale/kk/LC_MESSAGES/django.po,sha256=P-oHO3Oi3V_RjWHjEAHdTrDfTwKP2xh3yJh7BlXL1VQ,1029
-django/contrib/sessions/locale/km/LC_MESSAGES/django.mo,sha256=VOuKsIG2DEeCA5JdheuMIeJlpmAhKrI6lD4KWYqIIPk,929
-django/contrib/sessions/locale/km/LC_MESSAGES/django.po,sha256=09i6Nd_rUK7UqFpJ70LMXTR6xS0NuGETRLe0CopMVBk,1073
-django/contrib/sessions/locale/kn/LC_MESSAGES/django.mo,sha256=TMZ71RqNR6zI20BeozyLa9cjYrWlvfIajGDfpnHd3pQ,810
-django/contrib/sessions/locale/kn/LC_MESSAGES/django.po,sha256=whdM8P74jkAAHvjgJN8Q77dYd9sIsf_135ID8KBu-a8,990
-django/contrib/sessions/locale/ko/LC_MESSAGES/django.mo,sha256=EUyVQYGtiFJg01mP30a0iOqBYHvpzHAcGTZM28Ubs5Q,700
-django/contrib/sessions/locale/ko/LC_MESSAGES/django.po,sha256=PjntvSzRz_Aekj9VFhGsP5yO6rAsxTMzwFj58JqToIU,855
-django/contrib/sessions/locale/ky/LC_MESSAGES/django.mo,sha256=ME7YUgKOYQz9FF_IdrqHImieEONDrkcn4T3HxTZKSV0,742
-django/contrib/sessions/locale/ky/LC_MESSAGES/django.po,sha256=JZHTs9wYmlWzilRMyp-jZWFSzGxWtPiQefPmLL9yhtM,915
-django/contrib/sessions/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
-django/contrib/sessions/locale/lb/LC_MESSAGES/django.po,sha256=3igeAnQjDg6D7ItBkQQhyBoFJOZlBxT7NoZiExwD-Fo,749
-django/contrib/sessions/locale/lt/LC_MESSAGES/django.mo,sha256=L9w8-qxlDlCqR_2P0PZegfhok_I61n0mJ1koJxzufy4,786
-django/contrib/sessions/locale/lt/LC_MESSAGES/django.po,sha256=dEefLGtg5flFr_v4vHS5HhK1kxx9WYWTw98cvEn132M,1023
-django/contrib/sessions/locale/lv/LC_MESSAGES/django.mo,sha256=exEzDUNwNS0GLsUkKPu_SfqBxU7T6VRA_T2schIQZ88,753
-django/contrib/sessions/locale/lv/LC_MESSAGES/django.po,sha256=fBgQEbsGg1ECVm1PFDrS2sfKs2eqmsqrSYzx9ELotNQ,909
-django/contrib/sessions/locale/mk/LC_MESSAGES/django.mo,sha256=4oTWp8-qzUQBiqG32hNieABgT3O17q2C4iEhcFtAxLA,816
-django/contrib/sessions/locale/mk/LC_MESSAGES/django.po,sha256=afApb5YRhPXUWR8yF_TTym73u0ov7lWiwRda1-uNiLY,988
-django/contrib/sessions/locale/ml/LC_MESSAGES/django.mo,sha256=tff5TsHILSV1kAAB3bzHQZDB9fgMglZJTofzCunGBzc,854
-django/contrib/sessions/locale/ml/LC_MESSAGES/django.po,sha256=eRkeupt42kUey_9vJmlH8USshnXPZ8M7aYHq88u-5iY,1016
-django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo,sha256=CcCH2ggVYrD29Q11ZMthcscBno2ePkQDbZfoYquTRPM,784
-django/contrib/sessions/locale/mn/LC_MESSAGES/django.po,sha256=nvcjbJzXiDvWFXrM5CxgOQIq8XucsZEUVdYkY8LnCRE,992
-django/contrib/sessions/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
-django/contrib/sessions/locale/mr/LC_MESSAGES/django.po,sha256=FQRdZ-qIDuvTCrwbnWfxoxNi8rywLSebcNbxGvr-hb0,743
-django/contrib/sessions/locale/ms/LC_MESSAGES/django.mo,sha256=rFi4D_ZURYUPjs5AqJ66bW70yL7AekAKWnrZRBvGPiE,649
-django/contrib/sessions/locale/ms/LC_MESSAGES/django.po,sha256=nZuJ_D0JZUzmGensLa7tSgzbBo05qgQcuHmte2oU6WQ,786
-django/contrib/sessions/locale/my/LC_MESSAGES/django.mo,sha256=8zzzyfJYok969YuAwDUaa6YhxaSi3wcXy3HRNXDb_70,872
-django/contrib/sessions/locale/my/LC_MESSAGES/django.po,sha256=mfs0zRBI0tugyyEfXBZzZ_FMIohydq6EYPZGra678pw,997
-django/contrib/sessions/locale/nb/LC_MESSAGES/django.mo,sha256=hfJ1NCFgcAAtUvNEpaZ9b31PyidHxDGicifUWANIbM8,717
-django/contrib/sessions/locale/nb/LC_MESSAGES/django.po,sha256=yXr6oYuiu01oELdQKuztQFWz8x5C2zS5OzEfU9MHJsU,908
-django/contrib/sessions/locale/ne/LC_MESSAGES/django.mo,sha256=slFgMrqGVtLRHdGorLGPpB09SM92_WnbnRR0rlpNlPQ,802
-django/contrib/sessions/locale/ne/LC_MESSAGES/django.po,sha256=1vyoiGnnaB8f9SFz8PGfzpw6V_NoL78DQwjjnB6fS98,978
-django/contrib/sessions/locale/nl/LC_MESSAGES/django.mo,sha256=84BTlTyxa409moKbQMFyJisI65w22p09qjJHBAmQe-g,692
-django/contrib/sessions/locale/nl/LC_MESSAGES/django.po,sha256=smRr-QPGm6h6hdXxghggWES8b2NnL7yDQ07coUypa8g,909
-django/contrib/sessions/locale/nn/LC_MESSAGES/django.mo,sha256=cytH72J3yS1PURcgyrD8R2PV5d3SbPE73IAqOMBPPVg,667
-django/contrib/sessions/locale/nn/LC_MESSAGES/django.po,sha256=y9l60yy_W3qjxWzxgJg5VgEH9KAIHIQb5hv7mgnep9w,851
-django/contrib/sessions/locale/os/LC_MESSAGES/django.mo,sha256=xVux1Ag45Jo9HQBbkrRzcWrNjqP09nMQl16jIh0YVlo,732
-django/contrib/sessions/locale/os/LC_MESSAGES/django.po,sha256=1hG5Vsz2a2yW05_Z9cTNrBKtK9VRPZuQdx4KJ_0n98o,892
-django/contrib/sessions/locale/pa/LC_MESSAGES/django.mo,sha256=qEx4r_ONwXK1-qYD5uxxXEQPqK5I6rf38QZoUSm7UVA,771
-django/contrib/sessions/locale/pa/LC_MESSAGES/django.po,sha256=M7fmVGP8DtZGEuTV3iJhuWWqILVUTDZvUey_mrP4_fM,918
-django/contrib/sessions/locale/pl/LC_MESSAGES/django.mo,sha256=F9CQb7gQ1ltP6B82JNKu8IAsTdHK5TNke0rtDIgNz3c,828
-django/contrib/sessions/locale/pl/LC_MESSAGES/django.po,sha256=C_MJBB-vwTZbx-t4-mzun-RxHhdOVv04b6xrWdnTv8E,1084
-django/contrib/sessions/locale/pt/LC_MESSAGES/django.mo,sha256=dlJF7hF4GjLmQPdAJhtf-FCKX26XsOmZlChOcxxIqPk,738
-django/contrib/sessions/locale/pt/LC_MESSAGES/django.po,sha256=cOycrw3HCHjSYBadpalyrg5LdRTlqZCTyMh93GOQ8O0,896
-django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.mo,sha256=XHNF5D8oXIia3e3LYwxd46a2JOgDc_ykvc8yuo21fT0,757
-django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.po,sha256=K_zxKaUKngWPFpvHgXOcymJEsiONSw-OrVrroRXmUUk,924
-django/contrib/sessions/locale/ro/LC_MESSAGES/django.mo,sha256=WR9I9Gum_pq7Qg2Gzhf-zAv43OwR_uDtsbhtx4Ta5gE,776
-django/contrib/sessions/locale/ro/LC_MESSAGES/django.po,sha256=fEgVxL_0Llnjspu9EsXBf8AVL0DGdfF7NgV88G7WN1E,987
-django/contrib/sessions/locale/ru/LC_MESSAGES/django.mo,sha256=n-8vXR5spEbdfyeWOYWC_6kBbAppNoRrWYgqKFY6gJA,913
-django/contrib/sessions/locale/ru/LC_MESSAGES/django.po,sha256=sNqNGdoof6eXzFlh4YIp1O54MdDOAFDjD3GvAFsNP8k,1101
-django/contrib/sessions/locale/sk/LC_MESSAGES/django.mo,sha256=Yntm624Wt410RwuNPU1c-WwQoyrRrBs69VlKMlNUHeQ,766
-django/contrib/sessions/locale/sk/LC_MESSAGES/django.po,sha256=wt7BJk6RpFogJ2Wwa9Mh0mJi9YMpNYKTUSDuDuv1Ong,975
-django/contrib/sessions/locale/sl/LC_MESSAGES/django.mo,sha256=EE6mB8BiYRyAxK6qzurRWcaYVs96FO_4rERYQdtIt3k,770
-django/contrib/sessions/locale/sl/LC_MESSAGES/django.po,sha256=KTjBWyvaNCHbpV9K6vbnavwxxXqf2DlIqVPv7MVFcO8,928
-django/contrib/sessions/locale/sq/LC_MESSAGES/django.mo,sha256=eRaTy3WOC76EYLtMSD4xtJj2h8eE4W-TS4VvCVxI5bw,683
-django/contrib/sessions/locale/sq/LC_MESSAGES/django.po,sha256=9pzp7834LQKafe5fJzC4OKsAd6XfgtEQl6K6hVLaBQM,844
-django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo,sha256=ZDBOYmWIoSyDeT0nYIIFeMtW5jwpr257CbdTZlkVeRQ,855
-django/contrib/sessions/locale/sr/LC_MESSAGES/django.po,sha256=OXQOYeac0ghuzLrwaErJGr1FczuORTu2yroFX5hvRnk,1027
-django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=f3x9f9hTOsJltghjzJMdd8ueDwzxJex6zTXsU-_Hf_Y,757
-django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.po,sha256=HKjo7hjSAvgrIvlI0SkgF3zxz8TtKWyBT51UGNhDwek,946
-django/contrib/sessions/locale/sv/LC_MESSAGES/django.mo,sha256=SGbr0K_5iAMA22MfseAldMDgLSEBrI56pCtyV8tMAPc,707
-django/contrib/sessions/locale/sv/LC_MESSAGES/django.po,sha256=vraY3915wBYGeYu9Ro0-TlBeLWqGZP1fbckLv8y47Ys,853
-django/contrib/sessions/locale/sw/LC_MESSAGES/django.mo,sha256=Edhqp8yuBnrGtJqPO7jxobeXN4uU5wKSLrOsFO1F23k,743
-django/contrib/sessions/locale/sw/LC_MESSAGES/django.po,sha256=iY4rN4T-AA2FBQA7DiWWFvrclqKiDYQefqwwVw61-f8,858
-django/contrib/sessions/locale/ta/LC_MESSAGES/django.mo,sha256=qLIThhFQbJKc1_UVr7wVIm1rJfK2rO5m84BCB_oKq7s,801
-django/contrib/sessions/locale/ta/LC_MESSAGES/django.po,sha256=bYqtYf9XgP9IKKFJXh0u64JhRhDvPPUliI1J-NeRpKE,945
-django/contrib/sessions/locale/te/LC_MESSAGES/django.mo,sha256=kteZeivEckt4AmAeKgmgouMQo1qqSQrI8M42B16gMnQ,786
-django/contrib/sessions/locale/te/LC_MESSAGES/django.po,sha256=dQgiNS52RHrL6bV9CEO7Jk9lk3YUQrUBDCg_bP2OSZc,980
-django/contrib/sessions/locale/tg/LC_MESSAGES/django.mo,sha256=N6AiKfV47QTlO5Z_r4SQZXVLtouu-NVSwWkePgD17Tc,747
-django/contrib/sessions/locale/tg/LC_MESSAGES/django.po,sha256=wvvDNu060yqlTxy3swM0x3v6QpvCB9DkfNm0Q-kb9Xk,910
-django/contrib/sessions/locale/th/LC_MESSAGES/django.mo,sha256=D41vbkoYMdYPj3587p-c5yytLVi9pE5xvRZEYhZrxPs,814
-django/contrib/sessions/locale/th/LC_MESSAGES/django.po,sha256=43704TUv4ysKhL8T5MowZwlyv1JZrPyVGrpdIyb3r40,988
-django/contrib/sessions/locale/tk/LC_MESSAGES/django.mo,sha256=pT_hpKCwFT60GUXzD_4z8JOhmh1HRnkZj-QSouVEgUA,699
-django/contrib/sessions/locale/tk/LC_MESSAGES/django.po,sha256=trqXxfyIbh4V4szol0pXETmEWRxAAKywPZ9EzVMVE-I,865
-django/contrib/sessions/locale/tr/LC_MESSAGES/django.mo,sha256=STDnYOeO1d9nSCVf7pSkMq8R7z1aeqq-xAuIYjsofuE,685
-django/contrib/sessions/locale/tr/LC_MESSAGES/django.po,sha256=XYKo0_P5xitYehvjMzEw2MTp_Nza-cIXEECV3dA6BmY,863
-django/contrib/sessions/locale/tt/LC_MESSAGES/django.mo,sha256=Q-FGu_ljTsxXO_EWu7zCzGwoqFXkeoTzWSlvx85VLGc,806
-django/contrib/sessions/locale/tt/LC_MESSAGES/django.po,sha256=UC85dFs_1836noZTuZEzPqAjQMFfSvj7oGmEWOGcfCA,962
-django/contrib/sessions/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
-django/contrib/sessions/locale/udm/LC_MESSAGES/django.po,sha256=CPml2Fn9Ax_qO5brCFDLPBoTiNdvsvJb1btQ0COwUfY,737
-django/contrib/sessions/locale/uk/LC_MESSAGES/django.mo,sha256=jzNrLuFghQMCHNRQ0ihnKMCicgear0yWiTOLnvdPszw,841
-django/contrib/sessions/locale/uk/LC_MESSAGES/django.po,sha256=4K2geuGjRpJCtNfGPMhYWZlGxUy5xzIoDKA2jL2iGos,1171
-django/contrib/sessions/locale/ur/LC_MESSAGES/django.mo,sha256=FkGIiHegr8HR8zjVyJ9TTW1T9WYtAL5Mg77nRKnKqWk,729
-django/contrib/sessions/locale/ur/LC_MESSAGES/django.po,sha256=qR4QEBTP6CH09XFCzsPSPg2Dv0LqzbRV_I67HO2OUwk,879
-django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo,sha256=asPu0RhMB_Ui1li-OTVL4qIXnM9XpjsYyx5yJldDYBY,744
-django/contrib/sessions/locale/uz/LC_MESSAGES/django.po,sha256=KsHuLgGJt-KDH0h6ND7JLP2dDJAdLVHSlau4DkkfqA8,880
-django/contrib/sessions/locale/vi/LC_MESSAGES/django.mo,sha256=KriTpT-Hgr10DMnY5Bmbd4isxmSFLmav8vg2tuL2Bb8,679
-django/contrib/sessions/locale/vi/LC_MESSAGES/django.po,sha256=M7S46Q0Q961ykz_5FCAN8SXQ54w8tp4rZeZpy6bPtXs,909
-django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=zsbhIMocgB8Yn1XEBxbIIbBh8tLifvvYNlhe5U61ch8,722
-django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.po,sha256=tPshgXjEv6pME4N082ztamJhd5whHB2_IV_egdP-LlQ,889
-django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=WZzfpFKZ41Pu8Q9SuhGu3hXwp4eiq8Dt8vdiQfxvF9M,733
-django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.po,sha256=6IRDQu6-PAYh6SyEIcKdhuR172lX0buY8qqsU0QXlYU,898
-django/contrib/sessions/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/sessions/management/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/sessions/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/sessions/management/commands/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-310.pyc,,
-django/contrib/sessions/management/commands/clearsessions.py,sha256=pAiO5o7zgButVlYAV93bPnmiwzWP7V5N7-xPtxSkjJg,661
-django/contrib/sessions/middleware.py,sha256=ghX32L-B6lQokp8lH6_f0AvQ_9YhV4RJ3g9YkhZt23M,3496
-django/contrib/sessions/migrations/0001_initial.py,sha256=4tczVgNJxmM5aEhrDw_EfqOBePzsxuJmlchwlMFHWrU,1149
-django/contrib/sessions/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-310.pyc,,
-django/contrib/sessions/migrations/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/sessions/models.py,sha256=BguwuQSDzpeTNXhteYRAcspg1rop431tjFeZUVWZNYc,1250
-django/contrib/sessions/serializers.py,sha256=x8cVZhsG5RBJZaK4wKsuAcEYKv6rop9V9Y7mDySyOwM,256
-django/contrib/sitemaps/__init__.py,sha256=lDBHU3Y6vjyy7MTchupEeIIHmKxeVhWVsPVrul9pPlQ,9039
-django/contrib/sitemaps/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/sitemaps/__pycache__/apps.cpython-310.pyc,,
-django/contrib/sitemaps/__pycache__/views.cpython-310.pyc,,
-django/contrib/sitemaps/apps.py,sha256=xYE-mAs37nL8ZAnv052LhUKVUwGYKB3xyPy4t8pwOpw,249
-django/contrib/sitemaps/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/sitemaps/management/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/sitemaps/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/sitemaps/management/commands/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/sitemaps/management/commands/__pycache__/ping_google.cpython-310.pyc,,
-django/contrib/sitemaps/management/commands/ping_google.py,sha256=cU6bAGhDARD7ZM2R9cUZufEPiB9ZrM7Nc3EbghQJI5Y,558
-django/contrib/sitemaps/templates/sitemap.xml,sha256=L092SHTtwtmNJ_Lj_jLrzHhfI0-OKKIw5fpyOfr4qRs,683
-django/contrib/sitemaps/templates/sitemap_index.xml,sha256=SQf9avfFmnT8j-nLEc8lVQQcdhiy_qhnqjssIMti3oU,360
-django/contrib/sitemaps/views.py,sha256=ETX8bFIDvHgw504WuTAOhhmtzTXr9IekpYgbzAKjnMo,5034
-django/contrib/sites/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/sites/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/sites/__pycache__/admin.cpython-310.pyc,,
-django/contrib/sites/__pycache__/apps.cpython-310.pyc,,
-django/contrib/sites/__pycache__/checks.cpython-310.pyc,,
-django/contrib/sites/__pycache__/management.cpython-310.pyc,,
-django/contrib/sites/__pycache__/managers.cpython-310.pyc,,
-django/contrib/sites/__pycache__/middleware.cpython-310.pyc,,
-django/contrib/sites/__pycache__/models.cpython-310.pyc,,
-django/contrib/sites/__pycache__/requests.cpython-310.pyc,,
-django/contrib/sites/__pycache__/shortcuts.cpython-310.pyc,,
-django/contrib/sites/admin.py,sha256=IWvGDQUTDPEUsd-uuxfHxJq4syGtddNKUdkP0nmVUMA,214
-django/contrib/sites/apps.py,sha256=uBLHUyQoSuo1Q7NwLTwlvsTuRU1MXwj4t6lRUnIBdwk,562
-django/contrib/sites/checks.py,sha256=SsFycVVw6JcbMNF1tNgCen9dix-UGrMTWz8Gbb80adQ,340
-django/contrib/sites/locale/af/LC_MESSAGES/django.mo,sha256=A10bZFMs-wUetVfF5UrFwmuiKnN4ZnlrR4Rx8U4Ut1A,786
-django/contrib/sites/locale/af/LC_MESSAGES/django.po,sha256=O0-ZRvmXvV_34kONuqakuXV5OmYbQ569K1Puj3qQNac,907
-django/contrib/sites/locale/ar/LC_MESSAGES/django.mo,sha256=kLoytp2jvhWn6p1c8kNVua2sYAMnrpS4xnbluHD22Vs,947
-django/contrib/sites/locale/ar/LC_MESSAGES/django.po,sha256=HYA3pA29GktzXBP-soUEn9VP2vkZuhVIXVA8TNPCHCs,1135
-django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=-ltwY57Th6LNqU3bgOPPP7qWtII5c6rj8Dv8eY7PZ84,918
-django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.po,sha256=KRTjZ2dFRWVPmE_hC5Hq8eDv3GQs3yQKCgV5ISFmEKk,1079
-django/contrib/sites/locale/ast/LC_MESSAGES/django.mo,sha256=eEvaeiGnZFBPGzKLlRz4M9AHemgJVAb-yNpbpxRqtd0,774
-django/contrib/sites/locale/ast/LC_MESSAGES/django.po,sha256=huBohKzLpdaJRFMFXXSDhDCUOqVqyWXfxb8_lLOkUd0,915
-django/contrib/sites/locale/az/LC_MESSAGES/django.mo,sha256=CjAGI4qGoXN95q4LpCLXLKvaNB33Ocf5SfXdurFBkas,773
-django/contrib/sites/locale/az/LC_MESSAGES/django.po,sha256=E84kNPFhgHmIfYT0uzCnTPGwPkAqKzqwFvJB7pETbVo,933
-django/contrib/sites/locale/be/LC_MESSAGES/django.mo,sha256=HGh78mI50ZldBtQ8jId26SI-lSHv4ZLcveRN2J8VzH8,983
-django/contrib/sites/locale/be/LC_MESSAGES/django.po,sha256=W5FhVJKcmd3WHl2Lpd5NJUsc7_sE_1Pipk3CVPoGPa4,1152
-django/contrib/sites/locale/bg/LC_MESSAGES/django.mo,sha256=a2R52umIQIhnzFaFYSRhQ6nBlywE8RGMj2FUOFmyb0A,904
-django/contrib/sites/locale/bg/LC_MESSAGES/django.po,sha256=awB8RMS-qByhNB6eH2f0Oyxb3SH8waLhrZ--rokGfaI,1118
-django/contrib/sites/locale/bn/LC_MESSAGES/django.mo,sha256=cI3a9_L-OC7gtdyRNaGX7A5w0Za0M4ERnYB7rSNkuRU,925
-django/contrib/sites/locale/bn/LC_MESSAGES/django.po,sha256=8ZxYF16bgtTZSZRZFok6IJxUV02vIztoVx2qXqwO8NM,1090
-django/contrib/sites/locale/br/LC_MESSAGES/django.mo,sha256=rI_dIznbwnadZbxOPtQxZ1pGYePNwcNNXt05iiPkchU,1107
-django/contrib/sites/locale/br/LC_MESSAGES/django.po,sha256=7Ein5Xw73DNGGtdd595Bx6ixfSD-dBXZNBUU44pSLuQ,1281
-django/contrib/sites/locale/bs/LC_MESSAGES/django.mo,sha256=bDeqQNme586LnQRQdvOWaLGZssjOoECef3vMq_OCXno,692
-django/contrib/sites/locale/bs/LC_MESSAGES/django.po,sha256=xRTWInDNiLxikjwsjgW_pYjhy24zOro90-909ns9fig,923
-django/contrib/sites/locale/ca/LC_MESSAGES/django.mo,sha256=lEUuQEpgDY3bVWzRONrPzYlojRoNduT16_oYDkkbdfk,791
-django/contrib/sites/locale/ca/LC_MESSAGES/django.po,sha256=aORAoVn69iG1ynmEfnkBzBO-UZOzzbkPVOU-ZvfMtZg,996
-django/contrib/sites/locale/cs/LC_MESSAGES/django.mo,sha256=mnXnpU7sLDTJ3OrIUTnGarPYsupNIUPV4ex_BPWU8fk,827
-django/contrib/sites/locale/cs/LC_MESSAGES/django.po,sha256=ONzFlwzmt7p5jdp6111qQkkevckRrd7GNS0lkDPKu-4,1035
-django/contrib/sites/locale/cy/LC_MESSAGES/django.mo,sha256=70pOie0K__hkmM9oBUaQfVwHjK8Cl48E26kRQL2mtew,835
-django/contrib/sites/locale/cy/LC_MESSAGES/django.po,sha256=FAZrVc72x-4R1A-1qYOBwADoXngC_F6FO8nRjr5-Z6g,1013
-django/contrib/sites/locale/da/LC_MESSAGES/django.mo,sha256=FTOyV1DIH9sMldyjgPw98d2HCotoO4zJ_KY_C9DCB7Y,753
-django/contrib/sites/locale/da/LC_MESSAGES/django.po,sha256=Po1Z6u52CFCyz9hLfK009pMbZzZgHrBse0ViX8wCYm8,957
-django/contrib/sites/locale/de/LC_MESSAGES/django.mo,sha256=5Q6X0_bDQ1ZRpkTy7UpPNzrhmQsB9Q0P1agB7koRyzs,792
-django/contrib/sites/locale/de/LC_MESSAGES/django.po,sha256=aD0wBinqtDUPvBbwtHrLEhFdoVRx1nOh17cJFuWhN3U,980
-django/contrib/sites/locale/dsb/LC_MESSAGES/django.mo,sha256=pPpWYsYp81MTrqCsGF0QnGktZNIll70bdBwSkuVE8go,868
-django/contrib/sites/locale/dsb/LC_MESSAGES/django.po,sha256=IA3G8AKJls20gzfxnrfPzivMNpL8A0zBQBg7OyzrP6g,992
-django/contrib/sites/locale/el/LC_MESSAGES/django.mo,sha256=G9o1zLGysUePGzZRicQ2aIIrc2UXMLTQmdpbrUMfWBU,878
-django/contrib/sites/locale/el/LC_MESSAGES/django.po,sha256=RBi_D-_znYuV6LXfTlSOf1Mvuyl96fIyEoiZ-lgeyWs,1133
-django/contrib/sites/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356
-django/contrib/sites/locale/en/LC_MESSAGES/django.po,sha256=tSjfrNZ_FqLHsXjm5NuTyo5-JpdlPLsPZjFqF2APhy8,817
-django/contrib/sites/locale/en_AU/LC_MESSAGES/django.mo,sha256=G--2j_CR99JjRgVIX2Y_5pDfO7IgIkvK4kYHZtGzpxU,753
-django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po,sha256=Giw634r94MJT1Q3qgqM7gZakQCasRM9Dm7MDkb9JOc8,913
-django/contrib/sites/locale/en_GB/LC_MESSAGES/django.mo,sha256=FbSh7msJdrHsXr0EtDMuODFzSANG_HJ3iBlW8ePpqFs,639
-django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po,sha256=Ib-DIuTWlrN3kg99kLCuqWJVtt1NWaFD4UbDFK6d4KY,862
-django/contrib/sites/locale/eo/LC_MESSAGES/django.mo,sha256=N4KkH12OHxic3pp1okeBhpfDx8XxxpULk3UC219vjWU,792
-django/contrib/sites/locale/eo/LC_MESSAGES/django.po,sha256=ymXSJaFJWGBO903ObqR-ows-p4T3KyUplc_p_3r1uk8,1043
-django/contrib/sites/locale/es/LC_MESSAGES/django.mo,sha256=qLN1uoCdslxdYWgdjgSBi7szllP-mQZtHbuZnNOthsQ,804
-django/contrib/sites/locale/es/LC_MESSAGES/django.po,sha256=QClia2zY39269VSQzkQsLwwukthN6u2JBsjbLNxA1VQ,1066
-django/contrib/sites/locale/es_AR/LC_MESSAGES/django.mo,sha256=_O4rVk7IM2BBlZvjDP2SvTOo8WWqthQi5exQzt027-s,776
-django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po,sha256=RwyNylXbyxdSXn6qRDXd99-GaEPlmr6TicHTUW0boaQ,969
-django/contrib/sites/locale/es_CO/LC_MESSAGES/django.mo,sha256=a4Xje2M26wyIx6Wlg6puHo_OXjiDEy7b0FquT9gbThA,825
-django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po,sha256=9bnRhVD099JzkheO80l65dufjuawsj9aSFgFu5A-lnM,949
-django/contrib/sites/locale/es_MX/LC_MESSAGES/django.mo,sha256=AtGta5jBL9XNBvfSpsCcnDtDhvcb89ALl4hNjSPxibM,809
-django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po,sha256=TnkpQp-7swH-x9cytUJe-QJRd2n_pYMVo0ltDw9Pu8o,991
-django/contrib/sites/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486
-django/contrib/sites/locale/es_VE/LC_MESSAGES/django.po,sha256=8PWXy2L1l67wDIi98Q45j7OpVITr0Lt4zwitAnB-d_o,791
-django/contrib/sites/locale/et/LC_MESSAGES/django.mo,sha256=I2E-49UQsG-F26OeAfnKlfUdA3YCkUSV8ffA-GMSkE0,788
-django/contrib/sites/locale/et/LC_MESSAGES/django.po,sha256=mEfD6EyQ15PPivb5FTlkabt3Lo_XGtomI9XzHrrh34Y,992
-django/contrib/sites/locale/eu/LC_MESSAGES/django.mo,sha256=1HTAFI3DvTAflLJsN7NVtSd4XOTlfoeLGFyYCOX69Ec,807
-django/contrib/sites/locale/eu/LC_MESSAGES/django.po,sha256=NWxdE5-mF6Ak4nPRpCFEgAMIsVDe9YBEZl81v9kEuX8,1023
-django/contrib/sites/locale/fa/LC_MESSAGES/django.mo,sha256=odtsOpZ6noNqwDb18HDc2e6nz3NMsa-wrTN-9dk7d9w,872
-django/contrib/sites/locale/fa/LC_MESSAGES/django.po,sha256=-DirRvcTqcpIy90QAUiCSoNkCDRifqpWSzLriJ4cwQU,1094
-django/contrib/sites/locale/fi/LC_MESSAGES/django.mo,sha256=I5DUeLk1ChUC32q5uzriABCLLJpJKNbEK4BfqylPQzg,786
-django/contrib/sites/locale/fi/LC_MESSAGES/django.po,sha256=LH2sFIKM3YHPoz9zIu10z1DFv1svXphBdOhXNy4a17s,929
-django/contrib/sites/locale/fr/LC_MESSAGES/django.mo,sha256=W7Ne5HqgnRcl42njzbUaDSY059jdhwvr0tgZzecVWD8,756
-django/contrib/sites/locale/fr/LC_MESSAGES/django.po,sha256=u24rHDJ47AoBgcmBwI1tIescAgbjFxov6y906H_uhK0,999
-django/contrib/sites/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476
-django/contrib/sites/locale/fy/LC_MESSAGES/django.po,sha256=Yh6Lw0QI2Me0zCtlyXraFLjERKqklB6-IJLDTjH_jTs,781
-django/contrib/sites/locale/ga/LC_MESSAGES/django.mo,sha256=g5popLirHXWn6ZWJHESQaG5MmKWZL_JNI_5Vgn5FTqU,683
-django/contrib/sites/locale/ga/LC_MESSAGES/django.po,sha256=34hj3ELt7GQ7CaHL246uBDmvsVUaaN5kTrzt8j7eETM,962
-django/contrib/sites/locale/gd/LC_MESSAGES/django.mo,sha256=df4XIGGD6FIyMUXsb-SoSqNfBFAsRXf4qYtolh_C964,858
-django/contrib/sites/locale/gd/LC_MESSAGES/django.po,sha256=NPKp7A5-y-MR7r8r4WqtcVQJEHCIOP5mLTd0cIfUsug,957
-django/contrib/sites/locale/gl/LC_MESSAGES/django.mo,sha256=QUJdJV71VT-4iVQ5mUAeyszTVhD2LlmmPQv0WpPWttU,742
-django/contrib/sites/locale/gl/LC_MESSAGES/django.po,sha256=cLcejsFyoFk0fRX9fAcl9owHoxiD593QZZeZTfObBVw,940
-django/contrib/sites/locale/he/LC_MESSAGES/django.mo,sha256=L3bganfG4gHqp2WXGh4rfWmmbaIxHaGc7-ypAqjSL_E,820
-django/contrib/sites/locale/he/LC_MESSAGES/django.po,sha256=iO3OZwz2aiuAzugkKp5Hxonwdg3kKjBurxR685J2ZMk,1082
-django/contrib/sites/locale/hi/LC_MESSAGES/django.mo,sha256=J4oIS1vJnCvdCCUD4tlTUVyTe4Xn0gKcWedfhH4C0t0,665
-django/contrib/sites/locale/hi/LC_MESSAGES/django.po,sha256=INBrm37jL3okBHuzX8MSN1vMptj77a-4kwQkAyt8w_8,890
-django/contrib/sites/locale/hr/LC_MESSAGES/django.mo,sha256=KjDUhEaOuYSMexcURu2UgfkatN2rrUcAbCUbcpVSInk,876
-django/contrib/sites/locale/hr/LC_MESSAGES/django.po,sha256=-nFMFkVuDoKYDFV_zdNULOqQlnqtiCG57aakN5hqlmg,1055
-django/contrib/sites/locale/hsb/LC_MESSAGES/django.mo,sha256=RyHVb7u9aRn5BXmWzR1gApbZlOioPDJ59ufR1Oo3e8Y,863
-django/contrib/sites/locale/hsb/LC_MESSAGES/django.po,sha256=Aq54y5Gb14bIt28oDDrFltnSOk31Z2YalwaJMDMXfWc,987
-django/contrib/sites/locale/hu/LC_MESSAGES/django.mo,sha256=P--LN84U2BeZAvRVR-OiWl4R02cTTBi2o8XR2yHIwIU,796
-django/contrib/sites/locale/hu/LC_MESSAGES/django.po,sha256=b0VhyFdNaZZR5MH1vFsLL69FmICN8Dz-sTRk0PdK49E,953
-django/contrib/sites/locale/hy/LC_MESSAGES/django.mo,sha256=Hs9XwRHRkHicLWt_NvWvr7nMocmY-Kc8XphhVSAMQRc,906
-django/contrib/sites/locale/hy/LC_MESSAGES/django.po,sha256=MU4hXXGfjXKfYcjxDYzFfsEUIelz5ZzyQLkeSrUQKa0,1049
-django/contrib/sites/locale/ia/LC_MESSAGES/django.mo,sha256=gRMs-W5EiY26gqzwnDXEMbeb1vs0bYZ2DC2a9VCciew,809
-django/contrib/sites/locale/ia/LC_MESSAGES/django.po,sha256=HXZzn9ACIqfR2YoyvpK2FjZ7QuEq_RVZ1kSC4nxMgeg,934
-django/contrib/sites/locale/id/LC_MESSAGES/django.mo,sha256=__2E_2TmVUcbf1ygxtS1lHvkhv8L0mdTAtJpBsdH24Y,791
-django/contrib/sites/locale/id/LC_MESSAGES/django.po,sha256=e5teAHiMjLR8RDlg8q99qtW-K81ltcIiBIdb1MZw2sE,1000
-django/contrib/sites/locale/io/LC_MESSAGES/django.mo,sha256=W-NP0b-zR1oWUZnHZ6fPu5AC2Q6o7nUNoxssgeguUBo,760
-django/contrib/sites/locale/io/LC_MESSAGES/django.po,sha256=G4GUUz3rxoBjWTs-j5RFCvv52AEHiwrCBwom5hYeBSE,914
-django/contrib/sites/locale/is/LC_MESSAGES/django.mo,sha256=lkJgTzDjh5PNfIJpOS2DxKmwVUs9Sl5XwFHv4YdCB30,812
-django/contrib/sites/locale/is/LC_MESSAGES/django.po,sha256=1DVgAcHSZVyDd5xn483oqICIG4ooyZY8ko7A3aDogKM,976
-django/contrib/sites/locale/it/LC_MESSAGES/django.mo,sha256=6NQjjtDMudnAgnDCkemOXinzX0J-eAE5gSq1F8kjusY,795
-django/contrib/sites/locale/it/LC_MESSAGES/django.po,sha256=zxavlLMmp1t1rCDsgrw12kVgxiK5EyR_mOalSu8-ws8,984
-django/contrib/sites/locale/ja/LC_MESSAGES/django.mo,sha256=RNuCS6wv8uK5TmXkSH_7SjsbUFkf24spZfTsvfoTKro,814
-django/contrib/sites/locale/ja/LC_MESSAGES/django.po,sha256=e-cj92VOVc5ycIY6NwyFh5bO7Q9q5vp5CG4dOzd_eWQ,982
-django/contrib/sites/locale/ka/LC_MESSAGES/django.mo,sha256=m8GTqr9j0ijn0YJhvnsYwlk5oYcASKbHg_5hLqZ91TI,993
-django/contrib/sites/locale/ka/LC_MESSAGES/django.po,sha256=1upohcHrQH9T34b6lW09MTtFkk5WswdYOLs2vMAJIuE,1160
-django/contrib/sites/locale/kab/LC_MESSAGES/django.mo,sha256=Utdj5gH5YPeaYMjeMzF-vjqYvYTCipre2qCBkEJSc-Y,808
-django/contrib/sites/locale/kab/LC_MESSAGES/django.po,sha256=d78Z-YanYZkyP5tpasj8oAa5RimVEmce6dlq5vDSscA,886
-django/contrib/sites/locale/kk/LC_MESSAGES/django.mo,sha256=T2dTZ83vBRfQb2dRaKOrhvO00BHQu_2bu0O0k7RsvGA,895
-django/contrib/sites/locale/kk/LC_MESSAGES/django.po,sha256=HvdSFqsumyNurDJ6NKVLjtDdSIg0KZN2v29dM748GtU,1062
-django/contrib/sites/locale/km/LC_MESSAGES/django.mo,sha256=Q7pn5E4qN957j20-iCHgrfI-p8sm3Tc8O2DWeuH0By8,701
-django/contrib/sites/locale/km/LC_MESSAGES/django.po,sha256=TOs76vlCMYOZrdHgXPWZhQH1kTBQTpzsDJ8N4kbJQ7E,926
-django/contrib/sites/locale/kn/LC_MESSAGES/django.mo,sha256=_jl_4_39oe940UMyb15NljGOd45kkCeVNpJy6JvGWTE,673
-django/contrib/sites/locale/kn/LC_MESSAGES/django.po,sha256=cMPXF2DeiQuErhyFMe4i7swxMoqoz1sqtBEXf4Ghx1c,921
-django/contrib/sites/locale/ko/LC_MESSAGES/django.mo,sha256=wlfoWG-vmMSCipUJVVC0Y_W7QbGNNE-oEnVwl_6-AmY,807
-django/contrib/sites/locale/ko/LC_MESSAGES/django.po,sha256=TENAk9obGUxFwMnJQj_V9sZxEKJj4DyWMuGpx3Ft_pM,1049
-django/contrib/sites/locale/ky/LC_MESSAGES/django.mo,sha256=IYxp8jG5iyN81h7YJqOiSQdOH7DnwOiIvelKZfzP6ZA,811
-django/contrib/sites/locale/ky/LC_MESSAGES/django.po,sha256=rxPdgQoBtGQSi5diOy3MXyoM4ffpwdWCc4WE3pjIHEI,927
-django/contrib/sites/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474
-django/contrib/sites/locale/lb/LC_MESSAGES/django.po,sha256=1yRdK9Zyh7kcWG7wUexuF9-zxEaKLS2gG3ggVOHbRJ8,779
-django/contrib/sites/locale/lt/LC_MESSAGES/django.mo,sha256=bK6PJtd7DaOgDukkzuqos5ktgdjSF_ffL9IJTQY839s,869
-django/contrib/sites/locale/lt/LC_MESSAGES/django.po,sha256=T-vdVqs9KCz9vMs9FfushgZN9z7LQOT-C86D85H2X8c,1195
-django/contrib/sites/locale/lv/LC_MESSAGES/django.mo,sha256=t9bQiVqpAmXrq8QijN4Lh0n6EGUGQjnuH7hDcu21z4c,823
-django/contrib/sites/locale/lv/LC_MESSAGES/django.po,sha256=vMaEtXGosD3AcTomiuctbOpjLes8TRBnumLe8DC4yq4,1023
-django/contrib/sites/locale/mk/LC_MESSAGES/django.mo,sha256=_YXasRJRWjYmmiEWCrAoqnrKuHHPBG_v_EYTUe16Nfo,885
-django/contrib/sites/locale/mk/LC_MESSAGES/django.po,sha256=AgdIjiSpN0P5o5rr5Ie4sFhnmS5d4doB1ffk91lmOvY,1062
-django/contrib/sites/locale/ml/LC_MESSAGES/django.mo,sha256=axNQVBY0nbR7hYa5bzNtdxB17AUOs2WXhu0Rg--FA3Q,1007
-django/contrib/sites/locale/ml/LC_MESSAGES/django.po,sha256=Sg7hHfK8OMs05ebtTv8gxS6_2kZv-OODwf7okP95Jtk,1169
-django/contrib/sites/locale/mn/LC_MESSAGES/django.mo,sha256=w2sqJRAe0wyz_IuCZ_Ocubs_VHL6wV1BcutWPz0dseQ,867
-django/contrib/sites/locale/mn/LC_MESSAGES/django.po,sha256=Zh_Eao0kLZsrQ8wkL1f-pRrsAtNJOspu45uStq5t8Mo,1127
-django/contrib/sites/locale/mr/LC_MESSAGES/django.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468
-django/contrib/sites/locale/mr/LC_MESSAGES/django.po,sha256=pqnjF5oxvpMyjijy6JfI8qJbbbowZzE5tZF0DMYiCBs,773
-django/contrib/sites/locale/ms/LC_MESSAGES/django.mo,sha256=GToJlS8yDNEy-D3-p7p8ZlWEZYHlSzZAcVIH5nQEkkI,727
-django/contrib/sites/locale/ms/LC_MESSAGES/django.po,sha256=_4l4DCIqSWZtZZNyfzpBA0V-CbAaHe9Ckz06VLbTjFo,864
-django/contrib/sites/locale/my/LC_MESSAGES/django.mo,sha256=jN59e9wRheZYx1A4t_BKc7Hx11J5LJg2wQRd21aQv08,961
-django/contrib/sites/locale/my/LC_MESSAGES/django.po,sha256=EhqYIW5-rX33YjsDsBwfiFb3BK6fZKVc3CRYeJpZX1E,1086
-django/contrib/sites/locale/nb/LC_MESSAGES/django.mo,sha256=AaiHGcmcciy5IMBPVAShcc1OQOETJvBCv7GYHMcIQMA,793
-django/contrib/sites/locale/nb/LC_MESSAGES/django.po,sha256=936zoN1sPSiiq7GuH01umrw8W6BtymYEU3bCfOQyfWE,1000
-django/contrib/sites/locale/ne/LC_MESSAGES/django.mo,sha256=n96YovpBax3T5VZSmIfGmd7Zakn9FJShJs5rvUX7Kf0,863
-django/contrib/sites/locale/ne/LC_MESSAGES/django.po,sha256=B14rhDd8GAaIjxd1sYjxO2pZfS8gAwZ1C-kCdVkRXho,1078
-django/contrib/sites/locale/nl/LC_MESSAGES/django.mo,sha256=ghu-tNPNZuE4sVRDWDVmmmVNPYZLWYm_UPJRqh8wmec,735
-django/contrib/sites/locale/nl/LC_MESSAGES/django.po,sha256=1DCQNzMRhy4vW-KkmlPGy58UR27Np5ilmYhmjaq-8_k,1030
-django/contrib/sites/locale/nn/LC_MESSAGES/django.mo,sha256=eSW8kwbzm2HsE9s9IRCsAo9juimVQjcfdd8rtl3TQJM,731
-django/contrib/sites/locale/nn/LC_MESSAGES/django.po,sha256=OOyvE7iji9hwvz8Z_OxWoKw2e3ptk3dqeqlriXgilSc,915
-django/contrib/sites/locale/os/LC_MESSAGES/django.mo,sha256=Su06FkWMOPzBxoung3bEju_EnyAEAXROoe33imO65uQ,806
-django/contrib/sites/locale/os/LC_MESSAGES/django.po,sha256=4i4rX6aXDUKjq64T02iStqV2V2erUsSVnTivh2XtQeY,963
-django/contrib/sites/locale/pa/LC_MESSAGES/django.mo,sha256=tOHiisOtZrTyIFoo4Ipn_XFH9hhu-ubJLMdOML5ZUgk,684
-django/contrib/sites/locale/pa/LC_MESSAGES/django.po,sha256=ztGyuqvzxRfNjqDG0rMLCu_oQ8V3Dxdsx0WZoYUyNv8,912
-django/contrib/sites/locale/pl/LC_MESSAGES/django.mo,sha256=lo5K262sZmo-hXvcHoBsEDqX8oJEPSxJY5EfRIqHZh0,903
-django/contrib/sites/locale/pl/LC_MESSAGES/django.po,sha256=-kQ49UvXITMy1vjJoN_emuazV_EjNDQnZDERXWNoKvw,1181
-django/contrib/sites/locale/pt/LC_MESSAGES/django.mo,sha256=PrcFQ04lFJ7mIYThXbW6acmDigEFIoLAC0PYk5hfaJs,797
-django/contrib/sites/locale/pt/LC_MESSAGES/django.po,sha256=Aj8hYI9W5nk5uxKHj1oE-b9bxmmuoeXLKaJDPfI2x2o,993
-django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.mo,sha256=BsFfarOR6Qk67fB-tTWgGhuOReJSgjwJBkIzZsv28vo,824
-django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po,sha256=jfvgelpWn2VQqYe2_CE39SLTsscCckvjuZo6dWII28c,1023
-django/contrib/sites/locale/ro/LC_MESSAGES/django.mo,sha256=oGsZw4_uYpaH6adMxnAuifJgHeZ_ytRZ4rFhiNfRQkQ,857
-django/contrib/sites/locale/ro/LC_MESSAGES/django.po,sha256=tWbWVbjFFELNzSXX4_5ltmzEeEJsY3pKwgEOjgV_W_8,1112
-django/contrib/sites/locale/ru/LC_MESSAGES/django.mo,sha256=bIZJWMpm2O5S6RC_2cfkrp5NXaTU2GWSsMr0wHVEmcw,1016
-django/contrib/sites/locale/ru/LC_MESSAGES/django.po,sha256=jHy5GR05ZSjLmAwaVNq3m0WdhO9GYxge3rDBziqesA8,1300
-django/contrib/sites/locale/sk/LC_MESSAGES/django.mo,sha256=-EYdm14ZjoR8bd7Rv2b5G7UJVSKmZa1ItLsdATR3-Cg,822
-django/contrib/sites/locale/sk/LC_MESSAGES/django.po,sha256=VSRlsq8uk-hP0JI94iWsGX8Al76vvGK4N1xIoFtoRQM,1070
-django/contrib/sites/locale/sl/LC_MESSAGES/django.mo,sha256=JmkpTKJGWgnBM3CqOUriGvrDnvg2YWabIU2kbYAOM4s,845
-django/contrib/sites/locale/sl/LC_MESSAGES/django.po,sha256=qWrWrSz5r3UOVraX08ILt3TTmfyTDGKbJKbTlN9YImU,1059
-django/contrib/sites/locale/sq/LC_MESSAGES/django.mo,sha256=DMLN1ZDJeDnslavjcKloXSXn6IvangVliVP3O6U8dAY,769
-django/contrib/sites/locale/sq/LC_MESSAGES/django.po,sha256=zg3ALcMNZErAS_xFxmtv6TmXZ0vxobX5AzCwOSRSwc8,930
-django/contrib/sites/locale/sr/LC_MESSAGES/django.mo,sha256=8kfi9IPdB2reF8C_eC2phaP6qonboHPwes_w3UgNtzw,935
-django/contrib/sites/locale/sr/LC_MESSAGES/django.po,sha256=A7xaen8H1W4uMBRAqCXT_0KQMoA2-45AUNDfGo9FydI,1107
-django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=jMXiq18efq0wErJAQfJR1fCnkYcEb7OYXg8sv6kzP0s,815
-django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po,sha256=9jkWYcZCTfQr2UZtyvhWDAmEHBrzunJUZcx7FlrFOis,1004
-django/contrib/sites/locale/sv/LC_MESSAGES/django.mo,sha256=qmhdn3N2C_DR_FYrUaFSacVjghgfb0CuWKanVRJSTq8,792
-django/contrib/sites/locale/sv/LC_MESSAGES/django.po,sha256=dDVuuuHGpZIoT6dU48aT2j4nEuGrd6zZ3FiZEs3TCeE,987
-django/contrib/sites/locale/sw/LC_MESSAGES/django.mo,sha256=cWjjDdFXBGmpUm03UDtgdDrREa2r75oMsXiEPT_Bx3g,781
-django/contrib/sites/locale/sw/LC_MESSAGES/django.po,sha256=oOKNdztQQU0sd6XmLI-n3ONmTL7jx3Q0z1YD8673Wi8,901
-django/contrib/sites/locale/ta/LC_MESSAGES/django.mo,sha256=CLO41KsSKqBrgtrHi6fmXaBk-_Y2l4KBLDJctZuZyWY,714
-django/contrib/sites/locale/ta/LC_MESSAGES/django.po,sha256=YsTITHg7ikkNcsP29tDgkZrUdtO0s9PrV1XPu4mgqCw,939
-django/contrib/sites/locale/te/LC_MESSAGES/django.mo,sha256=GmIWuVyIOcoQoAmr2HxCwBDE9JUYEktzYig93H_4v50,687
-django/contrib/sites/locale/te/LC_MESSAGES/django.po,sha256=jbncxU9H3EjXxWPsEoCKJhKi392XXTGvWyuenqLDxps,912
-django/contrib/sites/locale/tg/LC_MESSAGES/django.mo,sha256=wiWRlf3AN5zlFMNyP_rSDZS7M5rHQJ2DTUHARtXjim8,863
-django/contrib/sites/locale/tg/LC_MESSAGES/django.po,sha256=VBGZfJIw40JZe15ghsk-n3qUVX0VH2nFQQhpBy_lk1Y,1026
-django/contrib/sites/locale/th/LC_MESSAGES/django.mo,sha256=dQOp4JoP3gvfsxqEQ73L6F8FgH1YtAA9hYY-Uz5sv6Y,898
-django/contrib/sites/locale/th/LC_MESSAGES/django.po,sha256=auZBoKKKCHZbbh0PaUr9YKiWB1TEYZoj4bE7efAonV8,1077
-django/contrib/sites/locale/tk/LC_MESSAGES/django.mo,sha256=YhzSiVb_NdG1s7G1-SGGd4R3uweZQgnTs3G8Lv9r5z0,755
-django/contrib/sites/locale/tk/LC_MESSAGES/django.po,sha256=sigmzH3Ni2vJwLJ7ba8EeB4wnDXsg8rQRFExZAGycF4,917
-django/contrib/sites/locale/tr/LC_MESSAGES/django.mo,sha256=ryf01jcvvBMGPKkdViieDuor-Lr2KRXZeFF1gPupCOA,758
-django/contrib/sites/locale/tr/LC_MESSAGES/django.po,sha256=L9tsnwxw1BEJD-Nm3m1RAS7ekgdmyC0ETs_mr7tQw1E,1043
-django/contrib/sites/locale/tt/LC_MESSAGES/django.mo,sha256=gmmjXeEQUlBpfDmouhxE-qpEtv-iWdQSobYL5MWprZc,706
-django/contrib/sites/locale/tt/LC_MESSAGES/django.po,sha256=yj49TjwcZ4YrGqnJrKh3neKydlTgwYduto9KsmxI_eI,930
-django/contrib/sites/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462
-django/contrib/sites/locale/udm/LC_MESSAGES/django.po,sha256=vrLZ0XJF63CO3IucbQpd12lxuoM9S8tTUv6cpu3g81c,767
-django/contrib/sites/locale/uk/LC_MESSAGES/django.mo,sha256=H4806mPqOoHJFm549F7drzsfkvAXWKmn1w_WVwQx9rk,960
-django/contrib/sites/locale/uk/LC_MESSAGES/django.po,sha256=CJZTOaurDXwpgBiwXx3W7juaF0EctEImPhJdDn8j1xU,1341
-django/contrib/sites/locale/ur/LC_MESSAGES/django.mo,sha256=s6QL8AB_Mp9haXS4n1r9b0YhEUECPxUyPrHTMI3agts,654
-django/contrib/sites/locale/ur/LC_MESSAGES/django.po,sha256=R9tv3qtett8CUGackoHrc5XADeygVKAE0Fz8YzK2PZ4,885
-django/contrib/sites/locale/uz/LC_MESSAGES/django.mo,sha256=OsuqnLEDl9gUAwsmM2s1KH7VD74ID-k7JXcjGhjFlEY,799
-django/contrib/sites/locale/uz/LC_MESSAGES/django.po,sha256=RoaOwLDjkqqIJTuxpuY7eMLo42n6FoYAYutCfMaDk4I,935
-django/contrib/sites/locale/vi/LC_MESSAGES/django.mo,sha256=YOaKcdrN1238Zdm81jUkc2cpxjInAbdnhsSqHP_jQsI,762
-django/contrib/sites/locale/vi/LC_MESSAGES/django.po,sha256=AHcqR2p0fdscLvzbJO_a-CzMzaeRL4LOw4HB9K3noVQ,989
-django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=7D9_pDY5lBRpo1kfzIQL-PNvIg-ofCm7cBHE1-JWlMk,779
-django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.po,sha256=xI_N00xhV8dWDp4fg5Mmj9ivOBBdHP79T3-JYXPyc5M,946
-django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=0F6Qmh1smIXlOUNDaDwDajyyGecc1azfwh8BhXrpETo,790
-django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.po,sha256=ixbXNBNKNfrpI_B0O_zktTfo63sRFMOk1B1uIh4DGGg,1046
-django/contrib/sites/management.py,sha256=AElGktvFhWXJtlJwOKpUlIeuv2thkNM8F6boliML84U,1646
-django/contrib/sites/managers.py,sha256=uqD_Cu3P4NCp7VVdGn0NvHfhsZB05MLmiPmgot-ygz4,1994
-django/contrib/sites/middleware.py,sha256=qYcVHsHOg0VxQNS4saoLHkdF503nJR-D7Z01vE0SvUM,309
-django/contrib/sites/migrations/0001_initial.py,sha256=eSu5aiR8FPElTvIbLeuSQZclOa0TIltT7XaDroJejOg,1362
-django/contrib/sites/migrations/0002_alter_domain_unique.py,sha256=OyuSeh6HxcuRRe6dCrJDQ8vGnAlrngO_jec3LL38Kg0,550
-django/contrib/sites/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/sites/migrations/__pycache__/0001_initial.cpython-310.pyc,,
-django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-310.pyc,,
-django/contrib/sites/migrations/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/sites/models.py,sha256=NZkMEqDxrulV-y2yAq_dYg1Y3GxbI7o7Ca4HYOA_98s,3696
-django/contrib/sites/requests.py,sha256=baABc6fmTejNmk8M3fcoQ1cuI2qpJzF8Y47A1xSt8gY,641
-django/contrib/sites/shortcuts.py,sha256=nekVQADJROFYwKCD7flmWDMQ9uLAaaKztHVKl5emuWc,573
-django/contrib/staticfiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/staticfiles/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/staticfiles/__pycache__/apps.cpython-310.pyc,,
-django/contrib/staticfiles/__pycache__/checks.cpython-310.pyc,,
-django/contrib/staticfiles/__pycache__/finders.cpython-310.pyc,,
-django/contrib/staticfiles/__pycache__/handlers.cpython-310.pyc,,
-django/contrib/staticfiles/__pycache__/storage.cpython-310.pyc,,
-django/contrib/staticfiles/__pycache__/testing.cpython-310.pyc,,
-django/contrib/staticfiles/__pycache__/urls.cpython-310.pyc,,
-django/contrib/staticfiles/__pycache__/utils.cpython-310.pyc,,
-django/contrib/staticfiles/__pycache__/views.cpython-310.pyc,,
-django/contrib/staticfiles/apps.py,sha256=SbeI6t0nB9pO56qpwyxRYgPvvCfAvbLTwMJDAzFfn6U,423
-django/contrib/staticfiles/checks.py,sha256=rH9A8NIYtEkA_PRYXQJxndm243O6Mz6GwyqWSUe3f24,391
-django/contrib/staticfiles/finders.py,sha256=VqUPjNTjHrJZL5pyMPcrRF2lmqKzjZF9nas_mnyIjaM,11008
-django/contrib/staticfiles/handlers.py,sha256=HGzVGgV4nv8v20XxzX9L1dXdNxV7ciwYzWxG1S0GJ6c,3496
-django/contrib/staticfiles/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/staticfiles/management/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/staticfiles/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-310.pyc,,
-django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-310.pyc,,
-django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-310.pyc,,
-django/contrib/staticfiles/management/commands/collectstatic.py,sha256=Zd65dgKD8JlXmoDb3ig6tvZka4gMV_6egbLcoRLJ1SA,15137
-django/contrib/staticfiles/management/commands/findstatic.py,sha256=TMMGlbV-B1aq1b27nA6Otu6hV44pqAzeuEtTV2DPmp0,1638
-django/contrib/staticfiles/management/commands/runserver.py,sha256=U_7oCY8LJX5Jn1xlMv-qF4EQoUvlT0ldB5E_0sJmRtw,1373
-django/contrib/staticfiles/storage.py,sha256=LEjxXneWMYjZMHsn6U57F3a1oDRDOfYRB9aRZxKJ3e4,19432
-django/contrib/staticfiles/testing.py,sha256=4X-EtOfXnwkJAyFT8qe4H4sbVTKgM65klLUtY81KHiE,463
-django/contrib/staticfiles/urls.py,sha256=owDM_hdyPeRmxYxZisSMoplwnzWrptI_W8-3K2f7ITA,498
-django/contrib/staticfiles/utils.py,sha256=iPXHA0yMXu37PQwCrq9zjhSzjZf_zEBXJ-dHGsqZoX8,2279
-django/contrib/staticfiles/views.py,sha256=XacxXwbhLlcmxhspeDOYvNF0OhMtSMOHGouxqQf0jlU,1261
-django/contrib/syndication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/contrib/syndication/__pycache__/__init__.cpython-310.pyc,,
-django/contrib/syndication/__pycache__/apps.cpython-310.pyc,,
-django/contrib/syndication/__pycache__/views.cpython-310.pyc,,
-django/contrib/syndication/apps.py,sha256=7IpHoihPWtOcA6S4O6VoG0XRlqEp3jsfrNf-D-eluic,203
-django/contrib/syndication/views.py,sha256=c8T8V49cyTMk6KLna8fbULOr3aMjkqye6C5lMAFofUU,9309
-django/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/core/__pycache__/__init__.cpython-310.pyc,,
-django/core/__pycache__/asgi.cpython-310.pyc,,
-django/core/__pycache__/exceptions.cpython-310.pyc,,
-django/core/__pycache__/paginator.cpython-310.pyc,,
-django/core/__pycache__/signals.cpython-310.pyc,,
-django/core/__pycache__/signing.cpython-310.pyc,,
-django/core/__pycache__/validators.cpython-310.pyc,,
-django/core/__pycache__/wsgi.cpython-310.pyc,,
-django/core/asgi.py,sha256=N2L3GS6F6oL-yD9Tu2otspCi2UhbRQ90LEx3ExOP1m0,386
-django/core/cache/__init__.py,sha256=-ofAjaYaEq3HsbfOjMkRnQa8-WU8UYRHeqvEot4mPiY,1928
-django/core/cache/__pycache__/__init__.cpython-310.pyc,,
-django/core/cache/__pycache__/utils.cpython-310.pyc,,
-django/core/cache/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/core/cache/backends/__pycache__/__init__.cpython-310.pyc,,
-django/core/cache/backends/__pycache__/base.cpython-310.pyc,,
-django/core/cache/backends/__pycache__/db.cpython-310.pyc,,
-django/core/cache/backends/__pycache__/dummy.cpython-310.pyc,,
-django/core/cache/backends/__pycache__/filebased.cpython-310.pyc,,
-django/core/cache/backends/__pycache__/locmem.cpython-310.pyc,,
-django/core/cache/backends/__pycache__/memcached.cpython-310.pyc,,
-django/core/cache/backends/__pycache__/redis.cpython-310.pyc,,
-django/core/cache/backends/base.py,sha256=fkEigg1NJnT26lrkDuBLm0n9dmhU_rhY_oxIdSZ7vnQ,14227
-django/core/cache/backends/db.py,sha256=_Rxe7Vhv4hXFR-vkHuRfMjA01hNVPAc-qZPPEk0fyvQ,11373
-django/core/cache/backends/dummy.py,sha256=fQbFiL72DnVKP9UU4WDsZYaxYKx7FlMOJhtP8aky2ic,1043
-django/core/cache/backends/filebased.py,sha256=N7kaB-2bssd2PI7wLKrdJxaLAaGEc4UpCDS2dXT6n0s,5783
-django/core/cache/backends/locmem.py,sha256=cqdFgPxYrfEKDvKR2IYiFV7-MwhM0CIHPxLTBxJMDTQ,4035
-django/core/cache/backends/memcached.py,sha256=RDCiTtfAFbtN3f34C2W9wnj1WpQ6SHBqlTKpfKXnnHo,6800
-django/core/cache/backends/redis.py,sha256=cOQH1lHk5zUdG3WN7MEeIGTgsoYmQlMir2ygIouLjew,7891
-django/core/cache/utils.py,sha256=t9XOrfbjRrJ48gzIS8i5ustrKA5Ldd_0kjdV0-dOBHU,409
-django/core/checks/__init__.py,sha256=gFG0gY0C0L-akCrk1F0Q_WmkptYDLXYdyzr3wNJVIi4,1195
-django/core/checks/__pycache__/__init__.cpython-310.pyc,,
-django/core/checks/__pycache__/async_checks.cpython-310.pyc,,
-django/core/checks/__pycache__/caches.cpython-310.pyc,,
-django/core/checks/__pycache__/database.cpython-310.pyc,,
-django/core/checks/__pycache__/files.cpython-310.pyc,,
-django/core/checks/__pycache__/messages.cpython-310.pyc,,
-django/core/checks/__pycache__/model_checks.cpython-310.pyc,,
-django/core/checks/__pycache__/registry.cpython-310.pyc,,
-django/core/checks/__pycache__/templates.cpython-310.pyc,,
-django/core/checks/__pycache__/translation.cpython-310.pyc,,
-django/core/checks/__pycache__/urls.cpython-310.pyc,,
-django/core/checks/async_checks.py,sha256=A9p_jebELrf4fiD6jJtBM6Gvm8cMb03sSuW9Ncx3-vU,403
-django/core/checks/caches.py,sha256=hbcIFD_grXUQR2lGAzzlCX6qMJfkXj02ZDJElgdT5Yg,2643
-django/core/checks/compatibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/core/checks/compatibility/__pycache__/__init__.cpython-310.pyc,,
-django/core/checks/compatibility/__pycache__/django_4_0.cpython-310.pyc,,
-django/core/checks/compatibility/django_4_0.py,sha256=2s7lm9LZ0NrhaYSrw1Y5mMkL5BC68SS-TyD-TKczbEI,657
-django/core/checks/database.py,sha256=sBj-8o4DmpG5QPy1KXgXtZ0FZ0T9xdlT4XBIc70wmEQ,341
-django/core/checks/files.py,sha256=W4yYHiWrqi0d_G6tDWTw79pr2dgJY41rOv7mRpbtp2Q,522
-django/core/checks/messages.py,sha256=vIJtvmeafgwFzwcXaoRBWkcL_t2gLTLjstWSw5xCtjQ,2241
-django/core/checks/model_checks.py,sha256=8aK5uit9yP_lDfdXBJPlz_r-46faP_gIOXLszXqLQqY,8830
-django/core/checks/registry.py,sha256=FaixxLUVKtF-wNVKYXVkOVTg06lLdwOty2mfdDcEfb4,3458
-django/core/checks/security/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/core/checks/security/__pycache__/__init__.cpython-310.pyc,,
-django/core/checks/security/__pycache__/base.cpython-310.pyc,,
-django/core/checks/security/__pycache__/csrf.cpython-310.pyc,,
-django/core/checks/security/__pycache__/sessions.cpython-310.pyc,,
-django/core/checks/security/base.py,sha256=I0Gm446twRIhbRopEmKsdsYW_NdI7_nK_ZV28msRPEo,9140
-django/core/checks/security/csrf.py,sha256=hmFJ4m9oxDGwhDAWedmtpnIYQcI8Mxcge1D6CCoOBbc,2055
-django/core/checks/security/sessions.py,sha256=Qyb93CJeQBM5LLhhrqor4KQJR2tSpFklS-p7WltXcHc,2554
-django/core/checks/templates.py,sha256=mhiGoPfZL_rYUFso_1vFCYbLo5NxPpVwy4o8ynV756Y,2244
-django/core/checks/translation.py,sha256=it7VjXf10-HBdCc3z55_lSxwok9qEncdojRBG74d4FA,1990
-django/core/checks/urls.py,sha256=NIRbMn2r9GzdgOxhIujAICdYWC2M7SAiC5QuamENfU4,3328
-django/core/exceptions.py,sha256=856Rz8frSvYvg37zHXhX2GtZUReqtAybVueOJIx5Hjo,6297
-django/core/files/__init__.py,sha256=Rhz5Jm9BM6gy_nf5yMtswN1VsTIILYUL7Z-5edjh_HI,60
-django/core/files/__pycache__/__init__.cpython-310.pyc,,
-django/core/files/__pycache__/base.cpython-310.pyc,,
-django/core/files/__pycache__/images.cpython-310.pyc,,
-django/core/files/__pycache__/locks.cpython-310.pyc,,
-django/core/files/__pycache__/move.cpython-310.pyc,,
-django/core/files/__pycache__/storage.cpython-310.pyc,,
-django/core/files/__pycache__/temp.cpython-310.pyc,,
-django/core/files/__pycache__/uploadedfile.cpython-310.pyc,,
-django/core/files/__pycache__/uploadhandler.cpython-310.pyc,,
-django/core/files/__pycache__/utils.cpython-310.pyc,,
-django/core/files/base.py,sha256=UeErNSLdQMR2McOUNfgjHBadSlmVP_DDHsAwVrn1gYk,4811
-django/core/files/images.py,sha256=nn_GxARZobyRZr15MtCjbcgax8L4JhNQmfBK3-TvB78,2643
-django/core/files/locks.py,sha256=VU7D396gIi_RH9pE6Gv0ffOfe-8VwVqMeDqDS4zgfz4,3593
-django/core/files/move.py,sha256=3XS3kX7KerwZy0eYALnzXu2yeWkf-3pVE90uoyk2AK0,3101
-django/core/files/storage.py,sha256=pTGzZMz0NO2BP7qdpdA1oNEZFxnG5m8pOL2HcmWsRvQ,16147
-django/core/files/temp.py,sha256=iUegEgQ3UyUrDN10SgvKIrHfBPSej1lk-LAgJqMZBcU,2503
-django/core/files/uploadedfile.py,sha256=6hBjxmx8P0fxmZQbtj4OTsXtUk9GdIA7IUcv_KwSI08,4189
-django/core/files/uploadhandler.py,sha256=riobj6SKikjiacrhObFsW9NFRfjG5qPklsaS1pzpFvE,7179
-django/core/files/utils.py,sha256=f0naLw9ovd9z1DzQHLKXPJxHmBogsg4MEFZH4K9nxvg,2659
-django/core/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/core/handlers/__pycache__/__init__.cpython-310.pyc,,
-django/core/handlers/__pycache__/asgi.cpython-310.pyc,,
-django/core/handlers/__pycache__/base.cpython-310.pyc,,
-django/core/handlers/__pycache__/exception.cpython-310.pyc,,
-django/core/handlers/__pycache__/wsgi.cpython-310.pyc,,
-django/core/handlers/asgi.py,sha256=_qPhxvxVCRWuHvyOUVaq6ewbveld7rv7HAu2PPl7Jr8,11789
-django/core/handlers/base.py,sha256=SqkzzoFLleOuAkF8npl3CJfUDG7JGKMg3jq4q9Yt2Oo,14832
-django/core/handlers/exception.py,sha256=NsvgK7RG1WC9jQO1dfFapGSsJUS-HSD9gohKCQqJIe8,5884
-django/core/handlers/wsgi.py,sha256=nVw38J_-UI6jDn9FyNHu8YN69vVwNLNaifqDhvZHTe0,7790
-django/core/mail/__init__.py,sha256=HJSPyTBz34PsIyv4jTFJvhswauZr51NpsB-gpYR73-A,4958
-django/core/mail/__pycache__/__init__.cpython-310.pyc,,
-django/core/mail/__pycache__/message.cpython-310.pyc,,
-django/core/mail/__pycache__/utils.cpython-310.pyc,,
-django/core/mail/backends/__init__.py,sha256=VJ_9dBWKA48MXBZXVUaTy9NhgfRonapA6UAjVFEPKD8,37
-django/core/mail/backends/__pycache__/__init__.cpython-310.pyc,,
-django/core/mail/backends/__pycache__/base.cpython-310.pyc,,
-django/core/mail/backends/__pycache__/console.cpython-310.pyc,,
-django/core/mail/backends/__pycache__/dummy.cpython-310.pyc,,
-django/core/mail/backends/__pycache__/filebased.cpython-310.pyc,,
-django/core/mail/backends/__pycache__/locmem.cpython-310.pyc,,
-django/core/mail/backends/__pycache__/smtp.cpython-310.pyc,,
-django/core/mail/backends/base.py,sha256=Cljbb7nil40Dfpob2R8iLmlO0Yv_wlOCBA9hF2Z6W54,1683
-django/core/mail/backends/console.py,sha256=Z9damLP7VPLswrNDX9kLjL3MdWf9yAM6ZCeUv-3tRgU,1426
-django/core/mail/backends/dummy.py,sha256=sI7tAa3MfG43UHARduttBvEAYYfiLasgF39jzaZPu9E,234
-django/core/mail/backends/filebased.py,sha256=AbEBL9tXr6WIhuSQvm3dHoCpuMoDTSIkx6qFb4GMUe4,2353
-django/core/mail/backends/locmem.py,sha256=AT8ilBy4m5OWaiyqm_k82HdkQIemn4gciIYILGZag2o,885
-django/core/mail/backends/smtp.py,sha256=ek6Jp3X5AKYM_LwKAYT4pZ4YVe495uwIerfe60l0ack,5538
-django/core/mail/message.py,sha256=Mdi8_UbFQD0k-WzM43cqTJcwqxpqwM5v5OM3Hzdm9Vk,17709
-django/core/mail/utils.py,sha256=Wf-pdSdv0WLREYzI7EVWr59K6o7tfb3d2HSbAyE3SOE,506
-django/core/management/__init__.py,sha256=a_oJFck85xceALyH3mwP9CJSc0QWLK0MVZBOlc41ScA,17611
-django/core/management/__pycache__/__init__.cpython-310.pyc,,
-django/core/management/__pycache__/base.cpython-310.pyc,,
-django/core/management/__pycache__/color.cpython-310.pyc,,
-django/core/management/__pycache__/sql.cpython-310.pyc,,
-django/core/management/__pycache__/templates.cpython-310.pyc,,
-django/core/management/__pycache__/utils.cpython-310.pyc,,
-django/core/management/base.py,sha256=pGyweUGVNaJjM-RAYDyHuHD4qSChwk4UBQzteVbOKF0,23820
-django/core/management/color.py,sha256=Efa1K67kd5dwlcs2DgnkDTtZy0FuW6nSo7oaVsLN9Bw,2878
-django/core/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/core/management/commands/__pycache__/__init__.cpython-310.pyc,,
-django/core/management/commands/__pycache__/check.cpython-310.pyc,,
-django/core/management/commands/__pycache__/compilemessages.cpython-310.pyc,,
-django/core/management/commands/__pycache__/createcachetable.cpython-310.pyc,,
-django/core/management/commands/__pycache__/dbshell.cpython-310.pyc,,
-django/core/management/commands/__pycache__/diffsettings.cpython-310.pyc,,
-django/core/management/commands/__pycache__/dumpdata.cpython-310.pyc,,
-django/core/management/commands/__pycache__/flush.cpython-310.pyc,,
-django/core/management/commands/__pycache__/inspectdb.cpython-310.pyc,,
-django/core/management/commands/__pycache__/loaddata.cpython-310.pyc,,
-django/core/management/commands/__pycache__/makemessages.cpython-310.pyc,,
-django/core/management/commands/__pycache__/makemigrations.cpython-310.pyc,,
-django/core/management/commands/__pycache__/migrate.cpython-310.pyc,,
-django/core/management/commands/__pycache__/optimizemigration.cpython-310.pyc,,
-django/core/management/commands/__pycache__/runserver.cpython-310.pyc,,
-django/core/management/commands/__pycache__/sendtestemail.cpython-310.pyc,,
-django/core/management/commands/__pycache__/shell.cpython-310.pyc,,
-django/core/management/commands/__pycache__/showmigrations.cpython-310.pyc,,
-django/core/management/commands/__pycache__/sqlflush.cpython-310.pyc,,
-django/core/management/commands/__pycache__/sqlmigrate.cpython-310.pyc,,
-django/core/management/commands/__pycache__/sqlsequencereset.cpython-310.pyc,,
-django/core/management/commands/__pycache__/squashmigrations.cpython-310.pyc,,
-django/core/management/commands/__pycache__/startapp.cpython-310.pyc,,
-django/core/management/commands/__pycache__/startproject.cpython-310.pyc,,
-django/core/management/commands/__pycache__/test.cpython-310.pyc,,
-django/core/management/commands/__pycache__/testserver.cpython-310.pyc,,
-django/core/management/commands/check.py,sha256=KPtpSfNkIPPKaBP4od_vh-kp_D439sG8T9MOU41p9DA,2652
-django/core/management/commands/compilemessages.py,sha256=zb5fkLrfXSg5LQgs5m-SUBDFt7OtYmdgEmqiENv1Vrc,6992
-django/core/management/commands/createcachetable.py,sha256=1gXJFZpvuCZPd1I_VlhFlCVOPmxk-LQxFB0Tf2H2eyA,4616
-django/core/management/commands/dbshell.py,sha256=XWBxHQIxXzKd_o81PxmmOCV67VPcqbDr9Und6LEAt9Q,1731
-django/core/management/commands/diffsettings.py,sha256=NNL_J0P3HRzAZd9XcW7Eo_iE_lNliIpKtdcarDbBRpc,3554
-django/core/management/commands/dumpdata.py,sha256=PTJ32bLwSRd-NkZZhpowxNMHAPQpclAoOFESKMsyGQg,10962
-django/core/management/commands/flush.py,sha256=9KhMxzJFqA3cOCw-0VFZ2Utb2xZ-xCnn8ZGeiVGOm8E,3611
-django/core/management/commands/inspectdb.py,sha256=hhwS2t8OizSaOr4_fCns9NRtXxIIidVlt84jiZ-acZw,15663
-django/core/management/commands/loaddata.py,sha256=RJrdi1VWKv53FcBMrXZhLpTYwsjZvhqo76JJdor3aaA,15969
-django/core/management/commands/makemessages.py,sha256=6Yjq-e_pmTNdAlIOHn6AgZYmt-Ys5aCV73kIXN0rm3Y,27945
-django/core/management/commands/makemigrations.py,sha256=qh7o0suQJWfn--VB9oLQo-EAZVBgzRvABWkPlA4F_qA,17142
-django/core/management/commands/migrate.py,sha256=bdtUeTkgvjWD-YCR4sXVx3eIKLK1Vb12mUn_7KWed0M,21182
-django/core/management/commands/optimizemigration.py,sha256=GVWIhX94tOLHEx53w-VrUc48euVWpKCLMw-BbpiQgIg,5224
-django/core/management/commands/runserver.py,sha256=AAXjfEFhDysNLQGaH-xpPUp61G2JfvNzcULTaahEHuo,6788
-django/core/management/commands/sendtestemail.py,sha256=sF5TUMbD_tlGBnUsn9t-oFVGNSyeiWRIrgyPbJE88cs,1518
-django/core/management/commands/shell.py,sha256=LKmj6KYv6zpJzQ2mWtR4-u2CDSQL-_Na6TsT4JLYsi4,4613
-django/core/management/commands/showmigrations.py,sha256=dHDyNji_c55LntHanNT7ZF2EOq6pN4nulP-e4WRPMwE,6807
-django/core/management/commands/sqlflush.py,sha256=wivzfu_vA5XeU7fu2x1k7nEBky_vjtJgU4ruPja1pRQ,991
-django/core/management/commands/sqlmigrate.py,sha256=fjC7M5-cFxPV6yiqpSwpBrvo4ygZQeqoGEAVywVhKQY,3308
-django/core/management/commands/sqlsequencereset.py,sha256=Bf6HoGe5WoyAivZv1qYpklFQF9CaG4X2s1sLxT6U0Xw,1061
-django/core/management/commands/squashmigrations.py,sha256=ihEC5R-DJJx8uXfrkg_gtDAaIz7KYb5jhPSLCjx1Ia8,10862
-django/core/management/commands/startapp.py,sha256=Dhllhaf1q3EKVnyBLhJ9QsWf6JmjAtYnVLruHsmMlcQ,503
-django/core/management/commands/startproject.py,sha256=Iv7KOco1GkzGqUEME_LCx5vGi4JfY8-lzdkazDqF7k8,789
-django/core/management/commands/test.py,sha256=R0DDsSQ3rYHvA6rL0tFh-Q66JibpP6naPhirF3PeKnY,2554
-django/core/management/commands/testserver.py,sha256=o0MuEiPYKbZ4w7bj3BnwDQawc5CNOp53nl4e_nretF0,2245
-django/core/management/sql.py,sha256=fP6Bvq4NrQB_9Tb6XsYeCg57xs2Ck6uaCXq0ojFOSvA,1851
-django/core/management/templates.py,sha256=6NnEAJrM9_vtM3YrkJXsbLWeCrWpf31WPVAB_3JOSkc,15368
-django/core/management/utils.py,sha256=Yutz7UolTbsmTLp5AYe8qIze5eh-Y3ukNnz8fAAaek8,5192
-django/core/paginator.py,sha256=RItcuDrLFaa6IeWvaoOeFWSukWvP2FFRft28oQnFc_0,7542
-django/core/serializers/__init__.py,sha256=gaH58ip_2dyUFDlfOPenMkVJftQQOBvXqCcZBjAKwTA,8772
-django/core/serializers/__pycache__/__init__.cpython-310.pyc,,
-django/core/serializers/__pycache__/base.cpython-310.pyc,,
-django/core/serializers/__pycache__/json.cpython-310.pyc,,
-django/core/serializers/__pycache__/jsonl.cpython-310.pyc,,
-django/core/serializers/__pycache__/python.cpython-310.pyc,,
-django/core/serializers/__pycache__/pyyaml.cpython-310.pyc,,
-django/core/serializers/__pycache__/xml_serializer.cpython-310.pyc,,
-django/core/serializers/base.py,sha256=a-yHSUuRnHr-3VdgUlk79hLDTYVFuSGL_BqyNHqm6uE,13304
-django/core/serializers/json.py,sha256=GK9Slqj1cCeQVZU-jkagTC_hRsvgf2kBmdEseBcRpn8,3446
-django/core/serializers/jsonl.py,sha256=671JRbWRgOH3-oeD3auK9QCziwtrcdbyCIRDy5s4Evw,1879
-django/core/serializers/python.py,sha256=mfP8mMuaaYCl4cy6sXVAr8YQLOgsTBO-7jelfmWA9oc,6490
-django/core/serializers/pyyaml.py,sha256=77zu6PCfJg_75m36lX9X5018ADcux5qsDGajKNh4pI8,2955
-django/core/serializers/xml_serializer.py,sha256=iN0du1rdtJuo1CI1mk4vCN_kYsFeZ2Lshs0_KIs6kgw,17949
-django/core/servers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/core/servers/__pycache__/__init__.cpython-310.pyc,,
-django/core/servers/__pycache__/basehttp.cpython-310.pyc,,
-django/core/servers/basehttp.py,sha256=shQRR3aixd7bfn_mU9oU2o7nYp0aw0NPFQZ7M-hTcC4,8811
-django/core/signals.py,sha256=5vh1e7IgPN78WXPo7-hEMPN9tQcqJSZHu0WCibNgd-E,151
-django/core/signing.py,sha256=whV8CTcDhQOOE48myoLeuWpDW9oi9_X0PaKQbvelmoI,8788
-django/core/validators.py,sha256=tCi5toH1uyuuHLo06xTRKP3vb2ftjDAZkIkQfORcsG4,20527
-django/core/wsgi.py,sha256=2sYMSe3IBrENeQT7rys-04CRmf8hW2Q2CjlkBUIyjHk,388
-django/db/__init__.py,sha256=8W-BApKlr4YNfaDdQ544Gyp3AYYbX2E0dyDmQTiVHr0,1483
-django/db/__pycache__/__init__.cpython-310.pyc,,
-django/db/__pycache__/transaction.cpython-310.pyc,,
-django/db/__pycache__/utils.cpython-310.pyc,,
-django/db/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/db/backends/__pycache__/__init__.cpython-310.pyc,,
-django/db/backends/__pycache__/ddl_references.cpython-310.pyc,,
-django/db/backends/__pycache__/signals.cpython-310.pyc,,
-django/db/backends/__pycache__/utils.cpython-310.pyc,,
-django/db/backends/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/db/backends/base/__pycache__/__init__.cpython-310.pyc,,
-django/db/backends/base/__pycache__/base.cpython-310.pyc,,
-django/db/backends/base/__pycache__/client.cpython-310.pyc,,
-django/db/backends/base/__pycache__/creation.cpython-310.pyc,,
-django/db/backends/base/__pycache__/features.cpython-310.pyc,,
-django/db/backends/base/__pycache__/introspection.cpython-310.pyc,,
-django/db/backends/base/__pycache__/operations.cpython-310.pyc,,
-django/db/backends/base/__pycache__/schema.cpython-310.pyc,,
-django/db/backends/base/__pycache__/validation.cpython-310.pyc,,
-django/db/backends/base/base.py,sha256=ixpe59e6cJwvcRkLcUgCDTuRLMN4VruIw3do4_j32iw,27401
-django/db/backends/base/client.py,sha256=90Ffs6zZYCli3tJjwsPH8TItZ8tz1Pp-zhQa-EpsNqc,937
-django/db/backends/base/creation.py,sha256=KmBpV9NYgmK5sF2mjNUuGVcc3xoyQTaAqpv_oBqpdQY,15667
-django/db/backends/base/features.py,sha256=jjzA5UpweVJEula6cZP4ieeIzb3ZRlnjjozvnGkT_aM,14089
-django/db/backends/base/introspection.py,sha256=U9XFBIO-p3aqnWgzOX_2khFPCMhjSHNcvYkrW-hyWyc,7657
-django/db/backends/base/operations.py,sha256=PGMi80FDQ4VTf9metZkBjaOm2TuuAqh0DcJZFYkm5dM,28767
-django/db/backends/base/schema.py,sha256=km_O691N2xrXB1761UFhvSNHb5vc4qzWAmfTOcLsmME,69946
-django/db/backends/base/validation.py,sha256=2zpI11hyUJr0I0cA1xmvoFwQVdZ-7_1T2F11TpQ0Rkk,1067
-django/db/backends/ddl_references.py,sha256=eBDnxoh7_PY2H8AGuZ5FUoxsEscpnmMuYEMqzfPRFqk,8129
-django/db/backends/dummy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/db/backends/dummy/__pycache__/__init__.cpython-310.pyc,,
-django/db/backends/dummy/__pycache__/base.cpython-310.pyc,,
-django/db/backends/dummy/__pycache__/features.cpython-310.pyc,,
-django/db/backends/dummy/base.py,sha256=im1_ubNhbY6cP8yNntqDr6Hlg5d5c_5r5IUCPCDfv28,2181
-django/db/backends/dummy/features.py,sha256=Pg8_jND-aoJomTaBBXU3hJEjzpB-rLs6VwpoKkOYuQg,181
-django/db/backends/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/db/backends/mysql/__pycache__/__init__.cpython-310.pyc,,
-django/db/backends/mysql/__pycache__/base.cpython-310.pyc,,
-django/db/backends/mysql/__pycache__/client.cpython-310.pyc,,
-django/db/backends/mysql/__pycache__/compiler.cpython-310.pyc,,
-django/db/backends/mysql/__pycache__/creation.cpython-310.pyc,,
-django/db/backends/mysql/__pycache__/features.cpython-310.pyc,,
-django/db/backends/mysql/__pycache__/introspection.cpython-310.pyc,,
-django/db/backends/mysql/__pycache__/operations.cpython-310.pyc,,
-django/db/backends/mysql/__pycache__/schema.cpython-310.pyc,,
-django/db/backends/mysql/__pycache__/validation.cpython-310.pyc,,
-django/db/backends/mysql/base.py,sha256=mXWBrUYHjTxzHpA73QwdVq7L21w51AYAAiRvy29YWEo,16910
-django/db/backends/mysql/client.py,sha256=kehdRl8BX9KPcfTwYd3iDtHN3cdl-IFWUcV3cYHlIXY,2581
-django/db/backends/mysql/compiler.py,sha256=wju0iZ_KHfEgyNtQjnLizXC_GxW2uc61zgznLIGo_C0,3075
-django/db/backends/mysql/creation.py,sha256=8BV8YHk3qEq555nH3NHukxpZZgxtvXFvkv7XvkRlhKA,3449
-django/db/backends/mysql/features.py,sha256=ES00bKqMU5Rd7DClcoe4GrPTKzNRpjqLUa7_hTE-F7I,13666
-django/db/backends/mysql/introspection.py,sha256=kaz6iaruGdnnBmZM2m1Es1UGqkSIDpptQiI4xa0vfLc,13690
-django/db/backends/mysql/operations.py,sha256=XhsS7lbDf5xYAGBg3SSSLZwKaezAXatqkJ7HxBRUizk,18917
-django/db/backends/mysql/schema.py,sha256=pQFZMYDuyf4r-bs7yxy6_BUVnoA4MZ_8P88iqA1pF3g,7324
-django/db/backends/mysql/validation.py,sha256=XERj0lPEihKThPvzoVJmNpWdPOun64cRF3gHv-zmCGk,3093
-django/db/backends/oracle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/db/backends/oracle/__pycache__/__init__.cpython-310.pyc,,
-django/db/backends/oracle/__pycache__/base.cpython-310.pyc,,
-django/db/backends/oracle/__pycache__/client.cpython-310.pyc,,
-django/db/backends/oracle/__pycache__/creation.cpython-310.pyc,,
-django/db/backends/oracle/__pycache__/features.cpython-310.pyc,,
-django/db/backends/oracle/__pycache__/functions.cpython-310.pyc,,
-django/db/backends/oracle/__pycache__/introspection.cpython-310.pyc,,
-django/db/backends/oracle/__pycache__/operations.cpython-310.pyc,,
-django/db/backends/oracle/__pycache__/schema.cpython-310.pyc,,
-django/db/backends/oracle/__pycache__/utils.cpython-310.pyc,,
-django/db/backends/oracle/__pycache__/validation.cpython-310.pyc,,
-django/db/backends/oracle/base.py,sha256=-CaIam5TSyw3UxcT0xQezQSX7cpXBPF2I27DgQ0y4Qo,23085
-django/db/backends/oracle/client.py,sha256=DfDURfno8Sek13M8r5S2t2T8VUutx2hBT9DZRfow9VQ,784
-django/db/backends/oracle/creation.py,sha256=KVUU5EqNWeaeRMRj0Q2Z3EQ-F-FRuj25JaXdSTA_Q7I,20834
-django/db/backends/oracle/features.py,sha256=hlBLQUlCw1ODcYTgBAAV-phtXqIncld2IL2aj2nfS-4,6092
-django/db/backends/oracle/functions.py,sha256=2OoBYyY1Lb4B5hYbkRHjd8YY_artr3QeGu2hlojC-vc,812
-django/db/backends/oracle/introspection.py,sha256=4JvrK2rf8WQArRdiLhgf1AAy9PJA0xB5BlQiEXtfIRE,14682
-django/db/backends/oracle/operations.py,sha256=LvmRq3Cf1yoPNrgWWyO4bcLZgR50QqLmhCq4MsaR1gA,29588
-django/db/backends/oracle/schema.py,sha256=HhrIjCSlU2INjeTSkMz4jR2ViL87q636IQWCMIwGMb0,10724
-django/db/backends/oracle/utils.py,sha256=y-fIivrmHabu5CBCUgEUoud7kOIH7rGCXMEkMn8gHIs,2685
-django/db/backends/oracle/validation.py,sha256=cq-Bvy5C0_rmkgng0SSQ4s74FKg2yTM1N782Gfz86nY,860
-django/db/backends/postgresql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/db/backends/postgresql/__pycache__/__init__.cpython-310.pyc,,
-django/db/backends/postgresql/__pycache__/base.cpython-310.pyc,,
-django/db/backends/postgresql/__pycache__/client.cpython-310.pyc,,
-django/db/backends/postgresql/__pycache__/creation.cpython-310.pyc,,
-django/db/backends/postgresql/__pycache__/features.cpython-310.pyc,,
-django/db/backends/postgresql/__pycache__/introspection.cpython-310.pyc,,
-django/db/backends/postgresql/__pycache__/operations.cpython-310.pyc,,
-django/db/backends/postgresql/__pycache__/schema.cpython-310.pyc,,
-django/db/backends/postgresql/base.py,sha256=8XSvhykIme8vq8Z9dD0T3mJvhjK7a8r3hycpJ6QirkU,14280
-django/db/backends/postgresql/client.py,sha256=7-Q-fpIFgeFwO6mbNKosHZYcCQskcA58OqXKBG1kkl4,2052
-django/db/backends/postgresql/creation.py,sha256=ZuyzNToyKmUA6S49a3is6SQg8ELV3_ijvm3Ch3uMf7o,3663
-django/db/backends/postgresql/features.py,sha256=S5s3Pp0EIaJFEgB2jBFZUU8MojwKKXxIXuXB360jghw,3587
-django/db/backends/postgresql/introspection.py,sha256=-WQ_MzLd92us5b_22dn7j_-htQ0gKQZVg52_cczkkcw,11266
-django/db/backends/postgresql/operations.py,sha256=o9UYZpQyUEndg7sax8Sbptkd3IeOy4Qi5ctmNXMs1gI,13568
-django/db/backends/postgresql/schema.py,sha256=K1ho58Z9NjeUm2edAkZXC5kEv4aNpeBn3WopZnVabPs,11164
-django/db/backends/signals.py,sha256=Yl14KjYJijTt1ypIZirp90lS7UTJ8UogPFI_DwbcsSc,66
-django/db/backends/sqlite3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/db/backends/sqlite3/__pycache__/__init__.cpython-310.pyc,,
-django/db/backends/sqlite3/__pycache__/_functions.cpython-310.pyc,,
-django/db/backends/sqlite3/__pycache__/base.cpython-310.pyc,,
-django/db/backends/sqlite3/__pycache__/client.cpython-310.pyc,,
-django/db/backends/sqlite3/__pycache__/creation.cpython-310.pyc,,
-django/db/backends/sqlite3/__pycache__/features.cpython-310.pyc,,
-django/db/backends/sqlite3/__pycache__/introspection.cpython-310.pyc,,
-django/db/backends/sqlite3/__pycache__/operations.cpython-310.pyc,,
-django/db/backends/sqlite3/__pycache__/schema.cpython-310.pyc,,
-django/db/backends/sqlite3/_functions.py,sha256=xE8iY_GGjnTh6TZ3ctbtRdE4OaHMnV-zTjACiK1GGUU,14427
-django/db/backends/sqlite3/base.py,sha256=QT5X1VTxK6Td9Az17TFq1opnuJhVkv4Jlb95Dfl9HFA,15297
-django/db/backends/sqlite3/client.py,sha256=Eb_-P1w0aTbZGVNYkv7KA1ku5Il1N2RQov2lc3v0nho,321
-django/db/backends/sqlite3/creation.py,sha256=e6dong_YpN9x783IDRrV4NRav_jPqJP0x6JUZrN8A6c,6797
-django/db/backends/sqlite3/features.py,sha256=0PJQWoKuY3XXGX7NXkg2E_jDtgMGouUf0zu82tFPsrE,5855
-django/db/backends/sqlite3/introspection.py,sha256=CWGYy2OlYtlqQw_kB3C1201JfuHLwUSbMcA6IgBmlRM,17479
-django/db/backends/sqlite3/operations.py,sha256=k9fFz30k0H7E6TN0PU8l7pRC-u4qvxIHN0DkDLGxjgQ,17015
-django/db/backends/sqlite3/schema.py,sha256=4-SGoFiM5AIkMh0ts2vHTzFl6cspWSzQBQBt9KdVxro,23526
-django/db/backends/utils.py,sha256=xgNbEF1aNO5e_2xaaQwtocMUAiQvu3xf70zrHVCDCfE,9236
-django/db/migrations/__init__.py,sha256=Oa4RvfEa6hITCqdcqwXYC66YknFKyluuy7vtNbSc-L4,97
-django/db/migrations/__pycache__/__init__.cpython-310.pyc,,
-django/db/migrations/__pycache__/autodetector.cpython-310.pyc,,
-django/db/migrations/__pycache__/exceptions.cpython-310.pyc,,
-django/db/migrations/__pycache__/executor.cpython-310.pyc,,
-django/db/migrations/__pycache__/graph.cpython-310.pyc,,
-django/db/migrations/__pycache__/loader.cpython-310.pyc,,
-django/db/migrations/__pycache__/migration.cpython-310.pyc,,
-django/db/migrations/__pycache__/optimizer.cpython-310.pyc,,
-django/db/migrations/__pycache__/questioner.cpython-310.pyc,,
-django/db/migrations/__pycache__/recorder.cpython-310.pyc,,
-django/db/migrations/__pycache__/serializer.cpython-310.pyc,,
-django/db/migrations/__pycache__/state.cpython-310.pyc,,
-django/db/migrations/__pycache__/utils.cpython-310.pyc,,
-django/db/migrations/__pycache__/writer.cpython-310.pyc,,
-django/db/migrations/autodetector.py,sha256=BrIM-wMo0Bw1pJGOvNr9Z1Kgrv_zrIiTmQCmJ_H-1Q0,77637
-django/db/migrations/exceptions.py,sha256=SotQF7ZKgJpd9KN-gKDL8wCJAKSEgbZToM_vtUAnqHw,1204
-django/db/migrations/executor.py,sha256=_XxTCSHiwAy6KqFsqS_V2fVojDdMdKnDchCdc1nU2Bo,18923
-django/db/migrations/graph.py,sha256=vt7Pc45LuiXR8aRCrXP5Umm6VDCCTs2LAr5NXh-rxcE,13055
-django/db/migrations/loader.py,sha256=KRHdjq7A0sHqOS0JHVNlR8MtQvbY9smjId7rngwrrOU,16863
-django/db/migrations/migration.py,sha256=DmJrF_UdBlLO7wA50FMgWuvvI9jMlYBhE-U5v7yWVTY,9735
-django/db/migrations/operations/__init__.py,sha256=heS3YBo2D_5xevcMxXDCmCMFcg5GcUrSwPTqKO35jac,906
-django/db/migrations/operations/__pycache__/__init__.cpython-310.pyc,,
-django/db/migrations/operations/__pycache__/base.cpython-310.pyc,,
-django/db/migrations/operations/__pycache__/fields.cpython-310.pyc,,
-django/db/migrations/operations/__pycache__/models.cpython-310.pyc,,
-django/db/migrations/operations/__pycache__/special.cpython-310.pyc,,
-django/db/migrations/operations/base.py,sha256=-wdWlbVLtUGeOeWKyuQ67R3HCx_jd0ausstbJcBT4QQ,5082
-django/db/migrations/operations/fields.py,sha256=_6znw6YYwAxs_V4I05BbP_T58rkzR2dqUcLyUmul-Zc,12692
-django/db/migrations/operations/models.py,sha256=yIY28SKIRmgbkiMCbSfTejyrQ_9fvlFM2i7Nyp95PZc,39660
-django/db/migrations/operations/special.py,sha256=3Zbya6B1nEjvIwhQLoFR8kGBZUlc26kgBxX7XS3aeFQ,7831
-django/db/migrations/optimizer.py,sha256=c0JZ5FGltD_gmh20e5SR6A21q_De6rUKfkAJKwmX4Ks,3255
-django/db/migrations/questioner.py,sha256=HVtcEBRxQwL9JrQO5r1bVIZIZUFBfs9L-siuDQERZh0,13330
-django/db/migrations/recorder.py,sha256=36vtix99DAFnWgKQYnj4G8VQwNfOQUP2OTsC_afAPNM,3535
-django/db/migrations/serializer.py,sha256=aEuEXHyja4Bbz1CM2H5sJt6j2Y_qQqPGTbwM18XU42c,13151
-django/db/migrations/state.py,sha256=nsklYSqxnEr5O4kZa8D3LiZAZ6I7hCARE8N2AdyhKB0,40635
-django/db/migrations/utils.py,sha256=pdrzumGDhgytc5KVWdZov7cQtBt3jRASLqbmBxSRSvg,4401
-django/db/migrations/writer.py,sha256=KqsYN3bDTjGWnuvVvkAj06qk2lhFQLkaWsr9cW-oVYI,11458
-django/db/models/__init__.py,sha256=CB0CfDP1McdMRNfGuDs1OaJ7Xw-br2tC_EIjTcH51X4,2774
-django/db/models/__pycache__/__init__.cpython-310.pyc,,
-django/db/models/__pycache__/aggregates.cpython-310.pyc,,
-django/db/models/__pycache__/base.cpython-310.pyc,,
-django/db/models/__pycache__/constants.cpython-310.pyc,,
-django/db/models/__pycache__/constraints.cpython-310.pyc,,
-django/db/models/__pycache__/deletion.cpython-310.pyc,,
-django/db/models/__pycache__/enums.cpython-310.pyc,,
-django/db/models/__pycache__/expressions.cpython-310.pyc,,
-django/db/models/__pycache__/indexes.cpython-310.pyc,,
-django/db/models/__pycache__/lookups.cpython-310.pyc,,
-django/db/models/__pycache__/manager.cpython-310.pyc,,
-django/db/models/__pycache__/options.cpython-310.pyc,,
-django/db/models/__pycache__/query.cpython-310.pyc,,
-django/db/models/__pycache__/query_utils.cpython-310.pyc,,
-django/db/models/__pycache__/signals.cpython-310.pyc,,
-django/db/models/__pycache__/utils.cpython-310.pyc,,
-django/db/models/aggregates.py,sha256=x-sWUo-Lf8XIePorwLodwO49KCxUMnR-pVz8kqxR3qA,6944
-django/db/models/base.py,sha256=gLOeW_p5iuvWd8fZztLfNUuiVFskX8ph-mxLCxRaZe8,99289
-django/db/models/constants.py,sha256=yfhLjetzfpKFqd5pIIuILL3r2pmD-nhRL-4VzrZYQ4w,209
-django/db/models/constraints.py,sha256=bU83BRUEFs6QHoBZH1F7Dz3IjZgQFHVuuMXE1cgy3Vg,14976
-django/db/models/deletion.py,sha256=aj0hAKIIeMLusaLG81uBu6pyncUqPuLmCvZCMwRDmXk,20753
-django/db/models/enums.py,sha256=Erf-SMu9CD1aZfq4xct3WdoOjjMIZp_vlja6FyJQfyw,2804
-django/db/models/expressions.py,sha256=kBNs-7_9W2mFTmb1GVUr5K8FFX2P_r2z7-kgtHm4ODk,62634
-django/db/models/fields/__init__.py,sha256=NdouHh90Swn7a_7X1vGXuL0lbKUGHDj8SfnIF3lQ5hQ,94222
-django/db/models/fields/__pycache__/__init__.cpython-310.pyc,,
-django/db/models/fields/__pycache__/files.cpython-310.pyc,,
-django/db/models/fields/__pycache__/json.cpython-310.pyc,,
-django/db/models/fields/__pycache__/mixins.cpython-310.pyc,,
-django/db/models/fields/__pycache__/proxy.cpython-310.pyc,,
-django/db/models/fields/__pycache__/related.cpython-310.pyc,,
-django/db/models/fields/__pycache__/related_descriptors.cpython-310.pyc,,
-django/db/models/fields/__pycache__/related_lookups.cpython-310.pyc,,
-django/db/models/fields/__pycache__/reverse_related.cpython-310.pyc,,
-django/db/models/fields/files.py,sha256=gNA62GW-O4X3gtAZBLtl97IwyhdMCmlVhAv0ON9s9qc,18764
-django/db/models/fields/json.py,sha256=KBtTBPMdswZBF_5pDk_4uzsjATFG3uA6skXnT4e5pTk,19991
-django/db/models/fields/mixins.py,sha256=AfnqL5l3yXQmYh9sW35MPFy9AvKjA7SarXijXfd68J8,1823
-django/db/models/fields/proxy.py,sha256=eFHyl4gRTqocjgd6nID9UlQuOIppBA57Vcr71UReTAs,515
-django/db/models/fields/related.py,sha256=qqJdbSeU8k6HYvR9_sxlT7XLG5fp1Ide137ZmT8hUm4,76095
-django/db/models/fields/related_descriptors.py,sha256=njmAbhvduVLX4se0qfP7doNckP7oUvl9Hz1_Q0S6SxU,59017
-django/db/models/fields/related_lookups.py,sha256=aDnRMXf6LFJyCAShS3mCsgXqxCukKjspnaawbQo4AkM,8171
-django/db/models/fields/reverse_related.py,sha256=v5tQdGwqsnLi5cqNElxERkmG_6mpEWwkKeaXL3Q-pKw,12330
-django/db/models/functions/__init__.py,sha256=aglCm_JtzDYk2KmxubDN_78CGG3JCfRWnfJ74Oj5YJ4,2658
-django/db/models/functions/__pycache__/__init__.cpython-310.pyc,,
-django/db/models/functions/__pycache__/comparison.cpython-310.pyc,,
-django/db/models/functions/__pycache__/datetime.cpython-310.pyc,,
-django/db/models/functions/__pycache__/math.cpython-310.pyc,,
-django/db/models/functions/__pycache__/mixins.cpython-310.pyc,,
-django/db/models/functions/__pycache__/text.cpython-310.pyc,,
-django/db/models/functions/__pycache__/window.cpython-310.pyc,,
-django/db/models/functions/comparison.py,sha256=1PAS7MopA64-U1yEzk-pFpqsJF8kqCoiROuEeV_RRjA,8159
-django/db/models/functions/datetime.py,sha256=PHQYeXK1vnc8s3Oy3iXYqiXiw_qTm2cDH6U44w9qj8s,13217
-django/db/models/functions/math.py,sha256=1MMhlAzVYjIbC2kuuG0wzSQ21aXvgp7OlqMnfPG5y7Q,6104
-django/db/models/functions/mixins.py,sha256=04MuLCiXw4DYDx0kRU3g_QZcOOCbttAkFEa4WtwGeao,2229
-django/db/models/functions/text.py,sha256=nukaAx3ZAOPQoBFvZ4a3zVLkwqztLHI0ZSywuLOPth8,10605
-django/db/models/functions/window.py,sha256=g4fryay1tLQCpZRfmPQhrTiuib4RvPqtwFdodlLbi98,2841
-django/db/models/indexes.py,sha256=hEMb5h9gjVLQTKhS8yYZ3i_o17ppErOx8jlYeFYXn44,11871
-django/db/models/lookups.py,sha256=aj84NavidWTW5Q1FlOosCB91Rb2FF3KDCxET86uZzD8,24634
-django/db/models/manager.py,sha256=bTLdM0ed5kE7T5QUtLLx2lvhg_KFxBzD5I__Ryznzxo,6917
-django/db/models/options.py,sha256=VpVMrURnD1ZWssyl6E_pBsGiCTyvigjFsSxAZckI5Go,38009
-django/db/models/query.py,sha256=x-LlitxuVzB8b6c0gWizCCS-QOoAMTxbE5uO6tK7EgU,100811
-django/db/models/query_utils.py,sha256=JPoxFwyBc0-GxixYWcN3RKntIVWsrvE7Vw2QwTpCJtg,13389
-django/db/models/signals.py,sha256=mG6hxVWugr_m0ugTU2XAEMiqlu2FJ4CBuGa34dLJvEQ,1622
-django/db/models/sql/__init__.py,sha256=BGZ1GSn03dTOO8PYx6vF1-ImE3g1keZsQ74AHJoQwmQ,241
-django/db/models/sql/__pycache__/__init__.cpython-310.pyc,,
-django/db/models/sql/__pycache__/compiler.cpython-310.pyc,,
-django/db/models/sql/__pycache__/constants.cpython-310.pyc,,
-django/db/models/sql/__pycache__/datastructures.cpython-310.pyc,,
-django/db/models/sql/__pycache__/query.cpython-310.pyc,,
-django/db/models/sql/__pycache__/subqueries.cpython-310.pyc,,
-django/db/models/sql/__pycache__/where.cpython-310.pyc,,
-django/db/models/sql/compiler.py,sha256=D3BY9g8pXaIzDKGHdKA8lPRvbV9oD3bEyMzEcpjQOWE,81893
-django/db/models/sql/constants.py,sha256=usb1LSh9WNGPsurWAGppDkV0wYJJg5GEegKibQdS718,533
-django/db/models/sql/datastructures.py,sha256=cg4EexjiRimHEzgAuvMm3QN9qqmklPu37Zf1ONc0jFQ,7180
-django/db/models/sql/query.py,sha256=JQ8PUOPg2NZ_1LeftCO90a9htUTVtUDj_9WMDnE30Ns,114470
-django/db/models/sql/subqueries.py,sha256=eqwaqhe_A2-OVKcYu6N3Wi6jDvftnVnQ-30vFfZMB5w,5935
-django/db/models/sql/where.py,sha256=78n4GKnAgTQa2xcn1QDyDrEIQnvQGqDpPwn9XoSkRJQ,10376
-django/db/models/utils.py,sha256=q8bxqC8Fv8zuWgKuC8AcPFosw8BQHmyF9bLzIucFao0,1608
-django/db/transaction.py,sha256=qcjWKDs49xV6-XJgTeVcHcWf_avZJsPURfOFFdFsJwI,12433
-django/db/utils.py,sha256=RKtSSyVJmM5__SAs1pY0njX6hLVRy1WIBggYo1zP4RI,9279
-django/dispatch/__init__.py,sha256=qP203zNwjaolUFnXLNZHnuBn7HNzyw9_JkODECRKZbc,286
-django/dispatch/__pycache__/__init__.cpython-310.pyc,,
-django/dispatch/__pycache__/dispatcher.cpython-310.pyc,,
-django/dispatch/dispatcher.py,sha256=hMPMYVDCkQuUfY1D3XVyP2CqSQDhEHMgp25a-RytTMs,10793
-django/dispatch/license.txt,sha256=VABMS2BpZOvBY68W0EYHwW5Cj4p4oCb-y1P3DAn0qU8,1743
-django/forms/__init__.py,sha256=S6ckOMmvUX-vVST6AC-M8BzsfVQwuEUAdHWabMN-OGI,368
-django/forms/__pycache__/__init__.cpython-310.pyc,,
-django/forms/__pycache__/boundfield.cpython-310.pyc,,
-django/forms/__pycache__/fields.cpython-310.pyc,,
-django/forms/__pycache__/forms.cpython-310.pyc,,
-django/forms/__pycache__/formsets.cpython-310.pyc,,
-django/forms/__pycache__/models.cpython-310.pyc,,
-django/forms/__pycache__/renderers.cpython-310.pyc,,
-django/forms/__pycache__/utils.cpython-310.pyc,,
-django/forms/__pycache__/widgets.cpython-310.pyc,,
-django/forms/boundfield.py,sha256=z-zjCOwA3VmaOH0Zb9KnvDUy9jIkI3hHscehqlXLh_o,12036
-django/forms/fields.py,sha256=uSoJ18iL3PmcI4ff7-np4CRjBqNAQ6xIl78YbUW79BU,48333
-django/forms/forms.py,sha256=f-mLXMrandanFzIS9G4SkiqPp-z6O0vMGDEdUO-zVEc,20586
-django/forms/formsets.py,sha256=JbBdpSRLZ5ZNHwnM-D85yCpLea9pNb3eUQpXrdcP9kg,21068
-django/forms/jinja2/django/forms/attrs.html,sha256=TD0lNK-ohDjb_bWg1Kosdn4kU01B_M0_C19dp9kYJqo,165
-django/forms/jinja2/django/forms/default.html,sha256=stPE5cj2dGb6pxqKLtgDHPr14Qr6pcr4i_s2lCZDFF8,40
-django/forms/jinja2/django/forms/div.html,sha256=Fgqt-XPtBFe6qiW7_mTb7w9gf0aNUbUalhxZvNV6gP0,865
-django/forms/jinja2/django/forms/errors/dict/default.html,sha256=1DLQf0Czjr5V4cghQOyJr3v34G2ClF0RAOc-H7GwXUE,49
-django/forms/jinja2/django/forms/errors/dict/text.txt,sha256=E7eqEWc6q2_kLyc9k926klRe2mPp4O2VqG-2_MliYaU,113
-django/forms/jinja2/django/forms/errors/dict/ul.html,sha256=65EYJOqDAn7-ca7FtjrcdbXygLE-RA_IJQTltO7qS1Q,137
-django/forms/jinja2/django/forms/errors/list/default.html,sha256=q41d4u6XcxDL06gRAVdU021kM_iFLIt5BuYa-HATOWE,49
-django/forms/jinja2/django/forms/errors/list/text.txt,sha256=VVbLrGMHcbs1hK9-2v2Y6SIoH9qRMtlKzM6qzLVAFyE,52
-django/forms/jinja2/django/forms/errors/list/ul.html,sha256=AwXfGxnos6llX44dhxMChz6Kk6VStAJiNzUpSLN8_y4,119
-django/forms/jinja2/django/forms/formsets/default.html,sha256=VS7142h_1WElYa58vKdd9vfQiwaRxrQLyatBAI22T3U,77
-django/forms/jinja2/django/forms/formsets/div.html,sha256=uq10XZdQ1WSt6kJFoKxtluvnCKE4L3oYcLkPraF4ovs,86
-django/forms/jinja2/django/forms/formsets/p.html,sha256=HzEX7XdSDt9owDkYJvBdFIETeU9RDbXc1e4R2YEt6ec,84
-django/forms/jinja2/django/forms/formsets/table.html,sha256=L9B4E8lR0roTr7dBoMiUlekuMbO-3y4_b4NHm6Oy_Vg,88
-django/forms/jinja2/django/forms/formsets/ul.html,sha256=ANvMWb6EeFAtLPDTr61IeI3-YHtAYZCT_zmm-_y-5Oc,85
-django/forms/jinja2/django/forms/label.html,sha256=trXo6yF4ezDv-y-8y1yJnP7sSByw0TTppgZLcrmfR6M,147
-django/forms/jinja2/django/forms/p.html,sha256=fQJWWpBV4WgggOA-KULIY6vIIPTHNVlkfj9yOngfOOY,673
-django/forms/jinja2/django/forms/table.html,sha256=B6EEQIJDDpc2SHC5qJzOZylzjmLVA1IWzOQWzzvRZA8,814
-django/forms/jinja2/django/forms/ul.html,sha256=U6aaYi-Wb66KcLhRGJ_GeGc5TQyeUK9LKLTw4a8utoE,712
-django/forms/jinja2/django/forms/widgets/attrs.html,sha256=_J2P-AOpHFhIwaqCNcrJFxEY4s-KPdy0Wcq0KlarIG0,172
-django/forms/jinja2/django/forms/widgets/checkbox.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/jinja2/django/forms/widgets/checkbox_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55
-django/forms/jinja2/django/forms/widgets/checkbox_select.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57
-django/forms/jinja2/django/forms/widgets/clearable_file_input.html,sha256=h5_tWYnKRjGTYkzOq6AfDpkffj31DdEolpdtInilitM,511
-django/forms/jinja2/django/forms/widgets/date.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/jinja2/django/forms/widgets/datetime.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/jinja2/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/jinja2/django/forms/widgets/file.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/jinja2/django/forms/widgets/hidden.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/jinja2/django/forms/widgets/input.html,sha256=u12fZde-ugkEAAkPAtAfSxwGQmYBkXkssWohOUs-xoE,172
-django/forms/jinja2/django/forms/widgets/input_option.html,sha256=PyRNn9lmE9Da0-RK37zW4yJZUSiJWgIPCU9ou5oUC28,219
-django/forms/jinja2/django/forms/widgets/multiple_hidden.html,sha256=T54-n1ZeUlTd-svM3C4tLF42umKM0R5A7fdfsdthwkA,54
-django/forms/jinja2/django/forms/widgets/multiple_input.html,sha256=voM3dqu69R0Z202TmCgMFM6toJp7FgFPVvbWY9WKEAU,395
-django/forms/jinja2/django/forms/widgets/multiwidget.html,sha256=pr-MxRyucRxn_HvBGZvbc3JbFyrAolbroxvA4zmPz2Y,86
-django/forms/jinja2/django/forms/widgets/number.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/jinja2/django/forms/widgets/password.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/jinja2/django/forms/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57
-django/forms/jinja2/django/forms/widgets/radio_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55
-django/forms/jinja2/django/forms/widgets/select.html,sha256=ESyDzbLTtM7-OG34EuSUnvxCtyP5IrQsZh0jGFrIdEA,365
-django/forms/jinja2/django/forms/widgets/select_date.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
-django/forms/jinja2/django/forms/widgets/select_option.html,sha256=tNa1D3G8iy2ZcWeKyI-mijjDjRmMaqSo-jnAR_VS3Qc,110
-django/forms/jinja2/django/forms/widgets/splitdatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
-django/forms/jinja2/django/forms/widgets/splithiddendatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
-django/forms/jinja2/django/forms/widgets/text.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/jinja2/django/forms/widgets/textarea.html,sha256=Av1Y-hpXUU2AjrhnUivgZFKNBLdwCSZSeuSmCqmCkDA,145
-django/forms/jinja2/django/forms/widgets/time.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/jinja2/django/forms/widgets/url.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/models.py,sha256=zTtQzYTzT8JRxRJx5A9DvZ1l9oIcm1U-1_XnbjCxFqs,60344
-django/forms/renderers.py,sha256=7G1MxTkXh-MYoXcg12Bam_tukUdx_MZfkQkr-FXq8fI,3036
-django/forms/templates/django/forms/attrs.html,sha256=UFPgCXXCAkbumxZE1NM-aJVE4VCe2RjCrHLNseibv3I,165
-django/forms/templates/django/forms/default.html,sha256=stPE5cj2dGb6pxqKLtgDHPr14Qr6pcr4i_s2lCZDFF8,40
-django/forms/templates/django/forms/div.html,sha256=UpjHVpiDG6TL-8wf7egyA2yY8S7igoIWKe-_y1dX388,874
-django/forms/templates/django/forms/errors/dict/default.html,sha256=tFtwfHlkOY_XaKjoUPsWshiSWT5olxm3kDElND-GQtQ,48
-django/forms/templates/django/forms/errors/dict/text.txt,sha256=E7eqEWc6q2_kLyc9k926klRe2mPp4O2VqG-2_MliYaU,113
-django/forms/templates/django/forms/errors/dict/ul.html,sha256=65EYJOqDAn7-ca7FtjrcdbXygLE-RA_IJQTltO7qS1Q,137
-django/forms/templates/django/forms/errors/list/default.html,sha256=Kmx1nwrzQ49MaP80Gd17GC5TQH4B7doWa3I3azXvoHA,48
-django/forms/templates/django/forms/errors/list/text.txt,sha256=VVbLrGMHcbs1hK9-2v2Y6SIoH9qRMtlKzM6qzLVAFyE,52
-django/forms/templates/django/forms/errors/list/ul.html,sha256=5kt2ckbr3esK0yoPzco2EB0WzS8MvGzau_rAcomB508,118
-django/forms/templates/django/forms/formsets/default.html,sha256=VS7142h_1WElYa58vKdd9vfQiwaRxrQLyatBAI22T3U,77
-django/forms/templates/django/forms/formsets/div.html,sha256=lmIRSTBuGczEd2lj-UfDS9zAlVv8ntpmRo-boDDRwEg,84
-django/forms/templates/django/forms/formsets/p.html,sha256=qkoHKem-gb3iqvTtROBcHNJqI-RoUwLHUvJC6EoHg-I,82
-django/forms/templates/django/forms/formsets/table.html,sha256=N0G9GETzJfV16wUesvdrNMDwc8Fhh6durrmkHUPeDZY,86
-django/forms/templates/django/forms/formsets/ul.html,sha256=bGQpjbpKwMahyiIP4-2p3zg3yJP-pN1A48yCqhHdw7o,83
-django/forms/templates/django/forms/label.html,sha256=0bJCdIj8G5e2Gaw3QUR0ZMdwVavC80YwxS5E0ShkzmE,122
-django/forms/templates/django/forms/p.html,sha256=N3sx-PBlt3Trs6lfjE4oQa3owxhM3rqXTy-AQg9Hr44,684
-django/forms/templates/django/forms/table.html,sha256=zuLIyEOeNzV7aeIjIqIwM4XfZP_SlEc_OZ_x87rbOhY,825
-django/forms/templates/django/forms/ul.html,sha256=K8kCd5q4nD-_ChR47s3q5fkHd8BHrHAa830-5H8aXVI,723
-django/forms/templates/django/forms/widgets/attrs.html,sha256=9ylIPv5EZg-rx2qPLgobRkw6Zq_WJSM8kt106PpSYa0,172
-django/forms/templates/django/forms/widgets/checkbox.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/templates/django/forms/widgets/checkbox_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55
-django/forms/templates/django/forms/widgets/checkbox_select.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57
-django/forms/templates/django/forms/widgets/clearable_file_input.html,sha256=h5_tWYnKRjGTYkzOq6AfDpkffj31DdEolpdtInilitM,511
-django/forms/templates/django/forms/widgets/date.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/templates/django/forms/widgets/datetime.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/templates/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/templates/django/forms/widgets/file.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/templates/django/forms/widgets/hidden.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/templates/django/forms/widgets/input.html,sha256=dwzzrLocGLZQIaGe-_X8k7z87jV6AFtn28LilnUnUH0,189
-django/forms/templates/django/forms/widgets/input_option.html,sha256=PyRNn9lmE9Da0-RK37zW4yJZUSiJWgIPCU9ou5oUC28,219
-django/forms/templates/django/forms/widgets/multiple_hidden.html,sha256=T54-n1ZeUlTd-svM3C4tLF42umKM0R5A7fdfsdthwkA,54
-django/forms/templates/django/forms/widgets/multiple_input.html,sha256=jxEWRqV32a73340eQ0uIn672Xz5jW9qm3V_srByLEd0,426
-django/forms/templates/django/forms/widgets/multiwidget.html,sha256=slk4AgCdXnVmFvavhjVcsza0quTOP2LG50D8wna0dw0,117
-django/forms/templates/django/forms/widgets/number.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/templates/django/forms/widgets/password.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/templates/django/forms/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57
-django/forms/templates/django/forms/widgets/radio_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55
-django/forms/templates/django/forms/widgets/select.html,sha256=7U0RzjeESG87ENzQjPRUF71gvKvGjVVvXcpsW2-BTR4,384
-django/forms/templates/django/forms/widgets/select_date.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
-django/forms/templates/django/forms/widgets/select_option.html,sha256=N_psd0JYCqNhx2eh2oyvkF2KU2dv7M9mtMw_4BLYq8A,127
-django/forms/templates/django/forms/widgets/splitdatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
-django/forms/templates/django/forms/widgets/splithiddendatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54
-django/forms/templates/django/forms/widgets/text.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/templates/django/forms/widgets/textarea.html,sha256=Av1Y-hpXUU2AjrhnUivgZFKNBLdwCSZSeuSmCqmCkDA,145
-django/forms/templates/django/forms/widgets/time.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/templates/django/forms/widgets/url.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
-django/forms/utils.py,sha256=cE0YGhNlmArdpQ6bS_OxFRcPlKNSkAwK1pQfw66x3rg,8161
-django/forms/widgets.py,sha256=cKcxRd0a-2rCeCE4w0xP_rS_98GOtruystVq7QS2OYk,38627
-django/http/__init__.py,sha256=9x9P4-fKv1dYEpjq5n7aStkZ2mCFnv0U3Tohny00yDM,1164
-django/http/__pycache__/__init__.cpython-310.pyc,,
-django/http/__pycache__/cookie.cpython-310.pyc,,
-django/http/__pycache__/multipartparser.cpython-310.pyc,,
-django/http/__pycache__/request.cpython-310.pyc,,
-django/http/__pycache__/response.cpython-310.pyc,,
-django/http/cookie.py,sha256=t7yGORGClUnCYVKQqyLBlEYsxQLLHn9crsMSWqK_Eic,679
-django/http/multipartparser.py,sha256=thb5VZQzMyvbUrxmdGvaqrjZYnBHpuvLyXPZ4R_fw84,27173
-django/http/request.py,sha256=qiLsOBRINtfQ9ZNI-1EPzfA2zbicSh9SD7abFcPNlPQ,24818
-django/http/response.py,sha256=_amo06OAX7lcKHPd4v4HU4ROinHgXvY0oSqNl4G6X1Y,23854
-django/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/middleware/__pycache__/__init__.cpython-310.pyc,,
-django/middleware/__pycache__/cache.cpython-310.pyc,,
-django/middleware/__pycache__/clickjacking.cpython-310.pyc,,
-django/middleware/__pycache__/common.cpython-310.pyc,,
-django/middleware/__pycache__/csrf.cpython-310.pyc,,
-django/middleware/__pycache__/gzip.cpython-310.pyc,,
-django/middleware/__pycache__/http.cpython-310.pyc,,
-django/middleware/__pycache__/locale.cpython-310.pyc,,
-django/middleware/__pycache__/security.cpython-310.pyc,,
-django/middleware/cache.py,sha256=WAfMAUktNAqHGkTwC8iB0HVcZwQTdXBCLWFng4ERGgM,7951
-django/middleware/clickjacking.py,sha256=rIm2VlbblLWrMTRYJ1JBIui5xshAM-2mpyJf989xOgY,1724
-django/middleware/common.py,sha256=9G8G40Jd6vNeSVQfu1bKO-y2Rd550Lsm8ohr_fDeAnU,7603
-django/middleware/csrf.py,sha256=uosTUtHAj6P7Puam7VtYfRxqKCWGWEOUcnunviwsOlU,19773
-django/middleware/gzip.py,sha256=P_gEykSWFCwAhcsm4bUB8bvv6oH7B3gl47O3ezOACsQ,2143
-django/middleware/http.py,sha256=RqXN9Kp6GEh8j_ub7YXRi6W2_CKZTZEyAPpFUzeNPBs,1616
-django/middleware/locale.py,sha256=CV8aerSUWmO6cJQ6IrD5BzT3YlOxYNIqFraCqr8DoY4,3442
-django/middleware/security.py,sha256=AjcJ338onziA0HPXsM5WUnIrQkmyW8mpwU0KObaPPUI,2623
-django/shortcuts.py,sha256=UniuxOq4cpBYCN-spLkUCFEYmA2SSXsozeS6xM2Lx8w,5009
-django/template/__init__.py,sha256=-hvAhcRO8ydLdjTJJFr6LYoBVCsJq561ebRqE9kYBJs,1845
-django/template/__pycache__/__init__.cpython-310.pyc,,
-django/template/__pycache__/autoreload.cpython-310.pyc,,
-django/template/__pycache__/base.cpython-310.pyc,,
-django/template/__pycache__/context.cpython-310.pyc,,
-django/template/__pycache__/context_processors.cpython-310.pyc,,
-django/template/__pycache__/defaultfilters.cpython-310.pyc,,
-django/template/__pycache__/defaulttags.cpython-310.pyc,,
-django/template/__pycache__/engine.cpython-310.pyc,,
-django/template/__pycache__/exceptions.cpython-310.pyc,,
-django/template/__pycache__/library.cpython-310.pyc,,
-django/template/__pycache__/loader.cpython-310.pyc,,
-django/template/__pycache__/loader_tags.cpython-310.pyc,,
-django/template/__pycache__/response.cpython-310.pyc,,
-django/template/__pycache__/smartif.cpython-310.pyc,,
-django/template/__pycache__/utils.cpython-310.pyc,,
-django/template/autoreload.py,sha256=eW35nTUXJQsEuK8DFSeoeNQ3_zhOUP5uSPUgbiayPXk,1812
-django/template/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/template/backends/__pycache__/__init__.cpython-310.pyc,,
-django/template/backends/__pycache__/base.cpython-310.pyc,,
-django/template/backends/__pycache__/django.cpython-310.pyc,,
-django/template/backends/__pycache__/dummy.cpython-310.pyc,,
-django/template/backends/__pycache__/jinja2.cpython-310.pyc,,
-django/template/backends/__pycache__/utils.cpython-310.pyc,,
-django/template/backends/base.py,sha256=leXk6e3XTeD8YYZ4jzGYP9bqKs2HdZupz3C1b-XcImE,2752
-django/template/backends/django.py,sha256=L-_iLPAkHZACdYYHoddd_GeCaw8Z_NFWF0r1jFLNZPU,4395
-django/template/backends/dummy.py,sha256=XAtI1wmVkGJDfVOz-ENr4voPWrfY3h4sW0CjMqoiCK4,1752
-django/template/backends/jinja2.py,sha256=GtLKK8Ot1vBcylD5LFDC2PBII_ZcXM_Fnj0JkHKs5To,4046
-django/template/backends/utils.py,sha256=z5X_lxKa9qL4KFDVeai-FmsewU3KLgVHO8y-gHLiVts,424
-django/template/base.py,sha256=3HjabVBW7fA5IhOrqHFZAMvaKHg67Md1e3tzHXI2hRg,40344
-django/template/context.py,sha256=67y6QyhjnwxKx37h4vORKBSNao1tYAf95LhXszZ4O10,9004
-django/template/context_processors.py,sha256=PMIuGUE1iljf5L8oXggIdvvFOhCLJpASdwd39BMdjBE,2480
-django/template/defaultfilters.py,sha256=s28jBp4_SVbnf6uPt2Q7ftt5pbGX_O_RVP6Oh-654eE,27674
-django/template/defaulttags.py,sha256=mgLeENndoSN-AQ-u5t-rC91C0fV_biVgU7Dm0OPyc00,48461
-django/template/engine.py,sha256=c4ZINgREkvys2WDKNVkuZqZKG4t1Qu02tUTnLx0WA54,7733
-django/template/exceptions.py,sha256=rqG3_qZq31tUHbmtZD-MIu0StChqwaFejFFpR4u7th4,1342
-django/template/library.py,sha256=2g2HaF2qvR3tSfzVNWeClOAv4gJ8UfvI5f43uvtCB4w,13340
-django/template/loader.py,sha256=PVFUUtC5WgiRVVTilhQ6NFZnvjly6sP9s7anFmMoKdo,2054
-django/template/loader_tags.py,sha256=blVie4GNs8kGY_kh-1TLaoilIGGUJ5vc_Spcum0athA,13103
-django/template/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/template/loaders/__pycache__/__init__.cpython-310.pyc,,
-django/template/loaders/__pycache__/app_directories.cpython-310.pyc,,
-django/template/loaders/__pycache__/base.cpython-310.pyc,,
-django/template/loaders/__pycache__/cached.cpython-310.pyc,,
-django/template/loaders/__pycache__/filesystem.cpython-310.pyc,,
-django/template/loaders/__pycache__/locmem.cpython-310.pyc,,
-django/template/loaders/app_directories.py,sha256=sQpVXKYpnKr9Rl1YStNca-bGIQHcOkSnmm1l2qRGFVE,312
-django/template/loaders/base.py,sha256=Y5V4g0ly9GuNe7BQxaJSMENJnvxzXJm7XhSTxzfFM0s,1636
-django/template/loaders/cached.py,sha256=bDwkWYPgbvprU_u9f9w9oNYpSW_j9b7so_mlKzp9-N4,3716
-django/template/loaders/filesystem.py,sha256=f4silD7WWhv3K9QySMgW7dlGGNwwYAcHCMSTFpwiiXY,1506
-django/template/loaders/locmem.py,sha256=t9p0GYF2VHf4XG6Gggp0KBmHkdIuSKuLdiVXMVb2iHs,672
-django/template/response.py,sha256=UAU-aM7mn6cbGOIJuurn4EE5ITdcAqSFgKD5RXFms4w,5584
-django/template/smartif.py,sha256=eTzcnzPBdbkoiP8j9q_sa_47SoLLMqYdLKC3z0TbjpA,6407
-django/template/utils.py,sha256=c9cJRfmBXs-41xa8KkZiLkeqUAbd-8elKc_7WdnI3G0,3626
-django/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/templatetags/__pycache__/__init__.cpython-310.pyc,,
-django/templatetags/__pycache__/cache.cpython-310.pyc,,
-django/templatetags/__pycache__/i18n.cpython-310.pyc,,
-django/templatetags/__pycache__/l10n.cpython-310.pyc,,
-django/templatetags/__pycache__/static.cpython-310.pyc,,
-django/templatetags/__pycache__/tz.cpython-310.pyc,,
-django/templatetags/cache.py,sha256=OpiR0FQBsJC9p73aEcXQQamSySR2hwIx2wEiuD925pg,3545
-django/templatetags/i18n.py,sha256=Sym7Brxit6BWTOolHu4DV3R2mwv64Q9rJackHKLcT5g,19945
-django/templatetags/l10n.py,sha256=F6pnC2_7xNCKfNi0mcfzYQY8pzrQ9enK7_6-ZWzRu3A,1723
-django/templatetags/static.py,sha256=W4Rqt3DN_YtXe6EoqO-GLy7WR7xd7z0JsoX-VT0vvjc,4730
-django/templatetags/tz.py,sha256=sjPsTsOy7ndIirXowxNVno8GSNii0lC0L9u8xQfrZ_U,6095
-django/test/__init__.py,sha256=X12C98lKN5JW1-wms7B6OaMTo-Li90waQpjfJE1V3AE,834
-django/test/__pycache__/__init__.cpython-310.pyc,,
-django/test/__pycache__/client.cpython-310.pyc,,
-django/test/__pycache__/html.cpython-310.pyc,,
-django/test/__pycache__/runner.cpython-310.pyc,,
-django/test/__pycache__/selenium.cpython-310.pyc,,
-django/test/__pycache__/signals.cpython-310.pyc,,
-django/test/__pycache__/testcases.cpython-310.pyc,,
-django/test/__pycache__/utils.cpython-310.pyc,,
-django/test/client.py,sha256=wmyDbflf4-5s7bNVqeri4pRPd1AyIPP6B0RS2f7t-eI,39126
-django/test/html.py,sha256=L4Af_qk1ukVoXnW9ffkTEg4K-JvdHEZ5mixNRXzSDN8,9209
-django/test/runner.py,sha256=KaYN5K0ANMxCiqZ9g7FE9BC2hCgqTuM0HfSwBnC-qm8,41708
-django/test/selenium.py,sha256=0JPzph8lyk1i9taDCgsOvLhkxSh-jR-gvM4pPhdTGzc,5129
-django/test/signals.py,sha256=_fr9RYJ5pS3jeHAE3Gt7G3aE7LetiD63698xQWDV3Tw,6848
-django/test/testcases.py,sha256=7mFy0CFFrPv9TpsodzTuKGyO8T10SCm8dyfqjcEIlQw,69230
-django/test/utils.py,sha256=DVsPcFArAu7_mLLITBrM07NXViFQd_f1Alz3ZF3QgFM,32871
-django/urls/__init__.py,sha256=BHyBIOD3E4_3Ng27SpXnRmqO3IzUqvBLCE4TTfs4wNs,1079
-django/urls/__pycache__/__init__.cpython-310.pyc,,
-django/urls/__pycache__/base.cpython-310.pyc,,
-django/urls/__pycache__/conf.cpython-310.pyc,,
-django/urls/__pycache__/converters.cpython-310.pyc,,
-django/urls/__pycache__/exceptions.cpython-310.pyc,,
-django/urls/__pycache__/resolvers.cpython-310.pyc,,
-django/urls/__pycache__/utils.cpython-310.pyc,,
-django/urls/base.py,sha256=0YT_x7hYBKkYV_1RXetdP6gFQKxQci5_bLHoowWPKQA,5703
-django/urls/conf.py,sha256=uP_G78p31DejLa638fnOysaYwxWJETK5FDpJ6T9klj4,3425
-django/urls/converters.py,sha256=fVO-I8vTHL0H25GyElAYQWwSZtPMMNa9mJ1W-ZQrHyg,1216
-django/urls/exceptions.py,sha256=alLNjkORtAxneC00g4qnRpG5wouOHvJvGbymdpKtG_I,115
-django/urls/resolvers.py,sha256=iaGUMt7PpbJOzylpqEu2x7naxx7pTTI_DyGDDtmiAp4,30743
-django/urls/utils.py,sha256=MSSGo9sAlnsDG3fDt2zayhXwYMCL4qtBzVjQv8BwemA,2197
-django/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/utils/__pycache__/__init__.cpython-310.pyc,,
-django/utils/__pycache__/_os.cpython-310.pyc,,
-django/utils/__pycache__/archive.cpython-310.pyc,,
-django/utils/__pycache__/asyncio.cpython-310.pyc,,
-django/utils/__pycache__/autoreload.cpython-310.pyc,,
-django/utils/__pycache__/baseconv.cpython-310.pyc,,
-django/utils/__pycache__/cache.cpython-310.pyc,,
-django/utils/__pycache__/connection.cpython-310.pyc,,
-django/utils/__pycache__/crypto.cpython-310.pyc,,
-django/utils/__pycache__/datastructures.cpython-310.pyc,,
-django/utils/__pycache__/dateformat.cpython-310.pyc,,
-django/utils/__pycache__/dateparse.cpython-310.pyc,,
-django/utils/__pycache__/dates.cpython-310.pyc,,
-django/utils/__pycache__/datetime_safe.cpython-310.pyc,,
-django/utils/__pycache__/deconstruct.cpython-310.pyc,,
-django/utils/__pycache__/decorators.cpython-310.pyc,,
-django/utils/__pycache__/deprecation.cpython-310.pyc,,
-django/utils/__pycache__/duration.cpython-310.pyc,,
-django/utils/__pycache__/encoding.cpython-310.pyc,,
-django/utils/__pycache__/feedgenerator.cpython-310.pyc,,
-django/utils/__pycache__/formats.cpython-310.pyc,,
-django/utils/__pycache__/functional.cpython-310.pyc,,
-django/utils/__pycache__/hashable.cpython-310.pyc,,
-django/utils/__pycache__/html.cpython-310.pyc,,
-django/utils/__pycache__/http.cpython-310.pyc,,
-django/utils/__pycache__/inspect.cpython-310.pyc,,
-django/utils/__pycache__/ipv6.cpython-310.pyc,,
-django/utils/__pycache__/itercompat.cpython-310.pyc,,
-django/utils/__pycache__/jslex.cpython-310.pyc,,
-django/utils/__pycache__/log.cpython-310.pyc,,
-django/utils/__pycache__/lorem_ipsum.cpython-310.pyc,,
-django/utils/__pycache__/module_loading.cpython-310.pyc,,
-django/utils/__pycache__/numberformat.cpython-310.pyc,,
-django/utils/__pycache__/regex_helper.cpython-310.pyc,,
-django/utils/__pycache__/safestring.cpython-310.pyc,,
-django/utils/__pycache__/termcolors.cpython-310.pyc,,
-django/utils/__pycache__/text.cpython-310.pyc,,
-django/utils/__pycache__/timesince.cpython-310.pyc,,
-django/utils/__pycache__/timezone.cpython-310.pyc,,
-django/utils/__pycache__/topological_sort.cpython-310.pyc,,
-django/utils/__pycache__/tree.cpython-310.pyc,,
-django/utils/__pycache__/version.cpython-310.pyc,,
-django/utils/__pycache__/xmlutils.cpython-310.pyc,,
-django/utils/_os.py,sha256=-_6vh_w0-c2wMUXveE45hj-QHf2HCq5KuWGUkX4_FvI,2310
-django/utils/archive.py,sha256=JExZfmiqSixQ_ujY7UM6sNShVpO5CsF-0hH2qyt44Eo,8086
-django/utils/asyncio.py,sha256=0glOg3eGmms-gUv04ZgDvZt19IZbdPBC64PnaKqeGDc,1138
-django/utils/autoreload.py,sha256=rAgqg6hg66wsOKkC8pPoj5Zb8GqBz5a7Sp5r1uy0_RM,24862
-django/utils/baseconv.py,sha256=mnIn3_P2jqb8ytiFOiaCjrTFFujeNFT0EkympSmt7Ck,3268
-django/utils/cache.py,sha256=DlG31HdM9NUNaAZyy5nhaQebyYW-GKqufiZXPgkq0lc,16561
-django/utils/connection.py,sha256=2kqA6M_EObbZg6QKMXhX6p4YXG9RiPTUHwwN3mumhDY,2554
-django/utils/crypto.py,sha256=iF4x5Uad3sSVkfKSK-vzjDGFojrh3E6yoPK02tnjleo,3275
-django/utils/datastructures.py,sha256=ud8qmQXpo1Bfv5G4FX8JRGqPb1gLinJYuWvrA1gdJhE,10286
-django/utils/dateformat.py,sha256=zobxAkSA6T4JIJkf90BHKIFE8hwZmDqV6PtC-vYob4o,10258
-django/utils/dateparse.py,sha256=2lBci1DO1vWzXh0Wi9yShj6rD9pgh7UPsNgzvwFhyuI,5363
-django/utils/dates.py,sha256=zHUHeOkxuo53rTvHG3dWMLRfVyfaMLBIt5xmA4E_Ids,2179
-django/utils/datetime_safe.py,sha256=KG5hS-S4NCeZ0IAwLd30gvsOe28rHgN0TbXEe9t3jVw,3106
-django/utils/deconstruct.py,sha256=RaeX2YTce1I9XJsQ0_FqYTcudPM5xu_--M1tAZm7LOA,2078
-django/utils/decorators.py,sha256=xa6p2egupMJYpcXVFrteTAHT9DiatGm-zGFoQ2nxUOs,6939
-django/utils/deprecation.py,sha256=xGH0mrDAg4uS0jQbvDaGiwzcX3yBvpM7cu_woQfnwxo,5227
-django/utils/duration.py,sha256=8JFvrrlyMGUUcVqN-7_TR_wi388rZYWsBoqeZZtpUbQ,1248
-django/utils/encoding.py,sha256=xpOiY11Gpggd_MImqLwMFolO4gw3qvS5CFVAM7FCcwg,8791
-django/utils/feedgenerator.py,sha256=ORkZCUa8aazivb_qW8XhtKpRtM36BmMtyK6Eqp_uqqc,15635
-django/utils/formats.py,sha256=wT_lB1_OaXkUEyLy6avm5DBK04GLlm2HVqivnWcIdGM,10544
-django/utils/functional.py,sha256=x0q0YYkKLX3mOKeGM9VVGZF5DClDK5l9ITEgNifPYQ4,15162
-django/utils/hashable.py,sha256=kFbHnVOA4g-rTFI_1oHeNGA0ZEzAlY0vOeGTAeqxz7E,740
-django/utils/html.py,sha256=RamfSIgZnmSagIMYG-piC88J2yvT8dd8gkF6ASt3-RI,14218
-django/utils/http.py,sha256=1hKviYPDJly3wyNbV2r-tzvEooP8A1zuJxBhSCmw_qk,13715
-django/utils/inspect.py,sha256=lhDEOtmSLEub5Jj__MIgW3AyWOEVkaA6doJKKwBhZ6A,2235
-django/utils/ipv6.py,sha256=laDOQe_r4W-oVKLOgQ4aAJxs37n8P3LkH-eeIchJqh4,1333
-django/utils/itercompat.py,sha256=lacIDjczhxbwG4ON_KfG1H6VNPOGOpbRhnVhbedo2CY,184
-django/utils/jslex.py,sha256=cha8xFT5cQ0OMhKMsdsIq1THDndmKUNYNNieQ8BNa9E,8048
-django/utils/log.py,sha256=qkGXBz4zCVkfOUy-3ciMNOAf53Z94LyAeYxlyD3ykE8,7952
-django/utils/lorem_ipsum.py,sha256=yUtBgKhshftIpPg04pc1IrLpOBydZIf7g0isFCIJZqk,5473
-django/utils/module_loading.py,sha256=-a7qOb5rpp-Lw_51vyIPSdb7R40B16Er1Zc1C_a6ibY,3820
-django/utils/numberformat.py,sha256=99DahMpI94hgBALt00-VGaN9NMYjJfb4WHcU9tnewSQ,3733
-django/utils/regex_helper.py,sha256=gv0YfkofciCI4iptv_6GEwyLyVZg1_HFaNRwn3DuH4c,12771
-django/utils/safestring.py,sha256=bcy4XFsqns4_FUBEOfWchVADwzDAHrwK0lk4oG7fAqA,1876
-django/utils/termcolors.py,sha256=vvQbUH7GsFofGRSiKQwx4YvgE4yZMtAGRVz9QPDfisA,7386
-django/utils/text.py,sha256=kLvqe_Ndz1bqq2cLfnznVwRJQFcWl1RY_wAnlVO516w,13686
-django/utils/timesince.py,sha256=XbkMzThZYjWPC3wf4X-yObbt7dIeCkUAsY3LVeUdtbs,3636
-django/utils/timezone.py,sha256=w3QWTAKHboHIrJpHEizAOyhPGcYljZntOV_k0MX2Uuc,10100
-django/utils/topological_sort.py,sha256=W_xR8enn8cY6W4oM8M2TnoidbbiYZbThfdI6UMI4-gc,1287
-django/utils/translation/__init__.py,sha256=BWLfGwW57kXwWOGpYsp6oIzUvOlPDxr8zk7ho2ZVlno,8889
-django/utils/translation/__pycache__/__init__.cpython-310.pyc,,
-django/utils/translation/__pycache__/reloader.cpython-310.pyc,,
-django/utils/translation/__pycache__/template.cpython-310.pyc,,
-django/utils/translation/__pycache__/trans_null.cpython-310.pyc,,
-django/utils/translation/__pycache__/trans_real.cpython-310.pyc,,
-django/utils/translation/reloader.py,sha256=oVM0xenn3fraUomMEFucvwlbr5UGYUijWnUn6FL55Zc,1114
-django/utils/translation/template.py,sha256=TOfPNT62RnUbUG64a_6d_VQ7tsDC1_F1TCopw_HwlcA,10549
-django/utils/translation/trans_null.py,sha256=niy_g1nztS2bPsINqK7_g0HcpI_w6hL-c8_hqpC7U7s,1287
-django/utils/translation/trans_real.py,sha256=RKL6exYoD_xl57KHrrQ1MM9lN7x0iUZSRIetsaKwwms,20348
-django/utils/tree.py,sha256=iST3UIX4Hobmlo3YxQETWMPij7l_wsZqVoeOHnyychs,4558
-django/utils/version.py,sha256=V3ff3SC9FUonZr8novYRPnKo8cdM9CdfBqPeymXNMhI,3592
-django/utils/xmlutils.py,sha256=LsggeI4vhln3An_YXNBk2cCwKLQgMe-O_3L--j3o3GM,1172
-django/views/__init__.py,sha256=GIq6CKUBCbGpQVyK4xIoaAUDPrmRvbBPSX_KSHk0Bb4,63
-django/views/__pycache__/__init__.cpython-310.pyc,,
-django/views/__pycache__/csrf.cpython-310.pyc,,
-django/views/__pycache__/debug.cpython-310.pyc,,
-django/views/__pycache__/defaults.cpython-310.pyc,,
-django/views/__pycache__/i18n.cpython-310.pyc,,
-django/views/__pycache__/static.cpython-310.pyc,,
-django/views/csrf.py,sha256=8brhoog4O9MiOnXk_v79uiiHENwD0TwTvQzyXexl874,6306
-django/views/debug.py,sha256=D-BpQ5_fvj7C4tgaTWYYlZyLjzl9gKBH_RBFyk_ZVCU,23364
-django/views/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-django/views/decorators/__pycache__/__init__.cpython-310.pyc,,
-django/views/decorators/__pycache__/cache.cpython-310.pyc,,
-django/views/decorators/__pycache__/clickjacking.cpython-310.pyc,,
-django/views/decorators/__pycache__/common.cpython-310.pyc,,
-django/views/decorators/__pycache__/csrf.cpython-310.pyc,,
-django/views/decorators/__pycache__/debug.cpython-310.pyc,,
-django/views/decorators/__pycache__/gzip.cpython-310.pyc,,
-django/views/decorators/__pycache__/http.cpython-310.pyc,,
-django/views/decorators/__pycache__/vary.cpython-310.pyc,,
-django/views/decorators/cache.py,sha256=MWG5wGtCAW2Onb-jSNxEiGbAeXlX4j_sX1ILuEOa6HU,2340
-django/views/decorators/clickjacking.py,sha256=RuN4sYDOQyvqVMuhG2VzKLpiYJbLSJrzP4uaUrMLQfw,1571
-django/views/decorators/common.py,sha256=EC0OmNVMZdoKb5nXPWiOfQxOU9lCph_ZDwcWw9bMlmg,489
-django/views/decorators/csrf.py,sha256=sz46dXdnsUdVJbRdoMa7bwaRJUQ0_CSGbgrMdBskH8I,2074
-django/views/decorators/debug.py,sha256=MXGthVNjdh8wzX7BepHN6SEniWhziU2tHMRJs7ijjdU,3150
-django/views/decorators/gzip.py,sha256=PtpSGd8BePa1utGqvKMFzpLtZJxpV2_Jej8llw5bCJY,253
-django/views/decorators/http.py,sha256=KfijhsLVYXnAl3yDCaJclihMcX3T4HS58e8gV1Bq8sE,4931
-django/views/decorators/vary.py,sha256=VcBaCDOEjy1CrIy0LnCt2cJdJRnqXgn3B43zmzKuZ80,1089
-django/views/defaults.py,sha256=-oUH6srPROqcKKG202eR-67HC7s8x8LyTFdk5Z68twU,4668
-django/views/generic/__init__.py,sha256=VwQKUbBFJktiq5J2fo3qRNzRc0STfcMRPChlLPYAkkE,886
-django/views/generic/__pycache__/__init__.cpython-310.pyc,,
-django/views/generic/__pycache__/base.cpython-310.pyc,,
-django/views/generic/__pycache__/dates.cpython-310.pyc,,
-django/views/generic/__pycache__/detail.cpython-310.pyc,,
-django/views/generic/__pycache__/edit.cpython-310.pyc,,
-django/views/generic/__pycache__/list.cpython-310.pyc,,
-django/views/generic/base.py,sha256=5taujzIpUqEgRM-SUze_zt94zaNzRleYeB2cLadCnMM,9095
-django/views/generic/dates.py,sha256=xwSEF6zsaSl1jUTePs6NPihnOJEWT-j8SST0RG4bco0,26332
-django/views/generic/detail.py,sha256=zrAuhJxrFvNqJLnlvK-NSiRiiONsKKOYFantD7UztwU,6663
-django/views/generic/edit.py,sha256=Gq0E2HTi9KZuIDJHC24tB4VQVRL0qLswqfyA9gRJ210,9747
-django/views/generic/list.py,sha256=KWsT5UOK5jflxn5JFoJCnyJEQXa0fM4talHswzEjzXU,7941
-django/views/i18n.py,sha256=L54knZenhRK1sLXvjDLxI7jjwqYlW-gC8FSE0FsdXJI,11466
-django/views/static.py,sha256=U7QLmzVwW3oiY_lrqW_kGcUVB2ZKYq5nq0Ij-K0w8Q8,4318
-django/views/templates/default_urlconf.html,sha256=PErsyemtTEmbEjM0ceduzvS_8iGD-skzTGIDXiH2MCc,11134
-django/views/templates/technical_404.html,sha256=dJEOimEguJg6g4IhdRPG5HmdMy8D30U-lNI8wC8wwQs,2706
-django/views/templates/technical_500.html,sha256=WDNi1wOh2K7PhQs7kwX86ndDoHzsyekBm1xsUMF42YE,17604
-django/views/templates/technical_500.txt,sha256=sioEO7ZLn_241kxmP70WVr0VLWjaxHLms5jJmzCSLkI,3650
diff --git a/venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5276d234..00000000
Binary files a/venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc b/venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc
deleted file mode 100644
index 74700b7f..00000000
Binary files a/venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/asgiref/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/asgiref/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index cd797544..00000000
Binary files a/venv/Lib/site-packages/asgiref/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/asgiref/__pycache__/sync.cpython-310.pyc b/venv/Lib/site-packages/asgiref/__pycache__/sync.cpython-310.pyc
deleted file mode 100644
index bd7c2a63..00000000
Binary files a/venv/Lib/site-packages/asgiref/__pycache__/sync.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/asgiref/__pycache__/testing.cpython-310.pyc b/venv/Lib/site-packages/asgiref/__pycache__/testing.cpython-310.pyc
deleted file mode 100644
index 35c92724..00000000
Binary files a/venv/Lib/site-packages/asgiref/__pycache__/testing.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/asgiref/__pycache__/timeout.cpython-310.pyc b/venv/Lib/site-packages/asgiref/__pycache__/timeout.cpython-310.pyc
deleted file mode 100644
index 4108cf57..00000000
Binary files a/venv/Lib/site-packages/asgiref/__pycache__/timeout.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/asgiref/__pycache__/wsgi.cpython-310.pyc b/venv/Lib/site-packages/asgiref/__pycache__/wsgi.cpython-310.pyc
deleted file mode 100644
index 239382b1..00000000
Binary files a/venv/Lib/site-packages/asgiref/__pycache__/wsgi.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c78259a2..00000000
Binary files a/venv/Lib/site-packages/django/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/__pycache__/__main__.cpython-310.pyc b/venv/Lib/site-packages/django/__pycache__/__main__.cpython-310.pyc
deleted file mode 100644
index 63088287..00000000
Binary files a/venv/Lib/site-packages/django/__pycache__/__main__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/__pycache__/shortcuts.cpython-310.pyc b/venv/Lib/site-packages/django/__pycache__/shortcuts.cpython-310.pyc
deleted file mode 100644
index ffa78097..00000000
Binary files a/venv/Lib/site-packages/django/__pycache__/shortcuts.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/apps/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/apps/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0b5e36b9..00000000
Binary files a/venv/Lib/site-packages/django/apps/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/apps/__pycache__/config.cpython-310.pyc b/venv/Lib/site-packages/django/apps/__pycache__/config.cpython-310.pyc
deleted file mode 100644
index dc92f95b..00000000
Binary files a/venv/Lib/site-packages/django/apps/__pycache__/config.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/apps/__pycache__/registry.cpython-310.pyc b/venv/Lib/site-packages/django/apps/__pycache__/registry.cpython-310.pyc
deleted file mode 100644
index 257357c2..00000000
Binary files a/venv/Lib/site-packages/django/apps/__pycache__/registry.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index a2392fa5..00000000
Binary files a/venv/Lib/site-packages/django/conf/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d3338877..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 76f63804..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ar/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ar/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 3cf50687..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ar/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d9ed440a..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index d20778d7..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f2e2be08..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/az/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/az/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 845b188e..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/az/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 389a4554..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/bg/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/bg/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index c1d44cac..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/bg/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 19e46be1..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/bn/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/bn/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 1b17b914..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/bn/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5b480cf5..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/bs/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/bs/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 9c68bf1d..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/bs/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b2bad09e..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ca/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ca/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 8d16083a..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ca/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index fd5715d3..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/cs/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/cs/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 75c98591..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/cs/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d9e185ee..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/cy/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/cy/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index bd0b38ca..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/cy/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 398c8946..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/da/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/da/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 47fdb7f9..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/da/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0360b84d..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/de/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/de/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 3a56131a..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/de/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 48ff22c3..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/de_CH/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/de_CH/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 46fac24c..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/de_CH/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index fcd5191e..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/el/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/el/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 0bcc53b0..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/el/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 40ae1e0e..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/en/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/en/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 2a703789..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/en/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 80cc8835..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/en_AU/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/en_AU/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index a53af033..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/en_AU/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index a0c1ae66..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/en_GB/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/en_GB/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index cfc6eaf2..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/en_GB/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 734f3a24..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/eo/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/eo/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 40e22020..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/eo/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index a2180a2f..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 802a8ebd..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index be474f86..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index d6e5ad10..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 955e5a52..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index c1a5069a..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e774637a..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 9c611f15..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b1e0b2d9..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 3a42695e..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_PR/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es_PR/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1c47640e..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es_PR/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 6e888b73..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 7b820a7f..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/et/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/et/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index ba9589c1..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/et/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5e7c56da..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/eu/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/eu/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index e700ae17..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/eu/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 12a88319..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fa/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/fa/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index bfea9f39..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/fa/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 20c47481..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fi/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/fi/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 0e59aebf..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/fi/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 376b8470..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fr/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/fr/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 6154545a..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/fr/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 7ae6b253..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/fy/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/fy/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index c280cff2..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/fy/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index fc4c58e8..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ga/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ga/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 0924e917..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ga/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 12206b30..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/gd/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/gd/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index fcf1008d..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/gd/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0d4dbfff..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/gl/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/gl/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 1127e5e2..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/gl/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0bdf3863..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/he/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/he/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 6361a6fa..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/he/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 7ab4e032..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/hi/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/hi/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 67aeb808..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/hi/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0d81ae72..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/hr/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/hr/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 64659c2f..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/hr/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2ea97d65..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/hu/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/hu/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 83a5d2b8..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/hu/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 740becf5..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/id/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/id/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 96729169..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/id/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9a6cb739..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ig/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ig/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index a0e7b3b8..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ig/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e14fc08f..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/is/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/is/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index cca53108..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/is/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9fd2f2c1..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/it/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/it/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 285ce153..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/it/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d17d3439..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ja/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ja/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 49c52782..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ja/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 476fb3a1..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index d5106a2b..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index a94fb61a..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/km/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/km/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 1d86d734..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/km/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 3bc159a2..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/kn/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/kn/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 76514f6a..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/kn/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 48178488..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ko/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ko/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 425ca5aa..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ko/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 4fd0962e..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ky/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ky/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index f24de6e6..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ky/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e97119d3..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/lt/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/lt/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 43260da8..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/lt/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 3c47b5aa..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/lv/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/lv/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 33417ef0..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/lv/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 78e2f85f..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/mk/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/mk/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 6f8fc0f7..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/mk/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 11253419..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ml/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ml/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 61716aaa..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ml/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 4148579f..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 661a8699..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ae2d92ad..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 2d34b8ac..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c08a8cdc..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/nb/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/nb/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index f9641701..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/nb/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 194cada4..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/nl/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/nl/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 98f85517..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/nl/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f7a53ce1..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/nn/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/nn/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 3a5606f1..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/nn/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d286f1fe..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 5b77db0e..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 69adae11..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/pt/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/pt/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index d3ac68b8..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/pt/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 7725ab6c..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 6b5ee2e4..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 410ce208..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ro/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ro/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 1eccd564..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ro/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 6438b819..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ru/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ru/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index a56ed024..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ru/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 47100e8e..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index c549bfa9..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e30cea53..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sl/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sl/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index dd90e693..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sl/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 12abbb8b..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sq/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sq/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 2f041382..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sq/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index da568959..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sr/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sr/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 0debf29e..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sr/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 76e8a9e7..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 941bc875..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0c19f980..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/sv/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/sv/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index e77e7e25..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/sv/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ee8a9867..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/ta/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/ta/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index b5db23b8..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/ta/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9c32f8dc..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/te/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/te/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 7b91d341..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/te/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 7655b7f9..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/tg/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/tg/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index d765e3ca..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/tg/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b9a7c055..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/th/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/th/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index a6539e4c..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/th/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index bda04907..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/tk/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/tk/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 0cd98b4b..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/tk/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 389836d5..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/tr/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/tr/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 1f1be922..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/tr/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d1b843da..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/uk/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/uk/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 63e831a3..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/uk/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9d2e16f7..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/uz/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/uz/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 8c43fdbf..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/uz/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 03fdc2b1..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/vi/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/vi/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 8b3abcba..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/vi/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 40350b05..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index acccaa45..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 4cb82506..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 1f8f55a8..00000000
Binary files a/venv/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/urls/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/conf/urls/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 7b0b1743..00000000
Binary files a/venv/Lib/site-packages/django/conf/urls/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/urls/__pycache__/i18n.cpython-310.pyc b/venv/Lib/site-packages/django/conf/urls/__pycache__/i18n.cpython-310.pyc
deleted file mode 100644
index e1edbfe0..00000000
Binary files a/venv/Lib/site-packages/django/conf/urls/__pycache__/i18n.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/conf/urls/__pycache__/static.cpython-310.pyc b/venv/Lib/site-packages/django/conf/urls/__pycache__/static.cpython-310.pyc
deleted file mode 100644
index 66b904bc..00000000
Binary files a/venv/Lib/site-packages/django/conf/urls/__pycache__/static.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ed2a82c1..00000000
Binary files a/venv/Lib/site-packages/django/contrib/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index edd5bfb8..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/actions.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/actions.cpython-310.pyc
deleted file mode 100644
index ed39c49d..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/actions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index 26c41b7c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/checks.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/checks.cpython-310.pyc
deleted file mode 100644
index bc6e7f3d..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/checks.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/decorators.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/decorators.cpython-310.pyc
deleted file mode 100644
index 8a2b4306..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/decorators.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index ef7ea9b9..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/forms.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/forms.cpython-310.pyc
deleted file mode 100644
index 96922e20..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/forms.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/helpers.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/helpers.cpython-310.pyc
deleted file mode 100644
index 54c0d8b7..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/helpers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 3b0a67a6..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/options.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/options.cpython-310.pyc
deleted file mode 100644
index b337149a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/options.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/tests.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/tests.cpython-310.pyc
deleted file mode 100644
index c842da92..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/tests.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index d1caca15..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/__pycache__/widgets.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/__pycache__/widgets.cpython-310.pyc
deleted file mode 100644
index 1bf00a91..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/__pycache__/widgets.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0001_initial.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0001_initial.cpython-310.pyc
deleted file mode 100644
index e9d8f4b1..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0001_initial.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-310.pyc
deleted file mode 100644
index b0fc2277..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-310.pyc
deleted file mode 100644
index 2db1e14f..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b206e476..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/migrations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0316054b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-310.pyc
deleted file mode 100644
index ff2e6263..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index f5e17e1a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/log.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/log.cpython-310.pyc
deleted file mode 100644
index bf899366..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/log.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 61b7e939..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/decorators.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/decorators.cpython-310.pyc
deleted file mode 100644
index 5c65d17f..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/decorators.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/main.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/main.cpython-310.pyc
deleted file mode 100644
index 548e0071..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admin/views/__pycache__/main.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f087497f..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index 12532c43..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/middleware.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/middleware.cpython-310.pyc
deleted file mode 100644
index aeedf404..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/middleware.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/urls.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/urls.cpython-310.pyc
deleted file mode 100644
index fa058c98..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/urls.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 830dda3a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/views.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/views.cpython-310.pyc
deleted file mode 100644
index a99b9f5c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/admindocs/__pycache__/views.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 03ea336b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/admin.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/admin.cpython-310.pyc
deleted file mode 100644
index b571e621..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/admin.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index 2d3841a8..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/checks.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/checks.cpython-310.pyc
deleted file mode 100644
index 41776919..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/checks.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/context_processors.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/context_processors.cpython-310.pyc
deleted file mode 100644
index 9f8d78b6..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/context_processors.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/decorators.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/decorators.cpython-310.pyc
deleted file mode 100644
index 9ac9d528..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/decorators.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/forms.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/forms.cpython-310.pyc
deleted file mode 100644
index 50a7a1c3..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/forms.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/middleware.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/middleware.cpython-310.pyc
deleted file mode 100644
index c3a3bd08..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/middleware.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/mixins.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/mixins.cpython-310.pyc
deleted file mode 100644
index b697123c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/mixins.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 4feb47a5..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/signals.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/signals.cpython-310.pyc
deleted file mode 100644
index 77c340fb..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/signals.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/tokens.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/tokens.cpython-310.pyc
deleted file mode 100644
index c3b8cb46..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/tokens.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/urls.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/urls.cpython-310.pyc
deleted file mode 100644
index 0d970609..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/urls.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/validators.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/validators.cpython-310.pyc
deleted file mode 100644
index b8e39992..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/validators.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/__pycache__/views.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/__pycache__/views.cpython-310.pyc
deleted file mode 100644
index 9d31ce14..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/__pycache__/views.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/handlers/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/handlers/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 7182e39d..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/handlers/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/management/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/management/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b68d5584..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/management/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5388f2d3..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0001_initial.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0001_initial.cpython-310.pyc
deleted file mode 100644
index 639f6059..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0001_initial.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-310.pyc
deleted file mode 100644
index f2e17457..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-310.pyc
deleted file mode 100644
index 16e942d1..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-310.pyc
deleted file mode 100644
index 14a0e256..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-310.pyc
deleted file mode 100644
index 6c146e74..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-310.pyc
deleted file mode 100644
index ac78d8bf..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-310.pyc
deleted file mode 100644
index db4ec2e2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-310.pyc
deleted file mode 100644
index 89bdffd7..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-310.pyc
deleted file mode 100644
index 83544530..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-310.pyc
deleted file mode 100644
index 744232fb..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-310.pyc
deleted file mode 100644
index a2b15abd..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5e197b72..00000000
Binary files a/venv/Lib/site-packages/django/contrib/auth/migrations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 03d9eff9..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/admin.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/admin.cpython-310.pyc
deleted file mode 100644
index ce4ab495..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/admin.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index 9f8d4c1c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/checks.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/checks.cpython-310.pyc
deleted file mode 100644
index ec7abc1c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/checks.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/fields.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/fields.cpython-310.pyc
deleted file mode 100644
index c5e9995b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/fields.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/forms.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/forms.cpython-310.pyc
deleted file mode 100644
index 3a906f00..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/forms.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 3810fd1d..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/views.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/views.cpython-310.pyc
deleted file mode 100644
index b7174a34..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/__pycache__/views.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/management/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/management/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2e47ddb2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/management/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 56e77cd4..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-310.pyc
deleted file mode 100644
index 0cad3b3c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 35ec6f08..00000000
Binary files a/venv/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index a347ee1d..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/admin.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/admin.cpython-310.pyc
deleted file mode 100644
index 545e779b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/admin.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index dd3bbcce..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/forms.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/forms.cpython-310.pyc
deleted file mode 100644
index 0225b2fa..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/forms.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/middleware.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/middleware.cpython-310.pyc
deleted file mode 100644
index 71d5f983..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/middleware.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index d466c272..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/sitemaps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/sitemaps.cpython-310.pyc
deleted file mode 100644
index de0d238b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/sitemaps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/urls.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/urls.cpython-310.pyc
deleted file mode 100644
index 80dcaa26..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/urls.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/views.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/views.cpython-310.pyc
deleted file mode 100644
index 945020db..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/__pycache__/views.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-310.pyc
deleted file mode 100644
index d97a5232..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 4ab5b8d8..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 3c967e26..00000000
Binary files a/venv/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 79da52f2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index a43dd1d0..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/__pycache__/geometry.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/__pycache__/geometry.cpython-310.pyc
deleted file mode 100644
index 1f70ec3e..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/__pycache__/geometry.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/__pycache__/measure.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/__pycache__/measure.cpython-310.pyc
deleted file mode 100644
index 570f5116..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/__pycache__/measure.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/__pycache__/shortcuts.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/__pycache__/shortcuts.cpython-310.pyc
deleted file mode 100644
index 0b87227c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/__pycache__/shortcuts.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/__pycache__/views.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/__pycache__/views.cpython-310.pyc
deleted file mode 100644
index 3f04bfb7..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/__pycache__/views.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/admin/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/admin/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d3000842..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/admin/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/admin/__pycache__/options.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/admin/__pycache__/options.cpython-310.pyc
deleted file mode 100644
index 6a6a9d7c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/admin/__pycache__/options.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/admin/__pycache__/widgets.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/admin/__pycache__/widgets.cpython-310.pyc
deleted file mode 100644
index cd56e1e3..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/admin/__pycache__/widgets.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 4ef59287..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ecf83668..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index fda4ecf1..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 077b21be..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-310.pyc
deleted file mode 100644
index 32fa9cad..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index 4a998cd9..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 5b73d712..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index 755ba8e3..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b0715700..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 5a9631cb..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index 85c8c993..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-310.pyc
deleted file mode 100644
index 843e915e..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index 56f34a2b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-310.pyc
deleted file mode 100644
index 31d01293..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index dbc92039..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-310.pyc
deleted file mode 100644
index 29a67131..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index beb8eba2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index 18e3a816..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-310.pyc
deleted file mode 100644
index 99a37009..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 532e815c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index 0513cd46..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-310.pyc
deleted file mode 100644
index a68b6883..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 015efa89..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-310.pyc
deleted file mode 100644
index 703cf422..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 910fe8c3..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-310.pyc
deleted file mode 100644
index f6584c29..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index 587315c4..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-310.pyc
deleted file mode 100644
index b0d2ebca..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 345b9b25..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index f6714dc9..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-310.pyc
deleted file mode 100644
index e2063a7f..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index cf92d910..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-310.pyc
deleted file mode 100644
index aa451317..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index b2d087bf..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-310.pyc
deleted file mode 100644
index 430ba71e..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index fd6e8db4..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-310.pyc
deleted file mode 100644
index e6b25dd2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 3a5b71ed..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index dfad0779..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-310.pyc
deleted file mode 100644
index 6eec4ca5..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index fcf34cab..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/aggregates.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/aggregates.cpython-310.pyc
deleted file mode 100644
index e5093250..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/aggregates.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/fields.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/fields.cpython-310.pyc
deleted file mode 100644
index 97c7103e..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/fields.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/functions.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/functions.cpython-310.pyc
deleted file mode 100644
index fac85ad1..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/functions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/lookups.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/lookups.cpython-310.pyc
deleted file mode 100644
index 65f15035..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/lookups.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/proxy.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/proxy.cpython-310.pyc
deleted file mode 100644
index c22ab525..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/models/__pycache__/proxy.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 32d9664d..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/forms/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/forms/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 8665b08b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/forms/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/forms/__pycache__/fields.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/forms/__pycache__/fields.cpython-310.pyc
deleted file mode 100644
index bdf3f453..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/forms/__pycache__/fields.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/forms/__pycache__/widgets.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/forms/__pycache__/widgets.cpython-310.pyc
deleted file mode 100644
index 1225b0ee..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/forms/__pycache__/widgets.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2f73102e..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index f58d30a2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/error.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/error.cpython-310.pyc
deleted file mode 100644
index 6869b1cc..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/error.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/srs.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/srs.cpython-310.pyc
deleted file mode 100644
index 97119fc5..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/__pycache__/srs.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 00e5fd28..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-310.pyc
deleted file mode 100644
index 135158ae..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-310.pyc
deleted file mode 100644
index 0dff648f..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-310.pyc
deleted file mode 100644
index 0c845027..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b794627b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 67600548..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/const.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/const.cpython-310.pyc
deleted file mode 100644
index c68dbbbd..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/const.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9dc363d0..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 2d2276ef..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/resources.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/resources.cpython-310.pyc
deleted file mode 100644
index 54972dc3..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geoip2/__pycache__/resources.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ff72f2be..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 156383c4..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/coordseq.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/coordseq.cpython-310.pyc
deleted file mode 100644
index a9336324..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/coordseq.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/error.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/error.cpython-310.pyc
deleted file mode 100644
index 9eb9a477..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/error.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/factory.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/factory.cpython-310.pyc
deleted file mode 100644
index b0f3bc93..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/factory.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/geometry.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/geometry.cpython-310.pyc
deleted file mode 100644
index d226f590..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/geometry.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/io.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/io.cpython-310.pyc
deleted file mode 100644
index 4fbc76e2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/io.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/prepared.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/prepared.cpython-310.pyc
deleted file mode 100644
index 046b05b2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/__pycache__/prepared.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b469fce9..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-310.pyc
deleted file mode 100644
index 4288f2a1..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-310.pyc
deleted file mode 100644
index 4f2cd0d0..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-310.pyc
deleted file mode 100644
index 454102d3..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/io.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/io.cpython-310.pyc
deleted file mode 100644
index 6ce708f7..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/io.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-310.pyc
deleted file mode 100644
index cf7db8d2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-310.pyc
deleted file mode 100644
index 545a6440..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/management/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/management/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 90f66f2a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/management/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 78cf7a0d..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-310.pyc
deleted file mode 100644
index eb555e22..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-310.pyc
deleted file mode 100644
index 304ea95a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/serializers/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/serializers/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2c99679a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/serializers/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c408e14f..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/views.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/views.cpython-310.pyc
deleted file mode 100644
index 5657b7bd..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/views.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 99f7bb6a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinspect.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinspect.cpython-310.pyc
deleted file mode 100644
index c79d554b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinspect.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/srs.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/srs.cpython-310.pyc
deleted file mode 100644
index 0601f76b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/gis/utils/__pycache__/srs.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/humanize/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/humanize/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index a4fa87a9..00000000
Binary files a/venv/Lib/site-packages/django/contrib/humanize/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/humanize/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/humanize/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index f8196535..00000000
Binary files a/venv/Lib/site-packages/django/contrib/humanize/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f9e3579c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 465d2204..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/__pycache__/api.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/__pycache__/api.cpython-310.pyc
deleted file mode 100644
index e77eb0b2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/__pycache__/api.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index 443c7bfa..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/__pycache__/constants.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/__pycache__/constants.cpython-310.pyc
deleted file mode 100644
index ab7d7e1c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/__pycache__/constants.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/__pycache__/context_processors.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/__pycache__/context_processors.cpython-310.pyc
deleted file mode 100644
index 0fabb146..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/__pycache__/context_processors.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/__pycache__/middleware.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/__pycache__/middleware.cpython-310.pyc
deleted file mode 100644
index 8f92a186..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/__pycache__/middleware.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index c0749f46..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/__pycache__/views.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/__pycache__/views.cpython-310.pyc
deleted file mode 100644
index b030fabb..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/__pycache__/views.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 8bbed0ee..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 98f5f753..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/cookie.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/cookie.cpython-310.pyc
deleted file mode 100644
index 87d70022..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/cookie.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/fallback.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/fallback.cpython-310.pyc
deleted file mode 100644
index 81a2342a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/fallback.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/session.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/session.cpython-310.pyc
deleted file mode 100644
index 363a9016..00000000
Binary files a/venv/Lib/site-packages/django/contrib/messages/storage/__pycache__/session.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index adf0e4ca..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index 9798e1f8..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/constraints.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/constraints.cpython-310.pyc
deleted file mode 100644
index eaf091e3..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/constraints.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/expressions.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/expressions.cpython-310.pyc
deleted file mode 100644
index 9ef90f74..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/expressions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/functions.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/functions.cpython-310.pyc
deleted file mode 100644
index 0aa56190..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/functions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/indexes.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/indexes.cpython-310.pyc
deleted file mode 100644
index 11cbd157..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/indexes.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/lookups.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/lookups.cpython-310.pyc
deleted file mode 100644
index ccc5ab69..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/lookups.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index 48f1d1ef..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/search.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/search.cpython-310.pyc
deleted file mode 100644
index d31d1c64..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/search.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/serializers.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/serializers.cpython-310.pyc
deleted file mode 100644
index 18925c9a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/serializers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/signals.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/signals.cpython-310.pyc
deleted file mode 100644
index 800da0eb..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/signals.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 0acc2f6b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/validators.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/__pycache__/validators.cpython-310.pyc
deleted file mode 100644
index 2cde4f13..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/__pycache__/validators.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index cdf6a247..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/mixins.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/mixins.cpython-310.pyc
deleted file mode 100644
index bbc01eb8..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/mixins.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b786494b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/array.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/array.cpython-310.pyc
deleted file mode 100644
index becc0e15..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/array.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/citext.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/citext.cpython-310.pyc
deleted file mode 100644
index e3d6e6c0..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/citext.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/hstore.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/hstore.cpython-310.pyc
deleted file mode 100644
index 69473ac2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/hstore.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/jsonb.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/jsonb.cpython-310.pyc
deleted file mode 100644
index e5ed04d2..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/jsonb.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/ranges.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/ranges.cpython-310.pyc
deleted file mode 100644
index 3d99c703..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/ranges.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 5d423524..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/fields/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 10216dd5..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/array.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/array.cpython-310.pyc
deleted file mode 100644
index e92dc0f4..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/array.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/hstore.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/hstore.cpython-310.pyc
deleted file mode 100644
index 117b2696..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/hstore.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/ranges.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/ranges.cpython-310.pyc
deleted file mode 100644
index 39ad0af8..00000000
Binary files a/venv/Lib/site-packages/django/contrib/postgres/forms/__pycache__/ranges.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/redirects/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/redirects/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e5d51b4f..00000000
Binary files a/venv/Lib/site-packages/django/contrib/redirects/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/redirects/__pycache__/admin.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/redirects/__pycache__/admin.cpython-310.pyc
deleted file mode 100644
index 76bab463..00000000
Binary files a/venv/Lib/site-packages/django/contrib/redirects/__pycache__/admin.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/redirects/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/redirects/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index c00aa34c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/redirects/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/redirects/__pycache__/middleware.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/redirects/__pycache__/middleware.cpython-310.pyc
deleted file mode 100644
index d2d88fee..00000000
Binary files a/venv/Lib/site-packages/django/contrib/redirects/__pycache__/middleware.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/redirects/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/redirects/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 4bc13244..00000000
Binary files a/venv/Lib/site-packages/django/contrib/redirects/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-310.pyc
deleted file mode 100644
index d063e8e5..00000000
Binary files a/venv/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-310.pyc
deleted file mode 100644
index 09786c06..00000000
Binary files a/venv/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 787aa4b0..00000000
Binary files a/venv/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d97ae688..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index 0ccd6be8..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index e4e2bf55..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/middleware.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/__pycache__/middleware.cpython-310.pyc
deleted file mode 100644
index 65747bea..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/middleware.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index c31fe0e4..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/serializers.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/__pycache__/serializers.cpython-310.pyc
deleted file mode 100644
index b06fd2f7..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/__pycache__/serializers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c17e7df4..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 6ad255e5..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cache.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cache.cpython-310.pyc
deleted file mode 100644
index 1a567ccd..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cache.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/db.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/db.cpython-310.pyc
deleted file mode 100644
index 30050b00..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/backends/__pycache__/db.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/management/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/management/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ba21391a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/management/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f5639728..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-310.pyc
deleted file mode 100644
index ff75a278..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1fd7c132..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sitemaps/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c14e447b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sitemaps/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sitemaps/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index 9d68bdaf..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sitemaps/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/__pycache__/views.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sitemaps/__pycache__/views.cpython-310.pyc
deleted file mode 100644
index d4094dc0..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sitemaps/__pycache__/views.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/management/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sitemaps/management/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 85a27a08..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sitemaps/management/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 37f8681c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/ping_google.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/ping_google.cpython-310.pyc
deleted file mode 100644
index 78455172..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sitemaps/management/commands/__pycache__/ping_google.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2cda7076..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/__pycache__/admin.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/__pycache__/admin.cpython-310.pyc
deleted file mode 100644
index ba1d9041..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/__pycache__/admin.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index 3fdf88bb..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/__pycache__/checks.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/__pycache__/checks.cpython-310.pyc
deleted file mode 100644
index 7067916b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/__pycache__/checks.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/__pycache__/management.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/__pycache__/management.cpython-310.pyc
deleted file mode 100644
index 06ac1837..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/__pycache__/management.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/__pycache__/middleware.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/__pycache__/middleware.cpython-310.pyc
deleted file mode 100644
index f68e9e99..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/__pycache__/middleware.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 9dda84ac..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/__pycache__/shortcuts.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/__pycache__/shortcuts.cpython-310.pyc
deleted file mode 100644
index 42e689a6..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/__pycache__/shortcuts.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0001_initial.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0001_initial.cpython-310.pyc
deleted file mode 100644
index 75678a82..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0001_initial.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-310.pyc
deleted file mode 100644
index 3d3a2415..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/sites/migrations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/sites/migrations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 394f27d7..00000000
Binary files a/venv/Lib/site-packages/django/contrib/sites/migrations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 61ef671c..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index 12a2554e..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/checks.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/checks.cpython-310.pyc
deleted file mode 100644
index ba07eb8b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/checks.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/storage.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/storage.cpython-310.pyc
deleted file mode 100644
index 686ce17a..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/storage.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/testing.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/testing.cpython-310.pyc
deleted file mode 100644
index 08241aa8..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/testing.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/urls.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/urls.cpython-310.pyc
deleted file mode 100644
index 05878aba..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/urls.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 19d75e97..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/views.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/views.cpython-310.pyc
deleted file mode 100644
index 6a49ab4b..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/__pycache__/views.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/management/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/management/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index dbeddd89..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/management/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 61a8633f..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-310.pyc
deleted file mode 100644
index 51ef05c0..00000000
Binary files a/venv/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/syndication/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/syndication/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 59f2f8f5..00000000
Binary files a/venv/Lib/site-packages/django/contrib/syndication/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/syndication/__pycache__/apps.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/syndication/__pycache__/apps.cpython-310.pyc
deleted file mode 100644
index f6a95264..00000000
Binary files a/venv/Lib/site-packages/django/contrib/syndication/__pycache__/apps.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/contrib/syndication/__pycache__/views.cpython-310.pyc b/venv/Lib/site-packages/django/contrib/syndication/__pycache__/views.cpython-310.pyc
deleted file mode 100644
index 535c0fb8..00000000
Binary files a/venv/Lib/site-packages/django/contrib/syndication/__pycache__/views.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 719b46f0..00000000
Binary files a/venv/Lib/site-packages/django/core/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/__pycache__/asgi.cpython-310.pyc b/venv/Lib/site-packages/django/core/__pycache__/asgi.cpython-310.pyc
deleted file mode 100644
index 4f9ad01a..00000000
Binary files a/venv/Lib/site-packages/django/core/__pycache__/asgi.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/django/core/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index 47535f6d..00000000
Binary files a/venv/Lib/site-packages/django/core/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/__pycache__/signals.cpython-310.pyc b/venv/Lib/site-packages/django/core/__pycache__/signals.cpython-310.pyc
deleted file mode 100644
index d32b5d9d..00000000
Binary files a/venv/Lib/site-packages/django/core/__pycache__/signals.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/__pycache__/validators.cpython-310.pyc b/venv/Lib/site-packages/django/core/__pycache__/validators.cpython-310.pyc
deleted file mode 100644
index 51b267b5..00000000
Binary files a/venv/Lib/site-packages/django/core/__pycache__/validators.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/__pycache__/wsgi.cpython-310.pyc b/venv/Lib/site-packages/django/core/__pycache__/wsgi.cpython-310.pyc
deleted file mode 100644
index e165326b..00000000
Binary files a/venv/Lib/site-packages/django/core/__pycache__/wsgi.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/cache/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/cache/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d9f89cdb..00000000
Binary files a/venv/Lib/site-packages/django/core/cache/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/cache/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/core/cache/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 2bb4a635..00000000
Binary files a/venv/Lib/site-packages/django/core/cache/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/cache/backends/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e145c0c4..00000000
Binary files a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/core/cache/backends/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 5a156903..00000000
Binary files a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/db.cpython-310.pyc b/venv/Lib/site-packages/django/core/cache/backends/__pycache__/db.cpython-310.pyc
deleted file mode 100644
index 6bb32d23..00000000
Binary files a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/db.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/dummy.cpython-310.pyc b/venv/Lib/site-packages/django/core/cache/backends/__pycache__/dummy.cpython-310.pyc
deleted file mode 100644
index 14737bd0..00000000
Binary files a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/dummy.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/filebased.cpython-310.pyc b/venv/Lib/site-packages/django/core/cache/backends/__pycache__/filebased.cpython-310.pyc
deleted file mode 100644
index 3abc6744..00000000
Binary files a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/filebased.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/locmem.cpython-310.pyc b/venv/Lib/site-packages/django/core/cache/backends/__pycache__/locmem.cpython-310.pyc
deleted file mode 100644
index d5fe7254..00000000
Binary files a/venv/Lib/site-packages/django/core/cache/backends/__pycache__/locmem.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1ee898cd..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/async_checks.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/__pycache__/async_checks.cpython-310.pyc
deleted file mode 100644
index b5b0c2b5..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/async_checks.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/database.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/__pycache__/database.cpython-310.pyc
deleted file mode 100644
index 6870d925..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/database.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/files.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/__pycache__/files.cpython-310.pyc
deleted file mode 100644
index 3b8681bd..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/files.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/registry.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/__pycache__/registry.cpython-310.pyc
deleted file mode 100644
index e1ac3b76..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/registry.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/templates.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/__pycache__/templates.cpython-310.pyc
deleted file mode 100644
index a886a058..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/templates.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/__pycache__/urls.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/__pycache__/urls.cpython-310.pyc
deleted file mode 100644
index 81e27247..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/__pycache__/urls.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/compatibility/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/compatibility/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 75def126..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/compatibility/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/compatibility/__pycache__/django_4_0.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/compatibility/__pycache__/django_4_0.cpython-310.pyc
deleted file mode 100644
index 671676ef..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/compatibility/__pycache__/django_4_0.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/security/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/security/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2b89dfd6..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/security/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/security/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/security/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index fa692d98..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/security/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/security/__pycache__/csrf.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/security/__pycache__/csrf.cpython-310.pyc
deleted file mode 100644
index 1240ed26..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/security/__pycache__/csrf.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/checks/security/__pycache__/sessions.cpython-310.pyc b/venv/Lib/site-packages/django/core/checks/security/__pycache__/sessions.cpython-310.pyc
deleted file mode 100644
index 2657da25..00000000
Binary files a/venv/Lib/site-packages/django/core/checks/security/__pycache__/sessions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/files/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/files/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 75ba8e01..00000000
Binary files a/venv/Lib/site-packages/django/core/files/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/files/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/core/files/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 1fac7078..00000000
Binary files a/venv/Lib/site-packages/django/core/files/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/files/__pycache__/storage.cpython-310.pyc b/venv/Lib/site-packages/django/core/files/__pycache__/storage.cpython-310.pyc
deleted file mode 100644
index cb0377a9..00000000
Binary files a/venv/Lib/site-packages/django/core/files/__pycache__/storage.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/files/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/core/files/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 9b3e3b5d..00000000
Binary files a/venv/Lib/site-packages/django/core/files/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/handlers/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/handlers/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b5ea527b..00000000
Binary files a/venv/Lib/site-packages/django/core/handlers/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/handlers/__pycache__/asgi.cpython-310.pyc b/venv/Lib/site-packages/django/core/handlers/__pycache__/asgi.cpython-310.pyc
deleted file mode 100644
index 0a772506..00000000
Binary files a/venv/Lib/site-packages/django/core/handlers/__pycache__/asgi.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/handlers/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/core/handlers/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 74ff09bd..00000000
Binary files a/venv/Lib/site-packages/django/core/handlers/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/handlers/__pycache__/wsgi.cpython-310.pyc b/venv/Lib/site-packages/django/core/handlers/__pycache__/wsgi.cpython-310.pyc
deleted file mode 100644
index 71015cd8..00000000
Binary files a/venv/Lib/site-packages/django/core/handlers/__pycache__/wsgi.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/mail/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/mail/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 292dcdda..00000000
Binary files a/venv/Lib/site-packages/django/core/mail/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/mail/__pycache__/message.cpython-310.pyc b/venv/Lib/site-packages/django/core/mail/__pycache__/message.cpython-310.pyc
deleted file mode 100644
index e8c3a089..00000000
Binary files a/venv/Lib/site-packages/django/core/mail/__pycache__/message.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/mail/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/core/mail/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 3d0426bc..00000000
Binary files a/venv/Lib/site-packages/django/core/mail/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/mail/backends/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ba667111..00000000
Binary files a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/core/mail/backends/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 67a747d5..00000000
Binary files a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/console.cpython-310.pyc b/venv/Lib/site-packages/django/core/mail/backends/__pycache__/console.cpython-310.pyc
deleted file mode 100644
index 611d0710..00000000
Binary files a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/console.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/dummy.cpython-310.pyc b/venv/Lib/site-packages/django/core/mail/backends/__pycache__/dummy.cpython-310.pyc
deleted file mode 100644
index d7bf9e00..00000000
Binary files a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/dummy.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/filebased.cpython-310.pyc b/venv/Lib/site-packages/django/core/mail/backends/__pycache__/filebased.cpython-310.pyc
deleted file mode 100644
index 0444a374..00000000
Binary files a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/filebased.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/locmem.cpython-310.pyc b/venv/Lib/site-packages/django/core/mail/backends/__pycache__/locmem.cpython-310.pyc
deleted file mode 100644
index dec307e8..00000000
Binary files a/venv/Lib/site-packages/django/core/mail/backends/__pycache__/locmem.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c3e984a5..00000000
Binary files a/venv/Lib/site-packages/django/core/management/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 10e31f0f..00000000
Binary files a/venv/Lib/site-packages/django/core/management/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/__pycache__/color.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/__pycache__/color.cpython-310.pyc
deleted file mode 100644
index 9e6031b6..00000000
Binary files a/venv/Lib/site-packages/django/core/management/__pycache__/color.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/__pycache__/sql.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/__pycache__/sql.cpython-310.pyc
deleted file mode 100644
index df8adb65..00000000
Binary files a/venv/Lib/site-packages/django/core/management/__pycache__/sql.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/__pycache__/templates.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/__pycache__/templates.cpython-310.pyc
deleted file mode 100644
index b519a864..00000000
Binary files a/venv/Lib/site-packages/django/core/management/__pycache__/templates.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 96184ef1..00000000
Binary files a/venv/Lib/site-packages/django/core/management/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/commands/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 25ce1487..00000000
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/check.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/commands/__pycache__/check.cpython-310.pyc
deleted file mode 100644
index 354b876e..00000000
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/check.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/inspectdb.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/commands/__pycache__/inspectdb.cpython-310.pyc
deleted file mode 100644
index fcf47ed3..00000000
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/inspectdb.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/runserver.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/commands/__pycache__/runserver.cpython-310.pyc
deleted file mode 100644
index cb382457..00000000
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/runserver.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/startapp.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/commands/__pycache__/startapp.cpython-310.pyc
deleted file mode 100644
index 4290f2ee..00000000
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/startapp.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/management/commands/__pycache__/test.cpython-310.pyc b/venv/Lib/site-packages/django/core/management/commands/__pycache__/test.cpython-310.pyc
deleted file mode 100644
index 94bc4d4d..00000000
Binary files a/venv/Lib/site-packages/django/core/management/commands/__pycache__/test.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/serializers/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/serializers/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 541038df..00000000
Binary files a/venv/Lib/site-packages/django/core/serializers/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/serializers/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/core/serializers/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index bc29ef2d..00000000
Binary files a/venv/Lib/site-packages/django/core/serializers/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/serializers/__pycache__/json.cpython-310.pyc b/venv/Lib/site-packages/django/core/serializers/__pycache__/json.cpython-310.pyc
deleted file mode 100644
index 45b651dd..00000000
Binary files a/venv/Lib/site-packages/django/core/serializers/__pycache__/json.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/serializers/__pycache__/python.cpython-310.pyc b/venv/Lib/site-packages/django/core/serializers/__pycache__/python.cpython-310.pyc
deleted file mode 100644
index b62827d7..00000000
Binary files a/venv/Lib/site-packages/django/core/serializers/__pycache__/python.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/core/servers/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/core/servers/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 6869673c..00000000
Binary files a/venv/Lib/site-packages/django/core/servers/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 53ea0138..00000000
Binary files a/venv/Lib/site-packages/django/db/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/db/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 0f50b97b..00000000
Binary files a/venv/Lib/site-packages/django/db/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ab3f1597..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/__pycache__/signals.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/__pycache__/signals.cpython-310.pyc
deleted file mode 100644
index 2cf9a3de..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/__pycache__/signals.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 4838eb7d..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/base/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1256f1cc..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/base/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/base/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index b30187fe..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/base/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/__pycache__/client.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/base/__pycache__/client.cpython-310.pyc
deleted file mode 100644
index 10a0e5ab..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/base/__pycache__/client.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/__pycache__/creation.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/base/__pycache__/creation.cpython-310.pyc
deleted file mode 100644
index f4f2ab22..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/base/__pycache__/creation.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/base/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index 937cbf55..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/base/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/__pycache__/introspection.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/base/__pycache__/introspection.cpython-310.pyc
deleted file mode 100644
index 7aad48c5..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/base/__pycache__/introspection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/base/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index e5af1da0..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/base/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/__pycache__/schema.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/base/__pycache__/schema.cpython-310.pyc
deleted file mode 100644
index 37426d5a..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/base/__pycache__/schema.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/base/__pycache__/validation.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/base/__pycache__/validation.cpython-310.pyc
deleted file mode 100644
index 167e0399..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/base/__pycache__/validation.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/dummy/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/dummy/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f1349b9e..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/dummy/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/dummy/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/dummy/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 64df12ba..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/dummy/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/dummy/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/dummy/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index c73bdf6f..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/dummy/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 7cd71a97..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 4d6c881d..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/client.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/client.cpython-310.pyc
deleted file mode 100644
index bf4f8d33..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/client.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/compiler.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/compiler.cpython-310.pyc
deleted file mode 100644
index 0e57cc4a..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/compiler.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/creation.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/creation.cpython-310.pyc
deleted file mode 100644
index bf91ff47..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/creation.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index a87e8385..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/introspection.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/introspection.cpython-310.pyc
deleted file mode 100644
index 58fd2518..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/introspection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index 86907263..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/schema.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/schema.cpython-310.pyc
deleted file mode 100644
index dc256b70..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/schema.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/validation.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/validation.cpython-310.pyc
deleted file mode 100644
index 46f929fd..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/mysql/__pycache__/validation.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index a0b899ce..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 5bca7e76..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/client.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/client.cpython-310.pyc
deleted file mode 100644
index 0eb651e2..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/client.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/creation.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/creation.cpython-310.pyc
deleted file mode 100644
index 74581647..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/creation.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index b5848e93..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/functions.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/functions.cpython-310.pyc
deleted file mode 100644
index 649e44d4..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/functions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/introspection.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/introspection.cpython-310.pyc
deleted file mode 100644
index e05011f1..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/introspection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index bc98a664..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/schema.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/schema.cpython-310.pyc
deleted file mode 100644
index d1a6d021..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/schema.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 6647d307..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/validation.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/validation.cpython-310.pyc
deleted file mode 100644
index 61b65d6e..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/oracle/__pycache__/validation.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1cbada11..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 9aa64a78..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/client.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/client.cpython-310.pyc
deleted file mode 100644
index dae5d5d6..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/client.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/creation.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/creation.cpython-310.pyc
deleted file mode 100644
index e6a2725e..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/creation.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index 66963ee0..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/introspection.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/introspection.cpython-310.pyc
deleted file mode 100644
index f48bf39a..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/introspection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index 0598103f..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/schema.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/schema.cpython-310.pyc
deleted file mode 100644
index 94b94325..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/postgresql/__pycache__/schema.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 97680982..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 7e967217..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/client.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/client.cpython-310.pyc
deleted file mode 100644
index 35d94f41..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/client.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/creation.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/creation.cpython-310.pyc
deleted file mode 100644
index 1a97921e..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/creation.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/features.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/features.cpython-310.pyc
deleted file mode 100644
index a2aec0c3..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/features.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/introspection.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/introspection.cpython-310.pyc
deleted file mode 100644
index d1213b19..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/introspection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/operations.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/operations.cpython-310.pyc
deleted file mode 100644
index f14e3f23..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/operations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/schema.cpython-310.pyc b/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/schema.cpython-310.pyc
deleted file mode 100644
index 2ed5da05..00000000
Binary files a/venv/Lib/site-packages/django/db/backends/sqlite3/__pycache__/schema.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/migrations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c738ebf8..00000000
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/django/db/migrations/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index 1d3f85e0..00000000
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/loader.cpython-310.pyc b/venv/Lib/site-packages/django/db/migrations/__pycache__/loader.cpython-310.pyc
deleted file mode 100644
index 470e4ed6..00000000
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/loader.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/migrations/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/db/migrations/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 56fec2a7..00000000
Binary files a/venv/Lib/site-packages/django/db/migrations/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 39b86f25..00000000
Binary files a/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 28115296..00000000
Binary files a/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/fields.cpython-310.pyc b/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/fields.cpython-310.pyc
deleted file mode 100644
index bd4597dc..00000000
Binary files a/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/fields.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 3e0d8dc1..00000000
Binary files a/venv/Lib/site-packages/django/db/migrations/operations/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f1a7fe74..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/aggregates.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/aggregates.cpython-310.pyc
deleted file mode 100644
index 5db6420f..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/aggregates.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 583b1f43..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/constants.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/constants.cpython-310.pyc
deleted file mode 100644
index 704f8880..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/constants.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/constraints.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/constraints.cpython-310.pyc
deleted file mode 100644
index 93cfa47a..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/constraints.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/enums.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/enums.cpython-310.pyc
deleted file mode 100644
index afc5263f..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/enums.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/expressions.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/expressions.cpython-310.pyc
deleted file mode 100644
index 8fb7f31c..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/expressions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/indexes.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/indexes.cpython-310.pyc
deleted file mode 100644
index cfd58f78..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/indexes.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/lookups.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/lookups.cpython-310.pyc
deleted file mode 100644
index 774c234a..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/lookups.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/options.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/options.cpython-310.pyc
deleted file mode 100644
index ba9df0fd..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/options.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/query.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/query.cpython-310.pyc
deleted file mode 100644
index b72665de..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/query.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/signals.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/signals.cpython-310.pyc
deleted file mode 100644
index 3d35e373..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/signals.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 790bfa9f..00000000
Binary files a/venv/Lib/site-packages/django/db/models/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/fields/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/fields/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 69660bb2..00000000
Binary files a/venv/Lib/site-packages/django/db/models/fields/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/fields/__pycache__/files.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/fields/__pycache__/files.cpython-310.pyc
deleted file mode 100644
index 64ef9092..00000000
Binary files a/venv/Lib/site-packages/django/db/models/fields/__pycache__/files.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/fields/__pycache__/json.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/fields/__pycache__/json.cpython-310.pyc
deleted file mode 100644
index 9781a8a1..00000000
Binary files a/venv/Lib/site-packages/django/db/models/fields/__pycache__/json.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/fields/__pycache__/mixins.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/fields/__pycache__/mixins.cpython-310.pyc
deleted file mode 100644
index d092b06b..00000000
Binary files a/venv/Lib/site-packages/django/db/models/fields/__pycache__/mixins.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/fields/__pycache__/proxy.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/fields/__pycache__/proxy.cpython-310.pyc
deleted file mode 100644
index 2b59b3b4..00000000
Binary files a/venv/Lib/site-packages/django/db/models/fields/__pycache__/proxy.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/functions/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/functions/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ebfe7c1e..00000000
Binary files a/venv/Lib/site-packages/django/db/models/functions/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/functions/__pycache__/datetime.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/functions/__pycache__/datetime.cpython-310.pyc
deleted file mode 100644
index 9bbcc3c0..00000000
Binary files a/venv/Lib/site-packages/django/db/models/functions/__pycache__/datetime.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/functions/__pycache__/mixins.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/functions/__pycache__/mixins.cpython-310.pyc
deleted file mode 100644
index d4927f3e..00000000
Binary files a/venv/Lib/site-packages/django/db/models/functions/__pycache__/mixins.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/functions/__pycache__/text.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/functions/__pycache__/text.cpython-310.pyc
deleted file mode 100644
index 05652632..00000000
Binary files a/venv/Lib/site-packages/django/db/models/functions/__pycache__/text.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/sql/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/sql/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d5cbae36..00000000
Binary files a/venv/Lib/site-packages/django/db/models/sql/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/sql/__pycache__/compiler.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/sql/__pycache__/compiler.cpython-310.pyc
deleted file mode 100644
index d7f53acb..00000000
Binary files a/venv/Lib/site-packages/django/db/models/sql/__pycache__/compiler.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/sql/__pycache__/constants.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/sql/__pycache__/constants.cpython-310.pyc
deleted file mode 100644
index 2d53839a..00000000
Binary files a/venv/Lib/site-packages/django/db/models/sql/__pycache__/constants.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/sql/__pycache__/datastructures.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/sql/__pycache__/datastructures.cpython-310.pyc
deleted file mode 100644
index 959e70a9..00000000
Binary files a/venv/Lib/site-packages/django/db/models/sql/__pycache__/datastructures.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/db/models/sql/__pycache__/query.cpython-310.pyc b/venv/Lib/site-packages/django/db/models/sql/__pycache__/query.cpython-310.pyc
deleted file mode 100644
index d6eb8708..00000000
Binary files a/venv/Lib/site-packages/django/db/models/sql/__pycache__/query.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/dispatch/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/dispatch/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 63c74084..00000000
Binary files a/venv/Lib/site-packages/django/dispatch/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/forms/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/forms/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 81b009a5..00000000
Binary files a/venv/Lib/site-packages/django/forms/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/forms/__pycache__/fields.cpython-310.pyc b/venv/Lib/site-packages/django/forms/__pycache__/fields.cpython-310.pyc
deleted file mode 100644
index 4f9df2da..00000000
Binary files a/venv/Lib/site-packages/django/forms/__pycache__/fields.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/forms/__pycache__/forms.cpython-310.pyc b/venv/Lib/site-packages/django/forms/__pycache__/forms.cpython-310.pyc
deleted file mode 100644
index bb83073a..00000000
Binary files a/venv/Lib/site-packages/django/forms/__pycache__/forms.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/forms/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/django/forms/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 6747e575..00000000
Binary files a/venv/Lib/site-packages/django/forms/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/forms/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/forms/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index ea5d730c..00000000
Binary files a/venv/Lib/site-packages/django/forms/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/forms/__pycache__/widgets.cpython-310.pyc b/venv/Lib/site-packages/django/forms/__pycache__/widgets.cpython-310.pyc
deleted file mode 100644
index 29cf3f5f..00000000
Binary files a/venv/Lib/site-packages/django/forms/__pycache__/widgets.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/http/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/http/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 68610210..00000000
Binary files a/venv/Lib/site-packages/django/http/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/http/__pycache__/cookie.cpython-310.pyc b/venv/Lib/site-packages/django/http/__pycache__/cookie.cpython-310.pyc
deleted file mode 100644
index 24168949..00000000
Binary files a/venv/Lib/site-packages/django/http/__pycache__/cookie.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/http/__pycache__/request.cpython-310.pyc b/venv/Lib/site-packages/django/http/__pycache__/request.cpython-310.pyc
deleted file mode 100644
index 783b65a9..00000000
Binary files a/venv/Lib/site-packages/django/http/__pycache__/request.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/http/__pycache__/response.cpython-310.pyc b/venv/Lib/site-packages/django/http/__pycache__/response.cpython-310.pyc
deleted file mode 100644
index 5b396e24..00000000
Binary files a/venv/Lib/site-packages/django/http/__pycache__/response.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/middleware/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/middleware/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0e9cba08..00000000
Binary files a/venv/Lib/site-packages/django/middleware/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/middleware/__pycache__/cache.cpython-310.pyc b/venv/Lib/site-packages/django/middleware/__pycache__/cache.cpython-310.pyc
deleted file mode 100644
index 9ddbc289..00000000
Binary files a/venv/Lib/site-packages/django/middleware/__pycache__/cache.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/middleware/__pycache__/clickjacking.cpython-310.pyc b/venv/Lib/site-packages/django/middleware/__pycache__/clickjacking.cpython-310.pyc
deleted file mode 100644
index ae10e6f1..00000000
Binary files a/venv/Lib/site-packages/django/middleware/__pycache__/clickjacking.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/middleware/__pycache__/common.cpython-310.pyc b/venv/Lib/site-packages/django/middleware/__pycache__/common.cpython-310.pyc
deleted file mode 100644
index 507bbb56..00000000
Binary files a/venv/Lib/site-packages/django/middleware/__pycache__/common.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/middleware/__pycache__/csrf.cpython-310.pyc b/venv/Lib/site-packages/django/middleware/__pycache__/csrf.cpython-310.pyc
deleted file mode 100644
index 863a2110..00000000
Binary files a/venv/Lib/site-packages/django/middleware/__pycache__/csrf.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/middleware/__pycache__/gzip.cpython-310.pyc b/venv/Lib/site-packages/django/middleware/__pycache__/gzip.cpython-310.pyc
deleted file mode 100644
index 49737868..00000000
Binary files a/venv/Lib/site-packages/django/middleware/__pycache__/gzip.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/middleware/__pycache__/http.cpython-310.pyc b/venv/Lib/site-packages/django/middleware/__pycache__/http.cpython-310.pyc
deleted file mode 100644
index 7390abf5..00000000
Binary files a/venv/Lib/site-packages/django/middleware/__pycache__/http.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/template/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 634944a8..00000000
Binary files a/venv/Lib/site-packages/django/template/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/autoreload.cpython-310.pyc b/venv/Lib/site-packages/django/template/__pycache__/autoreload.cpython-310.pyc
deleted file mode 100644
index 37b3a2cd..00000000
Binary files a/venv/Lib/site-packages/django/template/__pycache__/autoreload.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/template/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index bf91c757..00000000
Binary files a/venv/Lib/site-packages/django/template/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/context.cpython-310.pyc b/venv/Lib/site-packages/django/template/__pycache__/context.cpython-310.pyc
deleted file mode 100644
index e95efa5f..00000000
Binary files a/venv/Lib/site-packages/django/template/__pycache__/context.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/context_processors.cpython-310.pyc b/venv/Lib/site-packages/django/template/__pycache__/context_processors.cpython-310.pyc
deleted file mode 100644
index f0fc205e..00000000
Binary files a/venv/Lib/site-packages/django/template/__pycache__/context_processors.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/django/template/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index 1c67e4d7..00000000
Binary files a/venv/Lib/site-packages/django/template/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/loader.cpython-310.pyc b/venv/Lib/site-packages/django/template/__pycache__/loader.cpython-310.pyc
deleted file mode 100644
index 200a3549..00000000
Binary files a/venv/Lib/site-packages/django/template/__pycache__/loader.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/response.cpython-310.pyc b/venv/Lib/site-packages/django/template/__pycache__/response.cpython-310.pyc
deleted file mode 100644
index fe0fc740..00000000
Binary files a/venv/Lib/site-packages/django/template/__pycache__/response.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/template/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 2a8881f4..00000000
Binary files a/venv/Lib/site-packages/django/template/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/backends/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/template/backends/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9abd134d..00000000
Binary files a/venv/Lib/site-packages/django/template/backends/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/backends/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/template/backends/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 15e35788..00000000
Binary files a/venv/Lib/site-packages/django/template/backends/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/backends/__pycache__/dummy.cpython-310.pyc b/venv/Lib/site-packages/django/template/backends/__pycache__/dummy.cpython-310.pyc
deleted file mode 100644
index b5ba57a4..00000000
Binary files a/venv/Lib/site-packages/django/template/backends/__pycache__/dummy.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/backends/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/template/backends/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index d949a544..00000000
Binary files a/venv/Lib/site-packages/django/template/backends/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/loaders/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/template/loaders/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9c143bb0..00000000
Binary files a/venv/Lib/site-packages/django/template/loaders/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/loaders/__pycache__/app_directories.cpython-310.pyc b/venv/Lib/site-packages/django/template/loaders/__pycache__/app_directories.cpython-310.pyc
deleted file mode 100644
index 5a54fc94..00000000
Binary files a/venv/Lib/site-packages/django/template/loaders/__pycache__/app_directories.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/loaders/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/template/loaders/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 3d971c5c..00000000
Binary files a/venv/Lib/site-packages/django/template/loaders/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/loaders/__pycache__/filesystem.cpython-310.pyc b/venv/Lib/site-packages/django/template/loaders/__pycache__/filesystem.cpython-310.pyc
deleted file mode 100644
index e7cb40b3..00000000
Binary files a/venv/Lib/site-packages/django/template/loaders/__pycache__/filesystem.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/template/loaders/__pycache__/locmem.cpython-310.pyc b/venv/Lib/site-packages/django/template/loaders/__pycache__/locmem.cpython-310.pyc
deleted file mode 100644
index 3150e5d1..00000000
Binary files a/venv/Lib/site-packages/django/template/loaders/__pycache__/locmem.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/templatetags/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/templatetags/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 11810feb..00000000
Binary files a/venv/Lib/site-packages/django/templatetags/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/templatetags/__pycache__/cache.cpython-310.pyc b/venv/Lib/site-packages/django/templatetags/__pycache__/cache.cpython-310.pyc
deleted file mode 100644
index 90787935..00000000
Binary files a/venv/Lib/site-packages/django/templatetags/__pycache__/cache.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/templatetags/__pycache__/i18n.cpython-310.pyc b/venv/Lib/site-packages/django/templatetags/__pycache__/i18n.cpython-310.pyc
deleted file mode 100644
index 292a312e..00000000
Binary files a/venv/Lib/site-packages/django/templatetags/__pycache__/i18n.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/templatetags/__pycache__/static.cpython-310.pyc b/venv/Lib/site-packages/django/templatetags/__pycache__/static.cpython-310.pyc
deleted file mode 100644
index fe0b573f..00000000
Binary files a/venv/Lib/site-packages/django/templatetags/__pycache__/static.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/templatetags/__pycache__/tz.cpython-310.pyc b/venv/Lib/site-packages/django/templatetags/__pycache__/tz.cpython-310.pyc
deleted file mode 100644
index eb37e41c..00000000
Binary files a/venv/Lib/site-packages/django/templatetags/__pycache__/tz.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/test/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/test/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 455d8a55..00000000
Binary files a/venv/Lib/site-packages/django/test/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/test/__pycache__/client.cpython-310.pyc b/venv/Lib/site-packages/django/test/__pycache__/client.cpython-310.pyc
deleted file mode 100644
index 05095fdf..00000000
Binary files a/venv/Lib/site-packages/django/test/__pycache__/client.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/test/__pycache__/html.cpython-310.pyc b/venv/Lib/site-packages/django/test/__pycache__/html.cpython-310.pyc
deleted file mode 100644
index 1b7be115..00000000
Binary files a/venv/Lib/site-packages/django/test/__pycache__/html.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/test/__pycache__/signals.cpython-310.pyc b/venv/Lib/site-packages/django/test/__pycache__/signals.cpython-310.pyc
deleted file mode 100644
index 987a3078..00000000
Binary files a/venv/Lib/site-packages/django/test/__pycache__/signals.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/test/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/test/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index a80ec42f..00000000
Binary files a/venv/Lib/site-packages/django/test/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/urls/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/urls/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2577c55e..00000000
Binary files a/venv/Lib/site-packages/django/urls/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/urls/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/urls/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 3ede1b24..00000000
Binary files a/venv/Lib/site-packages/django/urls/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/urls/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/django/urls/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index 098f1a5a..00000000
Binary files a/venv/Lib/site-packages/django/urls/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/urls/__pycache__/resolvers.cpython-310.pyc b/venv/Lib/site-packages/django/urls/__pycache__/resolvers.cpython-310.pyc
deleted file mode 100644
index 94c2aead..00000000
Binary files a/venv/Lib/site-packages/django/urls/__pycache__/resolvers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/urls/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/django/urls/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index b12e4edb..00000000
Binary files a/venv/Lib/site-packages/django/urls/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f9b38528..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/autoreload.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/autoreload.cpython-310.pyc
deleted file mode 100644
index 61f08d78..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/autoreload.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/cache.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/cache.cpython-310.pyc
deleted file mode 100644
index 9d1d6e9b..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/cache.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/connection.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/connection.cpython-310.pyc
deleted file mode 100644
index eec50f70..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/connection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/datastructures.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/datastructures.cpython-310.pyc
deleted file mode 100644
index 2532edc9..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/datastructures.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/dates.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/dates.cpython-310.pyc
deleted file mode 100644
index 7a8201d4..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/dates.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/decorators.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/decorators.cpython-310.pyc
deleted file mode 100644
index d36457a6..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/decorators.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/deprecation.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/deprecation.cpython-310.pyc
deleted file mode 100644
index d5b4f7d7..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/deprecation.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/duration.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/duration.cpython-310.pyc
deleted file mode 100644
index cffe8684..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/duration.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/encoding.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/encoding.cpython-310.pyc
deleted file mode 100644
index 3ea1a9bc..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/encoding.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 1663adba..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/html.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/html.cpython-310.pyc
deleted file mode 100644
index 1984fdf5..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/html.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/http.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/http.cpython-310.pyc
deleted file mode 100644
index 697e7167..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/http.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/inspect.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/inspect.cpython-310.pyc
deleted file mode 100644
index 62dea254..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/inspect.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/itercompat.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/itercompat.cpython-310.pyc
deleted file mode 100644
index e64372cd..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/itercompat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/log.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/log.cpython-310.pyc
deleted file mode 100644
index ab1daa58..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/log.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/text.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/text.cpython-310.pyc
deleted file mode 100644
index f73592dd..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/text.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/tree.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/tree.cpython-310.pyc
deleted file mode 100644
index fe168bfc..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/tree.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/version.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/version.cpython-310.pyc
deleted file mode 100644
index cc9cd3b8..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/version.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/__pycache__/xmlutils.cpython-310.pyc b/venv/Lib/site-packages/django/utils/__pycache__/xmlutils.cpython-310.pyc
deleted file mode 100644
index 93b18ef3..00000000
Binary files a/venv/Lib/site-packages/django/utils/__pycache__/xmlutils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/translation/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/utils/translation/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5862dafc..00000000
Binary files a/venv/Lib/site-packages/django/utils/translation/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/translation/__pycache__/reloader.cpython-310.pyc b/venv/Lib/site-packages/django/utils/translation/__pycache__/reloader.cpython-310.pyc
deleted file mode 100644
index a6075e4a..00000000
Binary files a/venv/Lib/site-packages/django/utils/translation/__pycache__/reloader.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/utils/translation/__pycache__/trans_null.cpython-310.pyc b/venv/Lib/site-packages/django/utils/translation/__pycache__/trans_null.cpython-310.pyc
deleted file mode 100644
index a8ceea2f..00000000
Binary files a/venv/Lib/site-packages/django/utils/translation/__pycache__/trans_null.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/views/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index cd0acd03..00000000
Binary files a/venv/Lib/site-packages/django/views/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/__pycache__/csrf.cpython-310.pyc b/venv/Lib/site-packages/django/views/__pycache__/csrf.cpython-310.pyc
deleted file mode 100644
index 7af78633..00000000
Binary files a/venv/Lib/site-packages/django/views/__pycache__/csrf.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/__pycache__/debug.cpython-310.pyc b/venv/Lib/site-packages/django/views/__pycache__/debug.cpython-310.pyc
deleted file mode 100644
index 1d64fe68..00000000
Binary files a/venv/Lib/site-packages/django/views/__pycache__/debug.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/__pycache__/i18n.cpython-310.pyc b/venv/Lib/site-packages/django/views/__pycache__/i18n.cpython-310.pyc
deleted file mode 100644
index 691d4a95..00000000
Binary files a/venv/Lib/site-packages/django/views/__pycache__/i18n.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/__pycache__/static.cpython-310.pyc b/venv/Lib/site-packages/django/views/__pycache__/static.cpython-310.pyc
deleted file mode 100644
index 621ad44a..00000000
Binary files a/venv/Lib/site-packages/django/views/__pycache__/static.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/decorators/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/views/decorators/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9c60501d..00000000
Binary files a/venv/Lib/site-packages/django/views/decorators/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/decorators/__pycache__/cache.cpython-310.pyc b/venv/Lib/site-packages/django/views/decorators/__pycache__/cache.cpython-310.pyc
deleted file mode 100644
index d48937e5..00000000
Binary files a/venv/Lib/site-packages/django/views/decorators/__pycache__/cache.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/decorators/__pycache__/clickjacking.cpython-310.pyc b/venv/Lib/site-packages/django/views/decorators/__pycache__/clickjacking.cpython-310.pyc
deleted file mode 100644
index 10574e41..00000000
Binary files a/venv/Lib/site-packages/django/views/decorators/__pycache__/clickjacking.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/decorators/__pycache__/common.cpython-310.pyc b/venv/Lib/site-packages/django/views/decorators/__pycache__/common.cpython-310.pyc
deleted file mode 100644
index 2595d7a1..00000000
Binary files a/venv/Lib/site-packages/django/views/decorators/__pycache__/common.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/decorators/__pycache__/csrf.cpython-310.pyc b/venv/Lib/site-packages/django/views/decorators/__pycache__/csrf.cpython-310.pyc
deleted file mode 100644
index f53075ab..00000000
Binary files a/venv/Lib/site-packages/django/views/decorators/__pycache__/csrf.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/decorators/__pycache__/debug.cpython-310.pyc b/venv/Lib/site-packages/django/views/decorators/__pycache__/debug.cpython-310.pyc
deleted file mode 100644
index 69718b64..00000000
Binary files a/venv/Lib/site-packages/django/views/decorators/__pycache__/debug.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/decorators/__pycache__/gzip.cpython-310.pyc b/venv/Lib/site-packages/django/views/decorators/__pycache__/gzip.cpython-310.pyc
deleted file mode 100644
index 58b98ea5..00000000
Binary files a/venv/Lib/site-packages/django/views/decorators/__pycache__/gzip.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/decorators/__pycache__/http.cpython-310.pyc b/venv/Lib/site-packages/django/views/decorators/__pycache__/http.cpython-310.pyc
deleted file mode 100644
index 7ae93d30..00000000
Binary files a/venv/Lib/site-packages/django/views/decorators/__pycache__/http.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/generic/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/django/views/generic/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index eeb295ba..00000000
Binary files a/venv/Lib/site-packages/django/views/generic/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/generic/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/django/views/generic/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 7dea82b1..00000000
Binary files a/venv/Lib/site-packages/django/views/generic/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/generic/__pycache__/dates.cpython-310.pyc b/venv/Lib/site-packages/django/views/generic/__pycache__/dates.cpython-310.pyc
deleted file mode 100644
index 3521427c..00000000
Binary files a/venv/Lib/site-packages/django/views/generic/__pycache__/dates.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/django/views/generic/__pycache__/list.cpython-310.pyc b/venv/Lib/site-packages/django/views/generic/__pycache__/list.cpython-310.pyc
deleted file mode 100644
index 717f36d1..00000000
Binary files a/venv/Lib/site-packages/django/views/generic/__pycache__/list.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip-22.2.2.dist-info/RECORD b/venv/Lib/site-packages/pip-22.2.2.dist-info/RECORD
deleted file mode 100644
index e7d555dc..00000000
--- a/venv/Lib/site-packages/pip-22.2.2.dist-info/RECORD
+++ /dev/null
@@ -1,992 +0,0 @@
-../../Scripts/pip.exe,sha256=I2QFIFBpzYqj_AJhE9gRA5v_KW7xnLgZqLXgh1bRvng,107935
-../../Scripts/pip3.10.exe,sha256=I2QFIFBpzYqj_AJhE9gRA5v_KW7xnLgZqLXgh1bRvng,107935
-../../Scripts/pip3.exe,sha256=I2QFIFBpzYqj_AJhE9gRA5v_KW7xnLgZqLXgh1bRvng,107935
-pip-22.2.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
-pip-22.2.2.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093
-pip-22.2.2.dist-info/METADATA,sha256=1THNkoBHocZtVQ8SixJH12wuSXHJIQb4Vu7RzzEjfKQ,4197
-pip-22.2.2.dist-info/RECORD,,
-pip-22.2.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip-22.2.2.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
-pip-22.2.2.dist-info/entry_points.txt,sha256=_ZUyZpzz1RdotcszCitH_lQ6yiWAKmaOcIkCEmkrePU,124
-pip-22.2.2.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
-pip/__init__.py,sha256=RKJ102-F8id9kMdMic9j7MD2OvtK6CP0CK1Erl6PtyU,357
-pip/__main__.py,sha256=mXwWDftNLMKfwVqKFWGE_uuBZvGSIiUELhLkeysIuZc,1198
-pip/__pip-runner__.py,sha256=7S_j7iwRDWb9mahaaEiVL6fct6fWouB2V8W_S8FY0ME,1037
-pip/__pycache__/__init__.cpython-310.pyc,,
-pip/__pycache__/__main__.cpython-310.pyc,,
-pip/__pycache__/__pip-runner__.cpython-310.pyc,,
-pip/_internal/__init__.py,sha256=nnFCuxrPMgALrIDxSoy-H6Zj4W4UY60D-uL1aJyq0pc,573
-pip/_internal/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/__pycache__/build_env.cpython-310.pyc,,
-pip/_internal/__pycache__/cache.cpython-310.pyc,,
-pip/_internal/__pycache__/configuration.cpython-310.pyc,,
-pip/_internal/__pycache__/exceptions.cpython-310.pyc,,
-pip/_internal/__pycache__/main.cpython-310.pyc,,
-pip/_internal/__pycache__/pyproject.cpython-310.pyc,,
-pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc,,
-pip/_internal/__pycache__/wheel_builder.cpython-310.pyc,,
-pip/_internal/build_env.py,sha256=Io06wf8aNlP1FkDYCbbuVFPGWAMJNys7l_p7r9CmEKE,9535
-pip/_internal/cache.py,sha256=-FXxS81WOM-amtx3w7N8s20PfFIlHPX8X27FfOBql-I,10623
-pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132
-pip/_internal/cli/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/base_command.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/command_context.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/main.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/parser.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/req_command.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/spinners.cpython-310.pyc,,
-pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc,,
-pip/_internal/cli/autocompletion.py,sha256=wY2JPZY2Eji1vhR7bVo-yCBPJ9LCy6P80iOAhZD1Vi8,6676
-pip/_internal/cli/base_command.py,sha256=EiHzq1RBubmgYkhsVgJLNc4Y18koPUS1TzMVJwpnYxc,8146
-pip/_internal/cli/cmdoptions.py,sha256=LKKpinHThNt7wtHqxwkWJpgCUcyQeTX0GUCqyXImAbc,29985
-pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774
-pip/_internal/cli/main.py,sha256=ioJ8IVlb2K1qLOxR-tXkee9lURhYV89CDM71MKag7YY,2472
-pip/_internal/cli/main_parser.py,sha256=Q9TnytfuC5Z2JSjBFWVGtEdYLFy7rukNIb04movHdAo,2614
-pip/_internal/cli/parser.py,sha256=tWP-K1uSxnJyXu3WE0kkH3niAYRBeuUaxeydhzOdhL4,10817
-pip/_internal/cli/progress_bars.py,sha256=So4mPoSjXkXiSHiTzzquH3VVyVD_njXlHJSExYPXAow,1968
-pip/_internal/cli/req_command.py,sha256=ypTutLv4j_efxC2f6C6aCQufxre-zaJdi5m_tWlLeBk,18172
-pip/_internal/cli/spinners.py,sha256=rs_NveD0wCoJ9GiJJmOjGC1UPVK8isOQpQsFVE899zQ,5098
-pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116
-pip/_internal/commands/__init__.py,sha256=5oRO9O3dM2vGuh0bFw4HOVletryrz5HHMmmPWwJrH9U,3882
-pip/_internal/commands/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/cache.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/check.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/completion.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/configuration.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/debug.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/download.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/freeze.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/hash.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/help.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/index.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/inspect.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/install.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/list.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/search.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/show.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc,,
-pip/_internal/commands/__pycache__/wheel.cpython-310.pyc,,
-pip/_internal/commands/cache.py,sha256=muaT0mbL-ZUpn6AaushVAipzTiMwE4nV2BLbJBwt_KQ,7582
-pip/_internal/commands/check.py,sha256=0gjXR7j36xJT5cs2heYU_dfOfpnFfzX8OoPNNoKhqdM,1685
-pip/_internal/commands/completion.py,sha256=H0TJvGrdsoleuIyQKzJbicLFppYx2OZA0BLNpQDeFjI,4129
-pip/_internal/commands/configuration.py,sha256=ZJRO2YMzI5vPA2ADTWZrSsvGd4q880CylCUzEUJziZY,9500
-pip/_internal/commands/debug.py,sha256=kVjn-O1ixLk0webD0w9vfFFq_GCTUTd2hmLOnYtDCig,6573
-pip/_internal/commands/download.py,sha256=vLtEY3QqIAddjAOGvJJsbaHJg7Har5TPa4UuOOL6Gn8,5058
-pip/_internal/commands/freeze.py,sha256=gCjoD6foBZPBAAYx5t8zZLkJhsF_ZRtnb3dPuD7beO8,2951
-pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703
-pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132
-pip/_internal/commands/index.py,sha256=1VVXXj5MsI2qH-N7uniQQyVkg-KCn_RdjiyiUmkUS5U,4762
-pip/_internal/commands/inspect.py,sha256=mRJ9aIkBQN0IJ7Um8pzaxAzVPIgL8KfWHx1fWKJgUAQ,3374
-pip/_internal/commands/install.py,sha256=nyZCUv7Oi8rScPe4WENgQ8Vd5n3OHzBuj2tw6khg4Ss,30315
-pip/_internal/commands/list.py,sha256=wF2g5i4j_JyoRckO9FAeB7KhcFAnLboy0dL-G9fn7Eo,12148
-pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697
-pip/_internal/commands/show.py,sha256=CJI8q4SSY0X346K1hi4Th8Nbyhl4nxPTBJUuzOlTaYE,6129
-pip/_internal/commands/uninstall.py,sha256=0JQhifYxecNrJAwoILFwjm9V1V3liXzNT-y4bgRXXPw,3680
-pip/_internal/commands/wheel.py,sha256=dar33wNjUyTN6Cy8PVxV5TerJS1u7pZmKoqgoYiQh7g,6307
-pip/_internal/configuration.py,sha256=uBKTus43pDIO6IzT2mLWQeROmHhtnoabhniKNjPYvD0,13529
-pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858
-pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/distributions/__pycache__/base.cpython-310.pyc,,
-pip/_internal/distributions/__pycache__/installed.cpython-310.pyc,,
-pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc,,
-pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc,,
-pip/_internal/distributions/base.py,sha256=jrF1Vi7eGyqFqMHrieh1PIOrGU7KeCxhYPZnbvtmvGY,1221
-pip/_internal/distributions/installed.py,sha256=NI2OgsgH9iBq9l5vB-56vOg5YsybOy-AU4VE5CSCO2I,729
-pip/_internal/distributions/sdist.py,sha256=SQBdkatXSigKGG_SaD0U0p1Jwdfrg26UCNcHgkXZfdA,6494
-pip/_internal/distributions/wheel.py,sha256=m-J4XO-gvFerlYsFzzSXYDvrx8tLZlJFTCgDxctn8ig,1164
-pip/_internal/exceptions.py,sha256=U-dV1ixkSz6NAU6Aw9dosKi2EzZ5D3BA7ilYZuTLKeU,20912
-pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30
-pip/_internal/index/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/index/__pycache__/collector.cpython-310.pyc,,
-pip/_internal/index/__pycache__/package_finder.cpython-310.pyc,,
-pip/_internal/index/__pycache__/sources.cpython-310.pyc,,
-pip/_internal/index/collector.py,sha256=wLRu5q9a7oVAMATsg1O4P9UT1jfjC6KaxwYf3GWI7Wk,20316
-pip/_internal/index/package_finder.py,sha256=kmcMu5_i-BP6v3NQGY0_am1ezxM2Gk4t00arZMmm4sc,37596
-pip/_internal/index/sources.py,sha256=SVyPitv08-Qalh2_Bk5diAJ9GAA_d-a93koouQodAG0,6557
-pip/_internal/locations/__init__.py,sha256=QhB-Y6TNyaU010cimm2T4wM5loe8oRdjLwJ6xmsGc-k,17552
-pip/_internal/locations/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc,,
-pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc,,
-pip/_internal/locations/__pycache__/base.cpython-310.pyc,,
-pip/_internal/locations/_distutils.py,sha256=AUJcoQ88zfYs9V57GsBlbhqCpyxxsAlLV1t6oqv55Xc,6272
-pip/_internal/locations/_sysconfig.py,sha256=nM-DiVHXWTxippdmN0MGVl5r7OIfIMy3vgDMlo8c_oo,7867
-pip/_internal/locations/base.py,sha256=ufyDqPwZ4jLbScD44u8AwTVI-3ft8O78UGrroQI5f68,2573
-pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340
-pip/_internal/metadata/__init__.py,sha256=IeqRXbTeSreqClORmjA_4CMjkWA-trWdss7Oyimwosw,3535
-pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/metadata/__pycache__/_json.cpython-310.pyc,,
-pip/_internal/metadata/__pycache__/base.cpython-310.pyc,,
-pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc,,
-pip/_internal/metadata/_json.py,sha256=BTkWfFDrWFwuSodImjtbAh8wCL3isecbnjTb5E6UUDI,2595
-pip/_internal/metadata/base.py,sha256=gOjhT0Mk4f6hCa8hzZIQKynIwpHzydnm6krwGTHTVhI,24596
-pip/_internal/metadata/importlib/__init__.py,sha256=9ZVO8BoE7NEZPmoHp5Ap_NJo0HgNIezXXg-TFTtt3Z4,107
-pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc,,
-pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc,,
-pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc,,
-pip/_internal/metadata/importlib/_compat.py,sha256=B_qZlMBcbf2VrjHw4Pz9gfk-c-W1Mzp2u_GAzoWWuLE,1493
-pip/_internal/metadata/importlib/_dists.py,sha256=iEu6KvMdFIfq3ujQvsS0fvI9jDbp1qFC9SmOySfn_fY,7456
-pip/_internal/metadata/importlib/_envs.py,sha256=-4O0PiYmxydf0e6upJ7X-_BR4DB46I_szlgx53hnJLs,7195
-pip/_internal/metadata/pkg_resources.py,sha256=RfU--nYrkHAYJXfpoviyBHJA5b9Mw3Dc5HpeYwki1gE,9289
-pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63
-pip/_internal/models/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/models/__pycache__/candidate.cpython-310.pyc,,
-pip/_internal/models/__pycache__/direct_url.cpython-310.pyc,,
-pip/_internal/models/__pycache__/format_control.cpython-310.pyc,,
-pip/_internal/models/__pycache__/index.cpython-310.pyc,,
-pip/_internal/models/__pycache__/installation_report.cpython-310.pyc,,
-pip/_internal/models/__pycache__/link.cpython-310.pyc,,
-pip/_internal/models/__pycache__/scheme.cpython-310.pyc,,
-pip/_internal/models/__pycache__/search_scope.cpython-310.pyc,,
-pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc,,
-pip/_internal/models/__pycache__/target_python.cpython-310.pyc,,
-pip/_internal/models/__pycache__/wheel.cpython-310.pyc,,
-pip/_internal/models/candidate.py,sha256=6pcABsaR7CfIHlbJbr2_kMkVJFL_yrYjTx6SVWUnCPQ,990
-pip/_internal/models/direct_url.py,sha256=HLO0sL2aYB6n45bwmd72TDN05sLHJlOQI8M01l2SH3I,5877
-pip/_internal/models/format_control.py,sha256=DJpMYjxeYKKQdwNcML2_F0vtAh-qnKTYe-CpTxQe-4g,2520
-pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030
-pip/_internal/models/installation_report.py,sha256=ad1arqtxrSFBvWnm6mRqmG12HLV3pZZcZcHrlTFIiqU,2617
-pip/_internal/models/link.py,sha256=_5okBLOR7vshRltnD11SC3cyD0aSxOa0lMpKWIwQ5UY,10490
-pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738
-pip/_internal/models/search_scope.py,sha256=LwloG0PJAmtI1hFXIypsD95kWE9xfR5hf_a2v1Vw7sk,4520
-pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907
-pip/_internal/models/target_python.py,sha256=qKpZox7J8NAaPmDs5C_aniwfPDxzvpkrCKqfwndG87k,3858
-pip/_internal/models/wheel.py,sha256=X_fakLR3OGF7HhrhwVXCUN-1wBwVCT2Lz0o3NguT_GQ,3575
-pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50
-pip/_internal/network/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/network/__pycache__/auth.cpython-310.pyc,,
-pip/_internal/network/__pycache__/cache.cpython-310.pyc,,
-pip/_internal/network/__pycache__/download.cpython-310.pyc,,
-pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc,,
-pip/_internal/network/__pycache__/session.cpython-310.pyc,,
-pip/_internal/network/__pycache__/utils.cpython-310.pyc,,
-pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc,,
-pip/_internal/network/auth.py,sha256=a3C7Xaa8kTJjXkdi_wrUjqaySc8Z9Yz7U6QIbXfzMyc,12190
-pip/_internal/network/cache.py,sha256=hgXftU-eau4MWxHSLquTMzepYq5BPC2zhCkhN3glBy8,2145
-pip/_internal/network/download.py,sha256=HvDDq9bVqaN3jcS3DyVJHP7uTqFzbShdkf7NFSoHfkw,6096
-pip/_internal/network/lazy_wheel.py,sha256=7YsbcpwOLyXbwCbR484ikhG9-C1FbUVABekVSBS0zHc,7637
-pip/_internal/network/session.py,sha256=BpDOJ7_Xw5VkgPYWsePzcaqOfcyRZcB2AW7W0HGBST0,18443
-pip/_internal/network/utils.py,sha256=6A5SrUJEEUHxbGtbscwU2NpCyz-3ztiDlGWHpRRhsJ8,4073
-pip/_internal/network/xmlrpc.py,sha256=AzQgG4GgS152_cqmGr_Oz2MIXsCal-xfsis7fA7nmU0,1791
-pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_internal/operations/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/operations/__pycache__/check.cpython-310.pyc,,
-pip/_internal/operations/__pycache__/freeze.cpython-310.pyc,,
-pip/_internal/operations/__pycache__/prepare.cpython-310.pyc,,
-pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc,,
-pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc,,
-pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc,,
-pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc,,
-pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc,,
-pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc,,
-pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc,,
-pip/_internal/operations/build/build_tracker.py,sha256=vf81EwomN3xe9G8qRJED0VGqNikmRQRQoobNsxi5Xrs,4133
-pip/_internal/operations/build/metadata.py,sha256=ES_uRmAvhrNm_nDTpZxshBfUsvnXtkj-g_4rZrH9Rww,1404
-pip/_internal/operations/build/metadata_editable.py,sha256=_Rai0VZjxoeJUkjkuICrq45LtjwFoDOveosMYH43rKc,1456
-pip/_internal/operations/build/metadata_legacy.py,sha256=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198
-pip/_internal/operations/build/wheel.py,sha256=AO9XnTGhTgHtZmU8Dkbfo1OGr41rBuSDjIgAa4zUKgE,1063
-pip/_internal/operations/build/wheel_editable.py,sha256=TVETY-L_M_dSEKBhTIcQOP75zKVXw8tuq1U354Mm30A,1405
-pip/_internal/operations/build/wheel_legacy.py,sha256=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064
-pip/_internal/operations/check.py,sha256=ca4O9CkPt9Em9sLCf3H0iVt1GIcW7M8C0U5XooaBuT4,5109
-pip/_internal/operations/freeze.py,sha256=mwTZ2uML8aQgo3k8MR79a7SZmmmvdAJqdyaknKbavmg,9784
-pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51
-pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc,,
-pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc,,
-pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc,,
-pip/_internal/operations/install/editable_legacy.py,sha256=ee4kfJHNuzTdKItbfAsNOSEwq_vD7DRPGkBdK48yBhU,1354
-pip/_internal/operations/install/legacy.py,sha256=cHdcHebyzf8w7OaOLwcsTNSMSSV8WBoAPFLay_9CjE8,4105
-pip/_internal/operations/install/wheel.py,sha256=ZbmrarCh74tariXY8rgI56jbZ1BJ2Z6u5fZt4nt3Gmw,27379
-pip/_internal/operations/prepare.py,sha256=kvL-s1ZUs53g1JIzmJ62j8FwCO_fKWXN45pAtVuz0xE,22962
-pip/_internal/pyproject.py,sha256=ob0Gb0l12YLZNxjdpZGRfWHgjqhZTnSVv96RuJyNOfs,7074
-pip/_internal/req/__init__.py,sha256=rUQ9d_Sh3E5kNYqX9pkN0D06YL-LrtcbJQ-LiIonq08,2807
-pip/_internal/req/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/req/__pycache__/constructors.cpython-310.pyc,,
-pip/_internal/req/__pycache__/req_file.cpython-310.pyc,,
-pip/_internal/req/__pycache__/req_install.cpython-310.pyc,,
-pip/_internal/req/__pycache__/req_set.cpython-310.pyc,,
-pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc,,
-pip/_internal/req/constructors.py,sha256=ypjtq1mOQ3d2mFkFPMf_6Mr8SLKeHQk3tUKHA1ddG0U,16611
-pip/_internal/req/req_file.py,sha256=Qgqx7qLfDO3ai72oO2U1u928_6Idajun5VFRWPZg3XM,17502
-pip/_internal/req/req_install.py,sha256=bOtpOZnDgmEst_QuWZRXViaPW1JJ1iAvO6vVFgFf0PI,33506
-pip/_internal/req/req_set.py,sha256=j3esG0s6SzoVReX9rWn4rpYNtyET_fwxbwJPRimvRxo,2858
-pip/_internal/req/req_uninstall.py,sha256=ZFQfgSNz6H1BMsgl87nQNr2iaQCcbFcmXpW8rKVQcic,24045
-pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/resolution/__pycache__/base.cpython-310.pyc,,
-pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583
-pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc,,
-pip/_internal/resolution/legacy/resolver.py,sha256=9em8D5TcSsEN4xZM1WreaRShOnyM4LlvhMSHpUPsocE,24129
-pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc,,
-pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc,,
-pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc,,
-pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc,,
-pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc,,
-pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc,,
-pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc,,
-pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc,,
-pip/_internal/resolution/resolvelib/base.py,sha256=u1O4fkvCO4mhmu5i32xrDv9AX5NgUci_eYVyBDQhTIM,5220
-pip/_internal/resolution/resolvelib/candidates.py,sha256=6kQZeMzwibnL4lO6bW0hUQQjNEvXfADdFphRRkRvOtc,18963
-pip/_internal/resolution/resolvelib/factory.py,sha256=OnjkLIgyk5Tol7uOOqapA1D4qiRHWmPU18DF1yN5N8o,27878
-pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705
-pip/_internal/resolution/resolvelib/provider.py,sha256=Vd4jW_NnyifB-HMkPYtZIO70M3_RM0MbL5YV6XyBM-w,9914
-pip/_internal/resolution/resolvelib/reporter.py,sha256=3ZVVYrs5PqvLFJkGLcuXoMK5mTInFzl31xjUpDBpZZk,2526
-pip/_internal/resolution/resolvelib/requirements.py,sha256=B1ndvKPSuyyyTEXt9sKhbwminViSWnBrJa7qO2ln4Z0,5455
-pip/_internal/resolution/resolvelib/resolver.py,sha256=nYZ9bTFXj5c1ILKnkSgU7tUCTYyo5V5J-J0sKoA7Wzg,11533
-pip/_internal/self_outdated_check.py,sha256=R3MmjCyUt_lkUNMc6p3xVSx7vX28XiDh3VDs5OrYn6Q,8020
-pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_internal/utils/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/_log.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/compat.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/datetime.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/encoding.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/glibc.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/hashes.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/logging.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/misc.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/models.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/packaging.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/urls.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc,,
-pip/_internal/utils/__pycache__/wheel.cpython-310.pyc,,
-pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015
-pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665
-pip/_internal/utils/compat.py,sha256=ACyBfLgj3_XG-iA5omEDrXqDM0cQKzi8h8HRBInzG6Q,1884
-pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377
-pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242
-pip/_internal/utils/deprecation.py,sha256=NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8,3627
-pip/_internal/utils/direct_url_helpers.py,sha256=6F1tc2rcKaCZmgfVwsE6ObIe_Pux23mUVYA-2D9wCFc,3206
-pip/_internal/utils/distutils_args.py,sha256=bYUt4wfFJRaeGO4VHia6FNaA8HlYXMcKuEq1zYijY5g,1115
-pip/_internal/utils/egg_link.py,sha256=5MVlpz5LirT4iLQq86OYzjXaYF0D4Qk1dprEI7ThST4,2203
-pip/_internal/utils/encoding.py,sha256=qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK-dIzb6-XJsL0,1169
-pip/_internal/utils/entrypoints.py,sha256=GgeG2FUbbYhQ0sYgG2AtM-a4d1P8MJYdmEl5IhQ-WeM,2900
-pip/_internal/utils/filesystem.py,sha256=RhMIXUaNVMGjc3rhsDahWQ4MavvEQDdqXqgq-F6fpw8,5122
-pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716
-pip/_internal/utils/glibc.py,sha256=tDfwVYnJCOC0BNVpItpy8CGLP9BjkxFHdl0mTS0J7fc,3110
-pip/_internal/utils/hashes.py,sha256=EPVx_I0UI8Gvu_skgLwpJA90pHZ5Ev1qNaZagYOub7I,4811
-pip/_internal/utils/inject_securetransport.py,sha256=o-QRVMGiENrTJxw3fAhA7uxpdEdw6M41TjHYtSVRrcg,795
-pip/_internal/utils/logging.py,sha256=U2q0i1n8hPS2gQh8qcocAg5dovGAa_bR24akmXMzrk4,11632
-pip/_internal/utils/misc.py,sha256=49Rs2NgrD4JGTKFt0farCm7FIAi-rjyoxgioArhCW_0,21617
-pip/_internal/utils/models.py,sha256=5GoYU586SrxURMvDn_jBMJInitviJg4O5-iOU-6I0WY,1193
-pip/_internal/utils/packaging.py,sha256=5Wm6_x7lKrlqVjPI5MBN_RurcRHwVYoQ7Ksrs84de7s,2108
-pip/_internal/utils/setuptools_build.py,sha256=vNH9hQB9wT6d-h1hVQhBKw91jNeT42meHpVeii-urOI,5652
-pip/_internal/utils/subprocess.py,sha256=MYySbvY7qBevRxq_RFfOsDqG4vMqrB4vDoL_eyPE6Bo,9197
-pip/_internal/utils/temp_dir.py,sha256=aCX489gRa4Nu0dMKRFyGhV6maJr60uEynu5uCbKR4Qg,7702
-pip/_internal/utils/unpacking.py,sha256=SBb2iV1crb89MDRTEKY86R4A_UOWApTQn9VQVcMDOlE,8821
-pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759
-pip/_internal/utils/virtualenv.py,sha256=4_48qMzCwB_F5jIK5BC_ua7uiAMVifmQWU9NdaGUoVA,3459
-pip/_internal/utils/wheel.py,sha256=lXOgZyTlOm5HmK8tw5iw0A3_5A6wRzsXHOaQkIvvloU,4549
-pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596
-pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc,,
-pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc,,
-pip/_internal/vcs/__pycache__/git.cpython-310.pyc,,
-pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc,,
-pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc,,
-pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc,,
-pip/_internal/vcs/bazaar.py,sha256=IGb5ca1xSZfgegRD2_JeyoZPrQQHs7lEYEIgpVsKpoU,3047
-pip/_internal/vcs/git.py,sha256=mjhwudCx9WlLNkxZ6_kOKmueF0rLoU2i1xeASKF6yiQ,18116
-pip/_internal/vcs/mercurial.py,sha256=Bzbd518Jsx-EJI0IhIobiQqiRsUv5TWYnrmRIFWE0Gw,5238
-pip/_internal/vcs/subversion.py,sha256=TEMRdwECvMcXakZX0pTNUep79kmBYkWDkWFkrYmcmac,11718
-pip/_internal/vcs/versioncontrol.py,sha256=KUOc-hN51em9jrqxKwUR3JnkgSE-xSOqMiiJcSaL6B8,22811
-pip/_internal/wheel_builder.py,sha256=S-_i83q75xGqKjBenUl4uaTkLyXcZf7jFgChcCNi0xc,12712
-pip/_vendor/__init__.py,sha256=fNxOSVD0auElsD8fN9tuq5psfgMQ-RFBtD4X5gjlRkg,4966
-pip/_vendor/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/__pycache__/six.cpython-310.pyc,,
-pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc,,
-pip/_vendor/cachecontrol/__init__.py,sha256=hrxlv3q7upsfyMw8k3gQ9vagBax1pYHSGGqYlZ0Zk0M,465
-pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc,,
-pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc,,
-pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc,,
-pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc,,
-pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc,,
-pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc,,
-pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc,,
-pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc,,
-pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc,,
-pip/_vendor/cachecontrol/_cmd.py,sha256=lxUXqfNTVx84zf6tcWbkLZHA6WVBRtJRpfeA9ZqhaAY,1379
-pip/_vendor/cachecontrol/adapter.py,sha256=ew9OYEQHEOjvGl06ZsuX8W3DAvHWsQKHwWAxISyGug8,5033
-pip/_vendor/cachecontrol/cache.py,sha256=Tty45fOjH40fColTGkqKQvQQmbYsMpk-nCyfLcv2vG4,1535
-pip/_vendor/cachecontrol/caches/__init__.py,sha256=h-1cUmOz6mhLsjTjOrJ8iPejpGdLCyG4lzTftfGZvLg,242
-pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc,,
-pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc,,
-pip/_vendor/cachecontrol/caches/file_cache.py,sha256=GpexcE29LoY4MaZwPUTcUBZaDdcsjqyLxZFznk8Hbr4,5271
-pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=mp-QWonP40I3xJGK3XVO-Gs9a3UjzlqqEmp9iLJH9F4,1033
-pip/_vendor/cachecontrol/compat.py,sha256=LNx7vqBndYdHU8YuJt53ab_8rzMGTXVrvMb7CZJkxG0,778
-pip/_vendor/cachecontrol/controller.py,sha256=bAYrt7x_VH4toNpI066LQxbHpYGpY1MxxmZAhspplvw,16416
-pip/_vendor/cachecontrol/filewrapper.py,sha256=X4BAQOO26GNOR7nH_fhTzAfeuct2rBQcx_15MyFBpcs,3946
-pip/_vendor/cachecontrol/heuristics.py,sha256=8kAyuZLSCyEIgQr6vbUwfhpqg9ows4mM0IV6DWazevI,4154
-pip/_vendor/cachecontrol/serialize.py,sha256=_U1NU_C-SDgFzkbAxAsPDgMTHeTWZZaHCQnZN_jh0U8,7105
-pip/_vendor/cachecontrol/wrapper.py,sha256=X3-KMZ20Ho3VtqyVaXclpeQpFzokR5NE8tZSfvKVaB8,774
-pip/_vendor/certifi/__init__.py,sha256=SuZ3iYmzdRyUv-PiaZkquUgXtWZ16ICUKgymlEBspx0,94
-pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255
-pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc,,
-pip/_vendor/certifi/__pycache__/core.cpython-310.pyc,,
-pip/_vendor/certifi/cacert.pem,sha256=pZ_eiDoO-ddKudrQCWieABc9KFlbV0FsmLLugygMbkw,285222
-pip/_vendor/certifi/core.py,sha256=g6EYcIFUAhYv5CB9B94iKRgMfGj8f82MF0CRdTDovxM,3052
-pip/_vendor/chardet/__init__.py,sha256=9-r0i294avRciob2HKVcKf6GJmXPHpgMqIijVrqHBDU,3705
-pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc,,
-pip/_vendor/chardet/__pycache__/version.cpython-310.pyc,,
-pip/_vendor/chardet/big5freq.py,sha256=ltcfP-3PjlNHCoo5e4a7C4z-2DhBTXRfY6jbMbB7P30,31274
-pip/_vendor/chardet/big5prober.py,sha256=neUXIlq35507yibstiznZWFzyNcMn6EXrqJaUJVPWKg,1741
-pip/_vendor/chardet/chardistribution.py,sha256=M9NTKdM72KieFKy4TT5eml4PP0WaVcXuY5PpWSFD0FA,9608
-pip/_vendor/chardet/charsetgroupprober.py,sha256=CaIBAmNitEsYuSgMvgAsMREN4cLxMj5OYwMhVo6MAxk,3817
-pip/_vendor/chardet/charsetprober.py,sha256=Eo3w8sCmbvnVKOGNW1iy50KATVs8xV-gF7cQ0VG85dQ,4801
-pip/_vendor/chardet/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc,,
-pip/_vendor/chardet/cli/chardetect.py,sha256=1qMxT3wrp5vP6ugSf1-Zz3BWwlbCWJ0jzeCuhgX85vw,2406
-pip/_vendor/chardet/codingstatemachine.py,sha256=BiGR9kgTYbS4gJI5qBmE52HMOBOR_roDvXf7aIehdEk,3559
-pip/_vendor/chardet/cp949prober.py,sha256=kCQEaOCzMntqv7pAyXEobWTRgIUxYfoiUr0btXO1nI8,1838
-pip/_vendor/chardet/enums.py,sha256=Rodw4p61Vg9U-oCo6eUuT7uDzKwIbCaA15HwbvCoCNk,1619
-pip/_vendor/chardet/escprober.py,sha256=girD61r3NsQLnMQXsWWBU4hHuRJzTH3V7-VfTUr-nQY,3864
-pip/_vendor/chardet/escsm.py,sha256=0Vs4iPPovberMoSxxnK5pI161Xf-mtKgOl14g5Xc7zg,12021
-pip/_vendor/chardet/eucjpprober.py,sha256=pGgs4lINwCEDV2bxqIZ6hXpaj2j4l2oLsMx6kuOK_zQ,3676
-pip/_vendor/chardet/euckrfreq.py,sha256=3mHuRvXfsq_QcQysDQFb8qSudvTiol71C6Ic2w57tKM,13566
-pip/_vendor/chardet/euckrprober.py,sha256=qBuSS2zXWaoUmGdzz3owAnD1GNhuKR_8bYzDC3yxe6I,1731
-pip/_vendor/chardet/euctwfreq.py,sha256=2alILE1Lh5eqiFJZjzRkMQXolNJRHY5oBQd-vmZYFFM,36913
-pip/_vendor/chardet/euctwprober.py,sha256=SLnCoJC94jZL8PJio60Q8PZACJA1rVPtUdWMa1W8Pwk,1731
-pip/_vendor/chardet/gb2312freq.py,sha256=49OrdXzD-HXqwavkqjo8Z7gvs58hONNzDhAyMENNkvY,20735
-pip/_vendor/chardet/gb2312prober.py,sha256=NS_i52jZE0TnWGkKqFduvu9fzW0nMcS2XbYJ8qSX8hY,1737
-pip/_vendor/chardet/hebrewprober.py,sha256=1l1hXF8-2IWDrPkf85UvAO1GVtMfY1r11kDgOqa-gU4,13919
-pip/_vendor/chardet/jisfreq.py,sha256=mm8tfrwqhpOd3wzZKS4NJqkYBQVcDfTM2JiQ5aW932E,25796
-pip/_vendor/chardet/johabfreq.py,sha256=dBpOYG34GRX6SL8k_LbS9rxZPMjLjoMlgZ03Pz5Hmqc,42498
-pip/_vendor/chardet/johabprober.py,sha256=C18osd4vMPfy9facw-Y1Lor_9UrW0PeV-zxM2fu441c,1730
-pip/_vendor/chardet/jpcntx.py,sha256=m1gDpPkRca4EDwym8XSL5YdoILFnFsDbNBYMQV7_-NE,26797
-pip/_vendor/chardet/langbulgarianmodel.py,sha256=vmbvYFP8SZkSxoBvLkFqKiH1sjma5ihk3PTpdy71Rr4,104562
-pip/_vendor/chardet/langgreekmodel.py,sha256=JfB7bupjjJH2w3X_mYnQr9cJA_7EuITC2cRW13fUjeI,98484
-pip/_vendor/chardet/langhebrewmodel.py,sha256=3HXHaLQPNAGcXnJjkIJfozNZLTvTJmf4W5Awi6zRRKc,98196
-pip/_vendor/chardet/langhungarianmodel.py,sha256=WxbeQIxkv8YtApiNqxQcvj-tMycsoI4Xy-fwkDHpP_Y,101363
-pip/_vendor/chardet/langrussianmodel.py,sha256=s395bTZ87ESTrZCOdgXbEjZ9P1iGPwCl_8xSsac_DLY,128035
-pip/_vendor/chardet/langthaimodel.py,sha256=7bJlQitRpTnVGABmbSznHnJwOHDy3InkTvtFUx13WQI,102774
-pip/_vendor/chardet/langturkishmodel.py,sha256=XY0eGdTIy4eQ9Xg1LVPZacb-UBhHBR-cq0IpPVHowKc,95372
-pip/_vendor/chardet/latin1prober.py,sha256=u_iGcQMUcZLXvj4B_WXx4caA0C5oaE2Qj1KTpz_RQ1I,5260
-pip/_vendor/chardet/mbcharsetprober.py,sha256=iKKuB6o_FF80NynRLBDT0UtwOnpLqmL_OspRPMib7CM,3367
-pip/_vendor/chardet/mbcsgroupprober.py,sha256=1D_kp9nv2_NQRddq9I2WDvB35OJh7Tfpo-OYTnL3B5o,2056
-pip/_vendor/chardet/mbcssm.py,sha256=EfORNu1WXgnFvpFarU8uJHS8KFif63xmgrHOB4DdDdY,30068
-pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc,,
-pip/_vendor/chardet/metadata/languages.py,sha256=HcaBygWtZq3gR8prIkJp_etvkhm2V4pUIToqjPZhgrc,13280
-pip/_vendor/chardet/sbcharsetprober.py,sha256=VvtWiNRLbHDZ5xgnofsmP1u8VQIkkaAuw3Ir9m1zDzQ,6199
-pip/_vendor/chardet/sbcsgroupprober.py,sha256=mekr4E3hgT4onmwi8oi1iEGW1CN-Z-BArG6kOtCunJw,4129
-pip/_vendor/chardet/sjisprober.py,sha256=sLfWS25PVFr5cDGhEf6h_s-RJsyeSteA-4ynsTl_UvA,3749
-pip/_vendor/chardet/universaldetector.py,sha256=BHeNWt1kn0yQgnR6xNtLAjiNmEQpSHYlKEvuZ9QyR1k,13288
-pip/_vendor/chardet/utf1632prober.py,sha256=N42YJEOkVDB67c38t5aJhXMG1QvnyWWDMNY5ERzniU0,8289
-pip/_vendor/chardet/utf8prober.py,sha256=mnLaSBV4gg-amt2WmxKFKWy4vVBedMNgjdbvgzBo0Dc,2709
-pip/_vendor/chardet/version.py,sha256=u_QYi-DXU1s7fyC_Rwa0I0-UcxMVmH7Co6c7QGKbe3g,242
-pip/_vendor/colorama/__init__.py,sha256=ihDoWQOkapwF7sqQ99AoDoEF3vGYm40OtmgW211cLZw,239
-pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc,,
-pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc,,
-pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc,,
-pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc,,
-pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc,,
-pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522
-pip/_vendor/colorama/ansitowin32.py,sha256=gGrO7MVtwc-j1Sq3jKfZpERT1JWmYSOsTVDiTnFbZU4,10830
-pip/_vendor/colorama/initialise.py,sha256=PprovDNxMTrvoNHFcL2NZjpH2XzDc8BLxLxiErfUl4k,1915
-pip/_vendor/colorama/win32.py,sha256=bJ8Il9jwaBN5BJ8bmN6FoYZ1QYuMKv2j8fGrXh7TJjw,5404
-pip/_vendor/colorama/winterm.py,sha256=2y_2b7Zsv34feAsP67mLOVc-Bgq51mdYGo571VprlrM,6438
-pip/_vendor/distlib/__init__.py,sha256=kshNHF2XFPxmBv57X7Jsj7c6VzF5r9naVwGePP-s5Wc,581
-pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/database.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/index.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/util.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/version.cpython-310.pyc,,
-pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc,,
-pip/_vendor/distlib/compat.py,sha256=tfoMrj6tujk7G4UC2owL6ArgDuCKabgBxuJRGZSmpko,41259
-pip/_vendor/distlib/database.py,sha256=o_mw0fAr93NDAHHHfqG54Y1Hi9Rkfrp2BX15XWZYK50,51697
-pip/_vendor/distlib/index.py,sha256=HFiDG7LMoaBs829WuotrfIwcErOOExUOR_AeBtw_TCU,20834
-pip/_vendor/distlib/locators.py,sha256=wNzG-zERzS_XGls-nBPVVyLRHa2skUlkn0-5n0trMWA,51991
-pip/_vendor/distlib/manifest.py,sha256=nQEhYmgoreaBZzyFzwYsXxJARu3fo4EkunU163U16iE,14811
-pip/_vendor/distlib/markers.py,sha256=TpHHHLgkzyT7YHbwj-2i6weRaq-Ivy2-MUnrDkjau-U,5058
-pip/_vendor/distlib/metadata.py,sha256=g_DIiu8nBXRzA-mWPRpatHGbmFZqaFoss7z9TG7QSUU,39801
-pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820
-pip/_vendor/distlib/scripts.py,sha256=BmkTKmiTk4m2cj-iueliatwz3ut_9SsABBW51vnQnZU,18102
-pip/_vendor/distlib/t32.exe,sha256=lD3IWCwZiYZ9onypJifi2R1sGS-S24t3mYupsEAOKyA,97792
-pip/_vendor/distlib/t64-arm.exe,sha256=3hjLTLg7XBVHwDxgzZpkiHXXp4IJQMLvg_ZlGGpKZDI,182784
-pip/_vendor/distlib/t64.exe,sha256=vvS31h4-SnumthypJJKAWBeBh7cxSJ8AwGmbqumM05k,107520
-pip/_vendor/distlib/util.py,sha256=31dPXn3Rfat0xZLeVoFpuniyhe6vsbl9_QN-qd9Lhlk,66262
-pip/_vendor/distlib/version.py,sha256=WG__LyAa2GwmA6qSoEJtvJE8REA1LZpbSizy8WvhJLk,23513
-pip/_vendor/distlib/w32.exe,sha256=-a9nfgVZClK_mGnbQtXVLbn7xtPYw3xDKTddKnu2AJ8,91648
-pip/_vendor/distlib/w64-arm.exe,sha256=LW-JyIIGblDOp8Psy8igJXDvcg_YpJIINvN0tRjfv18,168448
-pip/_vendor/distlib/w64.exe,sha256=XvKqAoQzca86ERd2-KV5Vo1RSOBM28I2a35sPQONrYI,101888
-pip/_vendor/distlib/wheel.py,sha256=Rgqs658VsJ3R2845qwnZD8XQryV2CzWw2mghwLvxxsI,43898
-pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981
-pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64
-pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc,,
-pip/_vendor/distro/__pycache__/distro.cpython-310.pyc,,
-pip/_vendor/distro/distro.py,sha256=UYQG_9H_iSOt422uasA92HlY7aXeTnWKdV-IhsSAdwQ,48841
-pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849
-pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/idna/__pycache__/codec.cpython-310.pyc,,
-pip/_vendor/idna/__pycache__/compat.cpython-310.pyc,,
-pip/_vendor/idna/__pycache__/core.cpython-310.pyc,,
-pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc,,
-pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc,,
-pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc,,
-pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc,,
-pip/_vendor/idna/codec.py,sha256=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374
-pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321
-pip/_vendor/idna/core.py,sha256=RFIkY-HhFZaDoBEFjGwyGd_vWI04uOAQjnzueMWqwOU,12795
-pip/_vendor/idna/idnadata.py,sha256=fzMzkCea2xieVxcrjngJ-2pLsKQNejPCZFlBajIuQdw,44025
-pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881
-pip/_vendor/idna/package_data.py,sha256=szxQhV0ZD0nKJ84Kuobw3l8q4_KeCyXjFRdpwIpKZmw,21
-pip/_vendor/idna/uts46data.py,sha256=o-D7V-a0fOLZNd7tvxof6MYfUd0TBZzE2bLR5XO67xU,204400
-pip/_vendor/msgpack/__init__.py,sha256=NryGaKLDk_Egd58ZxXpnuI7OWO27AXz7S6CBFRM3sAY,1132
-pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc,,
-pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc,,
-pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc,,
-pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081
-pip/_vendor/msgpack/ext.py,sha256=TuldJPkYu8Wo_Xh0tFGL2l06-gY88NSR8tOje9fo2Wg,6080
-pip/_vendor/msgpack/fallback.py,sha256=OORDn86-fHBPlu-rPlMdM10KzkH6S_Rx9CHN1b7o4cg,34557
-pip/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661
-pip/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497
-pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc,,
-pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc,,
-pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc,,
-pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc,,
-pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc,,
-pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc,,
-pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc,,
-pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc,,
-pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc,,
-pip/_vendor/packaging/__pycache__/version.cpython-310.pyc,,
-pip/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488
-pip/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378
-pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431
-pip/_vendor/packaging/markers.py,sha256=AJBOcY8Oq0kYc570KuuPTkvuqjAlhufaE2c9sCUbm64,8487
-pip/_vendor/packaging/requirements.py,sha256=NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA-Xb4m5NA,4676
-pip/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110
-pip/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699
-pip/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200
-pip/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665
-pip/_vendor/pep517/__init__.py,sha256=Y1bATL2qbFNN6M_DQa4yyrwqjpIiL-j9T6kBmR0DS14,130
-pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/pep517/__pycache__/build.cpython-310.pyc,,
-pip/_vendor/pep517/__pycache__/check.cpython-310.pyc,,
-pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc,,
-pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc,,
-pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc,,
-pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc,,
-pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc,,
-pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc,,
-pip/_vendor/pep517/build.py,sha256=2bar6EdjwIz2Dlfy94qdxn3oA9mVnnny40mfoT5f-qI,3457
-pip/_vendor/pep517/check.py,sha256=bCORq1WrHjhpTONa-zpAqG0EB9rHNuhO1ORu6DsDuL8,6084
-pip/_vendor/pep517/colorlog.py,sha256=Tk9AuYm_cLF3BKTBoSTJt9bRryn0aFojIQOwbfVUTxQ,4098
-pip/_vendor/pep517/compat.py,sha256=NmLImE5oiDT3gbEhJ4w7xeoMFcpAPrGu_NltBytSJUY,1253
-pip/_vendor/pep517/dirtools.py,sha256=2mkAkAL0mRz_elYFjRKuekTJVipH1zTn4tbf1EDev84,1129
-pip/_vendor/pep517/envbuild.py,sha256=zFde--rmzjXMLXcm7SA_3hDtgk5VCTA8hjpk88RbF6E,6100
-pip/_vendor/pep517/in_process/__init__.py,sha256=MyWoAi8JHdcBv7yXuWpUSVADbx6LSB9rZh7kTIgdA8Y,563
-pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc,,
-pip/_vendor/pep517/in_process/_in_process.py,sha256=D3waguyNSGcwosociD5USfcycYr2RCzCjYtxX5UHQmQ,11201
-pip/_vendor/pep517/meta.py,sha256=8mnM5lDnT4zXQpBTliJbRGfesH7iioHwozbDxALPS9Y,2463
-pip/_vendor/pep517/wrappers.py,sha256=impq7Cz_LL1iDF1iiOzYWB4MaEu6O6Gps7TJ5qsJz1Q,13429
-pip/_vendor/pkg_resources/__init__.py,sha256=NnpQ3g6BCHzpMgOR_OLBmYtniY4oOzdKpwqghfq_6ug,108287
-pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc,,
-pip/_vendor/pkg_resources/py31compat.py,sha256=CRk8fkiPRDLsbi5pZcKsHI__Pbmh_94L8mr9Qy9Ab2U,562
-pip/_vendor/platformdirs/__init__.py,sha256=x0aUmmovXXuRFVrVQBtwIiovX12B7rUkdV4F9UlLz0Y,12831
-pip/_vendor/platformdirs/__main__.py,sha256=ZmsnTxEOxtTvwa-Y_Vfab_JN3X4XCVeN8X0yyy9-qnc,1176
-pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc,,
-pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc,,
-pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc,,
-pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc,,
-pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc,,
-pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc,,
-pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc,,
-pip/_vendor/platformdirs/android.py,sha256=GKizhyS7ESRiU67u8UnBJLm46goau9937EchXWbPBlk,4068
-pip/_vendor/platformdirs/api.py,sha256=MXKHXOL3eh_-trSok-JUTjAR_zjmmKF3rjREVABjP8s,4910
-pip/_vendor/platformdirs/macos.py,sha256=-3UXQewbT0yMhMdkzRXfXGAntmLIH7Qt4a9Hlf8I5_Y,2655
-pip/_vendor/platformdirs/unix.py,sha256=b4aVYTz0qZ50HntwOXo8r6tp82jAa3qTjxw-WlnC2yc,6910
-pip/_vendor/platformdirs/version.py,sha256=tsBKKPDX3LLh39yHXeTYauGRbRd-AmOJr9SwKldlFIU,78
-pip/_vendor/platformdirs/windows.py,sha256=ISruopR5UGBePC0BxCxXevkZYfjJsIZc49YWU5iYfQ4,6439
-pip/_vendor/pygments/__init__.py,sha256=M4yPkVb6x8OkEb4tHfVU8p6B3DBEsshB_8a2gZvr4FE,3002
-pip/_vendor/pygments/__main__.py,sha256=p0_rz3JZmNZMNZBOqDojaEx1cr9wmA9FQZX_TYl74lQ,353
-pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/console.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/style.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/token.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc,,
-pip/_vendor/pygments/__pycache__/util.cpython-310.pyc,,
-pip/_vendor/pygments/cmdline.py,sha256=HYs14dbtMgL7t_BJ7B84NXlFjOzMYgW7Z0ZSxkTJun4,23408
-pip/_vendor/pygments/console.py,sha256=hQfqCFuOlGk7DW2lPQYepsw-wkOH1iNt9ylNA1eRymM,1697
-pip/_vendor/pygments/filter.py,sha256=NglMmMPTRRv-zuRSE_QbWid7JXd2J4AvwjCW2yWALXU,1938
-pip/_vendor/pygments/filters/__init__.py,sha256=F8WwJguaJLs3bomEH8LyVATQfpULTpSpTd4PRPONR5A,40292
-pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/pygments/formatter.py,sha256=6-TS2Y8pUMeWIUolWwr1O8ruC-U6HydWDwOdbAiJgJQ,2917
-pip/_vendor/pygments/formatters/__init__.py,sha256=5LfCZThsbVVtZU5OyavkRPwC0MV7tB6pqcJ793PWi6E,5119
-pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc,,
-pip/_vendor/pygments/formatters/_mapping.py,sha256=QLyYZ7Cv9W7YcM8seq0XqR3MXW3MzoFZSyHd7BDNU84,6517
-pip/_vendor/pygments/formatters/bbcode.py,sha256=JrL4ITjN-KzPcuQpPMBf1pm33eW2sDUNr8WzSoAJsJA,3314
-pip/_vendor/pygments/formatters/groff.py,sha256=xrOFoLbafSA9uHsSLRogy79_Zc4GWJ8tMK2hCdTJRsw,5086
-pip/_vendor/pygments/formatters/html.py,sha256=QNt9prPgxmbKx2M-nfDwoR1bIg06-sNouQuWnE434Wc,35441
-pip/_vendor/pygments/formatters/img.py,sha256=j3hHU1fhbBEIKEtWTV-vc-z-5c2nqoobOty3QqeQbpk,21819
-pip/_vendor/pygments/formatters/irc.py,sha256=iwk5tDJOxbCV64SCmOFyvk__x6RD60ay0nUn7ko9n7U,5871
-pip/_vendor/pygments/formatters/latex.py,sha256=thPbytJCIs2AUXsO3NZwqKtXJ-upOlcXP4CXsx94G4w,19351
-pip/_vendor/pygments/formatters/other.py,sha256=PczqK1Rms43lz6iucOLPeBMxIncPKOGBt-195w1ynII,5073
-pip/_vendor/pygments/formatters/pangomarkup.py,sha256=ZZzMsKJKXrsDniFeMTkIpe7aQ4VZYRHu0idWmSiUJ2U,2212
-pip/_vendor/pygments/formatters/rtf.py,sha256=abrKlWjipBkQvhIICxtjYTUNv6WME0iJJObFvqVuudE,5014
-pip/_vendor/pygments/formatters/svg.py,sha256=6MM9YyO8NhU42RTQfTWBiagWMnsf9iG5gwhqSriHORE,7335
-pip/_vendor/pygments/formatters/terminal.py,sha256=NpEGvwkC6LgMLQTjVzGrJXji3XcET1sb5JCunSCzoRo,4674
-pip/_vendor/pygments/formatters/terminal256.py,sha256=4v4OVizvsxtwWBpIy_Po30zeOzE5oJg_mOc1-rCjMDk,11753
-pip/_vendor/pygments/lexer.py,sha256=ZPB_TGn_qzrXodRFwEdPzzJk6LZBo9BlfSy3lacc6zg,32005
-pip/_vendor/pygments/lexers/__init__.py,sha256=Gku6kqn9IvgIdvV50gISPo0mmyyMNYRoUliEwhw6eNY,11491
-pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc,,
-pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc,,
-pip/_vendor/pygments/lexers/_mapping.py,sha256=sExOsmEbtg7hKwXgSz6M3L77cKPaOgskzxOCdw_GxVc,72083
-pip/_vendor/pygments/lexers/python.py,sha256=QWj4ud4brZCj0-LXjR7IcO0kL6lqM2HzM_DzZZxMRjg,52792
-pip/_vendor/pygments/modeline.py,sha256=gIbMSYrjSWPk0oATz7W9vMBYkUyTK2OcdVyKjioDRvA,986
-pip/_vendor/pygments/plugin.py,sha256=tIRWetjR4dokpgbbFnsx7jjfN57T4-Z4errH1eVgGYw,1727
-pip/_vendor/pygments/regexopt.py,sha256=c6xcXGpGgvCET_3VWawJJqAnOp0QttFpQEdOPNY2Py0,3072
-pip/_vendor/pygments/scanner.py,sha256=F2T2G6cpkj-yZtzGQr-sOBw5w5-96UrJWveZN6va2aM,3092
-pip/_vendor/pygments/sphinxext.py,sha256=F8L0211sPnXaiWutN0lkSUajWBwlgDMIEFFAbMWOvZY,4630
-pip/_vendor/pygments/style.py,sha256=RRnussX1YiK9Z7HipIvKorImxu3-HnkdpPCO4u925T0,6257
-pip/_vendor/pygments/styles/__init__.py,sha256=eVJlJqbmc-TYSQEEl-2yhbtnW6INfuvlayJOiXrt9ro,3252
-pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/pygments/token.py,sha256=naybicpgOtSlh3vMGvbbx2T_6qEdGWYEH_RJ4gacIcc,6143
-pip/_vendor/pygments/unistring.py,sha256=gP3gK-6C4oAFjjo9HvoahsqzuV4Qz0jl0E0OxfDerHI,63187
-pip/_vendor/pygments/util.py,sha256=KgwpWWC3By5AiNwxGTI7oI9aXupH2TyZWukafBJe0Mg,9110
-pip/_vendor/pyparsing/__init__.py,sha256=ZPdI7pPo4IYXcABw-51AcqOzsxVvDtqnQbyn_qYWZvo,9171
-pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc,,
-pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc,,
-pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc,,
-pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc,,
-pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc,,
-pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc,,
-pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc,,
-pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc,,
-pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc,,
-pip/_vendor/pyparsing/actions.py,sha256=wU9i32e0y1ymxKE3OUwSHO-SFIrt1h_wv6Ws0GQjpNU,6426
-pip/_vendor/pyparsing/common.py,sha256=lFL97ooIeR75CmW5hjURZqwDCTgruqltcTCZ-ulLO2Q,12936
-pip/_vendor/pyparsing/core.py,sha256=AzTm1KFT1FIhiw2zvXZJmrpQoAwB0wOmeDCiR6SYytw,213344
-pip/_vendor/pyparsing/diagram/__init__.py,sha256=KW0PV_TvWKnL7jysz0pQbZ24nzWWu2ZfNaeyUIIywIg,23685
-pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/pyparsing/exceptions.py,sha256=3LbSafD32NYb1Tzt85GHNkhEAU1eZkTtNSk24cPMemo,9023
-pip/_vendor/pyparsing/helpers.py,sha256=QpUOjW0-psvueMwWb9bQpU2noqKCv98_wnw1VSzSdVo,39129
-pip/_vendor/pyparsing/results.py,sha256=HgNvWVXBdQP-Q6PtJfoCEeOJk2nwEvG-2KVKC5sGA30,25341
-pip/_vendor/pyparsing/testing.py,sha256=7tu4Abp4uSeJV0N_yEPRmmNUhpd18ZQP3CrX41DM814,13402
-pip/_vendor/pyparsing/unicode.py,sha256=fwuhMj30SQ165Cv7HJpu-rSxGbRm93kN9L4Ei7VGc1Y,10787
-pip/_vendor/pyparsing/util.py,sha256=kq772O5YSeXOSdP-M31EWpbH_ayj7BMHImBYo9xPD5M,6805
-pip/_vendor/requests/__init__.py,sha256=3XN75ZS4slWy3TQsEGF7-Q6l2R146teU-s2_rXNhxhU,5178
-pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/api.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/auth.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/certs.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/compat.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/help.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/models.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/packages.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/structures.cpython-310.pyc,,
-pip/_vendor/requests/__pycache__/utils.cpython-310.pyc,,
-pip/_vendor/requests/__version__.py,sha256=nJVa3ef2yRyeYMhy7yHnRyjjpnNTDykZsE4Sp9irBC4,440
-pip/_vendor/requests/_internal_utils.py,sha256=aSPlF4uDhtfKxEayZJJ7KkAxtormeTfpwKSBSwtmAUw,1397
-pip/_vendor/requests/adapters.py,sha256=GFEz5koZaMZD86v0SHXKVB5SE9MgslEjkCQzldkNwVM,21443
-pip/_vendor/requests/api.py,sha256=dyvkDd5itC9z2g0wHl_YfD1yf6YwpGWLO7__8e21nks,6377
-pip/_vendor/requests/auth.py,sha256=h-HLlVx9j8rKV5hfSAycP2ApOSglTz77R0tz7qCbbEE,10187
-pip/_vendor/requests/certs.py,sha256=kHDlkK_beuHXeMPc5jta2wgl8gdKeUWt5f2nTDVrvt8,441
-pip/_vendor/requests/compat.py,sha256=IhK9quyX0RRuWTNcg6d2JGSAOUbM6mym2p_2XjLTwf4,1286
-pip/_vendor/requests/cookies.py,sha256=kD3kNEcCj-mxbtf5fJsSaT86eGoEYpD3X0CSgpzl7BM,18560
-pip/_vendor/requests/exceptions.py,sha256=FA-_kVwBZ2jhXauRctN_ewHVK25b-fj0Azyz1THQ0Kk,3823
-pip/_vendor/requests/help.py,sha256=FnAAklv8MGm_qb2UilDQgS6l0cUttiCFKUjx0zn2XNA,3879
-pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733
-pip/_vendor/requests/models.py,sha256=GZRMMrGwDOLVvVfFHLUq0qTfIWDla3NcFHa1f5xs9Q8,35287
-pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695
-pip/_vendor/requests/sessions.py,sha256=KUqJcRRLovNefUs7ScOXSUVCcfSayTFWtbiJ7gOSlTI,30180
-pip/_vendor/requests/status_codes.py,sha256=FvHmT5uH-_uimtRz5hH9VCbt7VV-Nei2J9upbej6j8g,4235
-pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912
-pip/_vendor/requests/utils.py,sha256=0gzSOcx9Ya4liAbHnHuwt4jM78lzCZZoDFgkmsInNUg,33240
-pip/_vendor/resolvelib/__init__.py,sha256=UL-B2BDI0_TRIqkfGwLHKLxY-LjBlomz7941wDqzB1I,537
-pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc,,
-pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc,,
-pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc,,
-pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc,,
-pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc,,
-pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156
-pip/_vendor/resolvelib/providers.py,sha256=roVmFBItQJ0TkhNua65h8LdNny7rmeqVEXZu90QiP4o,5872
-pip/_vendor/resolvelib/reporters.py,sha256=fW91NKf-lK8XN7i6Yd_rczL5QeOT3sc6AKhpaTEnP3E,1583
-pip/_vendor/resolvelib/resolvers.py,sha256=2wYzVGBGerbmcIpH8cFmgSKgLSETz8jmwBMGjCBMHG4,17592
-pip/_vendor/resolvelib/structs.py,sha256=IVIYof6sA_N4ZEiE1C1UhzTX495brCNnyCdgq6CYq28,4794
-pip/_vendor/rich/__init__.py,sha256=zREyQ22R3zKg8gMdhiikczdVQYtZNeayHNrbBg5scm0,5944
-pip/_vendor/rich/__main__.py,sha256=BmTmBWI93ytq75IEPi1uAAdeRYzFfDbgaAXjsX1ogig,8808
-pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/abc.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/align.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/bar.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/box.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/cells.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/color.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/columns.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/console.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/containers.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/control.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/errors.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/json.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/layout.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/live.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/logging.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/markup.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/measure.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/padding.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/pager.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/palette.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/panel.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/progress.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/region.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/repr.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/rule.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/scope.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/screen.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/segment.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/status.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/style.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/styled.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/table.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/text.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/theme.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/themes.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc,,
-pip/_vendor/rich/__pycache__/tree.cpython-310.pyc,,
-pip/_vendor/rich/_cell_widths.py,sha256=2n4EiJi3X9sqIq0O16kUZ_zy6UYMd3xFfChlKfnW1Hc,10096
-pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235
-pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064
-pip/_vendor/rich/_export_format.py,sha256=nHArqOljIlYn6NruhWsAsh-fHo7oJC3y9BDJyAa-QYQ,2114
-pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265
-pip/_vendor/rich/_inspect.py,sha256=oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk,9695
-pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225
-pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236
-pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063
-pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423
-pip/_vendor/rich/_ratio.py,sha256=2lLSliL025Y-YMfdfGbutkQDevhcyDqc-DtUYW9mU70,5472
-pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919
-pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351
-pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417
-pip/_vendor/rich/_win32_console.py,sha256=P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24_gug,22820
-pip/_vendor/rich/_windows.py,sha256=dvNl9TmfPzNVxiKk5WDFihErZ5796g2UC9-KGGyfXmk,1926
-pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783
-pip/_vendor/rich/_wrap.py,sha256=xfV_9t0Sg6rzimmrDru8fCVmUlalYAcHLDfrJZnbbwQ,1840
-pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890
-pip/_vendor/rich/align.py,sha256=FV6_GS-8uhIyViMng3hkIWSFaTgMohK1Oqyjl8I8mGE,10368
-pip/_vendor/rich/ansi.py,sha256=HtaPG7dvgL6_yo0sQmx5CM05DJ4_1goY5SWXXOYNaKs,6820
-pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264
-pip/_vendor/rich/box.py,sha256=1Iv1sUWqjtp5XwLwGH-AJ8HgyXZ7dRFUkO0z3M_bRl8,9864
-pip/_vendor/rich/cells.py,sha256=zMjFI15wCpgjLR14lHdfFMVC6qMDi5OsKIB0PYZBBMk,4503
-pip/_vendor/rich/color.py,sha256=kp87L8V4-3qayE6CUxtW_nP8Ujfew_-DAhNwYMXBMOY,17957
-pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054
-pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131
-pip/_vendor/rich/console.py,sha256=bTT9DNX03V4cQXefg22d-gLSs_e_ZY2zdCvLIlEyU2Q,95885
-pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288
-pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497
-pip/_vendor/rich/control.py,sha256=DSkHTUQLorfSERAKE_oTAEUFefZnZp4bQb4q8rHbKws,6630
-pip/_vendor/rich/default_styles.py,sha256=WqVh-RPNEsx0Wxf3fhS_fCn-wVqgJ6Qfo-Zg7CoCsLE,7954
-pip/_vendor/rich/diagnose.py,sha256=an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24,972
-pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501
-pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642
-pip/_vendor/rich/file_proxy.py,sha256=4gCbGRXg0rW35Plaf0UVvj3dfENHuzc_n8I_dBqxI7o,1616
-pip/_vendor/rich/filesize.py,sha256=yShoVpARafJBreyZFaAhC4OhnJ6ydC1WXR-Ez4wU_YQ,2507
-pip/_vendor/rich/highlighter.py,sha256=3WW6PACGlq0e3YDjfqiMBQ0dYZwu7pcoFYUgJy01nb0,9585
-pip/_vendor/rich/json.py,sha256=RCm4lXBXrjvXHpqrWPH8wdGP0jEo4IohLmkddlhRY18,5051
-pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252
-pip/_vendor/rich/layout.py,sha256=E3xJ4fomizUADwime3VA0lBXoMSPl9blEokIzVBjO0Q,14074
-pip/_vendor/rich/live.py,sha256=emVaLUua-FKSYqZXmtJJjBIstO99CqMOuA6vMAKVkO0,14172
-pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667
-pip/_vendor/rich/logging.py,sha256=10j13lPr-QuYqEEBz_2aRJp8gNYvSN2wmCUlUqJcPLM,11471
-pip/_vendor/rich/markup.py,sha256=xzF4uAafiEeEYDJYt_vUnJOGoTU8RrH-PH7WcWYXjCg,8198
-pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305
-pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970
-pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828
-pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396
-pip/_vendor/rich/panel.py,sha256=CzdojkDAjxAKgvDxis47nWzUh1V2NniOqkJJQajosG8,8744
-pip/_vendor/rich/pretty.py,sha256=CalVLVW3mvTn1hvI9Pgi2v-y4S-5zUWBK-PH7SlVs-U,36576
-pip/_vendor/rich/progress.py,sha256=zjQRwd3TmDnAvSjTPsNPHFjmqE9GOEX3bf0Lj56hIL8,59746
-pip/_vendor/rich/progress_bar.py,sha256=zHHaFPEfIhW2fq6Fnl5vBY7AUpP1N0HVGElISUHsnqw,8161
-pip/_vendor/rich/prompt.py,sha256=x0mW-pIPodJM4ry6grgmmLrl8VZp99kqcmdnBe70YYA,11303
-pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391
-pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166
-pip/_vendor/rich/repr.py,sha256=Je91CIrZN_av9L3FRCKCs5yoX2LvczrCNKqUbVsjUvQ,4449
-pip/_vendor/rich/rule.py,sha256=V6AWI0wCb6DB0rvN967FRMlQrdlG7HoZdfEAHyeG8CM,4773
-pip/_vendor/rich/scope.py,sha256=HX13XsJfqzQHpPfw4Jn9JmJjCsRj9uhHxXQEqjkwyLA,2842
-pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591
-pip/_vendor/rich/segment.py,sha256=6XdX0MfL18tUCaUWDWncIqx0wpq3GiaqzhYP779JvRA,24224
-pip/_vendor/rich/spinner.py,sha256=7b8MCleS4fa46HX0AzF98zfu6ZM6fAL0UgYzPOoakF4,4374
-pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425
-pip/_vendor/rich/style.py,sha256=4WnUEkHNMp9Tfmd8cmbxWGby7QeTk2LUTQzFSs46EQc,26240
-pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258
-pip/_vendor/rich/syntax.py,sha256=_M08KbE11nNWNBPooFLKAA7lWkThPzlGUsuesxQYsuA,34697
-pip/_vendor/rich/table.py,sha256=r_lahmj45cINCWLYaIjq9yEv3gve8E6bkYTP8NDqApE,39515
-pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370
-pip/_vendor/rich/text.py,sha256=oajdGIeHcLcSdOwbC48_20ylDsHAS5fsPZD_Ih0clyA,44666
-pip/_vendor/rich/theme.py,sha256=GKNtQhDBZKAzDaY0vQVQQFzbc0uWfFe6CJXA-syT7zQ,3627
-pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102
-pip/_vendor/rich/traceback.py,sha256=MORQpXH7AvhAAThW8oIbtwffXb8M6XRkSkcJ52JuA3g,26060
-pip/_vendor/rich/tree.py,sha256=BMbUYNjS9uodNPfvtY_odmU09GA5QzcMbQ5cJZhllQI,9169
-pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549
-pip/_vendor/tenacity/__init__.py,sha256=GLLsTFD4Bd5VDgTR6mU_FxyOsrxc48qONorVaRebeD4,18257
-pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc,,
-pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc,,
-pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc,,
-pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc,,
-pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc,,
-pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc,,
-pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc,,
-pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc,,
-pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc,,
-pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc,,
-pip/_vendor/tenacity/_asyncio.py,sha256=HEb0BVJEeBJE9P-m9XBxh1KcaF96BwoeqkJCL5sbVcQ,3314
-pip/_vendor/tenacity/_utils.py,sha256=-y68scDcyoqvTJuJJ0GTfjdSCljEYlbCYvgk7nM4NdM,1944
-pip/_vendor/tenacity/after.py,sha256=dlmyxxFy2uqpLXDr838DiEd7jgv2AGthsWHGYcGYsaI,1496
-pip/_vendor/tenacity/before.py,sha256=7XtvRmO0dRWUp8SVn24OvIiGFj8-4OP5muQRUiWgLh0,1376
-pip/_vendor/tenacity/before_sleep.py,sha256=ThyDvqKU5yle_IvYQz_b6Tp6UjUS0PhVp6zgqYl9U6Y,1908
-pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383
-pip/_vendor/tenacity/retry.py,sha256=62R71W59bQjuNyFKsDM7hE2aEkEPtwNBRA0tnsEvgSk,6645
-pip/_vendor/tenacity/stop.py,sha256=sKHmHaoSaW6sKu3dTxUVKr1-stVkY7lw4Y9yjZU30zQ,2790
-pip/_vendor/tenacity/tornadoweb.py,sha256=E8lWO2nwe6dJgoB-N2HhQprYLDLB_UdSgFnv-EN6wKE,2145
-pip/_vendor/tenacity/wait.py,sha256=e_Saa6I2tsNLpCL1t9897wN2fGb0XQMQlE4bU2t9V2w,6691
-pip/_vendor/tomli/__init__.py,sha256=JhUwV66DB1g4Hvt1UQCVMdfCu-IgAV8FXmvDU9onxd4,396
-pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc,,
-pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc,,
-pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc,,
-pip/_vendor/tomli/_parser.py,sha256=g9-ENaALS-B8dokYpCuzUFalWlog7T-SIYMjLZSWrtM,22633
-pip/_vendor/tomli/_re.py,sha256=dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly-w,2943
-pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254
-pip/_vendor/typing_extensions.py,sha256=U_PyumPFBkMiR_Iq78QWZXdPprTywptECB2WRIQjDv0,75420
-pip/_vendor/urllib3/__init__.py,sha256=j3yzHIbmW7CS-IKQJ9-PPQf_YKO8EOAey_rMW0UR7us,2763
-pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc,,
-pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc,,
-pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc,,
-pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc,,
-pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc,,
-pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc,,
-pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc,,
-pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc,,
-pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc,,
-pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc,,
-pip/_vendor/urllib3/_collections.py,sha256=Rp1mVyBgc_UlAcp6M3at1skJBXR5J43NawRTvW2g_XY,10811
-pip/_vendor/urllib3/_version.py,sha256=kDAZ-bEcWgqZsVJELrYbVo4buZP5eBBOGl_X7VA0Ic4,64
-pip/_vendor/urllib3/connection.py,sha256=8976wL6sGeVMW0JnXvx5mD00yXu87uQjxtB9_VL8dx8,20070
-pip/_vendor/urllib3/connectionpool.py,sha256=vEzk1iJEw1qR2vHBo7m3Y98iDfna6rKkUz3AyK5lJKQ,39093
-pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc,,
-pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc,,
-pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc,,
-pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc,,
-pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc,,
-pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc,,
-pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957
-pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc,,
-pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc,,
-pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632
-pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922
-pip/_vendor/urllib3/contrib/appengine.py,sha256=lfzpHFmJiO82shClLEm3QB62SYgHWnjpZOH_2JhU5Tc,11034
-pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=ej9gGvfAb2Gt00lafFp45SIoRz-QwrQ4WChm6gQmAlM,4538
-pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=oR_4W0U0gaDYBN8Q5qz_VZ8xrYZsoXve52RwIKdYGbc,16899
-pip/_vendor/urllib3/contrib/securetransport.py,sha256=yhZdmVjY6PI6EeFbp7qYOp6-vp1Rkv2NMuOGaEj7pmc,34448
-pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097
-pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217
-pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579
-pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440
-pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc,,
-pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc,,
-pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417
-pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665
-pip/_vendor/urllib3/poolmanager.py,sha256=0KOOJECoeLYVjUHvv-0h4Oq3FFQQ2yb-Fnjkbj8gJO0,19786
-pip/_vendor/urllib3/request.py,sha256=ZFSIqX0C6WizixecChZ3_okyu7BEv0lZu1VT0s6h4SM,5985
-pip/_vendor/urllib3/response.py,sha256=36JUM28H4dHsuCQgIPeN91LNcK8r1wBUJGFLk3ALfJc,28156
-pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155
-pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc,,
-pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc,,
-pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901
-pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605
-pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498
-pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997
-pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510
-pip/_vendor/urllib3/util/retry.py,sha256=iESg2PvViNdXBRY4MpL4h0kqwOOkHkxmLn1kkhFHPU8,22001
-pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177
-pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758
-pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895
-pip/_vendor/urllib3/util/timeout.py,sha256=QSbBUNOB9yh6AnDn61SrLQ0hg5oz0I9-uXEG91AJuIg,10003
-pip/_vendor/urllib3/util/url.py,sha256=49HwObaTUUjqVe4qvSUvIjZyf3ghgNA6-OLm3kmkFKM,14287
-pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403
-pip/_vendor/vendor.txt,sha256=8XILGklF_LcEc20OonK8_bpFH7tG7wLotFxI0k3FMU0,469
-pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579
-pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc,,
-pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc,,
-pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc,,
-pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc,,
-pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc,,
-pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979
-pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305
-pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563
-pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307
-pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286
diff --git a/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c8572894..00000000
Binary files a/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc b/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc
deleted file mode 100644
index de468713..00000000
Binary files a/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 19175915..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc
deleted file mode 100644
index 13e52acf..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc
deleted file mode 100644
index e2304293..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index b4e86275..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc
deleted file mode 100644
index e24f3a95..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 4b6fbdf5..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc
deleted file mode 100644
index 403adbd9..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc
deleted file mode 100644
index d351e3b0..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc
deleted file mode 100644
index 8a026975..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index fbe94557..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc
deleted file mode 100644
index 42e9e254..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc
deleted file mode 100644
index 80ee632f..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc
deleted file mode 100644
index 49d16040..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc
deleted file mode 100644
index c2a662d5..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc
deleted file mode 100644
index 1964a1b1..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc
deleted file mode 100644
index 740e3123..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc
deleted file mode 100644
index f1b51277..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc
deleted file mode 100644
index c5af389c..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc
deleted file mode 100644
index 289a9412..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc
deleted file mode 100644
index f3945135..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc
deleted file mode 100644
index 953f511e..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc
deleted file mode 100644
index 2f3e1899..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc
deleted file mode 100644
index b85c376d..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index cfb5cb9d..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index c47ac47f..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc
deleted file mode 100644
index eda49db7..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc
deleted file mode 100644
index 714eca67..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc
deleted file mode 100644
index 92f21501..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e4ab8662..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 336aae8b..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index 112042e2..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 05423182..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc
deleted file mode 100644
index aec939a6..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index c1a3e3eb..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 791cbfb7..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc
deleted file mode 100644
index 59fc98f9..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 78580bfc..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc
deleted file mode 100644
index 43b180c4..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc
deleted file mode 100644
index ef9cdc42..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 440240ac..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc
deleted file mode 100644
index ab35f76b..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc
deleted file mode 100644
index bf36f291..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc
deleted file mode 100644
index 05e7d7fe..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc
deleted file mode 100644
index c4d1a9e8..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index b7fddcd4..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 3e6ef95c..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc
deleted file mode 100644
index 5be0ba32..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc
deleted file mode 100644
index ac62688b..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 45256631..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc
deleted file mode 100644
index fb877c77..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc
deleted file mode 100644
index 81f8061f..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc
deleted file mode 100644
index cc50a9ad..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 873383a5..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc
deleted file mode 100644
index 74f7428a..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1946f7b9..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 930506b5..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index d7ea6cc6..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ce29bb8d..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc
deleted file mode 100644
index e19d3e37..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e2694e63..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc
deleted file mode 100644
index e020e892..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc
deleted file mode 100644
index a8879e11..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc
deleted file mode 100644
index 9474196d..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc
deleted file mode 100644
index b67babb0..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 4f2e6b73..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc
deleted file mode 100644
index 1013cd2a..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc
deleted file mode 100644
index cd0cb720..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc
deleted file mode 100644
index 93d1dfcc..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc
deleted file mode 100644
index 2a090a27..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc
deleted file mode 100644
index 913a0451..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc
deleted file mode 100644
index c8e5fcbe..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc
deleted file mode 100644
index c67a78f3..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc
deleted file mode 100644
index c670521a..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc
deleted file mode 100644
index a164a9c7..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc
deleted file mode 100644
index 1e783e09..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index dee81a0c..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc
deleted file mode 100644
index d311dfb0..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc
deleted file mode 100644
index 77c2a8fe..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5a8aa774..00000000
Binary files a/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2ac5c515..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc
deleted file mode 100644
index 8fdf95bc..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc
deleted file mode 100644
index d5cab004..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d6e6ede4..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc
deleted file mode 100644
index 9a6b1465..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc
deleted file mode 100644
index d18b52a6..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc
deleted file mode 100644
index 44ea8d35..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc
deleted file mode 100644
index 87c281c6..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d5668b79..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index dc2e47a2..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc
deleted file mode 100644
index fb728e0c..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc
deleted file mode 100644
index 86d36d71..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 11b2cd29..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc
deleted file mode 100644
index a0e20595..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc
deleted file mode 100644
index f2101012..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc
deleted file mode 100644
index 53bd4cec..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc
deleted file mode 100644
index c28e4f81..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d12dc92d..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 3d8b45eb..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 561df39a..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc
deleted file mode 100644
index f219f150..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 03895e75..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc
deleted file mode 100644
index 6b391486..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc
deleted file mode 100644
index 4e24ea2d..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc
deleted file mode 100644
index eaf3e302..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc
deleted file mode 100644
index cbd19c7c..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc
deleted file mode 100644
index 40712e34..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc
deleted file mode 100644
index 1692aba5..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc
deleted file mode 100644
index b7205818..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc
deleted file mode 100644
index 1381538b..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc
deleted file mode 100644
index 75a9176b..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 004ca986..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc
deleted file mode 100644
index 31c290cd..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 6319150c..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc
deleted file mode 100644
index 28739361..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc
deleted file mode 100644
index b03eeeec..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc
deleted file mode 100644
index 84af09bc..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc
deleted file mode 100644
index 8871fda7..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 197743ab..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index b42d2dce..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc
deleted file mode 100644
index e1639552..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc
deleted file mode 100644
index 4d8dbc89..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 88085ea0..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc
deleted file mode 100644
index a80c32d3..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc
deleted file mode 100644
index 1e0a430f..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc
deleted file mode 100644
index 90599060..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc
deleted file mode 100644
index 5852b2aa..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc
deleted file mode 100644
index 14087531..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc
deleted file mode 100644
index 20e6a58b..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc
deleted file mode 100644
index 9733d478..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index df9b2619..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc
deleted file mode 100644
index 19d81898..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5b440754..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc
deleted file mode 100644
index 358fc955..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc
deleted file mode 100644
index 5ee48c94..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc
deleted file mode 100644
index f83a8ffe..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 493dd77d..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 8c8aec96..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc
deleted file mode 100644
index 62905a82..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2aaf3b53..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc
deleted file mode 100644
index dc127e8a..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc
deleted file mode 100644
index ac91fdec..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc
deleted file mode 100644
index 3ac69e20..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c83c9cd9..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc
deleted file mode 100644
index 10fffd6d..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc
deleted file mode 100644
index ea2d7933..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc
deleted file mode 100644
index 93bf7ef3..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc
deleted file mode 100644
index 65900a5a..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc
deleted file mode 100644
index 13858bab..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc
deleted file mode 100644
index 2981f27c..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 29061bd7..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 63a25127..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc
deleted file mode 100644
index 67d49d4f..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc
deleted file mode 100644
index 925be215..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index bd6a0276..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc
deleted file mode 100644
index f3959ac7..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc
deleted file mode 100644
index 87655e20..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2ea585f1..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9880ebde..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc
deleted file mode 100644
index 4ce5ec68..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc
deleted file mode 100644
index d20bbeb5..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc
deleted file mode 100644
index ce4ec462..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index 155d0ebb..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc
deleted file mode 100644
index 5b661cec..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc
deleted file mode 100644
index aa105471..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc
deleted file mode 100644
index 329319f6..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc
deleted file mode 100644
index e88a165f..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc
deleted file mode 100644
index a4889c77..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c7737b56..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d68900d6..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc
deleted file mode 100644
index 98f2ae80..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc
deleted file mode 100644
index 2fb0fdb4..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc
deleted file mode 100644
index 418335ae..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc
deleted file mode 100644
index 67532c98..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc
deleted file mode 100644
index 6fa89253..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index abffd944..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc
deleted file mode 100644
index 4c99c3b6..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc
deleted file mode 100644
index 9318a67e..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc
deleted file mode 100644
index 60574b06..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc
deleted file mode 100644
index 0f2a5271..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc
deleted file mode 100644
index 7f251479..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 52781d43..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5c944d05..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc
deleted file mode 100644
index 7206125f..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index bd377d86..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc
deleted file mode 100644
index 8307549e..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5c0853aa..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc
deleted file mode 100644
index f994f4f5..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc
deleted file mode 100644
index 486a2fcf..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc
deleted file mode 100644
index de26bc6f..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc
deleted file mode 100644
index 6d20d7a9..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc
deleted file mode 100644
index 979dc2a6..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc
deleted file mode 100644
index a2d8b3d8..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc
deleted file mode 100644
index 96bb1f34..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc
deleted file mode 100644
index 8efc62ac..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc
deleted file mode 100644
index c8ddb050..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc
deleted file mode 100644
index cd6becd5..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc
deleted file mode 100644
index 18b2da7e..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc
deleted file mode 100644
index 92fd1f46..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc
deleted file mode 100644
index 5c3cfc2e..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc
deleted file mode 100644
index 8b233564..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc
deleted file mode 100644
index 82ad7418..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc
deleted file mode 100644
index 164f7454..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc
deleted file mode 100644
index 1a9e3926..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc
deleted file mode 100644
index d8aa4421..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc
deleted file mode 100644
index a3652559..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ac993514..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc
deleted file mode 100644
index b566d485..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc
deleted file mode 100644
index 4b2d16ad..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc
deleted file mode 100644
index e00c766f..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc
deleted file mode 100644
index de73bff8..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc
deleted file mode 100644
index f159b864..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc
deleted file mode 100644
index e92c0b50..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 26087619..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc
deleted file mode 100644
index 8cf2cb7d..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc
deleted file mode 100644
index 200958fe..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc
deleted file mode 100644
index 09044981..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 92c563b7..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc
deleted file mode 100644
index 05c28249..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc
deleted file mode 100644
index 914aff14..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc
deleted file mode 100644
index 9d2a1571..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index d5a39304..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc
deleted file mode 100644
index 99f4e087..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc
deleted file mode 100644
index 5bf2ce0a..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc
deleted file mode 100644
index 0f653c2f..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 7aa52e62..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc
deleted file mode 100644
index 7b4b52c2..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 552b394d..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 3a76bc85..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc
deleted file mode 100644
index 0ab4f244..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 09afd050..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc
deleted file mode 100644
index 73f6e449..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 541ee220..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc
deleted file mode 100644
index 32e28253..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc
deleted file mode 100644
index 38b5bd7d..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc
deleted file mode 100644
index a876ea48..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc
deleted file mode 100644
index dc1cfd38..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc
deleted file mode 100644
index c0f383ee..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc
deleted file mode 100644
index 484cd472..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc
deleted file mode 100644
index 4fb1a129..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc
deleted file mode 100644
index 61df378c..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 33c077c2..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc b/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc
deleted file mode 100644
index a4e752e2..00000000
Binary files a/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c70778e9..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 58a7e00e..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc
deleted file mode 100644
index bc6724a1..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-310.pyc
deleted file mode 100644
index fec96f16..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 40797d3e..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc
deleted file mode 100644
index 0756ba54..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc
deleted file mode 100644
index 93edb5ff..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc
deleted file mode 100644
index 95e2bfec..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc
deleted file mode 100644
index 2aae8cb5..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc
deleted file mode 100644
index cee319d9..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc
deleted file mode 100644
index 54cb9f5a..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc
deleted file mode 100644
index d223f3b7..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc
deleted file mode 100644
index 8e47ea80..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 26f98548..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-310.pyc
deleted file mode 100644
index 3b4a7077..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-310.pyc
deleted file mode 100644
index 816c6a61..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 8a0db5fa..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d0675614..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-310.pyc
deleted file mode 100644
index 4dbfe6ec..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc
deleted file mode 100644
index a6b891ce..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc
deleted file mode 100644
index 555dd3df..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9daf5e77..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc
deleted file mode 100644
index b5408fc2..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc
deleted file mode 100644
index 49eb0e78..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc
deleted file mode 100644
index 7141418a..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc
deleted file mode 100644
index 2fb8b46b..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc
deleted file mode 100644
index de76a583..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc
deleted file mode 100644
index 5095be50..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc
deleted file mode 100644
index 7265322f..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index c9bf7364..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc
deleted file mode 100644
index 2f7b0ae6..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e1576d96..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc
deleted file mode 100644
index 8440aacc..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/common.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/common.cpython-310.pyc
deleted file mode 100644
index 8900fcf0..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/common.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/core.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/core.cpython-310.pyc
deleted file mode 100644
index bec9ba8f..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/core.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index 39ccad8b..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc
deleted file mode 100644
index 4a659afd..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/results.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/results.cpython-310.pyc
deleted file mode 100644
index 1d3625a1..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/results.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc
deleted file mode 100644
index b3e6822d..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc
deleted file mode 100644
index 0e6d366f..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/util.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/util.cpython-310.pyc
deleted file mode 100644
index 9128f16d..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/util.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 77984114..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ce41ed9e..00000000
Binary files a/venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index d4c7dcd3..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc
deleted file mode 100644
index 6643fee4..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc
deleted file mode 100644
index a9af4d66..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/_path.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/_path.cpython-310.pyc
deleted file mode 100644
index d8b91d8b..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/_path.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc
deleted file mode 100644
index 51fc6369..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc
deleted file mode 100644
index 6d70bb58..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc
deleted file mode 100644
index 81a17002..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-310.pyc
deleted file mode 100644
index 77467446..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-310.pyc
deleted file mode 100644
index da6f42ba..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-310.pyc
deleted file mode 100644
index 35d4f13c..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-310.pyc
deleted file mode 100644
index 20b7f60e..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/logging.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/logging.cpython-310.pyc
deleted file mode 100644
index 1fcd105d..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/logging.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc
deleted file mode 100644
index 84959415..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/version.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/version.cpython-310.pyc
deleted file mode 100644
index c5604294..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/version.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc
deleted file mode 100644
index a5d61b6b..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc b/venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc
deleted file mode 100644
index 08343f46..00000000
Binary files a/venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 75a3d898..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-310.pyc
deleted file mode 100644
index 184c37dc..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-310.pyc
deleted file mode 100644
index b6d9430e..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc
deleted file mode 100644
index abcc44c6..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc
deleted file mode 100644
index e3313060..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc
deleted file mode 100644
index cfce2efd..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc
deleted file mode 100644
index 1a5e7013..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc
deleted file mode 100644
index 047263d7..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc
deleted file mode 100644
index f30d7549..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc
deleted file mode 100644
index 9f791e3d..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc
deleted file mode 100644
index 6650149a..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc
deleted file mode 100644
index a76391c0..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc
deleted file mode 100644
index 3460c2e0..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc
deleted file mode 100644
index ffd704e5..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-310.pyc
deleted file mode 100644
index 096829cb..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc
deleted file mode 100644
index 519a9f7b..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc
deleted file mode 100644
index 24c946b2..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1b737af0..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc
deleted file mode 100644
index e4df729c..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc
deleted file mode 100644
index c83c4c4f..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc
deleted file mode 100644
index 982a01aa..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc
deleted file mode 100644
index 5a9b802e..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc
deleted file mode 100644
index f190f58d..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc
deleted file mode 100644
index ec5e068c..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc
deleted file mode 100644
index 069ec191..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc
deleted file mode 100644
index a3746c9b..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc
deleted file mode 100644
index 0de04120..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc
deleted file mode 100644
index 4dd9fec0..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc
deleted file mode 100644
index 09dd27ad..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc
deleted file mode 100644
index e7fce3ff..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc
deleted file mode 100644
index 51952717..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc
deleted file mode 100644
index ba10f51a..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc
deleted file mode 100644
index 3612f8a2..00000000
Binary files a/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f2e9254b..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc
deleted file mode 100644
index fe1faa0f..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-310.pyc
deleted file mode 100644
index 95fa1466..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0968f0fe..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc
deleted file mode 100644
index 05d16958..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc
deleted file mode 100644
index f7a12b6d..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc
deleted file mode 100644
index f4635bb0..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc
deleted file mode 100644
index 1a6fab27..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc
deleted file mode 100644
index ee903edf..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc
deleted file mode 100644
index 065bda48..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc
deleted file mode 100644
index b437bc13..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e5f7e56f..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc
deleted file mode 100644
index 6e2ccbd4..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc
deleted file mode 100644
index 985380c4..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc
deleted file mode 100644
index 1ecd59fe..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc
deleted file mode 100644
index 0481fd12..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc
deleted file mode 100644
index 1afa8dd4..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc
deleted file mode 100644
index 59e0274d..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc
deleted file mode 100644
index fff04e66..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc
deleted file mode 100644
index 0b222ed0..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1ecb8074..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc
deleted file mode 100644
index 18591162..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-310.pyc
deleted file mode 100644
index 1d0b6156..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index cce0e381..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index a4440cf1..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc
deleted file mode 100644
index 89bd03fe..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc
deleted file mode 100644
index 78fc3403..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc
deleted file mode 100644
index f8f6979e..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1f992e6b..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc
deleted file mode 100644
index 321c521e..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc
deleted file mode 100644
index 1132b725..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc
deleted file mode 100644
index 49eed787..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc
deleted file mode 100644
index e693f18b..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc
deleted file mode 100644
index 6d7458e4..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc
deleted file mode 100644
index c5c57ab2..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc
deleted file mode 100644
index 493ad2ab..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 069f4f81..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc
deleted file mode 100644
index f01c8809..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 230d2e3c..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc
deleted file mode 100644
index 7f5c276b..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/common.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/common.cpython-310.pyc
deleted file mode 100644
index ae841c76..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/common.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/core.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/core.cpython-310.pyc
deleted file mode 100644
index c7de0bcc..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/core.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index 5366ad38..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc
deleted file mode 100644
index a97ebe1a..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/results.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/results.cpython-310.pyc
deleted file mode 100644
index 9f0411c8..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/results.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc
deleted file mode 100644
index 52f20cba..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc
deleted file mode 100644
index bf19711b..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/util.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/util.cpython-310.pyc
deleted file mode 100644
index c18e9e1f..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/util.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index bd47c6f7..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 8d0206df..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc
deleted file mode 100644
index c47d4270..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc
deleted file mode 100644
index fd799418..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc b/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc
deleted file mode 100644
index a6eb6315..00000000
Binary files a/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 78c62071..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc
deleted file mode 100644
index 182656d5..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc
deleted file mode 100644
index 594d11c3..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc
deleted file mode 100644
index 15ea8e1d..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc
deleted file mode 100644
index cbfb8061..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc
deleted file mode 100644
index 0b986caf..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc
deleted file mode 100644
index 7e641404..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc
deleted file mode 100644
index 47d92a2c..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc
deleted file mode 100644
index 5c2cc665..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc
deleted file mode 100644
index dbba8c44..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc
deleted file mode 100644
index 247274fa..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc
deleted file mode 100644
index 1f05dca7..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc
deleted file mode 100644
index aff36d3e..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc b/venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc
deleted file mode 100644
index d3522dad..00000000
Binary files a/venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f877c859..00000000
Binary files a/venv/Lib/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0a0f3556..00000000
Binary files a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc b/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc
deleted file mode 100644
index 877bdbc7..00000000
Binary files a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc b/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc
deleted file mode 100644
index 85b8be2a..00000000
Binary files a/venv/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 3b834462..00000000
Binary files a/venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse-0.4.2.dist-info/RECORD b/venv/Lib/site-packages/sqlparse-0.4.2.dist-info/RECORD
deleted file mode 100644
index 7e5f1dff..00000000
--- a/venv/Lib/site-packages/sqlparse-0.4.2.dist-info/RECORD
+++ /dev/null
@@ -1,53 +0,0 @@
-../../Scripts/sqlformat.exe,sha256=kYpWEVpaZ3qvi8Z01TlTf_Mu002lgdI4M0olCjXYfAk,107930
-sqlparse-0.4.2.dist-info/AUTHORS,sha256=B830qIZqjN4xBBcU8RAUZ-Z5CeKDx6du1DGwcChzR7k,2754
-sqlparse-0.4.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
-sqlparse-0.4.2.dist-info/LICENSE,sha256=wZOCNbgNOekxOOrontw69n4Y7LxA0mZSn6V7Lc5CYxA,1537
-sqlparse-0.4.2.dist-info/METADATA,sha256=nU8eNywF4Ixk2t0za8Z45kFGoFVzz4COH5ndQrfKrBE,3446
-sqlparse-0.4.2.dist-info/RECORD,,
-sqlparse-0.4.2.dist-info/WHEEL,sha256=EVRjI69F5qVjm_YgqcTXPnTAv3BfSUr0WVAHuSP3Xoo,92
-sqlparse-0.4.2.dist-info/entry_points.txt,sha256=S2WxhPln7zXybKRE73ekBicXHh7_BX-KYGFZZaGGqp8,54
-sqlparse-0.4.2.dist-info/top_level.txt,sha256=eRYisOR7d8EtLKXuWUUAAMOhODItOqrkpxkAGD8CISo,9
-sqlparse/__init__.py,sha256=ATkRZ64xS1XuqLone0WNB1SAW3CX10AvmbXPUeSSYuM,2180
-sqlparse/__main__.py,sha256=1jhVFLHlZs4NUJoAuHvQQKWgykPVTdgeE8V4XB5WQzw,610
-sqlparse/__pycache__/__init__.cpython-310.pyc,,
-sqlparse/__pycache__/__main__.cpython-310.pyc,,
-sqlparse/__pycache__/cli.cpython-310.pyc,,
-sqlparse/__pycache__/compat.cpython-310.pyc,,
-sqlparse/__pycache__/exceptions.cpython-310.pyc,,
-sqlparse/__pycache__/formatter.cpython-310.pyc,,
-sqlparse/__pycache__/keywords.cpython-310.pyc,,
-sqlparse/__pycache__/lexer.cpython-310.pyc,,
-sqlparse/__pycache__/sql.cpython-310.pyc,,
-sqlparse/__pycache__/tokens.cpython-310.pyc,,
-sqlparse/__pycache__/utils.cpython-310.pyc,,
-sqlparse/cli.py,sha256=83gHgW0mTQXJbv-ItpAEZaq7-2lvWij0mg2cVmG67KA,5712
-sqlparse/compat.py,sha256=YoPZNIKfJn6Q6bWSYCMSDrrI7ea8rue902TzIoUJWbU,1087
-sqlparse/engine/__init__.py,sha256=i9kh0USMjk1bwKPFTn6K0PKC55HOqvnkoxHi1t7YccE,447
-sqlparse/engine/__pycache__/__init__.cpython-310.pyc,,
-sqlparse/engine/__pycache__/filter_stack.cpython-310.pyc,,
-sqlparse/engine/__pycache__/grouping.cpython-310.pyc,,
-sqlparse/engine/__pycache__/statement_splitter.cpython-310.pyc,,
-sqlparse/engine/filter_stack.py,sha256=cId9vnz0Kpthg3ljdnX2Id6-vz0zpKHoMV_FqEYEsYU,1193
-sqlparse/engine/grouping.py,sha256=coV-obgg-ETDhiSvNkKxgHCIdqxz-0UdQIqP6BedX70,13492
-sqlparse/engine/statement_splitter.py,sha256=-injFkTCUKQth2I3K1PguFkEkPCiAlxkzZV64_CMl0A,3758
-sqlparse/exceptions.py,sha256=QyZ9TKTvzgcmuQ1cJkxAj9SoAw4M02-Bf0CSUNWNDKM,342
-sqlparse/filters/__init__.py,sha256=PcS7CklN-qpmfYhId4oGTyUb7au1A0aD-21RP_bsfQY,1242
-sqlparse/filters/__pycache__/__init__.cpython-310.pyc,,
-sqlparse/filters/__pycache__/aligned_indent.cpython-310.pyc,,
-sqlparse/filters/__pycache__/others.cpython-310.pyc,,
-sqlparse/filters/__pycache__/output.cpython-310.pyc,,
-sqlparse/filters/__pycache__/reindent.cpython-310.pyc,,
-sqlparse/filters/__pycache__/right_margin.cpython-310.pyc,,
-sqlparse/filters/__pycache__/tokens.cpython-310.pyc,,
-sqlparse/filters/aligned_indent.py,sha256=kvN5TVMxovyX6cDnmxF-t-KUz2RnzbQ1fIQzdIxYY2g,5110
-sqlparse/filters/others.py,sha256=No8RhdUT8td6I0r9uxM6GuI_alDsE9FhFftcZpq856c,5180
-sqlparse/filters/output.py,sha256=OMSalSPvq3s3-r268Tjv-AmtjTNCfhLayWtQFO5oyVE,4001
-sqlparse/filters/reindent.py,sha256=y090sT7Mc44Bw9InKqJ1u_BzUTc81W0L1N-BVLVpq8o,9549
-sqlparse/filters/right_margin.py,sha256=Hil692JB3ZkiMPpPPZcMUiRUjDpmhFiuARUu5_imym8,1543
-sqlparse/filters/tokens.py,sha256=CZwDwMzzOdq0qvTRIIic7w59g54QhwFgM2Op9932Zvk,1553
-sqlparse/formatter.py,sha256=iWDPQhD4JqbiA4jZpK2QBZzEqVACw3bRwdLgPIma4lE,7566
-sqlparse/keywords.py,sha256=SZuYyMN1VuBdfmPaSa-CnzCaqefMsQs1Sqa_tsa2_Lo,29560
-sqlparse/lexer.py,sha256=3E3jVAevZgpZpY6vXPtVe9ifTaOe14KB7BpMdS3hYis,2453
-sqlparse/sql.py,sha256=bZwXVIRBxC4HQfp1YB0hY3kFl_ng72icFfXY9s5Yxj0,20472
-sqlparse/tokens.py,sha256=NMUdBh3XPKk-D-uYn_tqKqdsD_uXVZWzkoHIy0vEEpA,1661
-sqlparse/utils.py,sha256=GbCN29suZDf7lCUzQUqj7AwtCisps3lHIbyMvx64hrk,3441
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 2fdaa85c..00000000
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/__main__.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/__pycache__/__main__.cpython-310.pyc
deleted file mode 100644
index 5153f139..00000000
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/__main__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/compat.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/__pycache__/compat.cpython-310.pyc
deleted file mode 100644
index d1ab81ed..00000000
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/compat.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/exceptions.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/__pycache__/exceptions.cpython-310.pyc
deleted file mode 100644
index 8d9cbde6..00000000
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/exceptions.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/formatter.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/__pycache__/formatter.cpython-310.pyc
deleted file mode 100644
index f642117e..00000000
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/formatter.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/lexer.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/__pycache__/lexer.cpython-310.pyc
deleted file mode 100644
index 87b4e869..00000000
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/lexer.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/sql.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/__pycache__/sql.cpython-310.pyc
deleted file mode 100644
index bca9123c..00000000
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/sql.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/tokens.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/__pycache__/tokens.cpython-310.pyc
deleted file mode 100644
index 74506b51..00000000
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/tokens.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/__pycache__/utils.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/__pycache__/utils.cpython-310.pyc
deleted file mode 100644
index 0878e1c7..00000000
Binary files a/venv/Lib/site-packages/sqlparse/__pycache__/utils.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/engine/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/engine/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 6b104a42..00000000
Binary files a/venv/Lib/site-packages/sqlparse/engine/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/filters/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/filters/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index abd4bc9c..00000000
Binary files a/venv/Lib/site-packages/sqlparse/filters/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/sqlparse/filters/__pycache__/tokens.cpython-310.pyc b/venv/Lib/site-packages/sqlparse/filters/__pycache__/tokens.cpython-310.pyc
deleted file mode 100644
index 3e59ea44..00000000
Binary files a/venv/Lib/site-packages/sqlparse/filters/__pycache__/tokens.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 082b1715..00000000
Binary files a/venv/Lib/site-packages/tzdata/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Africa/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 8574cce5..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Africa/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index e5f47870..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1a2be5aa..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 1e9e9d0c..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 9b89afc0..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/America/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/America/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 905bab71..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/America/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index f6a73672..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Antarctica/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Arctic/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Arctic/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index cbeb923a..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Arctic/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Asia/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index aea19c09..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Asia/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index b23f3b76..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Atlantic/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Australia/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 886b7ef4..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Australia/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Brazil/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Brazil/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 0a89d3c8..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Brazil/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Canada/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 28d43bd2..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Canada/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Chile/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Chile/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 5a079ff8..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Chile/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Etc/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 4b5cbe47..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Etc/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Europe/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index c7fe8314..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Europe/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Indian/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 61126c26..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Indian/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Mexico/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Mexico/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 376dc0db..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Mexico/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 126e8c59..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/Pacific/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/US/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/US/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index ec09fe48..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/US/__pycache__/__init__.cpython-310.pyc and /dev/null differ
diff --git a/venv/Lib/site-packages/tzdata/zoneinfo/__pycache__/__init__.cpython-310.pyc b/venv/Lib/site-packages/tzdata/zoneinfo/__pycache__/__init__.cpython-310.pyc
deleted file mode 100644
index 03db9a25..00000000
Binary files a/venv/Lib/site-packages/tzdata/zoneinfo/__pycache__/__init__.cpython-310.pyc and /dev/null differ