From 4de1d3d9ffa5c7207bd83f000d2ed47db90b9b34 Mon Sep 17 00:00:00 2001 From: Lowlights <125327040+Lowlightsas@users.noreply.github.com> Date: Wed, 20 Mar 2024 18:25:07 +0600 Subject: [PATCH] add files --- README.md | 212 + db.sqlite3 | Bin 303104 -> 303104 bytes debug.log | 5049 +++++++++++++++++ .../__pycache__/settings.cpython-311.pyc | Bin 5226 -> 5155 bytes djangoProject1/keycloak.json | 12 - djangoProject1/settings.py | 3 +- invoice_3.pdf | 68 - invoice_image.png | Bin 1961634 -> 1961634 bytes main/__pycache__/urls.cpython-311.pyc | Bin 1211 -> 1199 bytes main/__pycache__/views.cpython-311.pyc | Bin 10557 -> 10446 bytes main/urls.py | 10 +- main/views.py | 122 +- temp_order_image.png | 0 users/__pycache__/views.cpython-311.pyc | Bin 2273 -> 2128 bytes users/views.py | 30 +- 15 files changed, 5366 insertions(+), 140 deletions(-) delete mode 100644 djangoProject1/keycloak.json delete mode 100644 invoice_3.pdf delete mode 100644 temp_order_image.png diff --git a/README.md b/README.md index cd0ff81..8d7fabc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,214 @@ # Harmony +Давайте добавим раздел о запуске вашего проекта Django в README файл, чтобы новые пользователи и разработчики могли легко начать работу. + +--- + +## Запуск проекта Django + +Чтобы запустить проект Django локально, следуйте этим шагам: + +### Шаг 1: Клонирование репозитория + + + +```bash +git clone https://git.myterior.kz/Lowlight_Akbota/Harmony +cd djangoproject1 +``` + + +### Шаг 2: Установка зависимостей + +Убедитесь, что у вас установлен Python и pip. Затем установите зависимости проекта: + +```bash +pip install -r requirements.txt +``` + +Это установит все необходимые библиотеки Python, указанные в файле `requirements.txt`. + +### Шаг 3: Настройка базы данных + +Проекты Django часто используют базу данных для хранения данных. Выполните миграции, чтобы настроить вашу базу данных: + +```bash +python manage.py migrate +``` + +### Шаг 4: Создание суперпользователя (необязательно) + +Чтобы получить доступ к административной панели Django, создайте суперпользователя: + +```bash +python manage.py createsuperuser +``` + +Следуйте инструкциям на экране, чтобы завершить создание. + +### Шаг 5: Запуск сервера разработки + +Запустите локальный сервер разработки Django: + +```bash +python manage.py runserver +``` + +После запуска сервера, ваше приложение будет доступно по адресу [http://localhost:8000](http://localhost:8000) в вашем веб-браузере. + +### Шаг 6: Переход к аутентификации через Keycloak + +Чтобы начать процесс аутентификации через Keycloak, перейдите по URL, который вы настроили для входа через Keycloak (например, `/login`), который инициирует перенаправление на страницу входа Keycloak. + +--- + +Добавив этот раздел в ваш README файл, вы предоставите четкие инструкции по запуску и базовой настройке вашего Django проекта. Это облегчит новым пользователям и разработчикам начало работы с вашим проектом и поможет им быстрее ориентироваться в его структуре и функциональности. + + + +Давайте интегрируем Keycloak с Django и добавим соответствующий раздел в README, чтобы описать процесс интеграции и использования. Это будет дополнительный раздел в вашем README файле, посвященный настройке аутентификации через Keycloak. + +--- + + + +## Интеграция Keycloak с Django + +Keycloak предоставляет систему управления идентификацией и доступом, которую можно интегрировать с вашим приложением Django для аутентификации пользователей. Ниже приведены шаги для настройки и интеграции Keycloak с Django. + +### Шаг 1: Настройка Keycloak + +1. **Создание Realm**: Войдите в административную панель Keycloak и создайте новый realm. + +2. **Создание Client**: Внутри созданного realm создайте новый client. Задайте `Client ID` и укажите `Valid Redirect URIs` (например, `http://localhost:8000/*` для разработки). Также, выберите `confidential` в качестве типа доступа и сохраните секретный ключ клиента. + +3. **Пользователи**: Создайте пользователей в Keycloak, которые будут использоваться для входа в ваше Django приложение. + +### Шаг 2: Настройка Django + +Для интеграции Keycloak с Django, вам понадобится установить библиотеку, которая упростит взаимодействие с Keycloak, например, `python-keycloak` или аналогичную. + +#### Установка зависимостей + +```bash +pip install python-keycloak +``` + +#### Конфигурация + +Добавьте настройки Keycloak в `settings.py` вашего проекта Django: + +```python +KEYCLOAK_CONFIG = { + 'SERVER_URL': 'http://keycloak-server/auth/', + 'REALM': 'your-realm', + 'CLIENT_ID': 'your-client-id', + 'CLIENT_SECRET': 'your-client-secret', + 'CALLBACK_URL': 'http://localhost:8000/callback/', +} +``` + +### Шаг 3: Реализация Аутентификации + +Используйте предоставленные ранее функции для реализации процесса аутентификации: + +- `keycloak_login` для инициации процесса входа через Keycloak. +- `keycloak_redirect` для обработки перенаправления от Keycloak после аутентификации пользователя. + +### Шаг 4: Маршрутизация + +Добавьте URL-маршруты в `urls.py` для обработки входа через Keycloak и обратного перенаправления: + +```python +from django.urls import path +from .views import keycloak_login, keycloak_redirect + +urlpatterns = [ + path('login/', keycloak_login, name='keycloak_login'), + path('callback/', keycloak_redirect, name='keycloak_redirect'), +] +``` + +### Шаг 5: Запуск + +Запустите ваше приложение Django и используйте `/login` для начала процесса аутентификации через Keycloak. + +--- + + +Понял, давайте включим в README детали о функциях, которые вы мне предоставили, описывая их использование в контексте интеграции Keycloak с Django. Это поможет создать полное руководство по интеграции. + +--- + +## Использование Keycloak для аутентификации в Django + +После настройки Keycloak и Django, вам нужно будет использовать следующие функции для обработки аутентификации: + +### Функция `keycloak_login` + +Эта функция инициирует процесс аутентификации пользователя, перенаправляя его на страницу входа в Keycloak. + +```python +def keycloak_login(request): + # Создаем экземпляр Keycloak OpenID клиента с вашими настройками + keycloak_openid = KeycloakOpenID( + server_url=settings.KEYCLOAK_CONFIG['SERVER_URL'], + client_id=settings.KEYCLOAK_CONFIG['CLIENT_ID'], + realm_name=settings.KEYCLOAK_CONFIG['REALM'], + client_secret_key=settings.KEYCLOAK_CONFIG['CLIENT_SECRET'] + ) + + # Получаем URL для аутентификации от Keycloak и перенаправляем пользователя + redirect_uri = settings.KEYCLOAK_CONFIG['CALLBACK_URL'] + auth_url = keycloak_openid.auth_url(redirect_uri=redirect_uri) + return redirect(auth_url) +``` + +### Функция `keycloak_redirect` + +Эта функция обрабатывает перенаправление от Keycloak после аутентификации пользователя, извлекая код авторизации и обменивая его на токен доступа. + +```python +@require_http_methods(["GET"]) +def keycloak_redirect(request): + # Извлекаем код авторизации из запроса + authorization_code = request.GET.get('code') + if authorization_code: + # Здесь вы можете обменять код на токен и произвести дальнейшие действия + return HttpResponse("Authorization code received.") + else: + return HttpResponse("Authorization code not found.", status=400) +``` + +### Взаимодействие с Keycloak + +Для управления сессиями и пользователями, вы можете использовать функции `get_keycloak_admin_token`, `get_user_sessions`, и `logout_user`. Эти функции позволяют вам программно управлять сессиями пользователя в Keycloak, включая их выход из системы. + +#### Получение административного токена + +```python +def get_keycloak_admin_token(): + # Код для получения административного токена Keycloak +``` + +#### Получение сессий пользователя + +```python +def get_user_sessions(admin_token, user_id): + # Код для получения списка сессий пользователя +``` + +#### Выход пользователя + +```python +def logout_user(admin_token, session_id): + # Код для завершения сессии пользователя +``` + +### Интеграция с вашим Django приложением + +Используйте эти функции в вашем Django приложении для управления процессом аутентификации и сессиями пользователя. Вы можете настроить перенаправления, обработку ошибок и уведомления для пользователя в соответствии с вашими требованиями безопасности и пользовательским опытом. + +--- + +Это руководство по интеграции Keycloak с Django поможет обеспечить безопасную и удобную систему аутентификации в вашем веб-приложении. Включение этих функций и их описаний в ваш README файл улучшит документацию проекта и поможет другим разработчикам понять, как использовать эти возможности в своих проектах. \ No newline at end of file diff --git a/db.sqlite3 b/db.sqlite3 index e84058fce2eb08be446417995f32861e424cfe62..e60ab5c9fc4e9c5ab88c7eb6c473821c25ced616 100644 GIT binary patch delta 1165 zcmajdOKjV890%~)PMfX|Wh$HitrZLj!Q9z@=VA9WC$aNzV>=J$b;*)Aj_vrB#BpLv z&`GF60wjt$5m+bD0|E&Nrcr6RPTG|l+6B1mFpjAAO@eYkz=iu)zt2}+{cb(ly7g%5 z=v7Gi^tBWuJ-GS%E~Fm|*FS^gv)`^?xw#6hpCIcen{S?N93?lPAC8544-O6kWV!GW zLdSxc<&CG*Q0}{?Y}irX>S9j3*D+(m!$avJ^dUv}yjijgG$5G&P#+vw_4kXd}Dt^h=hX)yd4% zFlzB2m8`R}tQjqiG_l-XfH1@$*QhjIY*5a06g}Ujg9F^eMVu_E zX^s~aJJ(6nOR7}mOCqK^hHn)?nWQXP@CUehVIH-w5-JlpyWu3&DYg~O0kPq45g+? zRcVs3XACx$jHpXaL5h-y^f2IOd=pLJ@f>iSs)?~m&FG~3Oc_*7+!yEyH8Rv8IT0!u zwh$%T-E2K2yH#6kj`LQ#E7X{d-C#Uc$;qjqnzE!Z?I%aLNRl~yNX`yoF|P``v!pU? z5}e0rd|}Ke=sr~<`h0s6S#!Ht2ow2e7rjRAca#ZS23NadWvprLw zx|w!49!*x{ao^J>K$I(;DNnXiT-s&Jq)nM>X(AV8B@+`}JB6A_p?biBP612EAV{g1 zK_jT=6VnuB4l7L>&F0XAt!5QU%{I#V#7A40*B%FnBE5%?%*j;VE9{Ta1fZ<3Lv)-Z zGc8p(GDB9aecfV|aiR%YQn{UO3scVq7>J@6fdYI72YUeD1H>*);hQlmN)h;4s%dc#5V&D-;^1OEhX-af;3zTH?^Mj%Mm7azY1&$d=%Eat5+{_FT(Ix mp4)drZ_U5|BJ}z@|B?S5^531vI5q0dTPGoQ@$~c1cKA=_V0Tsk delta 1012 zcmaiyO>Em_0ETNPC{^1j)x-&^t%w^^I{S0tpPrT`abqXWuieBxkUC%d7yl%-lQ^*i z-GmSlnnXt@0_r4s*ntb0M$sa1n#7eGx3SAE98nM4h6EKyF5F)|?<2kMy%#s{y|{V$ zF2X(BDInal<3IKg>#Tm~D+FHte&^QlI=XqD*gQ`Qms_U?TL^kqfBfvEe`uJ19{~XP zqChwMrJ^&djVp#(t( zz`&aa6ATs8JYsDy z9TkUarO}zwd;zC`$eklJESSKtEPASmhioNFtMnmJ zPzF#I1|jdMuVhh-bGoN@Fo1z<1|u>6-^G~y9Jx<0dl*eJG{zA4 zM*7tnn*Q=Kb@4@d_y1HrdH!_u{3%kqyN;%xtfhZWKUr>HA=q;F3Q4Z+ULj%n?f*0+ zZYA=_8UFa4)$6~J_s0qA#)D;QjQ)Cw@BXm0dhiiCznO%|db(#zDlebg<0JKq52LJ#7 diff --git a/debug.log b/debug.log index 97f56fe..ef44239 100644 --- a/debug.log +++ b/debug.log @@ -307042,3 +307042,5052 @@ django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None "GET /check-user-authenticated/ HTTP/1.1" 200 26 (0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 09:56:40.366922' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 09:56:40.366922', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default "GET /orders/create/ HTTP/1.1" 302 0 +Watching for file changes with StatReloader +Waiting for apps ready_event. +Apps ready_event triggered. Sending autoreload_started signal. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\orders\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\main\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\cart\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\openid_connect\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\main\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\cart\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\orders\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\users\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\mozilla_django_oidc\locale with glob **/*.mo. +(0.000) + SELECT name, type FROM sqlite_master + WHERE type in ('table', 'view') AND NOT name='sqlite_sequence' + ORDER BY name; args=None; alias=default +(0.000) SELECT "django_migrations"."id", "django_migrations"."app", "django_migrations"."name", "django_migrations"."applied" FROM "django_migrations"; args=(); alias=default +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\backends\__init__.py first seen with mtime 1708272005.1794763 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\http.py first seen with mtime 1708272005.9925535 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\client.py first seen with mtime 1707383304.1459494 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\__init__.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\packaging\__init__.py first seen with mtime 1708499977.8906622 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_legacy.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\__init__.py first seen with mtime 1708272005.9369888 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\highlighting.py first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\fields.py first seen with mtime 1708272004.1204357 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\timezone.py first seen with mtime 1708272005.9771414 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\__init__.py first seen with mtime 1708272005.9082203 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\abc.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\__init__.py first seen with mtime 1708272005.6263409 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\padding.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\features.py first seen with mtime 1708272005.69634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\defusedxml\common.py first seen with mtime 1709531169.463774 +File C:\Users\fhjj3\djangoProject1\djangoProject1\__init__.py first seen with mtime 1708321694.9744332 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\__init__.py first seen with mtime 1708272005.6634598 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\urls\__init__.py first seen with mtime 1708272003.1470168 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\lzma.py first seen with mtime 1694771054.0941894 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templatetags\allauth.py first seen with mtime 1709531170.7335496 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\templatetags\socialaccount.py first seen with mtime 1709531170.6617908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\adapter.py first seen with mtime 1709531170.2215056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\utils.py first seen with mtime 1708274995.6385725 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\sqlite3\dbapi2.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\constant.py first seen with mtime 1708274996.0107274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\base\utils.py first seen with mtime 1709531170.3665304 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\signals.py first seen with mtime 1709531170.2275083 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\proactor_events.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\dates.py first seen with mtime 1708272005.9946315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\__init__.py first seen with mtime 1708499980.1455538 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\forms.py first seen with mtime 1709531170.225505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\__init__.py first seen with mtime 1708272004.1174705 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\models.py first seen with mtime 1708274996.4943979 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_header_value_parser.py first seen with mtime 1707383302.0039115 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zipfile.py first seen with mtime 1707383316.8131373 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\ssh.py first seen with mtime 1708777045.4498503 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\locks.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\compatibility\__init__.py first seen with mtime 1708272005.6381364 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\__init__.py first seen with mtime 1708274930.8115854 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\locmem.py first seen with mtime 1708272005.6295135 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\models.py first seen with mtime 1709531170.2175584 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\__init__.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\big5freq.py first seen with mtime 1708274930.8115854 +File C:\Users\fhjj3\djangoProject1\djangoProject1\settings.py first seen with mtime 1710841633.184124 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\jwt.py first seen with mtime 1708499979.998511 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\johabprober.py first seen with mtime 1708274930.8285773 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\taskgroups.py first seen with mtime 1701795055.2188418 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pkgutil.py first seen with mtime 1694771054.1566823 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\response.py first seen with mtime 1708274995.2811196 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\schema.py first seen with mtime 1708272005.7530026 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\cp1251.py first seen with mtime 1694771047.8464406 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\__init__.py first seen with mtime 1708274995.2614622 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\_cipheralgorithm.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\exceptions.py first seen with mtime 1708274995.6336176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\management\__init__.py first seen with mtime 1708272004.276103 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\apps.py first seen with mtime 1709531170.3291059 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\quoprimime.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\multipartparser.py first seen with mtime 1708272005.9101334 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\keyword.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\signals.py first seen with mtime 1708272003.9107015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_imaging.cp311-win_amd64.pyd first seen with mtime 1708273276.565876 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\fields.py first seen with mtime 1708272005.8227143 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\_oid.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\forms.py first seen with mtime 1708272003.9043806 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\urls.py first seen with mtime 1709531170.2195077 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\backends\django.py first seen with mtime 1708272005.9294243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\i18n.py first seen with mtime 1708272005.9379992 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\aliases.py first seen with mtime 1694771047.8427224 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\__init__.py first seen with mtime 1708499980.1475525 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\decorators.py first seen with mtime 1709531170.2245045 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\debug.py first seen with mtime 1708272005.9905515 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\utils.py first seen with mtime 1708272005.6908345 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\__init__.py first seen with mtime 1707383295.9510689 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\reverse_related.py first seen with mtime 1708272005.808248 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\role.py first seen with mtime 1708499980.1496224 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\logging\handlers.py first seen with mtime 1701795056.0938542 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\sql.py first seen with mtime 1708272002.369514 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\utils.py first seen with mtime 1708272005.768108 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\enum.py first seen with mtime 1701795055.2996204 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\cookies.py first seen with mtime 1694771050.6586244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\csrf.py first seen with mtime 1708272005.9842646 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\log.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\request.py first seen with mtime 1708272005.9111333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\__init__.py first seen with mtime 1708272005.780171 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\datetime.py first seen with mtime 1708272005.811243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\__init__.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\widont.py first seen with mtime 1708568721.9485924 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\gettext.py first seen with mtime 1701795055.3006198 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\error.py first seen with mtime 1694771061.0664566 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\shutil.py first seen with mtime 1707383306.5116594 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\base.py first seen with mtime 1708777045.4498503 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_overlapped.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\checks.py first seen with mtime 1708272005.6091714 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\inspect.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\admin.py first seen with mtime 1709531170.328099 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\operations.py first seen with mtime 1708272005.7520046 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\constraints.py first seen with mtime 1708272005.7892036 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\subqueries.py first seen with mtime 1708272005.8187182 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\edit.py first seen with mtime 1708272005.9961476 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\types.py first seen with mtime 1694771061.034897 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\cli.py first seen with mtime 1708272002.366943 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\__init__.py first seen with mtime 1708272005.631513 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\readers.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\utils.py first seen with mtime 1708272005.6248312 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\__init__.py first seen with mtime 1708272005.9450529 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\query.py first seen with mtime 1708272005.7972238 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\decorators.py first seen with mtime 1708272005.9613807 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\parser.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\exceptions.py first seen with mtime 1708272003.1530218 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\gb2312freq.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\uploadhandler.py first seen with mtime 1708272005.648272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\johabfreq.py first seen with mtime 1708274930.82756 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\format_helpers.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\text.py first seen with mtime 1708272005.8132446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\_serialization.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\apps.py first seen with mtime 1708272003.151022 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\apps\registry.py first seen with mtime 1708272002.8312175 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\admin_urls.py first seen with mtime 1708272003.665425 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\response.py first seen with mtime 1708272005.9274178 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euckrfreq.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\_virtualenv.py first seen with mtime 1708271985.168512 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\decorators.py first seen with mtime 1708272003.9043806 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\exceptions.py first seen with mtime 1708272005.7570324 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\ddl_references.py first seen with mtime 1708272005.6918366 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\error.py first seen with mtime 1708777045.149196 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\duration.py first seen with mtime 1708272005.963439 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\encoders.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\parse.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\__about__.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\locks.py first seen with mtime 1708272005.6452036 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\graphlib.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\headers.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\__init__.py first seen with mtime 1708272005.4187796 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\indent_text.py first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\common.py first seen with mtime 1708272005.913129 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\lexer.py first seen with mtime 1708272002.3685987 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\models.py first seen with mtime 1709531170.3321166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_base_connection.py first seen with mtime 1708274995.26246 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\memory.py first seen with mtime 1708272005.6512735 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_common.py first seen with mtime 1694771051.6745913 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\iterators.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\engine.py first seen with mtime 1708272005.923311 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\opcode.py first seen with mtime 1694771054.1410599 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ctypes\__init__.py first seen with mtime 1694771047.2529056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\operations.py first seen with mtime 1708272005.6973505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\_functions.py first seen with mtime 1708272005.7464592 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\fractions.py first seen with mtime 1707383304.114561 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\__init__.py first seen with mtime 1708499979.0523086 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_adapters.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\color.py first seen with mtime 1708272005.6644604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\core.py first seen with mtime 1708274995.8301811 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_policybase.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euctwfreq.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\http.py first seen with mtime 1708272005.9685533 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_encoded_words.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\openid_connect\urls.py first seen with mtime 1709531170.5401423 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\defusedxml\__init__.py first seen with mtime 1709531169.4560318 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\models.py first seen with mtime 1708272005.7731116 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\header.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\mozilla_django_oidc\__init__.py first seen with mtime 1709805831.8654432 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\app_settings.py first seen with mtime 1709531170.2159934 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\model_checks.py first seen with mtime 1708272005.6355772 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\dh.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\orders\apps.py first seen with mtime 1708321695.054364 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\defaults.py first seen with mtime 1708272005.9852686 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\urls.py first seen with mtime 1709531170.333113 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\_asymmetric.py first seen with mtime 1708777045.433604 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\selector_events.py first seen with mtime 1707383301.7845829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\options.py first seen with mtime 1708272005.7967162 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\conf.py first seen with mtime 1708272005.947127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\utils.py first seen with mtime 1708272005.648272 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\base.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\manager.py first seen with mtime 1708272005.7952182 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\keycloak_admin.py first seen with mtime 1708499980.151623 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\subprocess.py first seen with mtime 1707383316.687333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\dispatch\__init__.py first seen with mtime 1708272005.8197153 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\environ.py first seen with mtime 1708275928.9403257 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\oauth2\provider.py first seen with mtime 1709531170.5261085 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\ed448.py first seen with mtime 1708777045.4418166 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\selectors.py first seen with mtime 1696309058.429445 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_queue.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\database.py first seen with mtime 1708272005.6335773 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\base.py first seen with mtime 1708272005.7871947 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\cache.py first seen with mtime 1708272005.988496 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\openssl\binding.py first seen with mtime 1708777045.433604 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\decoder.py first seen with mtime 1694771051.705838 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\__init__.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\__init__.py first seen with mtime 1708274996.0077226 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_text.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\defaultfilters.py first seen with mtime 1708272005.9213128 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templatetags\__init__.py first seen with mtime 1709531170.7335496 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\__init__.py first seen with mtime 1709531170.3396528 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\__init__.py first seen with mtime 1708777045.1471913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\models.py first seen with mtime 1708272003.1550274 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\gzip.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\subprocess.py first seen with mtime 1696309035.177473 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\introspection.py first seen with mtime 1708272005.7510011 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\base.py first seen with mtime 1708272005.7711098 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\cache.py first seen with mtime 1708272005.9369888 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\uuid.py first seen with mtime 1694771061.0664566 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\etree\ElementPath.py first seen with mtime 1694771061.268605 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\current_thread_executor.py first seen with mtime 1708272002.6966326 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\mixins.py first seen with mtime 1708272005.8042297 +File C:\Users\fhjj3\djangoProject1\orders\views.py first seen with mtime 1710851529.9515321 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\base.py first seen with mtime 1708272005.9466176 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\_base.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\forms.py first seen with mtime 1708272004.1214797 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ssl.py first seen with mtime 1707383316.687333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\__init__.py first seen with mtime 1708272005.7454593 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_ctypes.pyd first seen with mtime 1707383301.6278477 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\string.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\packages.py first seen with mtime 1708274996.4953983 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\mimetypes.py first seen with mtime 1694771054.0941894 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\compat.py first seen with mtime 1708275928.9398072 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\utils.py first seen with mtime 1708272002.3705149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\base\provider.py first seen with mtime 1709531170.3655293 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\__init__.py first seen with mtime 1708274995.2791188 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\aead.py first seen with mtime 1708777045.4488218 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\__init__.py first seen with mtime 1708272003.1490226 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\__init__.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\sites.py first seen with mtime 1708272003.1582563 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\packaging\_structures.py first seen with mtime 1708499977.8906622 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_itertools.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\__init__.py first seen with mtime 1708272002.6950648 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\ExifTags.py first seen with mtime 1708273276.495905 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\charsetgroupprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\csrf.py first seen with mtime 1708272005.9146912 +File C:\Users\fhjj3\djangoProject1\cart\forms.py first seen with mtime 1708321694.969901 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\bisect.py first seen with mtime 1694771047.2212741 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\autoreload.py first seen with mtime 1708272005.9533725 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\backends.py first seen with mtime 1708272003.9013317 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langrussianmodel.py first seen with mtime 1708274930.8326974 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\related_lookups.py first seen with mtime 1708272005.807238 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\log.py first seen with mtime 1708272003.666479 +File C:\Users\fhjj3\djangoProject1\main\admin.py first seen with mtime 1708321694.9888315 +File C:\Users\fhjj3\djangoProject1\orders\models.py first seen with mtime 1708592720.355561 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\__init__.py first seen with mtime 1708272005.801238 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\abc.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\right_margin.py first seen with mtime 1708272002.3755589 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\escsm.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\checks.py first seen with mtime 1708272003.1520252 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\__init__.py first seen with mtime 1708274996.485356 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\etree\ElementTree.py first seen with mtime 1707383316.7818136 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\introspection.py first seen with mtime 1708272005.6973505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\ed25519.py first seen with mtime 1708777045.4418166 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\futures.py first seen with mtime 1694771047.1738276 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_bz2.pyd first seen with mtime 1707383301.6278477 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\choices.py first seen with mtime 1708272005.9553733 +File C:\Users\fhjj3\djangoProject1\users\apps.py first seen with mtime 1708506683.991898 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\threads.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\aligned_indent.py first seen with mtime 1708272002.373515 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\app_settings.py first seen with mtime 1709531170.328099 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pprint.py first seen with mtime 1707383306.4759216 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\idna.py first seen with mtime 1694771047.8614492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\exceptions.py first seen with mtime 1708272002.367446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\dateformat.py first seen with mtime 1708272005.9583776 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\__init__.py first seen with mtime 1709531170.214993 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\constant_time.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\__init__.py first seen with mtime 1708272005.6071646 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\apps.py first seen with mtime 1708568721.8394227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\oauth2\utils.py first seen with mtime 1709531170.5276158 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\struct.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\sessions.py first seen with mtime 1708274996.4953983 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\__init__.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\signals.py first seen with mtime 1708272005.7982292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\views\autocomplete.py first seen with mtime 1708272003.6674843 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\uma_permissions.py first seen with mtime 1708499980.154704 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\utils.py first seen with mtime 1708272005.6573324 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_request_methods.py first seen with mtime 1708274995.2650778 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\jwk.py first seen with mtime 1708499979.9975073 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langturkishmodel.py first seen with mtime 1708274930.8356998 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\constants.py first seen with mtime 1708272004.8465116 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\actions.py first seen with mtime 1708272003.1500225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\crypto.py first seen with mtime 1708272005.9563732 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\images.py first seen with mtime 1708272005.6442056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\forms.py first seen with mtime 1708272005.8237164 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\compatibility\django_4_0.py first seen with mtime 1708272005.6391394 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\deletion.py first seen with mtime 1708272005.7902057 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\tokens.py first seen with mtime 1708272002.376558 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\message.py first seen with mtime 1708272005.6573324 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\thread.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\state.py first seen with mtime 1708272005.7671013 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\_version.py first seen with mtime 1708499980.1465697 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_adapters.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\executor.py first seen with mtime 1708272005.758418 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\templatetags\__init__.py first seen with mtime 1709531170.6617908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\middleware.py first seen with mtime 1708272005.1774724 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\__init__.py first seen with mtime 1708272004.8445117 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\__init__.py first seen with mtime 1708272005.9121313 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\__init__.py first seen with mtime 1708272005.9172108 +File C:\Users\fhjj3\djangoProject1\users\admin.py first seen with mtime 1708506683.991898 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\window.py first seen with mtime 1708272005.8132446 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\nonmultipart.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\views.py first seen with mtime 1708272005.6132233 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\related.py first seen with mtime 1708272005.8052292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\apps\config.py first seen with mtime 1708272002.8312175 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\url.py first seen with mtime 1708274995.2866259 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\bz2.py first seen with mtime 1694771047.2212741 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\request.py first seen with mtime 1708274995.2811196 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\random.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\_distutils_hack\__init__.py first seen with mtime 1708271989.445068 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\chardistribution.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\exceptions.py first seen with mtime 1708272005.6207657 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\resultdict.py first seen with mtime 1708274930.8384342 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_weakrefset.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\creation.py first seen with mtime 1708272005.7490022 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\numberformat.py first seen with mtime 1708272005.973064 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\warnings.py first seen with mtime 1707383316.7788024 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_markupbase.py first seen with mtime 1694771061.3159857 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\handlers.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\base.py first seen with mtime 1708272005.7469933 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\structures.py first seen with mtime 1708274996.4963977 +File C:\Users\fhjj3\djangoProject1\main\urls.py first seen with mtime 1710915271.1148024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\__init__.py first seen with mtime 1708272005.6908345 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\fields.py first seen with mtime 1708274995.2690988 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\l10n.py first seen with mtime 1708272005.9379992 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\gb2312prober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\mbcharsetprober.py first seen with mtime 1708274930.836918 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\dis.py first seen with mtime 1701795055.2965775 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\__init__.py first seen with mtime 1708272002.8322785 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\hebrewprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\api.py first seen with mtime 1708274996.0088563 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\openssl\_conditional.py first seen with mtime 1708777045.433604 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\__init__.py first seen with mtime 1694771054.1098123 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_hashlib.pyd first seen with mtime 1707383301.6547873 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_version.py first seen with mtime 1708274995.2665815 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_elementtree.pyd first seen with mtime 1707383301.6540148 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\formatter.py first seen with mtime 1708272002.367446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\api.py first seen with mtime 1708777045.149196 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\__init__.py first seen with mtime 1694771047.2371235 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\threading.py first seen with mtime 1707383316.7030134 +File C:\Users\fhjj3\djangoProject1\users\models.py first seen with mtime 1708506683.991898 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\policy.py first seen with mtime 1708499980.1486204 +File C:\Users\fhjj3\djangoProject1\manage.py first seen with mtime 1708321695.0458086 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\context.py first seen with mtime 1708272005.92031 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\_abc.py first seen with mtime 1694771051.6902146 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\weakref.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\backends\base.py first seen with mtime 1708272005.9294243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\admin_list.py first seen with mtime 1708272003.6634247 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_lzma.pyd first seen with mtime 1707383301.6592948 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\transports.py first seen with mtime 1694771047.1895287 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\stringprep.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loader.py first seen with mtime 1708272005.9263134 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\apps.py first seen with mtime 1708272004.1187294 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\models.py first seen with mtime 1708568721.8394227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\types.py first seen with mtime 1708274995.6375577 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\auth.py first seen with mtime 1708274996.4903975 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\secrets.py first seen with mtime 1694771054.1879306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_collections.py first seen with mtime 1708274995.2650778 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\version.py first seen with mtime 1708272005.9783292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\local.py first seen with mtime 1708272002.697138 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\timeout.py first seen with mtime 1708274995.28512 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\openid_connect\__init__.py first seen with mtime 1709531170.5381372 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\app_settings.py first seen with mtime 1709531170.2225068 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\copyreg.py first seen with mtime 1694771047.2529056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\proxy.py first seen with mtime 1708274995.2801187 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\message.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\utils.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\utils.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\cache.py first seen with mtime 1708272005.954375 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\widgets.py first seen with mtime 1708272003.1601522 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\_os.py first seen with mtime 1708272005.951311 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\creation.py first seen with mtime 1708272005.6948347 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\constants.py first seen with mtime 1708272005.7882037 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\permission.py first seen with mtime 1708499980.1485543 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_itertools.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\base.py first seen with mtime 1708272005.6948347 +File C:\Users\fhjj3\djangoProject1\cart\apps.py first seen with mtime 1708321694.9689012 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\utils.py first seen with mtime 1708272005.8287628 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\streams.py first seen with mtime 1707383301.8002088 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\trsock.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\files.py first seen with mtime 1708272005.802248 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\__init__.py first seen with mtime 1708274995.6293552 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\wait.py first seen with mtime 1708274995.28814 +File C:\Users\fhjj3\djangoProject1\users\urls.py first seen with mtime 1710755748.2748985 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\__init__.py first seen with mtime 1694771047.2371235 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\context.py first seen with mtime 1694771054.1098123 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\__init__.py first seen with mtime 1694771047.8770776 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\connectionpool.py first seen with mtime 1708274995.2680905 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langthaimodel.py first seen with mtime 1708274930.834695 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\sbcharsetprober.py first seen with mtime 1708274930.8394392 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\admin.py first seen with mtime 1708272004.1187294 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\text.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\api.py first seen with mtime 1708274996.4893982 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langhebrewmodel.py first seen with mtime 1708274930.8317003 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\middleware.py first seen with mtime 1708272003.9068947 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\async_checks.py first seen with mtime 1708272005.631513 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\openid_connect\views.py first seen with mtime 1709531170.5401423 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\_digest_auth_compat.py first seen with mtime 1708499979.0533097 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\__init__.py first seen with mtime 1708272005.7701113 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\windows_events.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\__init__.py first seen with mtime 1708568721.9421916 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\feedparser.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\glob.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\name.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\views.py first seen with mtime 1709531170.333113 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\utils.py first seen with mtime 1709531170.2296054 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\schema.py first seen with mtime 1708272005.6985092 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ctypes\wintypes.py first seen with mtime 1694771047.2529056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\helpers.py first seen with mtime 1708272003.1550274 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_sqlite3.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\datastructures.py first seen with mtime 1708272005.8162813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py first seen with mtime 1708272005.9192493 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\mixins.py first seen with mtime 1694771047.1738276 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\policy.py first seen with mtime 1707383301.9727523 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\base_user.py first seen with mtime 1708272003.902382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\pkcs12.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\exceptions.py first seen with mtime 1708272005.1768935 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\__init__.py first seen with mtime 1708272005.9935522 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\jwk_set_cache.py first seen with mtime 1708274995.6356173 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\multipart\decoder.py first seen with mtime 1708499979.065306 +File C:\Users\fhjj3\djangoProject1\cart\admin.py first seen with mtime 1708321694.9689012 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\dates.py first seen with mtime 1708272005.9603825 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\ec.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\base.py first seen with mtime 1708272003.665425 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\nturl2path.py first seen with mtime 1694771054.1410599 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\expressions.py first seen with mtime 1708272005.7922037 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\apps.py first seen with mtime 1708272005.1753852 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\commands\runserver.py first seen with mtime 1708272005.67612 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\graph.py first seen with mtime 1708272005.75905 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\static.py first seen with mtime 1708272005.9389977 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_futures.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loader_tags.py first seen with mtime 1708272005.9263134 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\process.py first seen with mtime 1694771054.1098123 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\base.py first seen with mtime 1708272005.6502733 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\constants.py first seen with mtime 1707383301.768935 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\global_settings.py first seen with mtime 1708272002.8332798 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\__init__.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euctwprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\reindent.py first seen with mtime 1708272002.3745146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\move.py first seen with mtime 1708272005.6452036 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\models.py first seen with mtime 1708272004.1224792 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\__init__.py first seen with mtime 1708272003.1500225 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\base64.py first seen with mtime 1694771047.2212741 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\api.py first seen with mtime 1708272004.8455117 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_ssl.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\urls\static.py first seen with mtime 1708272003.148023 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\defusedxml\ElementTree.py first seen with mtime 1709531169.4560318 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\internal\__init__.py first seen with mtime 1709531170.2458272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\__init__.py first seen with mtime 1708272005.6888342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\certs.py first seen with mtime 1708274996.4903975 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\debugger_tags.py first seen with mtime 1708568721.9421916 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\socket.py first seen with mtime 1707383316.687333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\macromanprober.py first seen with mtime 1708274930.836918 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\__init__.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\library.py first seen with mtime 1708272005.925385 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\__init__.py first seen with mtime 1708272005.983209 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\log.py first seen with mtime 1708272005.971064 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\regex_helper.py first seen with mtime 1708272005.973064 +File C:\Users\fhjj3\djangoProject1\djangoProject1\urls.py first seen with mtime 1710320085.1270273 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\select.pyd first seen with mtime 1707383301.548544 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\client.py first seen with mtime 1708272005.7480016 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\password_validation.py first seen with mtime 1708272003.9097013 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\__init__.py first seen with mtime 1708272005.8092456 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\__init__.py first seen with mtime 1708272005.9324858 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\universaldetector.py first seen with mtime 1708274930.8404393 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\cd.py first seen with mtime 1708274996.0097282 +File C:\Users\fhjj3\djangoProject1\cart\models.py first seen with mtime 1708321694.970901 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\hashers.py first seen with mtime 1708272003.9053814 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\apps.py first seen with mtime 1709531170.2235053 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_socket.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\uploadedfile.py first seen with mtime 1708272005.6472125 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_parseaddr.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\math.py first seen with mtime 1708272005.811243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\__init__.py first seen with mtime 1708499979.994482 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\tasks.py first seen with mtime 1696309035.177473 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\functional.py first seen with mtime 1708272005.9654408 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\temp.py first seen with mtime 1708272005.646708 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\__init__.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\dsa.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\common.py first seen with mtime 1708272005.9895475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\deprecation.py first seen with mtime 1708499979.9741237 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\statistics.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\cart\cart.py first seen with mtime 1709207902.0099711 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ast.py first seen with mtime 1696309035.174228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\text.py first seen with mtime 1708272005.9751296 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_zoneinfo.pyd first seen with mtime 1707383301.722057 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\__init__.py first seen with mtime 1708272005.6248312 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\reprlib.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\adapters.py first seen with mtime 1708274996.4883916 +File C:\Users\fhjj3\djangoProject1\orders\__init__.py first seen with mtime 1708321695.0507934 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\asyncio.py first seen with mtime 1708272005.9523706 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\deprecation.py first seen with mtime 1708272005.9623787 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\poolmanager.py first seen with mtime 1708274995.272096 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\checks.py first seen with mtime 1708272004.1204357 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_subprocess.py first seen with mtime 1694771047.1738276 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\linecache.py first seen with mtime 1694771051.7995784 +File C:\Users\fhjj3\djangoProject1\cart\urls.py first seen with mtime 1708321694.9729092 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\status_codes.py first seen with mtime 1708274996.4963977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\__init__.py first seen with mtime 1708273276.548494 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\admin.py first seen with mtime 1709531170.2225068 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\packaging\version.py first seen with mtime 1708499977.9042609 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\statement_splitter.py first seen with mtime 1708272002.3725145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\hashes.py first seen with mtime 1708777045.4386127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\models.py first seen with mtime 1708272005.1784742 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\locale.py first seen with mtime 1701795056.0664911 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\guess.py first seen with mtime 1708499979.0543084 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\readers.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\keywrap.py first seen with mtime 1708777045.4391272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\csrf.py first seen with mtime 1708272005.6411397 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\client.py first seen with mtime 1708272005.6948347 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\formats.py first seen with mtime 1708272005.9644475 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\hmac.py first seen with mtime 1707383304.1301887 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\etree\__init__.py first seen with mtime 1694771061.268605 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\base.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\apps.py first seen with mtime 1708272003.9003315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\models.py first seen with mtime 1708272005.824716 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\rsa.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\main\apps.py first seen with mtime 1708321694.9898424 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\__version__.py first seen with mtime 1708274996.4873824 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\functools.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zoneinfo\_common.py first seen with mtime 1694771061.2998595 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\base.py first seen with mtime 1708272005.9946315 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\parsers\__init__.py first seen with mtime 1694771061.284227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\signals.py first seen with mtime 1708272005.692837 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\general_name.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\options.py first seen with mtime 1708272003.1571245 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\smartif.py first seen with mtime 1708272005.9274178 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_typing.py first seen with mtime 1708273276.5851386 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\decorators.py first seen with mtime 1709531170.2159934 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\x448.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\locale\__init__.py first seen with mtime 1708272002.8386085 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\tokens.py first seen with mtime 1708272003.9117756 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\i18n.py first seen with mtime 1708272005.9862702 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\exceptions.py first seen with mtime 1709531170.2448273 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\Image.py first seen with mtime 1708273276.507439 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\utf8prober.py first seen with mtime 1708274930.8414392 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\token.py first seen with mtime 1694771061.0191505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\handler.py first seen with mtime 1708272005.6512735 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pathlib.py first seen with mtime 1694771054.1566823 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langbulgarianmodel.py first seen with mtime 1708274930.8297043 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\files.py first seen with mtime 1708272005.6335773 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\md.cp311-win_amd64.pyd first seen with mtime 1708274996.0117288 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\package_data.py first seen with mtime 1708274995.8331878 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_compiler.py first seen with mtime 1701795065.2286446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\grouping.py first seen with mtime 1708272002.3715158 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\models.py first seen with mtime 1709531170.2265053 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\version.py first seen with mtime 1708274930.8414392 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\boundfield.py first seen with mtime 1708272005.8227143 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\hashable.py first seen with mtime 1708272005.9664416 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\timesince.py first seen with mtime 1708272005.9761298 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\defaulttags.py first seen with mtime 1708272005.9223137 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\debug.py first seen with mtime 1708272005.9852686 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euckrprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\adapters\__init__.py first seen with mtime 1708499979.039306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\paginator.py first seen with mtime 1708272005.6218283 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\typing.py first seen with mtime 1707383316.7504952 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\admin.py first seen with mtime 1708272003.9003315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\dispatch\dispatcher.py first seen with mtime 1708272005.8207145 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\__init__.py first seen with mtime 1694771054.1879306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\backends\__init__.py first seen with mtime 1708272005.9287443 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\app_directories.py first seen with mtime 1708272005.9334843 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\__init__.py first seen with mtime 1708272005.6431394 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\oid.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\__init__.py first seen with mtime 1708272005.652274 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\multipart.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\filter_stack.py first seen with mtime 1708272002.3715158 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\scanner.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\model.py first seen with mtime 1708777045.1553824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\json.py first seen with mtime 1708272005.6848128 +File C:\Users\fhjj3\djangoProject1\main\views.py first seen with mtime 1710936658.4426525 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\streaming_iterator.py first seen with mtime 1708499979.0373075 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\utils.py first seen with mtime 1708272005.6132233 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\jpcntx.py first seen with mtime 1708274930.8286877 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\codingstatemachinedict.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\ciphers.py first seen with mtime 1708777045.3788285 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_constants.py first seen with mtime 1694771054.1879306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\base.py first seen with mtime 1708272005.934484 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\difflib.py first seen with mtime 1694771047.2685764 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\platform.py first seen with mtime 1694771054.1566823 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\ssltransport.py first seen with mtime 1708274995.2841237 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\html\parser.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\signals.py first seen with mtime 1709531170.333113 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\__init__.py first seen with mtime 1708272005.6401398 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\csrf.py first seen with mtime 1708272005.9895475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\urls.py first seen with mtime 1709531170.2286072 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\hooks.py first seen with mtime 1708274996.4934087 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\__init__.py first seen with mtime 1708272005.6938355 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\templates.py first seen with mtime 1708272005.6370807 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\jwks_client.py first seen with mtime 1708274995.6366165 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\pyexpat.pyd first seen with mtime 1707383301.5328918 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\query_utils.py first seen with mtime 1708272005.7982292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\warnings.py first seen with mtime 1708274995.6388566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\_internal_utils.py first seen with mtime 1708274996.4873824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\utils\__init__.py first seen with mtime 1708499979.071306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\servers\__init__.py first seen with mtime 1708272005.6878285 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pickle.py first seen with mtime 1707383306.4759216 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\big5prober.py first seen with mtime 1708274930.8166883 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\translation\trans_real.py first seen with mtime 1708272005.9822087 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\http_proxy_digest.py first seen with mtime 1708499979.058306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\escprober.py first seen with mtime 1708274930.8177454 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\traceback.py first seen with mtime 1707383316.7504952 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\python.py first seen with mtime 1708272005.686318 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\util.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\ssl_match_hostname.py first seen with mtime 1708274995.283127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\utils.py first seen with mtime 1708272004.8490758 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_util.py first seen with mtime 1708273276.5861533 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\encoder.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\cookies.py first seen with mtime 1708274996.4914002 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langgreekmodel.py first seen with mtime 1708274930.8307028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\__init__.py first seen with mtime 1708777045.3788285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\enums.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\latin1prober.py first seen with mtime 1708274930.8356998 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\windows_utils.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\backend.py first seen with mtime 1708777045.3788285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\models.py first seen with mtime 1708272003.9086945 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\apps\__init__.py first seen with mtime 1708272002.8302183 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\mixins.py first seen with mtime 1708272005.652274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\__init__.py first seen with mtime 1708568721.8394227 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\html\__init__.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\staggered.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\__init__.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\connection.py first seen with mtime 1708499980.1496224 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\sessions.py first seen with mtime 1708272005.642139 +File C:\Users\fhjj3\djangoProject1\main\models.py first seen with mtime 1708592607.195247 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\__init__.py first seen with mtime 1708272002.365438 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\__init__.py first seen with mtime 1708272005.6826892 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\__future__.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\__init__.py first seen with mtime 1708272002.3725145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\authentication.py first seen with mtime 1709531170.2245045 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\renderers.py first seen with mtime 1708272005.8272424 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\certifi\core.py first seen with mtime 1708274996.1923244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\_rust.pyd first seen with mtime 1708777045.4169433 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\utf1632prober.py first seen with mtime 1708274930.8414392 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\logging\__init__.py first seen with mtime 1694771051.7995784 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\http.py first seen with mtime 1708272005.9156952 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_functools.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\generated.py first seen with mtime 1708272005.803233 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\hashlib.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\tree.py first seen with mtime 1708272005.9771414 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\util.py first seen with mtime 1708274995.2866259 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\sbcsgroupprober.py first seen with mtime 1708274930.8394392 +File C:\Users\fhjj3\djangoProject1\users\views.py first seen with mtime 1710755639.7363725 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\__init__.py first seen with mtime 1708272003.662427 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\aggregates.py first seen with mtime 1708272005.7841895 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\textwrap.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\templatetags\account.py first seen with mtime 1709531170.2356057 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\mbcsgroupprober.py first seen with mtime 1708274930.837428 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\management\__init__.py first seen with mtime 1708272004.1043391 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\logging\config.py first seen with mtime 1701795056.0674913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\__init__.py first seen with mtime 1708272005.6492734 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\ipv6.py first seen with mtime 1708272005.970064 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\tokenize.py first seen with mtime 1694771061.0191505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\signing.py first seen with mtime 1708272005.622832 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\__init__.py first seen with mtime 1708272005.987488 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\ratelimit.py first seen with mtime 1709531170.2458272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\commands\__init__.py first seen with mtime 1708272005.66697 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\shortcuts.py first seen with mtime 1708272002.829219 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\adapters\ssl.py first seen with mtime 1708499979.050304 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\converters.py first seen with mtime 1708272005.947127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\apps.py first seen with mtime 1708272004.8455117 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\response.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\__init__.py first seen with mtime 1708272005.6197722 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\requests.py first seen with mtime 1708272005.42378 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\enums.py first seen with mtime 1708272005.7912042 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_compat_pickle.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\checks.py first seen with mtime 1708272003.902382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\base\mixins.py first seen with mtime 1709531170.3655293 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\helpers.py first seen with mtime 1709531170.331112 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\oauth2\__init__.py first seen with mtime 1709531170.5261085 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\runners.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\backends\base.py first seen with mtime 1708499980.0005682 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\__init__.py first seen with mtime 1708272004.8500779 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\admin\widgets.py first seen with mtime 1708568721.8475149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\exceptions.py first seen with mtime 1708499980.150623 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\validators.py first seen with mtime 1708272005.623829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\contrib\__init__.py first seen with mtime 1708274995.274096 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\__init__.py first seen with mtime 1708272005.6563208 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\base.py first seen with mtime 1708272005.6432004 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\decimal.py first seen with mtime 1694771047.2685764 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\base.py first seen with mtime 1708272005.6532726 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\base\constants.py first seen with mtime 1709531170.3645303 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\transaction.py first seen with mtime 1708272005.689836 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\html.py first seen with mtime 1708272005.967452 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\utils.py first seen with mtime 1708272005.7992294 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\mbcssm.py first seen with mtime 1708274930.8384342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\fields.py first seen with mtime 1708272005.7721107 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\formsets.py first seen with mtime 1708272005.8237164 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\__init__.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\base.py first seen with mtime 1708272005.6401398 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\padding.py first seen with mtime 1708777045.4391272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\__init__.py first seen with mtime 1709531170.326594 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\oauth2\views.py first seen with mtime 1709531170.5286205 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\syntax_color.py first seen with mtime 1708568721.9421916 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_collections.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\others.py first seen with mtime 1708272002.3745146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\managers.py first seen with mtime 1709531170.225505 +File C:\Users\fhjj3\djangoProject1\orders\forms.py first seen with mtime 1708321695.0544572 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\base\__init__.py first seen with mtime 1709531170.3645303 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\widgets.py first seen with mtime 1708272005.8288138 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\exceptions.py first seen with mtime 1708274995.2680905 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\autoreload.py first seen with mtime 1708272005.91825 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\base.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\decorators.py first seen with mtime 1708272003.1520252 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\datastructures.py first seen with mtime 1708272005.9572842 +File C:\Users\fhjj3\djangoProject1\cart\__init__.py first seen with mtime 1708321694.9645002 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\utils.py first seen with mtime 1708272005.9503145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\backends\cryptography_backend.py first seen with mtime 1708499980.0015688 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_binary.py first seen with mtime 1708273276.5534997 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\proxy.py first seen with mtime 1708272005.8052292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\reauthentication.py first seen with mtime 1709531170.2275083 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\keycloak_uma.py first seen with mtime 1708499980.1536732 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\views.py first seen with mtime 1708272004.1244812 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\management\__init__.py first seen with mtime 1708272005.6132233 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\base.py first seen with mtime 1708272005.6836898 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\__init__.py first seen with mtime 1694771050.6586244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\handlers.py first seen with mtime 1708272005.6101708 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\version.py first seen with mtime 1708274996.0157313 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\management\commands\runserver.py first seen with mtime 1708272005.6172554 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\filebased.py first seen with mtime 1708272005.6285076 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\base64mime.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\ssl_.py first seen with mtime 1708274995.2821188 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\__init__.py first seen with mtime 1708777045.4603634 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\datetime.py first seen with mtime 1696309058.3992383 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\views\main.py first seen with mtime 1708272003.6686103 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\utf_8.py first seen with mtime 1694771047.8770776 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\keycloak_openid.py first seen with mtime 1708499980.152622 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\eucjpprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\openid_connection.py first seen with mtime 1708499980.1536732 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\admin\__init__.py first seen with mtime 1708568721.8475149 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\numbers.py first seen with mtime 1694771054.1410599 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_casefix.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\adapters\source.py first seen with mtime 1708499979.0463047 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\utils.py first seen with mtime 1707383301.98824 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\server.py first seen with mtime 1694771050.6586244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\mixins.py first seen with mtime 1708272005.8122475 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\argparse.py first seen with mtime 1707383301.753335 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\exceptions.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\utils.py first seen with mtime 1708272003.1601522 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\admin_modify.py first seen with mtime 1708272003.6644244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\asgi.py first seen with mtime 1708272005.6532726 +File C:\Users\fhjj3\djangoProject1\cart\views.py first seen with mtime 1708321694.9729092 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\filesystem.py first seen with mtime 1708272005.9355414 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\message.py first seen with mtime 1707383301.9727523 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\copy.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\jws.py first seen with mtime 1708499979.9975073 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\connection.py first seen with mtime 1708272005.9553733 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\__init__.py first seen with mtime 1708272005.174387 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\__init__.py first seen with mtime 1708274995.8286822 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\__init__.py first seen with mtime 1708272002.3705149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\dateparse.py first seen with mtime 1708272005.9593828 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\backends\base.py first seen with mtime 1708272005.180475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\__init__.py first seen with mtime 1708777045.4416673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\exceptions.py first seen with mtime 1708272005.9483032 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_meta.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\utils.py first seen with mtime 1708499979.9995673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\internal\http.py first seen with mtime 1709531170.2458272 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_compression.py first seen with mtime 1694771061.3159857 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\reduction.py first seen with mtime 1694771054.1098123 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\comparison.py first seen with mtime 1708272005.8092456 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\__init__.py first seen with mtime 1708272005.8217156 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\constants.py first seen with mtime 1708499979.99551 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\__init__.py first seen with mtime 1708272005.7550004 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\tempfile.py first seen with mtime 1707383316.7030134 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\base.py first seen with mtime 1708272005.627398 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\base.py first seen with mtime 1708272004.8500779 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_decimal.pyd first seen with mtime 1707383301.643485 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\quopri.py first seen with mtime 1694771054.1723063 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\generator.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\_cffi_backend.cp311-win_amd64.pyd first seen with mtime 1708777045.1399848 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\base.py first seen with mtime 1708272005.6634598 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\finders.py first seen with mtime 1708272005.6091714 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\safestring.py first seen with mtime 1708272005.9741254 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\charset.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\socketserver.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\exception.py first seen with mtime 1708272005.6543176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\translation.py first seen with mtime 1708272005.6370807 +File C:\Users\fhjj3\djangoProject1\orders\utils.py first seen with mtime 1709202781.4677205 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\output.py first seen with mtime 1708272002.3745146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\list.py first seen with mtime 1708272005.9971554 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\base_session.py first seen with mtime 1708272005.1753852 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\response.py first seen with mtime 1708272005.9111333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\encoding.py first seen with mtime 1708272005.963439 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\operator.py first seen with mtime 1694771054.1410599 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\apps.py first seen with mtime 1708272005.4207804 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\__init__.py first seen with mtime 1709531170.2215056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_version.py first seen with mtime 1708273276.5861533 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\exceptions.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\cp949prober.py first seen with mtime 1708274930.8177454 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_parser.py first seen with mtime 1701795065.2326446 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\coroutines.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\utils.py first seen with mtime 1708274996.0157313 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\inspect.py first seen with mtime 1708272005.9690583 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\validation.py first seen with mtime 1708272005.699519 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\special.py first seen with mtime 1708272005.77612 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\signal.py first seen with mtime 1707383306.5116594 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\codingstatemachine.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\fileaware_mapping.py first seen with mtime 1708275928.9413319 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\translation\__init__.py first seen with mtime 1708272005.979205 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\charsetprober.py first seen with mtime 1708274930.8177454 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_events.py first seen with mtime 1707383301.768935 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\sjisprober.py first seen with mtime 1708274930.8404393 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\exceptions.py first seen with mtime 1708499979.99551 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\sysconfig.py first seen with mtime 1694771060.9877644 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ipaddress.py first seen with mtime 1701795056.0654914 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\migration.py first seen with mtime 1708272005.7620504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\connection.py first seen with mtime 1708274995.2801187 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\multipart\__init__.py first seen with mtime 1708499979.064306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\extensions.py first seen with mtime 1708777045.4603634 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\calendar.py first seen with mtime 1707383301.9413548 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\compat.py first seen with mtime 1708274996.4914002 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\multipart\encoder.py first seen with mtime 1708499979.0663054 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\views.py first seen with mtime 1709531170.2296054 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\loader.py first seen with mtime 1708272005.7610507 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\unicodedata.pyd first seen with mtime 1707383301.623886 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\messages.py first seen with mtime 1708272005.6345823 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\__init__.py first seen with mtime 1708272002.828243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\admin.py first seen with mtime 1708272005.4197824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\retry.py first seen with mtime 1708274995.2821188 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\keywords.py first seen with mtime 1708272002.3684514 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\jisfreq.py first seen with mtime 1708274930.827044 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\__init__.py first seen with mtime 1708272005.9503145 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\__init__.py first seen with mtime 1707383296.3117087 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\sync.py first seen with mtime 1708272002.7001462 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\parsers\expat.py first seen with mtime 1694771061.284227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\constants.py first seen with mtime 1708272005.8162813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\verification.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\cache.py first seen with mtime 1708272005.913129 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\resolvers.py first seen with mtime 1708272005.94931 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\views\__init__.py first seen with mtime 1708272003.666479 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\fnmatch.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\dataclasses.py first seen with mtime 1694771047.2685764 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\api_jwk.py first seen with mtime 1708274995.631617 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\caches.py first seen with mtime 1708272005.6325755 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_tasks.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\legacy.py first seen with mtime 1708274996.0107274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\middleware.py first seen with mtime 1708272004.8480244 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\sslproto.py first seen with mtime 1707383301.8002088 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\contextlib.py first seen with mtime 1701795055.2944214 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\__init__.py first seen with mtime 1708272003.8993342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\itercompat.py first seen with mtime 1708272005.970064 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\wsgi.py first seen with mtime 1708272005.6553187 +File C:\Users\fhjj3\djangoProject1\main\__init__.py first seen with mtime 1708321694.9861953 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\__init__.py first seen with mtime 1708272005.8132446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\aead.py first seen with mtime 1708777045.3788285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\module_loading.py first seen with mtime 1708272005.972063 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\headerregistry.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\response.py first seen with mtime 1708274995.2730968 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\signals.py first seen with mtime 1708272005.6218283 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\validators.py first seen with mtime 1708272003.9127786 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\recorder.py first seen with mtime 1708272005.7650497 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\utils.py first seen with mtime 1708274996.4974117 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\backends\__init__.py first seen with mtime 1708499979.9995673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\deconstruct.py first seen with mtime 1708272005.9603825 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\filepost.py first seen with mtime 1708274995.2700982 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\cookiejar.py first seen with mtime 1694771050.6586244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\__init__.py first seen with mtime 1709531170.2438269 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\ImageMode.py first seen with mtime 1708273276.516985 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\hmac.py first seen with mtime 1708777045.4391272 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\heapq.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\models.py first seen with mtime 1708272005.4227803 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\query.py first seen with mtime 1708272005.8172884 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\protocols.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\_compat.py first seen with mtime 1708499979.0343025 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\urls.py first seen with mtime 1708272005.6381364 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\templatetags\__init__.py first seen with mtime 1709531170.2346053 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\api_jwt.py first seen with mtime 1708274995.6326191 +File C:\Users\fhjj3\djangoProject1\orders\admin.py first seen with mtime 1708321695.0527942 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\utils.py first seen with mtime 1709531170.220505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\termcolors.py first seen with mtime 1708272005.9741254 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\openid_connect\provider.py first seen with mtime 1709531170.539137 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\contentmanager.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\utils\user_agent.py first seen with mtime 1708499979.0783052 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\algorithms.py first seen with mtime 1708274995.6306217 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\sqlite3\__init__.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\json.py first seen with mtime 1708272005.8042297 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\adapter.py first seen with mtime 1709531170.3275945 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\modes.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\api_jws.py first seen with mtime 1708274995.6326191 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\certificate_transparency.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\forms.py first seen with mtime 1709531170.3301125 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\queues.py first seen with mtime 1694771047.1738276 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_uuid.pyd first seen with mtime 1707383301.6963732 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\certifi\__init__.py first seen with mtime 1708274996.1883242 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\md__mypyc.cp311-win_amd64.pyd first seen with mtime 1708274996.0137274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\lorem_ipsum.py first seen with mtime 1708272005.972063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\static.py first seen with mtime 1708272005.9862702 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\tokens.py first seen with mtime 1708272002.369514 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\translation\reloader.py first seen with mtime 1708272005.9802067 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\__init__.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\oauth2\client.py first seen with mtime 1709531170.5261085 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\x25519.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\management.py first seen with mtime 1708272005.4217865 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\utils.py first seen with mtime 1708272005.9284248 +File C:\Users\fhjj3\djangoProject1\users\__init__.py first seen with mtime 1708506684.0176537 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\filters.py first seen with mtime 1708272003.154024 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\__init__.py first seen with mtime 1694771061.2998595 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\exceptions.py first seen with mtime 1708274996.4923987 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\registry.py first seen with mtime 1708272005.6365767 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zoneinfo\_tzpath.py first seen with mtime 1694771061.2998595 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\lookups.py first seen with mtime 1708272005.7942028 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\contextvars.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\intranges.py first seen with mtime 1708274995.8321874 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\urls_patterns.py first seen with mtime 1708499980.1557024 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ctypes\_endian.py first seen with mtime 1707383301.9413548 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\cookie.py first seen with mtime 1708272005.909127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\filesystem.py first seen with mtime 1708272005.6502733 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\features.py first seen with mtime 1708272005.750004 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\security.py first seen with mtime 1708272005.916202 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zoneinfo\__init__.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\context.py first seen with mtime 1709531170.2448273 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\servers\basehttp.py first seen with mtime 1708272005.6888342 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\request.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\__init__.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\checks.py first seen with mtime 1708272005.4207804 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\getpass.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\idnadata.py first seen with mtime 1708274995.8311884 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\collections\__init__.py first seen with mtime 1694771047.2371235 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\simple_server.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\utils.py first seen with mtime 1708272005.692837 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\indexes.py first seen with mtime 1708272005.7922037 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_asyncio.pyd first seen with mtime 1707383301.6278477 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\apps.py first seen with mtime 1708272005.6084337 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\tz.py first seen with mtime 1708272005.9399948 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\models.py first seen with mtime 1708274996.0137274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\shortcuts.py first seen with mtime 1708272005.4247823 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\lock.py first seen with mtime 1708777045.1553824 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\timeouts.py first seen with mtime 1701795055.2199955 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\management\commands\__init__.py first seen with mtime 1708272005.6147292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\wsgi.py first seen with mtime 1708272005.623829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\related_descriptors.py first seen with mtime 1708272005.8067338 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\detail.py first seen with mtime 1708272005.9956405 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\html\entities.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\csv.py first seen with mtime 1694771047.2529056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\where.py first seen with mtime 1708272005.8197153 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\cached.py first seen with mtime 1708272005.934484 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\errors.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\__init__.py first seen with mtime 1694771051.6902146 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\queue.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\TiffTags.py first seen with mtime 1708273276.5459802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\connection.py first seen with mtime 1708274995.2665815 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\__init__.py first seen with mtime 1708499979.0333035 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\openssl\__init__.py first seen with mtime 1708777045.4292822 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\events.py first seen with mtime 1707383301.7845829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\__init__.py first seen with mtime 1708275928.9383018 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\exceptions.py first seen with mtime 1708272005.924315 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\collections\abc.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\orders\urls.py first seen with mtime 1708321695.0626125 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\widgets first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018 first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018\digraph.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018\label.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018\relation.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original\digraph.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original\label.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original\relation.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\widgets\foreignkey_searchinput.html first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders first seen with mtime 1708321695.061612 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order first seen with mtime 1709556079.0286837 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order\create.html first seen with mtime 1708321695.061612 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order\created.html first seen with mtime 1709556079.0278215 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order\pdf.html first seen with mtime 1708321695.0626125 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account first seen with mtime 1709531170.6979802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa first seen with mtime 1709531170.7190285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\openid first seen with mtime 1709531170.7210276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\tests first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions first seen with mtime 1709531170.7315457 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\account_inactive.html first seen with mtime 1709531170.667301 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_entrance.html first seen with mtime 1709531170.667301 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_manage.html first seen with mtime 1709531170.6683075 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_manage_email.html first seen with mtime 1709531170.6693091 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_manage_password.html first seen with mtime 1709531170.6693091 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_reauthenticate.html first seen with mtime 1709531170.6703155 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email first seen with mtime 1709531170.692475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email.html first seen with mtime 1709531170.6703155 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email_change.html first seen with mtime 1709531170.6713145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email_confirm.html first seen with mtime 1709531170.6713145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\login.html first seen with mtime 1709531170.6713145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\logout.html first seen with mtime 1709531170.6723144 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages first seen with mtime 1709531170.6979802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_change.html first seen with mtime 1709531170.6723144 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset.html first seen with mtime 1709531170.6733148 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset_done.html first seen with mtime 1709531170.6733148 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset_from_key.html first seen with mtime 1709531170.6743145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset_from_key_done.html first seen with mtime 1709531170.6743145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_set.html first seen with mtime 1709531170.6753147 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\reauthenticate.html first seen with mtime 1709531170.6753147 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\signup.html first seen with mtime 1709531170.6753147 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\signup_closed.html first seen with mtime 1709531170.6763153 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\snippets first seen with mtime 1709531170.6989908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\verification_sent.html first seen with mtime 1709531170.6773162 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\verified_email_required.html first seen with mtime 1709531170.6778219 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\account_already_exists_message.txt first seen with mtime 1709531170.6788323 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\account_already_exists_subject.txt first seen with mtime 1709531170.6788323 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\base_message.txt first seen with mtime 1709531170.679829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\base_notification.txt first seen with mtime 1709531170.679829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_changed_message.txt first seen with mtime 1709531170.6808288 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_changed_subject.txt first seen with mtime 1709531170.6808288 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_message.txt first seen with mtime 1709531170.682829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_signup_message.txt first seen with mtime 1709531170.682829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_signup_subject.txt first seen with mtime 1709531170.6838286 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_subject.txt first seen with mtime 1709531170.684828 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirm_message.txt first seen with mtime 1709531170.6818295 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirm_subject.txt first seen with mtime 1709531170.6818295 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_deleted_message.txt first seen with mtime 1709531170.6858523 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_deleted_subject.txt first seen with mtime 1709531170.6873715 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_changed_message.txt first seen with mtime 1709531170.6873715 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_changed_subject.txt first seen with mtime 1709531170.6883805 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_key_message.txt first seen with mtime 1709531170.6883805 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_key_subject.txt first seen with mtime 1709531170.689382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_message.txt first seen with mtime 1709531170.689382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_subject.txt first seen with mtime 1709531170.6904752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_set_message.txt first seen with mtime 1709531170.6904752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_set_subject.txt first seen with mtime 1709531170.6914752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\unknown_account_message.txt first seen with mtime 1709531170.6914752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\unknown_account_subject.txt first seen with mtime 1709531170.692475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\cannot_delete_primary_email.txt first seen with mtime 1709531170.692475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_confirmation_failed.txt first seen with mtime 1709531170.6934752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_confirmation_sent.txt first seen with mtime 1709531170.6944842 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_confirmed.txt first seen with mtime 1709531170.6944842 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_deleted.txt first seen with mtime 1709531170.6954775 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\logged_in.txt first seen with mtime 1709531170.6954775 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\logged_out.txt first seen with mtime 1709531170.6964748 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\password_changed.txt first seen with mtime 1709531170.6964748 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\password_set.txt first seen with mtime 1709531170.6964748 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\primary_email_set.txt first seen with mtime 1709531170.6974757 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\unverified_primary_email.txt first seen with mtime 1709531170.6979802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\snippets\already_logged_in.html first seen with mtime 1709531170.6989908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\snippets\warn_no_email.html first seen with mtime 1709531170.6989908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts first seen with mtime 1709531170.7084978 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\alert.html first seen with mtime 1709531170.6999867 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\badge.html first seen with mtime 1709531170.6999867 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\button.html first seen with mtime 1709531170.7009866 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\field.html first seen with mtime 1709531170.7029896 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\fields.html first seen with mtime 1709531170.7039902 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\form.html first seen with mtime 1709531170.7039902 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\h1.html first seen with mtime 1709531170.7049866 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\h2.html first seen with mtime 1709531170.7049866 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\hr.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\img.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\panel.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\provider.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\provider_list.html first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\table.html first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts\base.html first seen with mtime 1709531170.7084978 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts\entrance.html first seen with mtime 1709531170.7084978 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts\manage.html first seen with mtime 1709531170.7094977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\authenticate.html first seen with mtime 1709531170.7094977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\base_entrance.html first seen with mtime 1709531170.7094977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\base_manage.html first seen with mtime 1709531170.7105024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email first seen with mtime 1709531170.7145028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\index.html first seen with mtime 1709531170.7105024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages first seen with mtime 1709531170.7165031 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\reauthenticate.html first seen with mtime 1709531170.7115035 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes first seen with mtime 1709531170.7180228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp first seen with mtime 1709531170.7200282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\recovery_codes_generated_message.txt first seen with mtime 1709531170.7115035 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\recovery_codes_generated_subject.txt first seen with mtime 1709531170.712504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_activated_message.txt first seen with mtime 1709531170.7135034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_activated_subject.txt first seen with mtime 1709531170.7135034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_deactivated_message.txt first seen with mtime 1709531170.7135034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_deactivated_subject.txt first seen with mtime 1709531170.7145028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages\recovery_codes_generated.txt first seen with mtime 1709531170.7155042 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages\totp_activated.txt first seen with mtime 1709531170.7155042 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages\totp_deactivated.txt first seen with mtime 1709531170.7165031 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\base.html first seen with mtime 1709531170.7165031 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\download.txt first seen with mtime 1709531170.7175183 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\generate.html first seen with mtime 1709531170.7180228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\index.html first seen with mtime 1709531170.7180228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp\activate_form.html first seen with mtime 1709531170.7190285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp\base.html first seen with mtime 1709531170.7190285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp\deactivate_form.html first seen with mtime 1709531170.7200282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\openid\base.html first seen with mtime 1709531170.7200282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\openid\login.html first seen with mtime 1709531170.7210276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\authentication_error.html first seen with mtime 1709531170.7210276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\base_entrance.html first seen with mtime 1709531170.7220285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\base_manage.html first seen with mtime 1709531170.7220285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\connections.html first seen with mtime 1709531170.7230282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\login.html first seen with mtime 1709531170.7230282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\login_cancelled.html first seen with mtime 1709531170.7230282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\signup.html first seen with mtime 1709531170.7240279 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_connected_message.txt first seen with mtime 1709531170.7240279 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_connected_subject.txt first seen with mtime 1709531170.725028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_disconnected_message.txt first seen with mtime 1709531170.725028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_disconnected_subject.txt first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_connected.txt first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_connected_other.txt first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_connected_updated.txt first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_disconnected.txt first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets\login.html first seen with mtime 1709531170.728538 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets\login_extra.html first seen with mtime 1709531170.728538 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets\provider_list.html first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\tests\test_403_csrf.html first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\base_manage.html first seen with mtime 1709531170.7305448 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\messages first seen with mtime 1709531170.732551 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\usersession_list.html first seen with mtime 1709531170.7315457 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\messages\sessions_logged_out.txt first seen with mtime 1709531170.732551 +File C:\Users\fhjj3\djangoProject1\main\templates\main first seen with mtime 1710915719.31491 +File C:\Users\fhjj3\djangoProject1\main\templates\main\about.html first seen with mtime 1709805141.1082456 +File C:\Users\fhjj3\djangoProject1\main\templates\main\base.html first seen with mtime 1710915719.31491 +File C:\Users\fhjj3\djangoProject1\main\templates\main\callback.html first seen with mtime 1710826534.7217093 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product first seen with mtime 1710753964.805735 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product\detail.html first seen with mtime 1710322666.8037064 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product\list.html first seen with mtime 1709803052.8001108 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product\profile.html first seen with mtime 1710753964.805735 +File C:\Users\fhjj3\djangoProject1\cart\templates\cart first seen with mtime 1709797331.2451537 +File C:\Users\fhjj3\djangoProject1\cart\templates\cart\detail.html first seen with mtime 1709797331.2441432 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ar\LC_MESSAGES\django.mo first seen with mtime 1709531170.2483387 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\az\LC_MESSAGES\django.mo first seen with mtime 1709531170.2503822 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\bg\LC_MESSAGES\django.mo first seen with mtime 1709531170.2523403 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ca\LC_MESSAGES\django.mo first seen with mtime 1709531170.2533395 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\cs\LC_MESSAGES\django.mo first seen with mtime 1709531170.255339 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\da\LC_MESSAGES\django.mo first seen with mtime 1709531170.2563374 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\de\LC_MESSAGES\django.mo first seen with mtime 1709531170.2573397 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\el\LC_MESSAGES\django.mo first seen with mtime 1709531170.259826 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\en\LC_MESSAGES\django.mo first seen with mtime 1709531170.2608266 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\es\LC_MESSAGES\django.mo first seen with mtime 1709531170.2618265 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\eu\LC_MESSAGES\django.mo first seen with mtime 1709531170.2628262 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\fa\LC_MESSAGES\django.mo first seen with mtime 1709531170.264827 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\fi\LC_MESSAGES\django.mo first seen with mtime 1709531170.265827 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\fr\LC_MESSAGES\django.mo first seen with mtime 1709531170.2673337 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\he\LC_MESSAGES\django.mo first seen with mtime 1709531170.2693403 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\hr\LC_MESSAGES\django.mo first seen with mtime 1709531170.27034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\hu\LC_MESSAGES\django.mo first seen with mtime 1709531170.2713394 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\id\LC_MESSAGES\django.mo first seen with mtime 1709531170.2733397 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\it\LC_MESSAGES\django.mo first seen with mtime 1709531170.2743385 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ja\LC_MESSAGES\django.mo first seen with mtime 1709531170.27534 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ka\LC_MESSAGES\django.mo first seen with mtime 1709531170.2773395 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ko\LC_MESSAGES\django.mo first seen with mtime 1709531170.278443 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ky\LC_MESSAGES\django.mo first seen with mtime 1709531170.2794406 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\lt\LC_MESSAGES\django.mo first seen with mtime 1709531170.281441 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\lv\LC_MESSAGES\django.mo first seen with mtime 1709531170.2834418 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\mn\LC_MESSAGES\django.mo first seen with mtime 1709531170.2854414 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\nb\LC_MESSAGES\django.mo first seen with mtime 1709531170.2864406 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\nl\LC_MESSAGES\django.mo first seen with mtime 1709531170.288449 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\pl\LC_MESSAGES\django.mo first seen with mtime 1709531170.2894557 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\pt_BR\LC_MESSAGES\django.mo first seen with mtime 1709531170.2914605 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\pt_PT\LC_MESSAGES\django.mo first seen with mtime 1709531170.2924604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ro\LC_MESSAGES\django.mo first seen with mtime 1709531170.2944615 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ru\LC_MESSAGES\django.mo first seen with mtime 1709531170.2954607 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sk\LC_MESSAGES\django.mo first seen with mtime 1709531170.2974613 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sl\LC_MESSAGES\django.mo first seen with mtime 1709531170.299975 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sr\LC_MESSAGES\django.mo first seen with mtime 1709531170.301971 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sr_Latn\LC_MESSAGES\django.mo first seen with mtime 1709531170.3039734 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sv\LC_MESSAGES\django.mo first seen with mtime 1709531170.3049705 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\th\LC_MESSAGES\django.mo first seen with mtime 1709531170.3059704 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\tr\LC_MESSAGES\django.mo first seen with mtime 1709531170.3074746 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\uk\LC_MESSAGES\django.mo first seen with mtime 1709531170.3094792 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_CN\LC_MESSAGES\django.mo first seen with mtime 1709531170.3104813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_Hans\LC_MESSAGES\django.mo first seen with mtime 1709531170.3114796 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_Hant\LC_MESSAGES\django.mo first seen with mtime 1709531170.3124814 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_TW\LC_MESSAGES\django.mo first seen with mtime 1709531170.3144813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\da\LC_MESSAGES\django.mo first seen with mtime 1708568721.87046 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\de\LC_MESSAGES\django.mo first seen with mtime 1708568721.87046 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\el\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\en\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\es\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\fr\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\hu\LC_MESSAGES\django.mo first seen with mtime 1708568721.8842504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\id\LC_MESSAGES\django.mo first seen with mtime 1708568721.8842504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\it\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\ja\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\pl\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\pt\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\pt_BR\LC_MESSAGES\django.mo first seen with mtime 1708568721.895399 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\ro\LC_MESSAGES\django.mo first seen with mtime 1708568721.895399 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\ru\LC_MESSAGES\django.mo first seen with mtime 1708568721.8992639 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0001_initial.py first seen with mtime 1709531170.2316048 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\0002_logentry_remove_auto_add.py first seen with mtime 1708272003.5251837 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0003_alter_user_email_max_length.py first seen with mtime 1708272004.1080234 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\migrations\__init__.py first seen with mtime 1708272005.4132214 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\__init__.py first seen with mtime 1709531170.3386524 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0003_alter_emailaddress_create_unique_verified_email.py first seen with mtime 1709531170.2326095 +File C:\Users\fhjj3\djangoProject1\orders\migrations\0001_initial.py first seen with mtime 1708321695.0544572 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\backends\db.py first seen with mtime 1708272005.1814744 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\__init__.py first seen with mtime 1708272004.1151564 +File C:\Users\fhjj3\djangoProject1\cart\migrations\__init__.py first seen with mtime 1708321694.969901 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0004_alter_user_username_opts.py first seen with mtime 1708272004.109091 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0011_update_proxy_permissions.py first seen with mtime 1708272004.1141546 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\migrations\0001_initial.py first seen with mtime 1708272004.2781794 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\clickjacking.py first seen with mtime 1708272005.913129 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0009_alter_user_last_name_max_length.py first seen with mtime 1708272004.1130946 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\migrations\__init__.py first seen with mtime 1708272005.6071646 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\migrations\0002_remove_content_type_name.py first seen with mtime 1708272004.279176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0010_alter_group_name_max_length.py first seen with mtime 1708272004.1130946 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\middleware.py first seen with mtime 1709531170.2265053 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0003_extra_data_default_dict.py first seen with mtime 1709531170.336132 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\__init__.py first seen with mtime 1708272003.526099 +File C:\Users\fhjj3\djangoProject1\main\migrations\0002_alter_product_price.py first seen with mtime 1708592630.9072697 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\0003_logentry_add_action_flag_choices.py first seen with mtime 1708272003.526099 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\compiler.py first seen with mtime 1708272005.814751 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0005_socialtoken_nullable_app.py first seen with mtime 1709531170.3376458 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\migrations\0001_initial.py first seen with mtime 1708272005.4132214 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0001_initial.py first seen with mtime 1709531170.335112 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0002_email_max_length.py first seen with mtime 1709531170.2326095 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\migrations\0002_alter_domain_unique.py first seen with mtime 1708272005.6066594 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0006_require_contenttypes_0002.py first seen with mtime 1708272004.1100948 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0005_alter_user_last_login_null.py first seen with mtime 1708272004.1100948 +File C:\Users\fhjj3\djangoProject1\users\migrations\__init__.py first seen with mtime 1708506684.0176537 +File C:\Users\fhjj3\djangoProject1\main\migrations\__init__.py first seen with mtime 1708321694.9908433 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\migrations\0001_initial.py first seen with mtime 1708272005.6061544 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\__init__.py first seen with mtime 1709531170.2346053 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0002_alter_permission_name_max_length.py first seen with mtime 1708272004.1070178 +File C:\Users\fhjj3\djangoProject1\orders\migrations\0002_alter_orderitem_price.py first seen with mtime 1708592726.7066953 +File C:\Users\fhjj3\djangoProject1\orders\migrations\__init__.py first seen with mtime 1708321695.0544572 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0007_alter_validators_add_error_messages.py first seen with mtime 1708272004.111096 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\0001_initial.py first seen with mtime 1708272003.5251837 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0001_initial.py first seen with mtime 1708272004.1070178 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0002_token_max_lengths.py first seen with mtime 1709531170.336132 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0006_alter_socialaccount_extra_data.py first seen with mtime 1709531170.3386524 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\migrations\__init__.py first seen with mtime 1708272004.279176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0005_emailaddress_idx_upper_email.py first seen with mtime 1709531170.2336047 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0004_alter_emailaddress_drop_unique_email.py first seen with mtime 1709531170.2336047 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0004_app_provider_id_settings.py first seen with mtime 1709531170.3376458 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0008_alter_user_username_max_length.py first seen with mtime 1708272004.1120937 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0012_alter_user_first_name_max_length.py first seen with mtime 1708272004.1151564 +File C:\Users\fhjj3\djangoProject1\main\migrations\0001_initial.py first seen with mtime 1708321694.9898424 +File C:\Users\fhjj3\djangoProject1\djangoProject1\wsgi.py first seen with mtime 1708321694.9784534 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:40.157105' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:40.157105', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET / HTTP/1.1" 200 13949 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:40.321619' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:40.321619', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:40.752351' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:40.752351', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET / HTTP/1.1" 200 13949 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:40.920089' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:40.920089', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\context_processors.py first seen with mtime 1708272003.9033809 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\fallback.py first seen with mtime 1708272004.851081 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\locale\en\__init__.py first seen with mtime 1708272002.9087086 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\session.py first seen with mtime 1708272004.8520772 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\storage.py first seen with mtime 1708272005.611222 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\serializers.py first seen with mtime 1708272005.1794763 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\context_processors.py first seen with mtime 1708272005.9213128 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\context_processors.py first seen with mtime 1708272004.8470173 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\cookie.py first seen with mtime 1708272004.851081 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\locale\en\formats.py first seen with mtime 1708272002.9087086 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:41.853051' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:41.853051', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /products/ HTTP/1.1" 200 13949 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:41.917717' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:41.917717', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:44.089636' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:44.089636', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" = 1 LIMIT 21; args=(1,); alias=default +(0.000) BEGIN; args=None; alias=default +(0.000) UPDATE "django_session" SET "session_data" = 'eyJjYXJ0Ijp7IjEiOnsicXVhbnRpdHkiOjIsInByaWNlIjoiODA5MCJ9fX0:1rmunI:V1ItTkNwHch6KXhTeqqSiS4-ipF53xG-ixBSsVe_GM4', "expire_date" = '2024-03-21 12:11:44.098544' WHERE "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3'; args=('eyJjYXJ0Ijp7IjEiOnsicXVhbnRpdHkiOjIsInByaWNlIjoiODA5MCJ9fX0:1rmunI:V1ItTkNwHch6KXhTeqqSiS4-ipF53xG-ixBSsVe_GM4', '2024-03-21 12:11:44.098544', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +(0.000) COMMIT; args=None; alias=default +"POST /cart/add/1/ HTTP/1.1" 302 0 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:44.116018' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:44.116018', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" IN (1) ORDER BY "main_product"."name" ASC; args=(1,); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" IN (1) ORDER BY "main_product"."name" ASC; args=(1,); alias=default +"GET /cart/ HTTP/1.1" 200 9132 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:44.265253' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:44.265253', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:45.015801' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:45.015801', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /orders/create/ HTTP/1.1" 302 0 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:46.955600' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:46.955600', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +(0.000) BEGIN; args=None; alias=default +(0.000) UPDATE "django_session" SET "session_data" = '.eJyNU8uO4jAQ_JWRz5g44DxPs3ua-x5Xo6jjtMGQxBnbYRYQ_77tCLRwW0WK4nJ3VVfZuTIFLrD6ytL4-pphDCacWb1ZsckZhaxmpagEu91WbPboGjNqG0vxz8TqtEhFlclC5CtmINwBKbYRgDnsm2AGfIUPwRBpJXWWtXnBC5l2XG7KgkOZZ7xsldSylZXOckak3lPxPoTJ10kSGdfDOaAz1q2Pl8Qh9INPPsANdjyzqNlRPShl5zHQ2s8trdO8UF0lU650KrjMOuBtTrKAQuoih20polg4kyX2E8Ghi1yXuIRuMCNXvYls6L2xY-MDhJhMpiCrikrwUqiUTBB5KbHlm7ZUCuW2AlCRSLk4RPzqe_uNHbfO7MxI1n4v3shauinWgp60LoUQyeRsN6vgE_a5YovLhkxhTOPKnO1x6bVa92bExxad0ABNDIn4LxBoVMI61DD3gS9dfH-P6vMWeb2dncIn6kdyzyoDjLBD_i_UV4DTCMcofjL4zWlwbXokfhLwyk4xJxzA9G-PLcJN9__pLc3Nic5cG6S-4GZcsRHivWI_jq0N8PaLDNJQ8Ywmhxqdw66J1_VeFtAHc6TdnTnh2Lw0E6phMP35AT-RLdoE6f3hsM0q8b6LwFrZgX6Iv5RhBxE:1rmunK:Zt7eEVL8-3sSh7exX8xA3gKN8BN7xWG9RnFh8EIFdBc', "expire_date" = '2024-03-21 12:11:46.962116' WHERE "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3'; args=('.eJyNU8uO4jAQ_JWRz5g44DxPs3ua-x5Xo6jjtMGQxBnbYRYQ_77tCLRwW0WK4nJ3VVfZuTIFLrD6ytL4-pphDCacWb1ZsckZhaxmpagEu91WbPboGjNqG0vxz8TqtEhFlclC5CtmINwBKbYRgDnsm2AGfIUPwRBpJXWWtXnBC5l2XG7KgkOZZ7xsldSylZXOckak3lPxPoTJ10kSGdfDOaAz1q2Pl8Qh9INPPsANdjyzqNlRPShl5zHQ2s8trdO8UF0lU650KrjMOuBtTrKAQuoih20polg4kyX2E8Ghi1yXuIRuMCNXvYls6L2xY-MDhJhMpiCrikrwUqiUTBB5KbHlm7ZUCuW2AlCRSLk4RPzqe_uNHbfO7MxI1n4v3shauinWgp60LoUQyeRsN6vgE_a5YovLhkxhTOPKnO1x6bVa92bExxad0ABNDIn4LxBoVMI61DD3gS9dfH-P6vMWeb2dncIn6kdyzyoDjLBD_i_UV4DTCMcofjL4zWlwbXokfhLwyk4xJxzA9G-PLcJN9__pLc3Nic5cG6S-4GZcsRHivWI_jq0N8PaLDNJQ8Ywmhxqdw66J1_VeFtAHc6TdnTnh2Lw0E6phMP35AT-RLdoE6f3hsM0q8b6LwFrZgX6Iv5RhBxE:1rmunK:Zt7eEVL8-3sSh7exX8xA3gKN8BN7xWG9RnFh8EIFdBc', '2024-03-21 12:11:46.962116', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +(0.000) COMMIT; args=None; alias=default +"GET /callback/?state=&session_state=5ca59790-80c1-4210-84eb-2b8cce439aac&code=ba4f83e3-85b5-4875-818e-8839ee57ae85.5ca59790-80c1-4210-84eb-2b8cce439aac.897c9a40-02c1-46b5-aecb-186cdb887f08 HTTP/1.1" 200 13949 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:47.205704' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:47.205704', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 25 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:47.677108' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:47.677108', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /products/ HTTP/1.1" 200 13949 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:47.737085' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:47.737085', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 25 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\shlex.py first seen with mtime 1694771054.1879306 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\netrc.py first seen with mtime 1694771054.1410599 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:49.575694' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:49.575694', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /profile/ HTTP/1.1" 200 7024 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:49.634544' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:49.634544', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 25 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:11:52.381597' AND "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3') LIMIT 21; args=('2024-03-20 12:11:52.381597', 'f967lf8argw14kurk65j0lhi4ceucan3'); alias=default +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE "django_session"."session_key" = 'f967lf8argw14kurk65j0lhi4ceucan3' LIMIT 21; args=('f967lf8argw14kurk65j0lhi4ceucan3',); alias=default +(0.000) DELETE FROM "django_session" WHERE "django_session"."session_key" IN ('f967lf8argw14kurk65j0lhi4ceucan3'); args=('f967lf8argw14kurk65j0lhi4ceucan3',); alias=default +"GET /admin_logout_user/ HTTP/1.1" 302 0 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +"GET /callback/ HTTP/1.1" 200 13949 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +Watching for file changes with StatReloader +Waiting for apps ready_event. +Apps ready_event triggered. Sending autoreload_started signal. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\main\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\orders\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\cart\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\openid_connect\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\main\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\cart\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\orders\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\users\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\mozilla_django_oidc\locale with glob **/*.mo. +(0.000) + SELECT name, type FROM sqlite_master + WHERE type in ('table', 'view') AND NOT name='sqlite_sequence' + ORDER BY name; args=None; alias=default +(0.000) SELECT "django_migrations"."id", "django_migrations"."app", "django_migrations"."name", "django_migrations"."applied" FROM "django_migrations"; args=(); alias=default +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\models.py first seen with mtime 1709531170.3321166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\retry.py first seen with mtime 1708274995.2821188 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\debug.py first seen with mtime 1708272005.9852686 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_parser.py first seen with mtime 1701795065.2326446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\models.py first seen with mtime 1708272005.4227803 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\__init__.py first seen with mtime 1708777045.4416673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\version.py first seen with mtime 1708274996.0157313 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\response.py first seen with mtime 1708272005.9111333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\extensions.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\djangoProject1\__init__.py first seen with mtime 1708321694.9744332 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\__init__.py first seen with mtime 1708272005.7701113 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\subprocess.py first seen with mtime 1707383316.687333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\schema.py first seen with mtime 1708272005.6985092 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\i18n.py first seen with mtime 1708272005.9379992 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\adapters\__init__.py first seen with mtime 1708499979.039306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\syntax_color.py first seen with mtime 1708568721.9421916 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\signal.py first seen with mtime 1707383306.5116594 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\argparse.py first seen with mtime 1707383301.753335 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\exceptions.py first seen with mtime 1708272005.7570324 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\types.py first seen with mtime 1694771061.034897 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\__init__.py first seen with mtime 1708272004.8500779 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\jisfreq.py first seen with mtime 1708274930.827044 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\ssh.py first seen with mtime 1708777045.4498503 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\datetime.py first seen with mtime 1696309058.3992383 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\__init__.py first seen with mtime 1708499979.0523086 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\__init__.py first seen with mtime 1708272005.6938355 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\__init__.py first seen with mtime 1708499979.0333035 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\apps.py first seen with mtime 1708272003.151022 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_compiler.py first seen with mtime 1701795065.2286446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\base_session.py first seen with mtime 1708272005.1753852 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\exceptions.py first seen with mtime 1708274995.6336176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\__init__.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\sql.py first seen with mtime 1708272002.369514 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_compression.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\jws.py first seen with mtime 1708499979.9975073 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\__init__.py first seen with mtime 1708272002.6950648 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\threading.py first seen with mtime 1707383316.7030134 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\cached.py first seen with mtime 1708272005.934484 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\utils.py first seen with mtime 1708274995.6385725 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\selector_events.py first seen with mtime 1707383301.7845829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\urls\__init__.py first seen with mtime 1708272003.1470168 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\jwk_set_cache.py first seen with mtime 1708274995.6356173 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\others.py first seen with mtime 1708272002.3745146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\base.py first seen with mtime 1708272005.934484 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\random.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\main\__init__.py first seen with mtime 1708321694.9861953 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\selectors.py first seen with mtime 1696309058.429445 +File C:\Users\fhjj3\djangoProject1\orders\views.py first seen with mtime 1710851529.9515321 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_events.py first seen with mtime 1707383301.768935 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\nturl2path.py first seen with mtime 1694771054.1410599 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\eucjpprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\openssl\__init__.py first seen with mtime 1708777045.4292822 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\defusedxml\common.py first seen with mtime 1709531169.463774 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\multipart.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langturkishmodel.py first seen with mtime 1708274930.8356998 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\cache.py first seen with mtime 1708272005.988496 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\keyword.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\cart\cart.py first seen with mtime 1709207902.0099711 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\checks.py first seen with mtime 1708272005.4207804 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\calendar.py first seen with mtime 1707383301.9413548 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\constant_time.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\permission.py first seen with mtime 1708499980.1485543 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\utils.py first seen with mtime 1709531170.220505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\templates.py first seen with mtime 1708272005.6370807 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\_distutils_hack\__init__.py first seen with mtime 1708271989.445068 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\query.py first seen with mtime 1708272005.7972238 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\keywords.py first seen with mtime 1708272002.3684514 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\charsetprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\__init__.py first seen with mtime 1708274995.6293552 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\base.py first seen with mtime 1708272005.7871947 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\datastructures.py first seen with mtime 1708272005.8162813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\__init__.py first seen with mtime 1708272005.983209 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\guess.py first seen with mtime 1708499979.0543084 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\aliases.py first seen with mtime 1694771047.8427224 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\__init__.py first seen with mtime 1708272005.652274 +File C:\Users\fhjj3\djangoProject1\orders\models.py first seen with mtime 1708592720.355561 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\jpcntx.py first seen with mtime 1708274930.8286877 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\shutil.py first seen with mtime 1707383306.5116594 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\base64.py first seen with mtime 1694771047.2212741 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\constants.py first seen with mtime 1708272005.7882037 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\cookiejar.py first seen with mtime 1694771050.6586244 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\fnmatch.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\md__mypyc.cp311-win_amd64.pyd first seen with mtime 1708274996.0137274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\loader.py first seen with mtime 1708272005.7610507 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\backends\base.py first seen with mtime 1708499980.0005682 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\translation\trans_real.py first seen with mtime 1708272005.9822087 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\streaming_iterator.py first seen with mtime 1708499979.0373075 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\threads.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\utils.py first seen with mtime 1708272005.6573324 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\cache.py first seen with mtime 1708272005.954375 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\engine.py first seen with mtime 1708272005.923311 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\keycloak_uma.py first seen with mtime 1708499980.1536732 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\util.py first seen with mtime 1694771061.082249 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\unicodedata.pyd first seen with mtime 1707383301.623886 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\right_margin.py first seen with mtime 1708272002.3755589 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\deconstruct.py first seen with mtime 1708272005.9603825 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\__init__.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\proxy.py first seen with mtime 1708274995.2801187 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\apps.py first seen with mtime 1708272005.1753852 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\bisect.py first seen with mtime 1694771047.2212741 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\tokenize.py first seen with mtime 1694771061.0191505 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zipfile.py first seen with mtime 1707383316.8131373 +File C:\Users\fhjj3\djangoProject1\main\urls.py first seen with mtime 1710915271.1148024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\keywrap.py first seen with mtime 1708777045.4391272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\json.py first seen with mtime 1708272005.8042297 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\streams.py first seen with mtime 1707383301.8002088 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\exceptions.py first seen with mtime 1708272002.367446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\asgi.py first seen with mtime 1708272005.6532726 +File C:\Users\fhjj3\djangoProject1\users\__init__.py first seen with mtime 1708506684.0176537 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\__init__.py first seen with mtime 1708272003.662427 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\apps.py first seen with mtime 1708272005.6084337 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\color.py first seen with mtime 1708272005.6644604 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\etree\ElementTree.py first seen with mtime 1707383316.7818136 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py first seen with mtime 1708272005.9192493 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\dates.py first seen with mtime 1708272005.9603825 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\utils.py first seen with mtime 1708272005.6908345 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\utils.py first seen with mtime 1708272005.6132233 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\pyexpat.pyd first seen with mtime 1707383301.5328918 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\dispatch\__init__.py first seen with mtime 1708272005.8197153 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\migration.py first seen with mtime 1708272005.7620504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\codingstatemachine.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\registry.py first seen with mtime 1708272005.6365767 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\timeouts.py first seen with mtime 1701795055.2199955 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\base.py first seen with mtime 1708272005.627398 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\database.py first seen with mtime 1708272005.6335773 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\stringprep.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\mixins.py first seen with mtime 1708272005.8122475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\structures.py first seen with mtime 1708274996.4963977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\servers\basehttp.py first seen with mtime 1708272005.6888342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\admin\widgets.py first seen with mtime 1708568721.8475149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\models.py first seen with mtime 1708568721.8394227 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\token.py first seen with mtime 1694771061.0191505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\http.py first seen with mtime 1708272005.9685533 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\__init__.py first seen with mtime 1708272005.8092456 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\iterators.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\backends\cryptography_backend.py first seen with mtime 1708499980.0015688 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\__init__.py first seen with mtime 1694771061.082249 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_collections.py first seen with mtime 1694771051.6589673 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zoneinfo\__init__.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\temp.py first seen with mtime 1708272005.646708 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\lock.py first seen with mtime 1708777045.1553824 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\abc.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\jwks_client.py first seen with mtime 1708274995.6366165 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\inspect.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\admin_modify.py first seen with mtime 1708272003.6644244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\aead.py first seen with mtime 1708777045.4488218 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\reduction.py first seen with mtime 1694771054.1098123 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\response.py first seen with mtime 1708274995.2730968 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\output.py first seen with mtime 1708272002.3745146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\management\commands\runserver.py first seen with mtime 1708272005.6172554 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\_os.py first seen with mtime 1708272005.951311 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\transports.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\urls.py first seen with mtime 1709531170.2195077 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\operations.py first seen with mtime 1708272005.6973505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\graph.py first seen with mtime 1708272005.75905 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\csv.py first seen with mtime 1694771047.2529056 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\nonmultipart.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\defaultfilters.py first seen with mtime 1708272005.9213128 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\base.py first seen with mtime 1708272005.6502733 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\abc.py first seen with mtime 1694771051.6589673 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\gettext.py first seen with mtime 1701795055.3006198 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\wsgi.py first seen with mtime 1708272005.6553187 +File C:\Users\fhjj3\djangoProject1\users\urls.py first seen with mtime 1710755748.2748985 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\lexer.py first seen with mtime 1708272002.3685987 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\admin.py first seen with mtime 1708272005.4197824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\autoreload.py first seen with mtime 1708272005.9533725 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_meta.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\commands\__init__.py first seen with mtime 1708272005.66697 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\core.py first seen with mtime 1708274995.8301811 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\simple_server.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\special.py first seen with mtime 1708272005.77612 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_version.py first seen with mtime 1708274995.2665815 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euckrfreq.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\__init__.py first seen with mtime 1708272005.6826892 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\filters.py first seen with mtime 1708272003.154024 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\mimetypes.py first seen with mtime 1694771054.0941894 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_base_connection.py first seen with mtime 1708274995.26246 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\__future__.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\cookie.py first seen with mtime 1708272005.909127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\models.py first seen with mtime 1708274996.4943979 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\locale.py first seen with mtime 1701795056.0664911 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\__init__.py first seen with mtime 1694771047.8770776 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\translation\reloader.py first seen with mtime 1708272005.9802067 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\idna.py first seen with mtime 1694771047.8614492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\charsetgroupprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\apps.py first seen with mtime 1709531170.2235053 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\exceptions.py first seen with mtime 1708272005.9483032 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\sessions.py first seen with mtime 1708274996.4953983 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\messages.py first seen with mtime 1708272005.6345823 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\utils\user_agent.py first seen with mtime 1708499979.0783052 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\__init__.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\utils.py first seen with mtime 1709531170.2296054 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\utils.py first seen with mtime 1708272005.9503145 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\heapq.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\csrf.py first seen with mtime 1708272005.9895475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\ExifTags.py first seen with mtime 1708273276.495905 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\__init__.py first seen with mtime 1708272005.631513 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\decorators.py first seen with mtime 1708272003.9043806 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\__init__.py first seen with mtime 1694771050.6586244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\admin\__init__.py first seen with mtime 1708568721.8475149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\exceptions.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\features.py first seen with mtime 1708272005.750004 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\base.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langthaimodel.py first seen with mtime 1708274930.834695 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\dataclasses.py first seen with mtime 1694771047.2685764 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\static.py first seen with mtime 1708272005.9862702 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\exceptions.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\algorithms.py first seen with mtime 1708274995.6306217 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\connection.py first seen with mtime 1708274995.2801187 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_socket.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\app_settings.py first seen with mtime 1709531170.2159934 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\validators.py first seen with mtime 1708272005.623829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\compatibility\django_4_0.py first seen with mtime 1708272005.6391394 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\__init__.py first seen with mtime 1708272003.1490226 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\enum.py first seen with mtime 1701795055.2996204 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\admin_urls.py first seen with mtime 1708272003.665425 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\server.py first seen with mtime 1694771050.6586244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\text.py first seen with mtime 1708272005.9751296 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\warnings.py first seen with mtime 1708274995.6388566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\__init__.py first seen with mtime 1708272005.6634598 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\__init__.py first seen with mtime 1694771051.6902146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\__init__.py first seen with mtime 1708272005.9450529 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\reindent.py first seen with mtime 1708272002.3745146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\apps.py first seen with mtime 1709531170.3291059 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\detail.py first seen with mtime 1708272005.9956405 +File C:\Users\fhjj3\djangoProject1\cart\views.py first seen with mtime 1708321694.9729092 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\runners.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\package_data.py first seen with mtime 1708274995.8331878 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\apps.py first seen with mtime 1708272005.4207804 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\dispatch\dispatcher.py first seen with mtime 1708272005.8207145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\transaction.py first seen with mtime 1708272005.689836 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\related.py first seen with mtime 1708272005.8052292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_imaging.cp311-win_amd64.pyd first seen with mtime 1708273276.565876 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\mixins.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\__init__.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\generated.py first seen with mtime 1708272005.803233 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\hooks.py first seen with mtime 1708274996.4934087 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\termcolors.py first seen with mtime 1708272005.9741254 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\__init__.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\orders\admin.py first seen with mtime 1708321695.0527942 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\ipv6.py first seen with mtime 1708272005.970064 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\utils.py first seen with mtime 1708274996.0157313 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\__init__.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\_virtualenv.py first seen with mtime 1708271985.168512 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\__init__.py first seen with mtime 1708777045.3788285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\debug.py first seen with mtime 1708272005.9905515 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\lzma.py first seen with mtime 1694771054.0941894 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\multipart\decoder.py first seen with mtime 1708499979.065306 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\format_helpers.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\images.py first seen with mtime 1708272005.6442056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\related_descriptors.py first seen with mtime 1708272005.8067338 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\logging\config.py first seen with mtime 1701795056.0674913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\base\mixins.py first seen with mtime 1709531170.3655293 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\fileaware_mapping.py first seen with mtime 1708275928.9413319 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\environ.py first seen with mtime 1708275928.9403257 +File C:\Users\fhjj3\djangoProject1\cart\models.py first seen with mtime 1708321694.970901 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\views\autocomplete.py first seen with mtime 1708272003.6674843 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\models.py first seen with mtime 1708272005.824716 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_request_methods.py first seen with mtime 1708274995.2650778 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\base\__init__.py first seen with mtime 1709531170.3645303 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\apps.py first seen with mtime 1708272004.1187294 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\encoding.py first seen with mtime 1708272005.963439 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\utils.py first seen with mtime 1708272005.6248312 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\__version__.py first seen with mtime 1708274996.4873824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\openid_connect\urls.py first seen with mtime 1709531170.5401423 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\idnadata.py first seen with mtime 1708274995.8311884 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\backends.py first seen with mtime 1708272003.9013317 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\async_checks.py first seen with mtime 1708272005.631513 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\weakref.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\__init__.py first seen with mtime 1708274996.0077226 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\checks.py first seen with mtime 1708272003.902382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\__init__.py first seen with mtime 1708272005.7454593 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\defaults.py first seen with mtime 1708272005.9852686 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\sslproto.py first seen with mtime 1707383301.8002088 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\name.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\_serialization.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\md.cp311-win_amd64.pyd first seen with mtime 1708274996.0117288 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\base\provider.py first seen with mtime 1709531170.3655293 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\asyncio.py first seen with mtime 1708272005.9523706 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\urls.py first seen with mtime 1709531170.2286072 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_ctypes.pyd first seen with mtime 1707383301.6278477 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\current_thread_executor.py first seen with mtime 1708272002.6966326 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\openssl\binding.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\converters.py first seen with mtime 1708272005.947127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\utils\__init__.py first seen with mtime 1708499979.071306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\__init__.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\manager.py first seen with mtime 1708272005.7952182 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\message.py first seen with mtime 1707383301.9727523 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\poolmanager.py first seen with mtime 1708274995.272096 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_asyncio.pyd first seen with mtime 1707383301.6278477 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\__init__.py first seen with mtime 1708272004.1174705 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\typing.py first seen with mtime 1707383316.7504952 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\gzip.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\templatetags\socialaccount.py first seen with mtime 1709531170.6617908 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ctypes\__init__.py first seen with mtime 1694771047.2529056 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\thread.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\__init__.py first seen with mtime 1708272005.9935522 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\duration.py first seen with mtime 1708272005.963439 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\message.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\response.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\orders\forms.py first seen with mtime 1708321695.0544572 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\__init__.py first seen with mtime 1708272005.6401398 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_compat_pickle.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\choices.py first seen with mtime 1708272005.9553733 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\decoder.py first seen with mtime 1694771051.705838 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\sqlite3\dbapi2.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\orders\apps.py first seen with mtime 1708321695.054364 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\johabprober.py first seen with mtime 1708274930.8285773 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\indexes.py first seen with mtime 1708272005.7922037 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\dateformat.py first seen with mtime 1708272005.9583776 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\openid_connection.py first seen with mtime 1708499980.1536732 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\shortcuts.py first seen with mtime 1708272002.829219 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\base.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\dh.py first seen with mtime 1708777045.4418166 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\generator.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\exceptions.py first seen with mtime 1708272003.1530218 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\text.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\encoder.py first seen with mtime 1694771051.705838 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pkgutil.py first seen with mtime 1694771054.1566823 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_uuid.pyd first seen with mtime 1707383301.6963732 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\options.py first seen with mtime 1708272003.1571245 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\urls.py first seen with mtime 1709531170.333113 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\state.py first seen with mtime 1708272005.7671013 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\log.py first seen with mtime 1708272003.666479 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\compat.py first seen with mtime 1708275928.9398072 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\utils.py first seen with mtime 1708272003.1601522 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\global_settings.py first seen with mtime 1708272002.8332798 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\textwrap.py first seen with mtime 1694771060.9877644 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\platform.py first seen with mtime 1694771054.1566823 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\adapters\ssl.py first seen with mtime 1708499979.050304 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_encoded_words.py first seen with mtime 1694771047.8149602 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_decimal.pyd first seen with mtime 1707383301.643485 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\constants.py first seen with mtime 1707383301.768935 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\__init__.py first seen with mtime 1709531170.3396528 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\tokens.py first seen with mtime 1708272002.369514 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\sjisprober.py first seen with mtime 1708274930.8404393 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\bz2.py first seen with mtime 1694771047.2212741 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\__init__.py first seen with mtime 1708499980.1475525 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\paginator.py first seen with mtime 1708272005.6218283 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\mbcharsetprober.py first seen with mtime 1708274930.836918 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\sbcsgroupprober.py first seen with mtime 1708274930.8394392 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\base.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\legacy.py first seen with mtime 1708274996.0107274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\management\__init__.py first seen with mtime 1708272004.276103 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\move.py first seen with mtime 1708272005.6452036 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\fractions.py first seen with mtime 1707383304.114561 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\tokens.py first seen with mtime 1708272003.9117756 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\signals.py first seen with mtime 1708272005.6218283 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\base\constants.py first seen with mtime 1709531170.3645303 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\app_settings.py first seen with mtime 1709531170.2225068 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\encoders.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\__init__.py first seen with mtime 1708272003.1500225 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\statistics.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\lookups.py first seen with mtime 1708272005.7942028 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_common.py first seen with mtime 1694771051.6745913 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\logging\__init__.py first seen with mtime 1694771051.7995784 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\tempfile.py first seen with mtime 1707383316.7030134 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\models.py first seen with mtime 1708272005.7731116 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\certs.py first seen with mtime 1708274996.4903975 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\local.py first seen with mtime 1708272002.697138 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\struct.py first seen with mtime 1694771060.9877644 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\process.py first seen with mtime 1694771054.1098123 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\hashers.py first seen with mtime 1708272003.9053814 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\taskgroups.py first seen with mtime 1701795055.2188418 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\internal\__init__.py first seen with mtime 1709531170.2458272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euctwfreq.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\apps.py first seen with mtime 1708568721.8394227 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\staggered.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\wsgi.py first seen with mtime 1708272005.623829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\certifi\core.py first seen with mtime 1708274996.1923244 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_elementtree.pyd first seen with mtime 1707383301.6540148 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\shortcuts.py first seen with mtime 1708272005.4247823 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\base.py first seen with mtime 1708272005.7711098 +File C:\Users\fhjj3\djangoProject1\main\views.py first seen with mtime 1710936763.0439477 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\__init__.py first seen with mtime 1694771054.1098123 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\__init__.py first seen with mtime 1709531170.214993 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\openssl\_conditional.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\datastructures.py first seen with mtime 1708272005.9572842 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\multipartparser.py first seen with mtime 1708272005.9101334 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\graphlib.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\version.py first seen with mtime 1708272005.9783292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\__init__.py first seen with mtime 1708274995.2614622 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\oid.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\base.py first seen with mtime 1708272004.8500779 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\debugger_tags.py first seen with mtime 1708568721.9421916 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\socket.py first seen with mtime 1707383316.687333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\admin.py first seen with mtime 1708272003.9003315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\files.py first seen with mtime 1708272005.802248 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\mbcsgroupprober.py first seen with mtime 1708274930.837428 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\managers.py first seen with mtime 1709531170.225505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\__init__.py first seen with mtime 1708272005.9121313 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\base.py first seen with mtime 1708272005.6948347 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\api.py first seen with mtime 1708274996.4893982 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\exceptions.py first seen with mtime 1708272005.1768935 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\filter_stack.py first seen with mtime 1708272002.3715158 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\connectionpool.py first seen with mtime 1708274995.2680905 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\api.py first seen with mtime 1708272004.8455117 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\app_settings.py first seen with mtime 1709531170.328099 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\traceback.py first seen with mtime 1707383316.7504952 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_binary.py first seen with mtime 1708273276.5534997 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\__init__.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\filebased.py first seen with mtime 1708272005.6285076 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\compatibility\__init__.py first seen with mtime 1708272005.6381364 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\functional.py first seen with mtime 1708272005.9654408 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\json.py first seen with mtime 1708272005.6848128 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\__init__.py first seen with mtime 1708272005.9369888 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_adapters.py first seen with mtime 1694771051.6589673 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pprint.py first seen with mtime 1707383306.4759216 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\management.py first seen with mtime 1708272005.4217865 +File C:\Users\fhjj3\djangoProject1\main\models.py first seen with mtime 1708592607.195247 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\operations.py first seen with mtime 1708272005.7520046 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\status_codes.py first seen with mtime 1708274996.4963977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euctwprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\_cipheralgorithm.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\decorators.py first seen with mtime 1708272003.1520252 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\security.py first seen with mtime 1708272005.916202 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\conf.py first seen with mtime 1708272005.947127 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_hashlib.pyd first seen with mtime 1707383301.6547873 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\exceptions.py first seen with mtime 1709531170.2448273 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\ed25519.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\__init__.py first seen with mtime 1708272005.6563208 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\headerregistry.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\fields.py first seen with mtime 1708272004.1204357 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\secrets.py first seen with mtime 1694771054.1879306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\tokens.py first seen with mtime 1708272002.376558 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\rsa.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\TiffTags.py first seen with mtime 1708273276.5459802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\sbcharsetprober.py first seen with mtime 1708274930.8394392 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\highlighting.py first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templatetags\allauth.py first seen with mtime 1709531170.7335496 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\client.py first seen with mtime 1708272005.7480016 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\mixins.py first seen with mtime 1708272005.652274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\error.py first seen with mtime 1708777045.149196 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\response.py first seen with mtime 1708272005.9274178 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\contrib\__init__.py first seen with mtime 1708274995.274096 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\cp1251.py first seen with mtime 1694771047.8464406 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pathlib.py first seen with mtime 1694771054.1566823 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\__init__.py first seen with mtime 1708272005.6492734 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\__init__.py first seen with mtime 1708272005.174387 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\defaulttags.py first seen with mtime 1708272005.9223137 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\decorators.py first seen with mtime 1709531170.2159934 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\locks.py first seen with mtime 1708272005.6452036 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\html\entities.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\apps.py first seen with mtime 1708272004.8455117 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\utils.py first seen with mtime 1707383301.98824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\management\__init__.py first seen with mtime 1708272004.1043391 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\sysconfig.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\__init__.py first seen with mtime 1708272005.6888342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\utils.py first seen with mtime 1708274996.4974117 +File C:\Users\fhjj3\djangoProject1\cart\admin.py first seen with mtime 1708321694.9689012 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\__init__.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\__init__.py first seen with mtime 1708272005.6071646 +File C:\Users\fhjj3\djangoProject1\users\views.py first seen with mtime 1710755639.7363725 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\utils.py first seen with mtime 1708272004.8490758 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\tasks.py first seen with mtime 1696309035.177473 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\renderers.py first seen with mtime 1708272005.8272424 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\utils.py first seen with mtime 1708499979.9995673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\adapters\source.py first seen with mtime 1708499979.0463047 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\utf_8.py first seen with mtime 1694771047.8770776 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\__init__.py first seen with mtime 1709531170.2438269 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ctypes\_endian.py first seen with mtime 1707383301.9413548 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\formatter.py first seen with mtime 1708272002.367446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\base.py first seen with mtime 1708272005.6532726 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\widont.py first seen with mtime 1708568721.9485924 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_version.py first seen with mtime 1708273276.5861533 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langbulgarianmodel.py first seen with mtime 1708274930.8297043 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\modes.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\ssl_match_hostname.py first seen with mtime 1708274995.283127 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_constants.py first seen with mtime 1694771054.1879306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\expressions.py first seen with mtime 1708272005.7922037 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\request.py first seen with mtime 1708274995.2811196 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\filesystem.py first seen with mtime 1708272005.9355414 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\forms.py first seen with mtime 1708272003.9043806 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\ed448.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\cache.py first seen with mtime 1708272005.913129 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\formats.py first seen with mtime 1708272005.9644475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\uploadedfile.py first seen with mtime 1708272005.6472125 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\futures.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\management\__init__.py first seen with mtime 1708272005.6132233 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\client.py first seen with mtime 1708272005.6948347 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\__init__.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\grouping.py first seen with mtime 1708272002.3715158 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_futures.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\finders.py first seen with mtime 1708272005.6091714 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\widgets.py first seen with mtime 1708272005.8288138 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\common.py first seen with mtime 1708272005.913129 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\__init__.py first seen with mtime 1708272004.8445117 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\__init__.py first seen with mtime 1708499979.994482 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\big5freq.py first seen with mtime 1708274930.8115854 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\packages.py first seen with mtime 1708274996.4953983 +File C:\Users\fhjj3\djangoProject1\users\models.py first seen with mtime 1708506683.991898 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\__init__.py first seen with mtime 1694771061.2998595 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\log.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\middleware.py first seen with mtime 1708272005.1774724 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\__init__.py first seen with mtime 1708272002.3705149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\views.py first seen with mtime 1708272005.6132233 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\escprober.py first seen with mtime 1708274930.8177454 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\scanner.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\exception.py first seen with mtime 1708272005.6543176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\base.py first seen with mtime 1708272003.665425 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\feedparser.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\checks.py first seen with mtime 1708272003.1520252 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\numbers.py first seen with mtime 1694771054.1410599 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\smartif.py first seen with mtime 1708272005.9274178 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\packaging\_structures.py first seen with mtime 1708499977.8906622 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\escsm.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\python.py first seen with mtime 1708272005.686318 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\admin_list.py first seen with mtime 1708272003.6634247 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\context.py first seen with mtime 1694771054.1098123 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\select.pyd first seen with mtime 1707383301.548544 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\tz.py first seen with mtime 1708272005.9399948 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\window.py first seen with mtime 1708272005.8132446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\http.py first seen with mtime 1708272005.9156952 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\fields.py first seen with mtime 1708274995.2690988 +File C:\Users\fhjj3\djangoProject1\cart\forms.py first seen with mtime 1708321694.969901 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\request.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\forms.py first seen with mtime 1708272005.8237164 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\backends\__init__.py first seen with mtime 1708272005.9287443 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\app_directories.py first seen with mtime 1708272005.9334843 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\openid_connect\__init__.py first seen with mtime 1709531170.5381372 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_adapters.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\api_jwt.py first seen with mtime 1708274995.6326191 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\warnings.py first seen with mtime 1707383316.7788024 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\quopri.py first seen with mtime 1694771054.1723063 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\parsers\__init__.py first seen with mtime 1694771061.284227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\reauthentication.py first seen with mtime 1709531170.2275083 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\proactor_events.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\_rust.pyd first seen with mtime 1708777045.4169433 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\middleware.py first seen with mtime 1708272004.8480244 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pickle.py first seen with mtime 1707383306.4759216 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\events.py first seen with mtime 1707383301.7845829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\executor.py first seen with mtime 1708272005.758418 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\mixins.py first seen with mtime 1708272005.8042297 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\models.py first seen with mtime 1708272003.9086945 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\parser.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\operator.py first seen with mtime 1694771054.1410599 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\_compat.py first seen with mtime 1708499979.0343025 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\utils.py first seen with mtime 1708272005.648272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\backends\__init__.py first seen with mtime 1708272005.1794763 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\cookies.py first seen with mtime 1694771050.6586244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\__init__.py first seen with mtime 1708272005.801238 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\contextvars.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\__init__.py first seen with mtime 1709531170.2215056 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ast.py first seen with mtime 1696309035.174228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\__init__.py first seen with mtime 1708274930.8115854 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\openid_connect\provider.py first seen with mtime 1709531170.539137 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\dateparse.py first seen with mtime 1708272005.9593828 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\decimal.py first seen with mtime 1694771047.2685764 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\apps\config.py first seen with mtime 1708272002.8312175 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loader_tags.py first seen with mtime 1708272005.9263134 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\ddl_references.py first seen with mtime 1708272005.6918366 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_sqlite3.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\deprecation.py first seen with mtime 1708499979.9741237 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\requests.py first seen with mtime 1708272005.42378 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\resultdict.py first seen with mtime 1708274930.8384342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\defusedxml\ElementTree.py first seen with mtime 1709531169.4560318 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\exceptions.py first seen with mtime 1708272005.6207657 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zoneinfo\_tzpath.py first seen with mtime 1694771061.2998595 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\__init__.py first seen with mtime 1708272005.9082203 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\__init__.py first seen with mtime 1708272005.6431394 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\aligned_indent.py first seen with mtime 1708272002.373515 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\openid_connect\views.py first seen with mtime 1709531170.5401423 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\actions.py first seen with mtime 1708272003.1500225 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\linecache.py first seen with mtime 1694771051.7995784 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\error.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\cd.py first seen with mtime 1708274996.0097282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\static.py first seen with mtime 1708272005.9389977 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_header_value_parser.py first seen with mtime 1707383302.0039115 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\apps\registry.py first seen with mtime 1708272002.8312175 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\base_user.py first seen with mtime 1708272003.902382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\deprecation.py first seen with mtime 1708272005.9623787 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\keycloak_openid.py first seen with mtime 1708499980.152622 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\base.py first seen with mtime 1708272005.6836898 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_subprocess.py first seen with mtime 1694771047.1738276 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_tasks.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\hmac.py first seen with mtime 1708777045.4391272 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\parsers\expat.py first seen with mtime 1694771061.284227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\comparison.py first seen with mtime 1708272005.8092456 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\views.py first seen with mtime 1709531170.2296054 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\context.py first seen with mtime 1709531170.2448273 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\response.py first seen with mtime 1708274995.2811196 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\__init__.py first seen with mtime 1708272002.8322785 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\checks.py first seen with mtime 1708272005.6091714 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\jwt.py first seen with mtime 1708499979.998511 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\__init__.py first seen with mtime 1709531170.326594 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\uploadhandler.py first seen with mtime 1708272005.648272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templatetags\__init__.py first seen with mtime 1709531170.7335496 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\gb2312freq.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\__init__.py first seen with mtime 1708272005.4187796 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\utf8prober.py first seen with mtime 1708274930.8414392 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\decorators.py first seen with mtime 1709531170.2245045 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\math.py first seen with mtime 1708272005.811243 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_functools.py first seen with mtime 1694771051.6589673 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\parse.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\__init__.py first seen with mtime 1708272005.6197722 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\csrf.py first seen with mtime 1708272005.9842646 +File C:\Users\fhjj3\djangoProject1\main\admin.py first seen with mtime 1708321694.9888315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\filesystem.py first seen with mtime 1708272005.6502733 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\l10n.py first seen with mtime 1708272005.9379992 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\Image.py first seen with mtime 1708273276.507439 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_legacy.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\timezone.py first seen with mtime 1708272005.9771414 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\errors.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\_internal_utils.py first seen with mtime 1708274996.4873824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\urls_patterns.py first seen with mtime 1708499980.1557024 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\coroutines.py first seen with mtime 1694771047.1738276 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zoneinfo\_common.py first seen with mtime 1694771061.2998595 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\_version.py first seen with mtime 1708499980.1465697 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\mozilla_django_oidc\__init__.py first seen with mtime 1709805831.8654432 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\constraints.py first seen with mtime 1708272005.7892036 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_util.py first seen with mtime 1708273276.5861533 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\__init__.py first seen with mtime 1708272005.6248312 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\__init__.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\url.py first seen with mtime 1708274995.2866259 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\trsock.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\base.py first seen with mtime 1708272005.6634598 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\signals.py first seen with mtime 1709531170.2275083 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\uuid.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\x448.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\base.py first seen with mtime 1708272005.9466176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\views.py first seen with mtime 1709531170.333113 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\utils.py first seen with mtime 1708272005.7992294 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\__init__.py first seen with mtime 1708272005.9324858 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\i18n.py first seen with mtime 1708272005.9862702 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\intranges.py first seen with mtime 1708274995.8321874 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_text.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\boundfield.py first seen with mtime 1708272005.8227143 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\hashable.py first seen with mtime 1708272005.9664416 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\padding.py first seen with mtime 1708777045.4418166 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_markupbase.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\management\commands\__init__.py first seen with mtime 1708272005.6147292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\http_proxy_digest.py first seen with mtime 1708499979.058306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\sync.py first seen with mtime 1708272002.7001462 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\macromanprober.py first seen with mtime 1708274930.836918 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_ssl.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\orders\utils.py first seen with mtime 1709202781.4677205 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\text.py first seen with mtime 1708272005.8132446 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\glob.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\readers.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\__init__.py first seen with mtime 1708272005.987488 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\aead.py first seen with mtime 1708777045.3788285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\apps\__init__.py first seen with mtime 1708272002.8302183 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\helpers.py first seen with mtime 1708272003.1550274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\__init__.py first seen with mtime 1708272005.780171 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\getpass.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\servers\__init__.py first seen with mtime 1708272005.6878285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\chardistribution.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\views.py first seen with mtime 1708272004.1244812 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\locale\__init__.py first seen with mtime 1708272002.8386085 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\lorem_ipsum.py first seen with mtime 1708272005.972063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\verification.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\models.py first seen with mtime 1708274996.0137274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\exceptions.py first seen with mtime 1708272005.924315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\itercompat.py first seen with mtime 1708272005.970064 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\hashlib.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\packaging\version.py first seen with mtime 1708499977.9042609 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\signals.py first seen with mtime 1709531170.333113 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\pkcs12.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\users\admin.py first seen with mtime 1708506683.991898 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\client.py first seen with mtime 1707383304.1459494 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\commands\runserver.py first seen with mtime 1708272005.67612 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\tree.py first seen with mtime 1708272005.9771414 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\html\__init__.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\backends\__init__.py first seen with mtime 1708499979.9995673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\utils.py first seen with mtime 1708272005.9284248 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\__init__.py first seen with mtime 1708272005.8132446 +File C:\Users\fhjj3\djangoProject1\orders\__init__.py first seen with mtime 1708321695.0507934 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\exceptions.py first seen with mtime 1708274995.2680905 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\model.py first seen with mtime 1708777045.1553824 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\hmac.py first seen with mtime 1707383304.1301887 +File C:\Users\fhjj3\djangoProject1\main\apps.py first seen with mtime 1708321694.9898424 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\module_loading.py first seen with mtime 1708272005.972063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\base.py first seen with mtime 1708272005.7469933 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\readers.py first seen with mtime 1694771051.6745913 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_policybase.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\related_lookups.py first seen with mtime 1708272005.807238 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\fields.py first seen with mtime 1708272005.8227143 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\numberformat.py first seen with mtime 1708272005.973064 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langhebrewmodel.py first seen with mtime 1708274930.8317003 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\utils.py first seen with mtime 1708272005.768108 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\html.py first seen with mtime 1708272005.967452 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\__init__.py first seen with mtime 1708273276.548494 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ipaddress.py first seen with mtime 1701795056.0654914 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\timesince.py first seen with mtime 1708272005.9761298 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\models.py first seen with mtime 1708272004.1224792 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\api.py first seen with mtime 1708777045.149196 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\types.py first seen with mtime 1708274995.6375577 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\__init__.py first seen with mtime 1708272005.9503145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\__init__.py first seen with mtime 1708272005.9172108 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\gb2312prober.py first seen with mtime 1708274930.8177454 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ssl.py first seen with mtime 1707383316.687333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\templatetags\account.py first seen with mtime 1709531170.2356057 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\queues.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\password_validation.py first seen with mtime 1708272003.9097013 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\socketserver.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\where.py first seen with mtime 1708272005.8197153 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\library.py first seen with mtime 1708272005.925385 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_zoneinfo.pyd first seen with mtime 1707383301.722057 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\sessions.py first seen with mtime 1708272005.642139 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\base.py first seen with mtime 1708272005.9946315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\oauth2\utils.py first seen with mtime 1709531170.5276158 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\__init__.py first seen with mtime 1708272005.6263409 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\_cffi_backend.cp311-win_amd64.pyd first seen with mtime 1708777045.1399848 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\query_utils.py first seen with mtime 1708272005.7982292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\__init__.py first seen with mtime 1708272005.7550004 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\base.py first seen with mtime 1708272005.6401398 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\sites.py first seen with mtime 1708272003.1582563 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langgreekmodel.py first seen with mtime 1708274930.8307028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\caches.py first seen with mtime 1708272005.6325755 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\_digest_auth_compat.py first seen with mtime 1708499979.0533097 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_itertools.py first seen with mtime 1694771051.6589673 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\__init__.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\mbcssm.py first seen with mtime 1708274930.8384342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\dates.py first seen with mtime 1708272005.9946315 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\base64mime.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\html\parser.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\common.py first seen with mtime 1708272005.9895475 +File C:\Users\fhjj3\djangoProject1\djangoProject1\urls.py first seen with mtime 1710320085.1270273 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\__init__.py first seen with mtime 1708568721.8394227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\_functions.py first seen with mtime 1708272005.7464592 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_parseaddr.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\signals.py first seen with mtime 1708272005.7982292 +File C:\Users\fhjj3\djangoProject1\orders\urls.py first seen with mtime 1708321695.0626125 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\charset.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euckrprober.py first seen with mtime 1708274930.8177454 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_bz2.pyd first seen with mtime 1707383301.6278477 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\oauth2\__init__.py first seen with mtime 1709531170.5261085 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loader.py first seen with mtime 1708272005.9263134 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\utils.py first seen with mtime 1708272005.692837 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\connection.py first seen with mtime 1708272005.9553733 +File C:\Users\fhjj3\djangoProject1\users\apps.py first seen with mtime 1708506683.991898 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\ec.py first seen with mtime 1708777045.4418166 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\reprlib.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\files.py first seen with mtime 1708272005.6335773 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\decorators.py first seen with mtime 1708272005.9613807 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\auth.py first seen with mtime 1708274996.4903975 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_collections.py first seen with mtime 1708274995.2650778 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\collections\abc.py first seen with mtime 1694771047.2371235 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\copyreg.py first seen with mtime 1694771047.2529056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\models.py first seen with mtime 1708272003.1550274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\checks.py first seen with mtime 1708272004.1204357 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\query.py first seen with mtime 1708272005.8172884 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\deletion.py first seen with mtime 1708272005.7902057 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\cp949prober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\ImageMode.py first seen with mtime 1708273276.516985 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\views\__init__.py first seen with mtime 1708272003.666479 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\exceptions.py first seen with mtime 1708274996.4923987 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\timeout.py first seen with mtime 1708274995.28512 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\difflib.py first seen with mtime 1694771047.2685764 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\exceptions.py first seen with mtime 1708499979.99551 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\oauth2\provider.py first seen with mtime 1709531170.5261085 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\connection.py first seen with mtime 1708274995.2665815 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\validators.py first seen with mtime 1708272003.9127786 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\translation\__init__.py first seen with mtime 1708272005.979205 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\http.py first seen with mtime 1708272005.9925535 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\_abc.py first seen with mtime 1694771051.6902146 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ctypes\wintypes.py first seen with mtime 1694771047.2529056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\__init__.py first seen with mtime 1708777045.1471913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\constants.py first seen with mtime 1708272005.8162813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\datetime.py first seen with mtime 1708272005.811243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\__init__.py first seen with mtime 1708272005.6908345 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\keycloak_admin.py first seen with mtime 1708499980.151623 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\logging\handlers.py first seen with mtime 1701795056.0938542 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\models.py first seen with mtime 1709531170.2175584 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\johabfreq.py first seen with mtime 1708274930.82756 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\proxy.py first seen with mtime 1708272005.8052292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\creation.py first seen with mtime 1708272005.7490022 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\backend.py first seen with mtime 1708777045.3788285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\hebrewprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\oauth2\views.py first seen with mtime 1709531170.5286205 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langrussianmodel.py first seen with mtime 1708274930.8326974 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\role.py first seen with mtime 1708499980.1496224 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\subqueries.py first seen with mtime 1708272005.8187182 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\windows_events.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\fields.py first seen with mtime 1708272005.7721107 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\inspect.py first seen with mtime 1708272005.9690583 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\utils.py first seen with mtime 1708272002.3705149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\apps.py first seen with mtime 1708272003.9003315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\enums.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\__init__.py first seen with mtime 1708274996.485356 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\ciphers.py first seen with mtime 1708777045.3788285 +File C:\Users\fhjj3\djangoProject1\manage.py first seen with mtime 1708321695.0458086 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\admin.py first seen with mtime 1709531170.2225068 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\cache.py first seen with mtime 1708272005.9369888 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\protocols.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\indent_text.py first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\util.py first seen with mtime 1708274995.2866259 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\locmem.py first seen with mtime 1708272005.6295135 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\exceptions.py first seen with mtime 1708499980.150623 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\__init__.py first seen with mtime 1707383295.9510689 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\internal\http.py first seen with mtime 1709531170.2458272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\authentication.py first seen with mtime 1709531170.2245045 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\constant.py first seen with mtime 1708274996.0107274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\base.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\api_jws.py first seen with mtime 1708274995.6326191 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\locks.py first seen with mtime 1694771047.1738276 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_casefix.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\cookies.py first seen with mtime 1708274996.4914002 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\__init__.py first seen with mtime 1708272002.365438 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\etree\__init__.py first seen with mtime 1694771061.268605 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\collections\__init__.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\policy.py first seen with mtime 1708499980.1486204 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\creation.py first seen with mtime 1708272005.6948347 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\ssl_.py first seen with mtime 1708274995.2821188 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\sqlite3\__init__.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\context.py first seen with mtime 1708272005.92031 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\copy.py first seen with mtime 1694771047.2371235 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_queue.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\models.py first seen with mtime 1708272005.1784742 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_itertools.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\latin1prober.py first seen with mtime 1708274930.8356998 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\__init__.py first seen with mtime 1708272003.8993342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\uma_permissions.py first seen with mtime 1708499980.154704 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_overlapped.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\__init__.py first seen with mtime 1708499980.1455538 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\__init__.py first seen with mtime 1694771054.1879306 +File C:\Users\fhjj3\djangoProject1\cart\apps.py first seen with mtime 1708321694.9689012 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_lzma.pyd first seen with mtime 1707383301.6592948 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\admin.py first seen with mtime 1709531170.328099 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\__init__.py first seen with mtime 1708274995.2791188 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\handlers.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\regex_helper.py first seen with mtime 1708272005.973064 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\__init__.py first seen with mtime 1708272002.828243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\utils.py first seen with mtime 1708272005.8287628 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\safestring.py first seen with mtime 1708272005.9741254 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\signals.py first seen with mtime 1708272005.692837 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\dis.py first seen with mtime 1701795055.2965775 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\handlers.py first seen with mtime 1708272005.6101708 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\autoreload.py first seen with mtime 1708272005.91825 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\csrf.py first seen with mtime 1708272005.6411397 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\urls\static.py first seen with mtime 1708272003.148023 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\signing.py first seen with mtime 1708272005.622832 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\header.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\forms.py first seen with mtime 1709531170.225505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\reverse_related.py first seen with mtime 1708272005.808248 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\certifi\__init__.py first seen with mtime 1708274996.1883242 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\request.py first seen with mtime 1708272005.9111333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\_asymmetric.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\statement_splitter.py first seen with mtime 1708272002.3725145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\__init__.py first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\model_checks.py first seen with mtime 1708272005.6355772 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\helpers.py first seen with mtime 1709531170.331112 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\windows_utils.py first seen with mtime 1694771047.1895287 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\contextlib.py first seen with mtime 1701795055.2944214 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\templatetags\__init__.py first seen with mtime 1709531170.6617908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\middleware.py first seen with mtime 1708272003.9068947 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\admin.py first seen with mtime 1708272004.1187294 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\subprocess.py first seen with mtime 1696309035.177473 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\crypto.py first seen with mtime 1708272005.9563732 +File C:\Users\fhjj3\djangoProject1\cart\__init__.py first seen with mtime 1708321694.9645002 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\__init__.py first seen with mtime 1708272005.8217156 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\adapters.py first seen with mtime 1708274996.4883916 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\quoprimime.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\handler.py first seen with mtime 1708272005.6512735 +File C:\Users\fhjj3\djangoProject1\djangoProject1\settings.py first seen with mtime 1710841633.184124 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\__init__.py first seen with mtime 1708275928.9383018 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\api.py first seen with mtime 1708274996.0088563 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\connection.py first seen with mtime 1708499980.1496224 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\introspection.py first seen with mtime 1708272005.7510011 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\ratelimit.py first seen with mtime 1709531170.2458272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\constants.py first seen with mtime 1708272004.8465116 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\constants.py first seen with mtime 1708499979.99551 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\__init__.py first seen with mtime 1708272002.3725145 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\__init__.py first seen with mtime 1707383296.3117087 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\oauth2\client.py first seen with mtime 1709531170.5261085 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\multipart\__init__.py first seen with mtime 1708499979.064306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\utils.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\aggregates.py first seen with mtime 1708272005.7841895 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\padding.py first seen with mtime 1708777045.4391272 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\functools.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\enums.py first seen with mtime 1708272005.7912042 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\etree\ElementPath.py first seen with mtime 1694771061.268605 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\_base.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\memory.py first seen with mtime 1708272005.6512735 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\forms.py first seen with mtime 1709531170.3301125 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\general_name.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\signals.py first seen with mtime 1708272003.9107015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\adapter.py first seen with mtime 1709531170.2215056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\dsa.py first seen with mtime 1708777045.4418166 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\headers.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\wait.py first seen with mtime 1708274995.28814 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\edit.py first seen with mtime 1708272005.9961476 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\codingstatemachinedict.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\backends\base.py first seen with mtime 1708272005.9294243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\x25519.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\base\utils.py first seen with mtime 1709531170.3665304 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\contentmanager.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\version.py first seen with mtime 1708274930.8414392 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\models.py first seen with mtime 1709531170.2265053 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\__init__.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\jwk.py first seen with mtime 1708499979.9975073 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\templatetags\__init__.py first seen with mtime 1709531170.2346053 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\compat.py first seen with mtime 1708274996.4914002 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\features.py first seen with mtime 1708272005.69634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\introspection.py first seen with mtime 1708272005.6973505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_typing.py first seen with mtime 1708273276.5851386 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\message.py first seen with mtime 1708272005.6573324 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\big5prober.py first seen with mtime 1708274930.8166883 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\filepost.py first seen with mtime 1708274995.2700982 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\log.py first seen with mtime 1708272005.971064 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\backends\base.py first seen with mtime 1708272005.180475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\options.py first seen with mtime 1708272005.7967162 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\cli.py first seen with mtime 1708272002.366943 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\utf1632prober.py first seen with mtime 1708274930.8414392 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\api_jwk.py first seen with mtime 1708274995.631617 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\policy.py first seen with mtime 1707383301.9727523 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_weakrefset.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\cart\urls.py first seen with mtime 1708321694.9729092 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\__about__.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\views\main.py first seen with mtime 1708272003.6686103 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\certificate_transparency.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\forms.py first seen with mtime 1708272004.1214797 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\urls.py first seen with mtime 1708272005.6381364 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\schema.py first seen with mtime 1708272005.7530026 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\csrf.py first seen with mtime 1708272005.9146912 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\list.py first seen with mtime 1708272005.9971554 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\opcode.py first seen with mtime 1694771054.1410599 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\ssltransport.py first seen with mtime 1708274995.2841237 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\utils.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\multipart\encoder.py first seen with mtime 1708499979.0663054 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\backends\django.py first seen with mtime 1708272005.9294243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\__init__.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\validation.py first seen with mtime 1708272005.699519 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\resolvers.py first seen with mtime 1708272005.94931 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\string.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\defusedxml\__init__.py first seen with mtime 1709531169.4560318 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\adapter.py first seen with mtime 1709531170.3275945 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\formsets.py first seen with mtime 1708272005.8237164 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\universaldetector.py first seen with mtime 1708274930.8404393 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\__init__.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\base.py first seen with mtime 1708272005.6432004 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\queue.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\widgets.py first seen with mtime 1708272003.1601522 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\hashes.py first seen with mtime 1708777045.4386127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\packaging\__init__.py first seen with mtime 1708499977.8906622 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\_oid.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\__init__.py first seen with mtime 1708274995.8286822 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\translation.py first seen with mtime 1708272005.6370807 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account first seen with mtime 1709531170.6979802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa first seen with mtime 1709531170.7190285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\openid first seen with mtime 1709531170.7210276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\tests first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions first seen with mtime 1709531170.7315457 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\account_inactive.html first seen with mtime 1709531170.667301 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_entrance.html first seen with mtime 1709531170.667301 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_manage.html first seen with mtime 1709531170.6683075 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_manage_email.html first seen with mtime 1709531170.6693091 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_manage_password.html first seen with mtime 1709531170.6693091 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_reauthenticate.html first seen with mtime 1709531170.6703155 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email first seen with mtime 1709531170.692475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email.html first seen with mtime 1709531170.6703155 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email_change.html first seen with mtime 1709531170.6713145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email_confirm.html first seen with mtime 1709531170.6713145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\login.html first seen with mtime 1709531170.6713145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\logout.html first seen with mtime 1709531170.6723144 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages first seen with mtime 1709531170.6979802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_change.html first seen with mtime 1709531170.6723144 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset.html first seen with mtime 1709531170.6733148 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset_done.html first seen with mtime 1709531170.6733148 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset_from_key.html first seen with mtime 1709531170.6743145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset_from_key_done.html first seen with mtime 1709531170.6743145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_set.html first seen with mtime 1709531170.6753147 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\reauthenticate.html first seen with mtime 1709531170.6753147 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\signup.html first seen with mtime 1709531170.6753147 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\signup_closed.html first seen with mtime 1709531170.6763153 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\snippets first seen with mtime 1709531170.6989908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\verification_sent.html first seen with mtime 1709531170.6773162 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\verified_email_required.html first seen with mtime 1709531170.6778219 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\account_already_exists_message.txt first seen with mtime 1709531170.6788323 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\account_already_exists_subject.txt first seen with mtime 1709531170.6788323 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\base_message.txt first seen with mtime 1709531170.679829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\base_notification.txt first seen with mtime 1709531170.679829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_changed_message.txt first seen with mtime 1709531170.6808288 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_changed_subject.txt first seen with mtime 1709531170.6808288 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_message.txt first seen with mtime 1709531170.682829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_signup_message.txt first seen with mtime 1709531170.682829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_signup_subject.txt first seen with mtime 1709531170.6838286 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_subject.txt first seen with mtime 1709531170.684828 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirm_message.txt first seen with mtime 1709531170.6818295 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirm_subject.txt first seen with mtime 1709531170.6818295 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_deleted_message.txt first seen with mtime 1709531170.6858523 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_deleted_subject.txt first seen with mtime 1709531170.6873715 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_changed_message.txt first seen with mtime 1709531170.6873715 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_changed_subject.txt first seen with mtime 1709531170.6883805 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_key_message.txt first seen with mtime 1709531170.6883805 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_key_subject.txt first seen with mtime 1709531170.689382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_message.txt first seen with mtime 1709531170.689382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_subject.txt first seen with mtime 1709531170.6904752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_set_message.txt first seen with mtime 1709531170.6904752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_set_subject.txt first seen with mtime 1709531170.6914752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\unknown_account_message.txt first seen with mtime 1709531170.6914752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\unknown_account_subject.txt first seen with mtime 1709531170.692475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\cannot_delete_primary_email.txt first seen with mtime 1709531170.692475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_confirmation_failed.txt first seen with mtime 1709531170.6934752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_confirmation_sent.txt first seen with mtime 1709531170.6944842 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_confirmed.txt first seen with mtime 1709531170.6944842 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_deleted.txt first seen with mtime 1709531170.6954775 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\logged_in.txt first seen with mtime 1709531170.6954775 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\logged_out.txt first seen with mtime 1709531170.6964748 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\password_changed.txt first seen with mtime 1709531170.6964748 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\password_set.txt first seen with mtime 1709531170.6964748 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\primary_email_set.txt first seen with mtime 1709531170.6974757 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\unverified_primary_email.txt first seen with mtime 1709531170.6979802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\snippets\already_logged_in.html first seen with mtime 1709531170.6989908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\snippets\warn_no_email.html first seen with mtime 1709531170.6989908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts first seen with mtime 1709531170.7084978 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\alert.html first seen with mtime 1709531170.6999867 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\badge.html first seen with mtime 1709531170.6999867 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\button.html first seen with mtime 1709531170.7009866 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\field.html first seen with mtime 1709531170.7029896 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\fields.html first seen with mtime 1709531170.7039902 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\form.html first seen with mtime 1709531170.7039902 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\h1.html first seen with mtime 1709531170.7049866 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\h2.html first seen with mtime 1709531170.7049866 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\hr.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\img.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\panel.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\provider.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\provider_list.html first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\table.html first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts\base.html first seen with mtime 1709531170.7084978 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts\entrance.html first seen with mtime 1709531170.7084978 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts\manage.html first seen with mtime 1709531170.7094977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\authenticate.html first seen with mtime 1709531170.7094977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\base_entrance.html first seen with mtime 1709531170.7094977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\base_manage.html first seen with mtime 1709531170.7105024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email first seen with mtime 1709531170.7145028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\index.html first seen with mtime 1709531170.7105024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages first seen with mtime 1709531170.7165031 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\reauthenticate.html first seen with mtime 1709531170.7115035 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes first seen with mtime 1709531170.7180228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp first seen with mtime 1709531170.7200282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\recovery_codes_generated_message.txt first seen with mtime 1709531170.7115035 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\recovery_codes_generated_subject.txt first seen with mtime 1709531170.712504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_activated_message.txt first seen with mtime 1709531170.7135034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_activated_subject.txt first seen with mtime 1709531170.7135034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_deactivated_message.txt first seen with mtime 1709531170.7135034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_deactivated_subject.txt first seen with mtime 1709531170.7145028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages\recovery_codes_generated.txt first seen with mtime 1709531170.7155042 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages\totp_activated.txt first seen with mtime 1709531170.7155042 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages\totp_deactivated.txt first seen with mtime 1709531170.7165031 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\base.html first seen with mtime 1709531170.7165031 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\download.txt first seen with mtime 1709531170.7175183 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\generate.html first seen with mtime 1709531170.7180228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\index.html first seen with mtime 1709531170.7180228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp\activate_form.html first seen with mtime 1709531170.7190285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp\base.html first seen with mtime 1709531170.7190285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp\deactivate_form.html first seen with mtime 1709531170.7200282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\openid\base.html first seen with mtime 1709531170.7200282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\openid\login.html first seen with mtime 1709531170.7210276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\authentication_error.html first seen with mtime 1709531170.7210276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\base_entrance.html first seen with mtime 1709531170.7220285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\base_manage.html first seen with mtime 1709531170.7220285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\connections.html first seen with mtime 1709531170.7230282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\login.html first seen with mtime 1709531170.7230282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\login_cancelled.html first seen with mtime 1709531170.7230282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\signup.html first seen with mtime 1709531170.7240279 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_connected_message.txt first seen with mtime 1709531170.7240279 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_connected_subject.txt first seen with mtime 1709531170.725028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_disconnected_message.txt first seen with mtime 1709531170.725028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_disconnected_subject.txt first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_connected.txt first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_connected_other.txt first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_connected_updated.txt first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_disconnected.txt first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets\login.html first seen with mtime 1709531170.728538 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets\login_extra.html first seen with mtime 1709531170.728538 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets\provider_list.html first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\tests\test_403_csrf.html first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\base_manage.html first seen with mtime 1709531170.7305448 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\messages first seen with mtime 1709531170.732551 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\usersession_list.html first seen with mtime 1709531170.7315457 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\messages\sessions_logged_out.txt first seen with mtime 1709531170.732551 +File C:\Users\fhjj3\djangoProject1\main\templates\main first seen with mtime 1710915719.31491 +File C:\Users\fhjj3\djangoProject1\main\templates\main\about.html first seen with mtime 1709805141.1082456 +File C:\Users\fhjj3\djangoProject1\main\templates\main\base.html first seen with mtime 1710915719.31491 +File C:\Users\fhjj3\djangoProject1\main\templates\main\callback.html first seen with mtime 1710826534.7217093 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product first seen with mtime 1710753964.805735 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product\detail.html first seen with mtime 1710322666.8037064 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product\list.html first seen with mtime 1709803052.8001108 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product\profile.html first seen with mtime 1710753964.805735 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\widgets first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018 first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018\digraph.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018\label.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018\relation.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original\digraph.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original\label.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original\relation.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\widgets\foreignkey_searchinput.html first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders first seen with mtime 1708321695.061612 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order first seen with mtime 1709556079.0286837 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order\create.html first seen with mtime 1708321695.061612 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order\created.html first seen with mtime 1709556079.0278215 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order\pdf.html first seen with mtime 1708321695.0626125 +File C:\Users\fhjj3\djangoProject1\cart\templates\cart first seen with mtime 1709797331.2451537 +File C:\Users\fhjj3\djangoProject1\cart\templates\cart\detail.html first seen with mtime 1709797331.2441432 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ar\LC_MESSAGES\django.mo first seen with mtime 1709531170.2483387 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\az\LC_MESSAGES\django.mo first seen with mtime 1709531170.2503822 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\bg\LC_MESSAGES\django.mo first seen with mtime 1709531170.2523403 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ca\LC_MESSAGES\django.mo first seen with mtime 1709531170.2533395 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\cs\LC_MESSAGES\django.mo first seen with mtime 1709531170.255339 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\da\LC_MESSAGES\django.mo first seen with mtime 1709531170.2563374 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\de\LC_MESSAGES\django.mo first seen with mtime 1709531170.2573397 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\el\LC_MESSAGES\django.mo first seen with mtime 1709531170.259826 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\en\LC_MESSAGES\django.mo first seen with mtime 1709531170.2608266 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\es\LC_MESSAGES\django.mo first seen with mtime 1709531170.2618265 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\eu\LC_MESSAGES\django.mo first seen with mtime 1709531170.2628262 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\fa\LC_MESSAGES\django.mo first seen with mtime 1709531170.264827 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\fi\LC_MESSAGES\django.mo first seen with mtime 1709531170.265827 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\fr\LC_MESSAGES\django.mo first seen with mtime 1709531170.2673337 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\he\LC_MESSAGES\django.mo first seen with mtime 1709531170.2693403 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\hr\LC_MESSAGES\django.mo first seen with mtime 1709531170.27034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\hu\LC_MESSAGES\django.mo first seen with mtime 1709531170.2713394 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\id\LC_MESSAGES\django.mo first seen with mtime 1709531170.2733397 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\it\LC_MESSAGES\django.mo first seen with mtime 1709531170.2743385 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ja\LC_MESSAGES\django.mo first seen with mtime 1709531170.27534 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ka\LC_MESSAGES\django.mo first seen with mtime 1709531170.2773395 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ko\LC_MESSAGES\django.mo first seen with mtime 1709531170.278443 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ky\LC_MESSAGES\django.mo first seen with mtime 1709531170.2794406 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\lt\LC_MESSAGES\django.mo first seen with mtime 1709531170.281441 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\lv\LC_MESSAGES\django.mo first seen with mtime 1709531170.2834418 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\mn\LC_MESSAGES\django.mo first seen with mtime 1709531170.2854414 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\nb\LC_MESSAGES\django.mo first seen with mtime 1709531170.2864406 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\nl\LC_MESSAGES\django.mo first seen with mtime 1709531170.288449 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\pl\LC_MESSAGES\django.mo first seen with mtime 1709531170.2894557 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\pt_BR\LC_MESSAGES\django.mo first seen with mtime 1709531170.2914605 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\pt_PT\LC_MESSAGES\django.mo first seen with mtime 1709531170.2924604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ro\LC_MESSAGES\django.mo first seen with mtime 1709531170.2944615 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ru\LC_MESSAGES\django.mo first seen with mtime 1709531170.2954607 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sk\LC_MESSAGES\django.mo first seen with mtime 1709531170.2974613 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sl\LC_MESSAGES\django.mo first seen with mtime 1709531170.299975 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sr\LC_MESSAGES\django.mo first seen with mtime 1709531170.301971 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sr_Latn\LC_MESSAGES\django.mo first seen with mtime 1709531170.3039734 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sv\LC_MESSAGES\django.mo first seen with mtime 1709531170.3049705 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\th\LC_MESSAGES\django.mo first seen with mtime 1709531170.3059704 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\tr\LC_MESSAGES\django.mo first seen with mtime 1709531170.3074746 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\uk\LC_MESSAGES\django.mo first seen with mtime 1709531170.3094792 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_CN\LC_MESSAGES\django.mo first seen with mtime 1709531170.3104813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_Hans\LC_MESSAGES\django.mo first seen with mtime 1709531170.3114796 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_Hant\LC_MESSAGES\django.mo first seen with mtime 1709531170.3124814 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_TW\LC_MESSAGES\django.mo first seen with mtime 1709531170.3144813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\da\LC_MESSAGES\django.mo first seen with mtime 1708568721.87046 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\de\LC_MESSAGES\django.mo first seen with mtime 1708568721.87046 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\el\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\en\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\es\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\fr\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\hu\LC_MESSAGES\django.mo first seen with mtime 1708568721.8842504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\id\LC_MESSAGES\django.mo first seen with mtime 1708568721.8842504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\it\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\ja\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\pl\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\pt\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\pt_BR\LC_MESSAGES\django.mo first seen with mtime 1708568721.895399 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\ro\LC_MESSAGES\django.mo first seen with mtime 1708568721.895399 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\ru\LC_MESSAGES\django.mo first seen with mtime 1708568721.8992639 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +"GET /products/ HTTP/1.1" 200 13949 +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0007_alter_validators_add_error_messages.py first seen with mtime 1708272004.111096 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0003_alter_emailaddress_create_unique_verified_email.py first seen with mtime 1709531170.2326095 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\__init__.py first seen with mtime 1708272004.1151564 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\context_processors.py first seen with mtime 1708272004.8470173 +File C:\Users\fhjj3\djangoProject1\djangoProject1\wsgi.py first seen with mtime 1708321694.9784534 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0001_initial.py first seen with mtime 1709531170.335112 +File C:\Users\fhjj3\djangoProject1\main\migrations\0001_initial.py first seen with mtime 1708321694.9898424 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0012_alter_user_first_name_max_length.py first seen with mtime 1708272004.1151564 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\clickjacking.py first seen with mtime 1708272005.913129 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\session.py first seen with mtime 1708272004.8520772 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0001_initial.py first seen with mtime 1708272004.1070178 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0001_initial.py first seen with mtime 1709531170.2316048 +File C:\Users\fhjj3\djangoProject1\main\migrations\0002_alter_product_price.py first seen with mtime 1708592630.9072697 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\backends\db.py first seen with mtime 1708272005.1814744 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0005_emailaddress_idx_upper_email.py first seen with mtime 1709531170.2336047 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\context_processors.py first seen with mtime 1708272005.9213128 +File C:\Users\fhjj3\djangoProject1\orders\migrations\0001_initial.py first seen with mtime 1708321695.0544572 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\middleware.py first seen with mtime 1709531170.2265053 +File C:\Users\fhjj3\djangoProject1\orders\migrations\0002_alter_orderitem_price.py first seen with mtime 1708592726.7066953 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\__init__.py first seen with mtime 1709531170.3386524 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\migrations\0002_remove_content_type_name.py first seen with mtime 1708272004.279176 +File C:\Users\fhjj3\djangoProject1\main\migrations\__init__.py first seen with mtime 1708321694.9908433 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0008_alter_user_username_max_length.py first seen with mtime 1708272004.1120937 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\compiler.py first seen with mtime 1708272005.814751 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\migrations\0001_initial.py first seen with mtime 1708272005.4132214 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\0002_logentry_remove_auto_add.py first seen with mtime 1708272003.5251837 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\__init__.py first seen with mtime 1709531170.2346053 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0002_alter_permission_name_max_length.py first seen with mtime 1708272004.1070178 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\context_processors.py first seen with mtime 1708272003.9033809 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0003_extra_data_default_dict.py first seen with mtime 1709531170.336132 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\migrations\0001_initial.py first seen with mtime 1708272005.6061544 +File C:\Users\fhjj3\djangoProject1\orders\migrations\__init__.py first seen with mtime 1708321695.0544572 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\migrations\0002_alter_domain_unique.py first seen with mtime 1708272005.6066594 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0009_alter_user_last_name_max_length.py first seen with mtime 1708272004.1130946 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\migrations\__init__.py first seen with mtime 1708272005.4132214 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0002_token_max_lengths.py first seen with mtime 1709531170.336132 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0004_alter_emailaddress_drop_unique_email.py first seen with mtime 1709531170.2336047 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0011_update_proxy_permissions.py first seen with mtime 1708272004.1141546 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\__init__.py first seen with mtime 1708272003.526099 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\cookie.py first seen with mtime 1708272004.851081 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0004_app_provider_id_settings.py first seen with mtime 1709531170.3376458 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\migrations\__init__.py first seen with mtime 1708272005.6071646 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0006_require_contenttypes_0002.py first seen with mtime 1708272004.1100948 +File C:\Users\fhjj3\djangoProject1\users\migrations\__init__.py first seen with mtime 1708506684.0176537 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\migrations\0001_initial.py first seen with mtime 1708272004.2781794 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0003_alter_user_email_max_length.py first seen with mtime 1708272004.1080234 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0005_socialtoken_nullable_app.py first seen with mtime 1709531170.3376458 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\locale\en\formats.py first seen with mtime 1708272002.9087086 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\0001_initial.py first seen with mtime 1708272003.5251837 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\recorder.py first seen with mtime 1708272005.7650497 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\migrations\0006_alter_socialaccount_extra_data.py first seen with mtime 1709531170.3386524 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\storage.py first seen with mtime 1708272005.611222 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\fallback.py first seen with mtime 1708272004.851081 +File C:\Users\fhjj3\djangoProject1\cart\migrations\__init__.py first seen with mtime 1708321694.969901 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\migrations\__init__.py first seen with mtime 1708272004.279176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0004_alter_user_username_opts.py first seen with mtime 1708272004.109091 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\0003_logentry_add_action_flag_choices.py first seen with mtime 1708272003.526099 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\locale\en\__init__.py first seen with mtime 1708272002.9087086 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0002_email_max_length.py first seen with mtime 1709531170.2326095 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\serializers.py first seen with mtime 1708272005.1794763 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0005_alter_user_last_login_null.py first seen with mtime 1708272004.1100948 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0010_alter_group_name_max_length.py first seen with mtime 1708272004.1130946 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" = 1 LIMIT 21; args=(1,); alias=default +(0.000) SELECT 1 AS "a" FROM "django_session" WHERE "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5' LIMIT 1; args=(1, '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) BEGIN; args=None; alias=default +(0.000) INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5', 'eyJjYXJ0Ijp7IjEiOnsicXVhbnRpdHkiOjEsInByaWNlIjoiODA5MCJ9fX0:1rmuoL:aJYNxy72wwsYOTYnzxe-FB7q01kJEGwk4fUbDbDABFM', '2024-03-21 12:12:49.411638'); args=('5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5', 'eyJjYXJ0Ijp7IjEiOnsicXVhbnRpdHkiOjEsInByaWNlIjoiODA5MCJ9fX0:1rmuoL:aJYNxy72wwsYOTYnzxe-FB7q01kJEGwk4fUbDbDABFM', '2024-03-21 12:12:49.411638'); alias=default +(0.000) COMMIT; args=None; alias=default +"POST /cart/add/1/ HTTP/1.1" 302 0 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:12:49.422995' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:12:49.422995', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" IN (1) ORDER BY "main_product"."name" ASC; args=(1,); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" IN (1) ORDER BY "main_product"."name" ASC; args=(1,); alias=default +"GET /cart/ HTTP/1.1" 200 9130 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:12:49.522123' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:12:49.522123', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:12:51.594705' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:12:51.594705', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +"GET /orders/create/ HTTP/1.1" 302 0 +(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:12:53.221328' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:12:53.221328', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +(0.000) BEGIN; args=None; alias=default +(0.000) UPDATE "django_session" SET "session_data" = '.eJyNU8uO4jAQ_JWRz5g474TT7J7mvsfVKGrsNhiSOGM7zALi37cdgRZuq0hRXO6u6io7VybBBba5sjS-vmYYgwlntklXbHJGItuwRrSC3W4rNnt0nRm1jaX4Z6KqOhVtWdR1tmIGwh0oRB4BmMO-C2bAV_gQDJFuc8yrLBO8qlvNizqXfFs1W15WKCqVZWlTS0ak3lPxPoTJb5IkMq6Hc0BnrFsfL4lD6AeffIAb7HhmUVNRPUhp5zHQ2s9bWqdVLVVbpFzqVPCiVEBiqeKAotB1BXkjKioOZ7LEfiI4dJHrEpegBjNy2ZvIht4bO3Y-QIjJyFY3VSlqnmtBvLrMeNu2KSmIQmHWYIHRBEgXh4hffW-_UXHrzM6MZO334o2spVm9FvSkm0YIkUzOqlkGn7DPFVtcdmQKYxpX5myPS6_VujcjPrbohAboYkjEf4FAoxKmUMPcB7508f09qs9b5PV2dhKfqB_JPasMMMIO-b9QXwFOIxyj-MngN6fBtemR-EnASzvFnHAA0789tgg36v_TW5q7E525Nkh9wc24YiPEe8V-HLc2wNsvMkhDxTOaHGp0DlUXr-u9LKAP5ki7O3PCsXtpJlTDYPrzA34iW7QJ0vvDIS9b8b6LwFragX6Iv0LMBhQ:1rmuoP:vJDNIZoI0Y98UDkZG8_T6atf1n7deZNvtYntdWqaQAc', "expire_date" = '2024-03-21 12:12:53.238640' WHERE "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'; args=('.eJyNU8uO4jAQ_JWRz5g474TT7J7mvsfVKGrsNhiSOGM7zALi37cdgRZuq0hRXO6u6io7VybBBba5sjS-vmYYgwlntklXbHJGItuwRrSC3W4rNnt0nRm1jaX4Z6KqOhVtWdR1tmIGwh0oRB4BmMO-C2bAV_gQDJFuc8yrLBO8qlvNizqXfFs1W15WKCqVZWlTS0ak3lPxPoTJb5IkMq6Hc0BnrFsfL4lD6AeffIAb7HhmUVNRPUhp5zHQ2s9bWqdVLVVbpFzqVPCiVEBiqeKAotB1BXkjKioOZ7LEfiI4dJHrEpegBjNy2ZvIht4bO3Y-QIjJyFY3VSlqnmtBvLrMeNu2KSmIQmHWYIHRBEgXh4hffW-_UXHrzM6MZO334o2spVm9FvSkm0YIkUzOqlkGn7DPFVtcdmQKYxpX5myPS6_VujcjPrbohAboYkjEf4FAoxKmUMPcB7508f09qs9b5PV2dhKfqB_JPasMMMIO-b9QXwFOIxyj-MngN6fBtemR-EnASzvFnHAA0789tgg36v_TW5q7E525Nkh9wc24YiPEe8V-HLc2wNsvMkhDxTOaHGp0DlUXr-u9LKAP5ki7O3PCsXtpJlTDYPrzA34iW7QJ0vvDIS9b8b6LwFragX6Iv0LMBhQ:1rmuoP:vJDNIZoI0Y98UDkZG8_T6atf1n7deZNvtYntdWqaQAc', '2024-03-21 12:12:53.238640', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) COMMIT; args=None; alias=default +"GET /callback/?state=&session_state=c9f86507-3f00-4f52-9991-4504de28e4ec&code=65e79d70-358c-4795-a95a-06a0aca280eb.c9f86507-3f00-4f52-9991-4504de28e4ec.897c9a40-02c1-46b5-aecb-186cdb887f08 HTTP/1.1" 200 13949 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:12:53.453004' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:12:53.453004', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 25 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\shlex.py first seen with mtime 1694771054.1879306 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\netrc.py first seen with mtime 1694771054.1410599 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:12:54.531506' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:12:54.531506', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" = 1 LIMIT 21; args=(1,); alias=default +(0.000) BEGIN; args=None; alias=default +(0.016) UPDATE "django_session" SET "session_data" = '.eJyNU02v2yAQ_CtPnEOMvz9Orz313mP1ZG1gSUhs4wLOaxLlv3exEjXvVlmyzLA7szPgG5PgAutuLI2v3wtMwYQL67INm52RyDrWiFaw-33DFo-uN5O2sRT_zKxL61S0ZVHXVG4gPIBC5BGAJRz6YEb8Ch-DIdJdjnmVZYJXdat5UeeS76pmx8sKRaWyLG1qyYjUeyo-hDD7Lkki43a8BHTGuu3pmjiEYfTJD3CjnS4saiqqByntMgVa-2VH67SqpWqLlEudCl6UCkgsVRxQFLquIG9ERcXhQpbYdwSHLnJd4xLUaCYuBxPZ0Htjp94HCDEZ2eqmKkXNcy2IV5cZb9s2JQVRKMwaLDCaAOniEPFrGOwnKm6d2ZuJrP1avZG1NKu3gp60a4QQyeysWmTwCfvYsNVlT6YwpnFjzg649lqtBzPhc4tOaIQ-hkT8Vwg0KmEKNSxD4GsXPzyi-rhHXm8XJ_GF-pncq8oIE-yR_wv1K8BphFMUPxv85DS4NgMSPwl4aeeYE45ghrfnFuFG_X96a3N_pjPXBqkvuAU3bIJ4r9i3084GePtJBmmoeEazQ43OoerjdX2UBfTBnGh3b8449V-aCdUwmuHyhF_IVm2C9OF4zMtWvO8jsJV2pB_iL0XvBhU:1rmuoQ:WT5Fa9UpZ3gPXUyRQEKGSh2bjstBaJ9PSoXseMA7Msg', "expire_date" = '2024-03-21 12:12:54.535512' WHERE "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'; args=('.eJyNU02v2yAQ_CtPnEOMvz9Orz313mP1ZG1gSUhs4wLOaxLlv3exEjXvVlmyzLA7szPgG5PgAutuLI2v3wtMwYQL67INm52RyDrWiFaw-33DFo-uN5O2sRT_zKxL61S0ZVHXVG4gPIBC5BGAJRz6YEb8Ch-DIdJdjnmVZYJXdat5UeeS76pmx8sKRaWyLG1qyYjUeyo-hDD7Lkki43a8BHTGuu3pmjiEYfTJD3CjnS4saiqqByntMgVa-2VH67SqpWqLlEudCl6UCkgsVRxQFLquIG9ERcXhQpbYdwSHLnJd4xLUaCYuBxPZ0Htjp94HCDEZ2eqmKkXNcy2IV5cZb9s2JQVRKMwaLDCaAOniEPFrGOwnKm6d2ZuJrP1avZG1NKu3gp60a4QQyeysWmTwCfvYsNVlT6YwpnFjzg649lqtBzPhc4tOaIQ-hkT8Vwg0KmEKNSxD4GsXPzyi-rhHXm8XJ_GF-pncq8oIE-yR_wv1K8BphFMUPxv85DS4NgMSPwl4aeeYE45ghrfnFuFG_X96a3N_pjPXBqkvuAU3bIJ4r9i3084GePtJBmmoeEazQ43OoerjdX2UBfTBnGh3b8449V-aCdUwmuHyhF_IVm2C9OF4zMtWvO8jsJV2pB_iL0XvBhU:1rmuoQ:WT5Fa9UpZ3gPXUyRQEKGSh2bjstBaJ9PSoXseMA7Msg', '2024-03-21 12:12:54.535512', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) COMMIT; args=None; alias=default +"POST /cart/add/1/ HTTP/1.1" 302 0 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:12:54.546548' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:12:54.546548', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" IN (1) ORDER BY "main_product"."name" ASC; args=(1,); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" IN (1) ORDER BY "main_product"."name" ASC; args=(1,); alias=default +"GET /cart/ HTTP/1.1" 200 9132 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:12:54.662892' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:12:54.662892', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 25 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:12:55.449568' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:12:55.449568', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" IN (1) ORDER BY "main_product"."name" ASC; args=(1,); alias=default +"GET /orders/create/ HTTP/1.1" 200 7217 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:12:55.536707' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:12:55.536707', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 25 +"GET /static/deps/css/main/static/deps/img/mg.png HTTP/1.1" 404 1867 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:13:02.119933' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:13:02.119933', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) INSERT INTO "orders_order" ("first_name", "last_name", "email", "address", "postal_code", "city", "phone", "created", "updated", "paid") VALUES ('ffrf', 'fff', 'fhjj3590@gmail.com', 'eee', '2222', 'ssssss', '+770533600730', '2024-03-20 12:13:02.126303', '2024-03-20 12:13:02.126869', 0) RETURNING "orders_order"."id"; args=('ffrf', 'fff', 'fhjj3590@gmail.com', 'eee', '2222', 'ssssss', '+770533600730', '2024-03-20 12:13:02.126303', '2024-03-20 12:13:02.126869', False); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" IN (1) ORDER BY "main_product"."name" ASC; args=(1,); alias=default +(0.000) INSERT INTO "orders_orderitem" ("order_id", "product_id", "price", "quantity") VALUES (100, 1, 8090, 2) RETURNING "orders_orderitem"."id"; args=(100, 1, 8090, 2); alias=default +(0.000) SELECT "orders_orderitem"."id", "orders_orderitem"."order_id", "orders_orderitem"."product_id", "orders_orderitem"."price", "orders_orderitem"."quantity" FROM "orders_orderitem" WHERE "orders_orderitem"."order_id" = 100; args=(100,); alias=default +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."id" = 1 LIMIT 21; args=(1,); alias=default +(0.000) SELECT "orders_orderitem"."id", "orders_orderitem"."order_id", "orders_orderitem"."product_id", "orders_orderitem"."price", "orders_orderitem"."quantity" FROM "orders_orderitem" WHERE "orders_orderitem"."order_id" = 100; args=(100,); alias=default +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\tzdata\zoneinfo\__init__.py first seen with mtime 1708272001.9422114 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\backends\smtp.py first seen with mtime 1708272005.6624024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\tzdata\__init__.py first seen with mtime 1708272001.9092486 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\backends\__init__.py first seen with mtime 1708272005.658506 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\smtplib.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\backends\base.py first seen with mtime 1708272005.6594052 +(0.000) BEGIN; args=None; alias=default +(0.000) UPDATE "django_session" SET "session_data" = '.eJyNUk2v2jAQ_CtPPmPifH-c2p5677F6ihZ7DYYkjmyHV0D8964jUOFW5RLP7s7sjH1ji0fXm0lb1t0Y_plZl9apaMuirrMNMxAeQCHyCMASDn0wI77Dx2BYx3Y55lWWCV7VreZFnUu-q5odLysUlcqytKklI1LvqfkQwuy7JImM2_ES0Bnrtqdr4hCG0Sc_wY12urCoqagfpLTLFOjslx2d06qWqi1SLnUqeFEqILFUcUBR6LqCvBEVNYcLWWI_EBy6yHWNR1CjmbgcTGRD742deh8gkCsmW91Upah5rgXx6jLjbdumpCAKhVmDBUYTIF1cIv4Ng_1Cxa0zezORtd-rN7KWZvVW0Jd2jRAimZ1Viww-YZ8btrrsyRTGNG7M2QHXWav1YCZ8ljZsGaGPIRH_FQKtSphCDcsQ-DrFD4-oPu-R19vFSXyhfib3qjLCBHvk_0J9BzitcIriZ4NfnBbXZkDiJwEv7RxzwhHM8PEsEW7U_6e3DvdnunNtkOaCW3DDJojvin0_7WyAj19kkJaKdzQ71Ogcqj4-10dbQB_Miap7c8apfxsmVMNohssTfiFbtQnSh-MxL1vxbR-BrbQju9__Al4g-RI:1rmuod:UwNL1rUsGCS75mAx6pZcEn_B4rWsGV_8rUvCEGHNCgs', "expire_date" = '2024-03-21 12:13:07.411852' WHERE "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'; args=('.eJyNUk2v2jAQ_CtPPmPifH-c2p5677F6ihZ7DYYkjmyHV0D8964jUOFW5RLP7s7sjH1ji0fXm0lb1t0Y_plZl9apaMuirrMNMxAeQCHyCMASDn0wI77Dx2BYx3Y55lWWCV7VreZFnUu-q5odLysUlcqytKklI1LvqfkQwuy7JImM2_ES0Bnrtqdr4hCG0Sc_wY12urCoqagfpLTLFOjslx2d06qWqi1SLnUqeFEqILFUcUBR6LqCvBEVNYcLWWI_EBy6yHWNR1CjmbgcTGRD742deh8gkCsmW91Upah5rgXx6jLjbdumpCAKhVmDBUYTIF1cIv4Ng_1Cxa0zezORtd-rN7KWZvVW0Jd2jRAimZ1Viww-YZ8btrrsyRTGNG7M2QHXWav1YCZ8ljZsGaGPIRH_FQKtSphCDcsQ-DrFD4-oPu-R19vFSXyhfib3qjLCBHvk_0J9BzitcIriZ4NfnBbXZkDiJwEv7RxzwhHM8PEsEW7U_6e3DvdnunNtkOaCW3DDJojvin0_7WyAj19kkJaKdzQ71Ogcqj4-10dbQB_Miap7c8apfxsmVMNohssTfiFbtQnSh-MxL1vxbR-BrbQju9__Al4g-RI:1rmuod:UwNL1rUsGCS75mAx6pZcEn_B4rWsGV_8rUvCEGHNCgs', '2024-03-21 12:13:07.411852', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) COMMIT; args=None; alias=default +"POST /orders/create/ HTTP/1.1" 302 0 +(0.000) SELECT "orders_order"."id", "orders_order"."first_name", "orders_order"."last_name", "orders_order"."email", "orders_order"."address", "orders_order"."postal_code", "orders_order"."city", "orders_order"."phone", "orders_order"."created", "orders_order"."updated", "orders_order"."paid" FROM "orders_order" WHERE "orders_order"."id" = 100 LIMIT 21; args=(100,); alias=default +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:13:07.437512' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:13:07.437512', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +"GET /orders/created/100/ HTTP/1.1" 200 5892 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:13:07.471917' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:13:07.471917', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 25 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:13:10.225098' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:13:10.225098', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +"GET /profile/ HTTP/1.1" 200 7024 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:13:10.252895' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:13:10.252895', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +"GET /check-user-authenticated/ HTTP/1.1" 200 25 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:13:13.521597' AND "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5') LIMIT 21; args=('2024-03-20 12:13:13.521597', '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); alias=default +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE "django_session"."session_key" = '5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5' LIMIT 21; args=('5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5',); alias=default +(0.000) DELETE FROM "django_session" WHERE "django_session"."session_key" IN ('5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5'); args=('5zxnvsw9qdgtmdlo4ync0p6ebm5q2ak5',); alias=default +"GET /admin_logout_user/ HTTP/1.1" 302 0 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +"GET /callback/ HTTP/1.1" 200 13949 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +Watching for file changes with StatReloader +Waiting for apps ready_event. +Apps ready_event triggered. Sending autoreload_started signal. +Watching dir C:\Users\fhjj3\djangoProject1\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\cart\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\orders\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\main\templates with glob **/*. +Watching dir C:\Users\fhjj3\djangoProject1\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\main\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\cart\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\orders\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\users\locale with glob **/*.mo. +Watching dir C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\mozilla_django_oidc\locale with glob **/*.mo. +(0.000) + SELECT name, type FROM sqlite_master + WHERE type in ('table', 'view') AND NOT name='sqlite_sequence' + ORDER BY name; args=None; alias=default +(0.000) SELECT "django_migrations"."id", "django_migrations"."app", "django_migrations"."name", "django_migrations"."applied" FROM "django_migrations"; args=(); alias=default +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\json.py first seen with mtime 1708272005.8042297 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\itercompat.py first seen with mtime 1708272005.970064 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\admin.py first seen with mtime 1708272003.9003315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euckrprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\forms.py first seen with mtime 1708272003.9043806 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\etree\ElementPath.py first seen with mtime 1694771061.268605 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\__init__.py first seen with mtime 1708272003.1500225 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\mixins.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\cached.py first seen with mtime 1708272005.934484 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langhebrewmodel.py first seen with mtime 1708274930.8317003 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\getpass.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\utf8prober.py first seen with mtime 1708274930.8414392 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\exception.py first seen with mtime 1708272005.6543176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\constants.py first seen with mtime 1708499979.99551 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\response.py first seen with mtime 1708274995.2730968 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\base.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\apps.py first seen with mtime 1708272004.1187294 +File C:\Users\fhjj3\djangoProject1\djangoProject1\urls.py first seen with mtime 1710320085.1270273 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\__init__.py first seen with mtime 1694771047.2371235 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_functools.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\utils.py first seen with mtime 1708499979.9995673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\aggregates.py first seen with mtime 1708272005.7841895 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\color.py first seen with mtime 1708272005.6644604 +File C:\Users\fhjj3\djangoProject1\orders\utils.py first seen with mtime 1709202781.4677205 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\http_proxy_digest.py first seen with mtime 1708499979.058306 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pathlib.py first seen with mtime 1694771054.1566823 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\tokenize.py first seen with mtime 1694771061.0191505 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\sslproto.py first seen with mtime 1707383301.8002088 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\global_settings.py first seen with mtime 1708272002.8332798 +File C:\Users\fhjj3\djangoProject1\users\apps.py first seen with mtime 1708506683.991898 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\base64.py first seen with mtime 1694771047.2212741 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\__init__.py first seen with mtime 1707383296.3117087 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\filters.py first seen with mtime 1708272003.154024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\paginator.py first seen with mtime 1708272005.6218283 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\environ.py first seen with mtime 1708275928.9403257 +File C:\Users\fhjj3\djangoProject1\main\__init__.py first seen with mtime 1708321694.9861953 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\api_jwt.py first seen with mtime 1708274995.6326191 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\universaldetector.py first seen with mtime 1708274930.8404393 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\exceptions.py first seen with mtime 1708272003.1530218 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\error.py first seen with mtime 1708777045.149196 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\signals.py first seen with mtime 1708272005.692837 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\registry.py first seen with mtime 1708272005.6365767 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_version.py first seen with mtime 1708273276.5861533 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\lorem_ipsum.py first seen with mtime 1708272005.972063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\utils.py first seen with mtime 1708274996.4974117 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\translation\reloader.py first seen with mtime 1708272005.9802067 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\api.py first seen with mtime 1708274996.4893982 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\warnings.py first seen with mtime 1708274995.6388566 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\linecache.py first seen with mtime 1694771051.7995784 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\debugger_tags.py first seen with mtime 1708568721.9421916 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\textwrap.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\utils.py first seen with mtime 1708272005.6132233 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\platform.py first seen with mtime 1694771054.1566823 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\urls.py first seen with mtime 1709531170.2286072 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_meta.py first seen with mtime 1694771051.6589673 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\collections\abc.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\introspection.py first seen with mtime 1708272005.7510011 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langturkishmodel.py first seen with mtime 1708274930.8356998 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\actions.py first seen with mtime 1708272003.1500225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\admin\widgets.py first seen with mtime 1708568721.8475149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\exceptions.py first seen with mtime 1708499979.99551 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\events.py first seen with mtime 1707383301.7845829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\exceptions.py first seen with mtime 1708272005.6207657 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\__init__.py first seen with mtime 1709531170.214993 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\error.py first seen with mtime 1694771061.0664566 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_events.py first seen with mtime 1707383301.768935 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\__init__.py first seen with mtime 1708272005.174387 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\idnadata.py first seen with mtime 1708274995.8311884 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\http.py first seen with mtime 1708272005.9685533 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\i18n.py first seen with mtime 1708272005.9379992 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\parse.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\messages.py first seen with mtime 1708272005.6345823 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_queue.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\utils.py first seen with mtime 1708272002.3705149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\options.py first seen with mtime 1708272005.7967162 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\subprocess.py first seen with mtime 1696309035.177473 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\message.py first seen with mtime 1708272005.6573324 +File C:\Users\fhjj3\djangoProject1\main\views.py first seen with mtime 1710936867.406856 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\__init__.py first seen with mtime 1694771050.6586244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\defusedxml\__init__.py first seen with mtime 1709531169.4560318 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\servers\basehttp.py first seen with mtime 1708272005.6888342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\models.py first seen with mtime 1708272005.7731116 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\collections\__init__.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\compat.py first seen with mtime 1708275928.9398072 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\functools.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\orders\apps.py first seen with mtime 1708321695.054364 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\opcode.py first seen with mtime 1694771054.1410599 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\poolmanager.py first seen with mtime 1708274995.272096 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\warnings.py first seen with mtime 1707383316.7788024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\formatter.py first seen with mtime 1708272002.367446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\__init__.py first seen with mtime 1708273276.548494 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\mozilla_django_oidc\__init__.py first seen with mtime 1709805831.8654432 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\ssl_.py first seen with mtime 1708274995.2821188 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\backends\cryptography_backend.py first seen with mtime 1708499980.0015688 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\md__mypyc.cp311-win_amd64.pyd first seen with mtime 1708274996.0137274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\extensions.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\__init__.py first seen with mtime 1708272005.7550004 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\exceptions.py first seen with mtime 1708274995.2680905 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\__init__.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\management.py first seen with mtime 1708272005.4217865 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\exceptions.py first seen with mtime 1708272005.1768935 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_overlapped.pyd first seen with mtime 1707383301.6771228 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\threads.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\inspect.py first seen with mtime 1708272005.9690583 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\process.py first seen with mtime 1694771054.1098123 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\packaging\_structures.py first seen with mtime 1708499977.8906622 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\__init__.py first seen with mtime 1708272005.6263409 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\autoreload.py first seen with mtime 1708272005.91825 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\apps.py first seen with mtime 1708272005.6084337 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\hashlib.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\contentmanager.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\filesystem.py first seen with mtime 1708272005.6502733 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\abc.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\__init__.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\formats.py first seen with mtime 1708272005.9644475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\cache.py first seen with mtime 1708272005.988496 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\checks.py first seen with mtime 1708272003.902382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\__init__.py first seen with mtime 1708272005.6563208 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\_os.py first seen with mtime 1708272005.951311 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\readers.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\base.py first seen with mtime 1708272005.627398 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_collections.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\middleware.py first seen with mtime 1708272005.1774724 +File C:\Users\fhjj3\djangoProject1\cart\apps.py first seen with mtime 1708321694.9689012 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\local.py first seen with mtime 1708272002.697138 +File C:\Users\fhjj3\djangoProject1\cart\cart.py first seen with mtime 1709207902.0099711 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\base.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\response.py first seen with mtime 1708272005.9111333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\__init__.py first seen with mtime 1708272003.8993342 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\struct.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\exceptions.py first seen with mtime 1708272005.7570324 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\fields.py first seen with mtime 1708272005.8227143 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\smartif.py first seen with mtime 1708272005.9274178 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\tree.py first seen with mtime 1708272005.9771414 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zoneinfo\_common.py first seen with mtime 1694771061.2998595 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\html\entities.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langrussianmodel.py first seen with mtime 1708274930.8326974 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\numbers.py first seen with mtime 1694771054.1410599 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\multipart\encoder.py first seen with mtime 1708499979.0663054 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\latin1prober.py first seen with mtime 1708274930.8356998 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\models.py first seen with mtime 1709531170.2265053 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\__init__.py first seen with mtime 1694771051.6902146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\backends\__init__.py first seen with mtime 1708499979.9995673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\models.py first seen with mtime 1708272005.4227803 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\transaction.py first seen with mtime 1708272005.689836 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\feedparser.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\nonmultipart.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\timeouts.py first seen with mtime 1701795055.2199955 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\hmac.py first seen with mtime 1707383304.1301887 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\log.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\__init__.py first seen with mtime 1708272005.6431394 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\keycloak_openid.py first seen with mtime 1708499980.152622 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\sessions.py first seen with mtime 1708272005.642139 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\__init__.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\backends\base.py first seen with mtime 1708499980.0005682 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\backends\django.py first seen with mtime 1708272005.9294243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\log.py first seen with mtime 1708272003.666479 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\compatibility\django_4_0.py first seen with mtime 1708272005.6391394 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\jwk.py first seen with mtime 1708499979.9975073 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\api_jws.py first seen with mtime 1708274995.6326191 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\__init__.py first seen with mtime 1708272005.9450529 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\utils.py first seen with mtime 1708272005.8287628 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\__init__.py first seen with mtime 1708272005.7701113 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\md.cp311-win_amd64.pyd first seen with mtime 1708274996.0117288 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\base.py first seen with mtime 1708272005.6432004 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\special.py first seen with mtime 1708272005.77612 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\cli.py first seen with mtime 1708272002.366943 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_base_connection.py first seen with mtime 1708274995.26246 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\__init__.py first seen with mtime 1708272002.828243 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\contextvars.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\__init__.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\keycloak_uma.py first seen with mtime 1708499980.1536732 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\base.py first seen with mtime 1708272005.9466176 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\thread.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\base.py first seen with mtime 1708272005.7711098 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\window.py first seen with mtime 1708272005.8132446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\utils.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\asyncio.py first seen with mtime 1708272005.9523706 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\__init__.py first seen with mtime 1708272005.9082203 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\adapter.py first seen with mtime 1709531170.2215056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\views.py first seen with mtime 1708272004.1244812 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\termcolors.py first seen with mtime 1708272005.9741254 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\copyreg.py first seen with mtime 1694771047.2529056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\lookups.py first seen with mtime 1708272005.7942028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\__init__.py first seen with mtime 1708272005.8092456 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\exceptions.py first seen with mtime 1708272005.9483032 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\__init__.py first seen with mtime 1694771054.1879306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\others.py first seen with mtime 1708272002.3745146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\__init__.py first seen with mtime 1708272005.9324858 +File C:\Users\fhjj3\djangoProject1\users\views.py first seen with mtime 1710937004.8144107 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\backends\__init__.py first seen with mtime 1708272005.9287443 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\Image.py first seen with mtime 1708273276.507439 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pickle.py first seen with mtime 1707383306.4759216 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\gb2312prober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\exceptions.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\formsets.py first seen with mtime 1708272005.8237164 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\cookie.py first seen with mtime 1708272005.909127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_binary.py first seen with mtime 1708273276.5534997 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\connection.py first seen with mtime 1708272005.9553733 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\__init__.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\urls.py first seen with mtime 1709531170.2195077 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_util.py first seen with mtime 1708273276.5861533 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\base.py first seen with mtime 1708272005.934484 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\backends\base.py first seen with mtime 1708272005.9294243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\__init__.py first seen with mtime 1708272005.6401398 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\idna.py first seen with mtime 1694771047.8614492 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ctypes\__init__.py first seen with mtime 1694771047.2529056 +File C:\Users\fhjj3\djangoProject1\main\apps.py first seen with mtime 1708321694.9898424 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\openssl\binding.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\app_settings.py first seen with mtime 1709531170.2225068 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\tokens.py first seen with mtime 1708272002.376558 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\templatetags\account.py first seen with mtime 1709531170.2356057 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_parseaddr.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\__init__.py first seen with mtime 1709531170.2215056 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\__init__.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\ssltransport.py first seen with mtime 1708274995.2841237 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\math.py first seen with mtime 1708272005.811243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\management\__init__.py first seen with mtime 1708272004.276103 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\__init__.py first seen with mtime 1708272005.4187796 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\ExifTags.py first seen with mtime 1708273276.495905 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\csrf.py first seen with mtime 1708272005.9146912 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\base.py first seen with mtime 1708272005.6401398 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\asgi.py first seen with mtime 1708272005.6532726 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\commands\runserver.py first seen with mtime 1708272005.67612 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\utils.py first seen with mtime 1708272005.9284248 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\models.py first seen with mtime 1708272003.1550274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\modes.py first seen with mtime 1708777045.4498503 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\html\parser.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\charsetprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\templatetags\__init__.py first seen with mtime 1709531170.2346053 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\fields.py first seen with mtime 1708272004.1204357 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\protocols.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\defaultfilters.py first seen with mtime 1708272005.9213128 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\__init__.py first seen with mtime 1708272005.6248312 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\__init__.py first seen with mtime 1708499979.0333035 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\socketserver.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\dates.py first seen with mtime 1708272005.9603825 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\requests.py first seen with mtime 1708272005.42378 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\boundfield.py first seen with mtime 1708272005.8227143 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\cp949prober.py first seen with mtime 1708274930.8177454 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\token.py first seen with mtime 1694771061.0191505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\_asymmetric.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\ipv6.py first seen with mtime 1708272005.970064 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_uuid.pyd first seen with mtime 1707383301.6963732 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\exceptions.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\__init__.py first seen with mtime 1708272002.3725145 +File C:\Users\fhjj3\djangoProject1\orders\views.py first seen with mtime 1710851529.9515321 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\adapters\ssl.py first seen with mtime 1708499979.050304 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\TiffTags.py first seen with mtime 1708273276.5459802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\jwt.py first seen with mtime 1708499979.998511 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\logging\handlers.py first seen with mtime 1701795056.0938542 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\indent_text.py first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\url.py first seen with mtime 1708274995.2866259 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\commands\__init__.py first seen with mtime 1708272005.66697 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\widgets.py first seen with mtime 1708272005.8288138 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\signals.py first seen with mtime 1708272005.7982292 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\bisect.py first seen with mtime 1694771047.2212741 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\header.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_markupbase.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\__init__.py first seen with mtime 1708568721.8394227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\version.py first seen with mtime 1708274930.8414392 +File C:\Users\fhjj3\djangoProject1\orders\admin.py first seen with mtime 1708321695.0527942 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\simple_server.py first seen with mtime 1694771061.082249 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\enum.py first seen with mtime 1701795055.2996204 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\context.py first seen with mtime 1709531170.2448273 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\response.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\duration.py first seen with mtime 1708272005.963439 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\unicodedata.pyd first seen with mtime 1707383301.623886 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\mixins.py first seen with mtime 1708272005.8122475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\locmem.py first seen with mtime 1708272005.6295135 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\statistics.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\right_margin.py first seen with mtime 1708272002.3755589 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\temp.py first seen with mtime 1708272005.646708 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\models.py first seen with mtime 1709531170.2175584 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\utils.py first seen with mtime 1708274996.0157313 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\ddl_references.py first seen with mtime 1708272005.6918366 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\views\autocomplete.py first seen with mtime 1708272003.6674843 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\debug.py first seen with mtime 1708272005.9852686 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\__version__.py first seen with mtime 1708274996.4873824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_request_methods.py first seen with mtime 1708274995.2650778 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\transports.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\mbcssm.py first seen with mtime 1708274930.8384342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\views\__init__.py first seen with mtime 1708272003.666479 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\api.py first seen with mtime 1708274996.0088563 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\dispatch\dispatcher.py first seen with mtime 1708272005.8207145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\utils.py first seen with mtime 1708272003.1601522 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\comparison.py first seen with mtime 1708272005.8092456 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_socket.pyd first seen with mtime 1707383301.6771228 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zoneinfo\__init__.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\urls.py first seen with mtime 1708272005.6381364 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\cache.py first seen with mtime 1708272005.954375 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\sql.py first seen with mtime 1708272002.369514 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\introspection.py first seen with mtime 1708272005.6973505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\defaults.py first seen with mtime 1708272005.9852686 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\__init__.py first seen with mtime 1694771061.2998595 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_legacy.py first seen with mtime 1694771051.6745913 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_compiler.py first seen with mtime 1701795065.2286446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\status_codes.py first seen with mtime 1708274996.4963977 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\server.py first seen with mtime 1694771050.6586244 +File C:\Users\fhjj3\djangoProject1\cart\admin.py first seen with mtime 1708321694.9689012 +File C:\Users\fhjj3\djangoProject1\cart\forms.py first seen with mtime 1708321694.969901 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\l10n.py first seen with mtime 1708272005.9379992 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\signing.py first seen with mtime 1708272005.622832 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\__init__.py first seen with mtime 1708272005.987488 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\auth.py first seen with mtime 1708274996.4903975 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\query.py first seen with mtime 1708272005.7972238 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_compat_pickle.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\openssl\__init__.py first seen with mtime 1708777045.4292822 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\proxy.py first seen with mtime 1708272005.8052292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\fields.py first seen with mtime 1708274995.2690988 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\deprecation.py first seen with mtime 1708499979.9741237 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\translation\__init__.py first seen with mtime 1708272005.979205 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\ssl_match_hostname.py first seen with mtime 1708274995.283127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\mbcharsetprober.py first seen with mtime 1708274930.836918 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\client.py first seen with mtime 1708272005.7480016 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\hashable.py first seen with mtime 1708272005.9664416 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\weakref.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\common.py first seen with mtime 1708272005.913129 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ssl.py first seen with mtime 1707383316.687333 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\cp1251.py first seen with mtime 1694771047.8464406 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_header_value_parser.py first seen with mtime 1707383302.0039115 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\decimal.py first seen with mtime 1694771047.2685764 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_policybase.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\models.py first seen with mtime 1708272003.9086945 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_constants.py first seen with mtime 1694771054.1879306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\hebrewprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\apps.py first seen with mtime 1708272003.151022 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\shortcuts.py first seen with mtime 1708272005.4247823 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\runners.py first seen with mtime 1694771047.1738276 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\errors.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\__init__.py first seen with mtime 1708274995.2791188 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\keywrap.py first seen with mtime 1708777045.4391272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\numberformat.py first seen with mtime 1708272005.973064 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\connection.py first seen with mtime 1708274995.2801187 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\reauthentication.py first seen with mtime 1709531170.2275083 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\scanner.py first seen with mtime 1694771051.705838 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_parser.py first seen with mtime 1701795065.2326446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\retry.py first seen with mtime 1708274995.2821188 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\subprocess.py first seen with mtime 1707383316.687333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\app_settings.py first seen with mtime 1709531170.2159934 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_zoneinfo.pyd first seen with mtime 1707383301.722057 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\quoprimime.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_hashlib.pyd first seen with mtime 1707383301.6547873 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_subprocess.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\context.py first seen with mtime 1708272005.92031 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\windows_events.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\__init__.py first seen with mtime 1708499979.0523086 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\random.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_imaging.cp311-win_amd64.pyd first seen with mtime 1708273276.565876 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\enums.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\json.py first seen with mtime 1708272005.6848128 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\state.py first seen with mtime 1708272005.7671013 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\operations.py first seen with mtime 1708272005.7520046 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\x25519.py first seen with mtime 1708777045.4418166 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\headers.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\_distutils_hack\__init__.py first seen with mtime 1708271989.445068 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\where.py first seen with mtime 1708272005.8197153 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\__init__.py first seen with mtime 1708274930.8115854 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\__init__.py first seen with mtime 1708272005.6888342 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\utils.py first seen with mtime 1708272005.768108 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\lock.py first seen with mtime 1708777045.1553824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\padding.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\version.py first seen with mtime 1708272005.9783292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\tokens.py first seen with mtime 1708272003.9117756 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\widgets.py first seen with mtime 1708272003.1601522 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_ssl.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\main\admin.py first seen with mtime 1708321694.9888315 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\bz2.py first seen with mtime 1694771047.2212741 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\inspect.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\caches.py first seen with mtime 1708272005.6325755 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\csrf.py first seen with mtime 1708272005.9842646 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\aliases.py first seen with mtime 1694771047.8427224 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\forms.py first seen with mtime 1708272005.8237164 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\charsetgroupprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\utils\__init__.py first seen with mtime 1708499979.071306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\dsa.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\checks.py first seen with mtime 1708272005.6091714 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\base_user.py first seen with mtime 1708272003.902382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\signals.py first seen with mtime 1708272005.6218283 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\mail\utils.py first seen with mtime 1708272005.6573324 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\dataclasses.py first seen with mtime 1694771047.2685764 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\mbcsgroupprober.py first seen with mtime 1708274930.837428 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\signal.py first seen with mtime 1707383306.5116594 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\debug.py first seen with mtime 1708272005.9905515 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\shutil.py first seen with mtime 1707383306.5116594 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\uploadedfile.py first seen with mtime 1708272005.6472125 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\sbcharsetprober.py first seen with mtime 1708274930.8394392 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\logging\__init__.py first seen with mtime 1694771051.7995784 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_collections.py first seen with mtime 1708274995.2650778 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_lzma.pyd first seen with mtime 1707383301.6592948 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\timezone.py first seen with mtime 1708272005.9771414 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\apps.py first seen with mtime 1708272005.1753852 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\fractions.py first seen with mtime 1707383304.114561 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\calendar.py first seen with mtime 1707383301.9413548 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\__init__.py first seen with mtime 1708272005.6071646 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\detail.py first seen with mtime 1708272005.9956405 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\adapters\__init__.py first seen with mtime 1708499979.039306 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\message.py first seen with mtime 1707383301.9727523 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\operations\fields.py first seen with mtime 1708272005.7721107 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\urllib\request.py first seen with mtime 1694771061.0664566 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\sqlite3\__init__.py first seen with mtime 1694771060.972146 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_sqlite3.pyd first seen with mtime 1707383301.6771228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\_oid.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\timesince.py first seen with mtime 1708272005.9761298 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_itertools.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\ec.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\__init__.py first seen with mtime 1708499980.1475525 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\decorators.py first seen with mtime 1709531170.2245045 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\views.py first seen with mtime 1709531170.2296054 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\wsgi.py first seen with mtime 1708272005.623829 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\__init__.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\widont.py first seen with mtime 1708568721.9485924 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\cookies.py first seen with mtime 1708274996.4914002 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\util.py first seen with mtime 1708274995.2866259 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\ciphers\aead.py first seen with mtime 1708777045.4488218 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\packages.py first seen with mtime 1708274996.4953983 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\__init__.py first seen with mtime 1708272002.365438 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\ssh.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\utils.py first seen with mtime 1708272005.648272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\openid_connection.py first seen with mtime 1708499980.1536732 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\constant_time.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\rsa.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\i18n.py first seen with mtime 1708272005.9862702 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\filesystem.py first seen with mtime 1708272005.9355414 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\adapters.py first seen with mtime 1708274996.4883916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\files.py first seen with mtime 1708272005.6335773 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\codingstatemachine.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\__init__.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\tz.py first seen with mtime 1708272005.9399948 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\utils.py first seen with mtime 1708272005.9503145 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\__init__.py first seen with mtime 1694771047.8770776 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langbulgarianmodel.py first seen with mtime 1708274930.8297043 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\__init__.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loaders\app_directories.py first seen with mtime 1708272005.9334843 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\_abc.py first seen with mtime 1694771051.6902146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\utils.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\__init__.py first seen with mtime 1708272005.631513 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\__init__.py first seen with mtime 1708272004.8500779 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\__init__.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\base.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\providers\__init__.py first seen with mtime 1709531170.3396528 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\__init__.py first seen with mtime 1708274995.6293552 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\datetime.py first seen with mtime 1708272005.811243 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\cache.py first seen with mtime 1708272005.913129 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ctypes\wintypes.py first seen with mtime 1694771047.2529056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\dateformat.py first seen with mtime 1708272005.9583776 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euckrfreq.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\manager.py first seen with mtime 1708272005.7952182 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\format_helpers.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\base.py first seen with mtime 1708272004.8500779 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\hashers.py first seen with mtime 1708272003.9053814 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\big5freq.py first seen with mtime 1708274930.8115854 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\middleware.py first seen with mtime 1708272003.9068947 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\_version.py first seen with mtime 1708499980.1465697 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\utils\user_agent.py first seen with mtime 1708499979.0783052 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\jisfreq.py first seen with mtime 1708274930.827044 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\__init__.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\models.py first seen with mtime 1708568721.8394227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\encoding.py first seen with mtime 1708272005.963439 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\core.py first seen with mtime 1708274995.8301811 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\backends.py first seen with mtime 1708272003.9013317 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\__init__.py first seen with mtime 1708274995.8286822 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langthaimodel.py first seen with mtime 1708274930.834695 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\exceptions.py first seen with mtime 1708274995.6336176 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\constants.py first seen with mtime 1707383301.768935 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\options.py first seen with mtime 1708272003.1571245 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\sync.py first seen with mtime 1708272002.7001462 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pprint.py first seen with mtime 1707383306.4759216 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\admin.py first seen with mtime 1708272004.1187294 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\forms.py first seen with mtime 1708272004.1214797 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\sqlite3\dbapi2.py first seen with mtime 1694771060.972146 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\connectionpool.py first seen with mtime 1708274995.2680905 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\__init__.py first seen with mtime 1708272005.9503145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\utils.py first seen with mtime 1709531170.2296054 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\oid.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\users\admin.py first seen with mtime 1708506683.991898 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\headerregistry.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\jpcntx.py first seen with mtime 1708274930.8286877 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\_internal_utils.py first seen with mtime 1708274996.4873824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\decorators.py first seen with mtime 1708272003.1520252 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\__init__.py first seen with mtime 1708272005.8132446 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_text.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\langgreekmodel.py first seen with mtime 1708274930.8307028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\constraints.py first seen with mtime 1708272005.7892036 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\csrf.py first seen with mtime 1708272005.9895475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\utils.py first seen with mtime 1708272005.6248312 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\indexes.py first seen with mtime 1708272005.7922037 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\etree\ElementTree.py first seen with mtime 1707383316.7818136 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\aead.py first seen with mtime 1708777045.3788285 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\dis.py first seen with mtime 1701795055.2965775 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\enums.py first seen with mtime 1708272005.7912042 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\multipart\__init__.py first seen with mtime 1708499979.064306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\utf1632prober.py first seen with mtime 1708274930.8414392 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\text.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\http.py first seen with mtime 1708272005.9156952 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\validators.py first seen with mtime 1708272005.623829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\__init__.py first seen with mtime 1708272005.780171 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\filter_stack.py first seen with mtime 1708272002.3715158 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\translation.py first seen with mtime 1708272005.6370807 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\pyexpat.pyd first seen with mtime 1707383301.5328918 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\__init__.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\current_thread_executor.py first seen with mtime 1708272002.6966326 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\keywords.py first seen with mtime 1708272002.3684514 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\multipartparser.py first seen with mtime 1708272005.9101334 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\contextlib.py first seen with mtime 1701795055.2944214 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\backends\__init__.py first seen with mtime 1708272005.1794763 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\__init__.py first seen with mtime 1708272004.8445117 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\backend.py first seen with mtime 1708777045.3788285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\base.py first seen with mtime 1708272005.7871947 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\mimetypes.py first seen with mtime 1694771054.0941894 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\structures.py first seen with mtime 1708274996.4963977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\handlers.py first seen with mtime 1708272005.6101708 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\model.py first seen with mtime 1708777045.1553824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\apps.py first seen with mtime 1709531170.2235053 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\cd.py first seen with mtime 1708274996.0097282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\package_data.py first seen with mtime 1708274995.8331878 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\apps.py first seen with mtime 1708272005.4207804 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\backends\base.py first seen with mtime 1708272005.180475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\html.py first seen with mtime 1708272005.967452 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\converters.py first seen with mtime 1708272005.947127 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_compression.py first seen with mtime 1694771061.3159857 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_bz2.pyd first seen with mtime 1707383301.6278477 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\http\request.py first seen with mtime 1708272005.9111333 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\tasks.py first seen with mtime 1696309035.177473 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\client.py first seen with mtime 1708272005.6948347 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_common.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\api_jwk.py first seen with mtime 1708274995.631617 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\cache.py first seen with mtime 1708272005.9369888 +File C:\Users\fhjj3\djangoProject1\orders\forms.py first seen with mtime 1708321695.0544572 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\backends\openssl\ciphers.py first seen with mtime 1708777045.3788285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\__init__.py first seen with mtime 1708272005.6634598 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\related_lookups.py first seen with mtime 1708272005.807238 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\query_utils.py first seen with mtime 1708272005.7982292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\decorators.py first seen with mtime 1709531170.2159934 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\edit.py first seen with mtime 1708272005.9961476 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\macromanprober.py first seen with mtime 1708274930.836918 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\wsgi.py first seen with mtime 1708272005.6553187 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\metadata\_adapters.py first seen with mtime 1694771051.6589673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\async_checks.py first seen with mtime 1708272005.631513 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\signals.py first seen with mtime 1709531170.2275083 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\syntax_color.py first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\views\main.py first seen with mtime 1708272003.6686103 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\management\base.py first seen with mtime 1708272005.6634598 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\__init__.py first seen with mtime 1708777045.3788285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\verification.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\jwk_set_cache.py first seen with mtime 1708274995.6356173 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\api.py first seen with mtime 1708777045.149196 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\fnmatch.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\password_validation.py first seen with mtime 1708272003.9097013 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\legacy.py first seen with mtime 1708274996.0107274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\executor.py first seen with mtime 1708272005.758418 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\mixins.py first seen with mtime 1708272005.8042297 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\shortcuts.py first seen with mtime 1708272002.829219 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\__init__.py first seen with mtime 1708272005.7454593 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\quopri.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\response.py first seen with mtime 1708274995.2811196 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\middleware.py first seen with mtime 1708272004.8480244 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\queue.py first seen with mtime 1694771054.1723063 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\reduction.py first seen with mtime 1694771054.1098123 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\guess.py first seen with mtime 1708499979.0543084 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\apps.py first seen with mtime 1708568721.8394227 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\copy.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\checks.py first seen with mtime 1708272004.1204357 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\_base.py first seen with mtime 1694771047.2371235 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\features.py first seen with mtime 1708272005.750004 +File C:\Users\fhjj3\djangoProject1\djangoProject1\settings.py first seen with mtime 1710937268.637586 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\base.py first seen with mtime 1708272005.7469933 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\creation.py first seen with mtime 1708272005.6948347 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\openssl\_conditional.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\operations.py first seen with mtime 1708272005.6973505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\__init__.py first seen with mtime 1708272005.6908345 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\context.py first seen with mtime 1694771054.1098123 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\models.py first seen with mtime 1708274996.4943979 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\deconstruct.py first seen with mtime 1708272005.9603825 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\module_loading.py first seen with mtime 1708272005.972063 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\util.py first seen with mtime 1694771061.082249 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zipfile.py first seen with mtime 1707383316.8131373 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ipaddress.py first seen with mtime 1701795056.0654914 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\__init__.py first seen with mtime 1708272004.1174705 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\admin\__init__.py first seen with mtime 1708568721.8475149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\migration.py first seen with mtime 1708272005.7620504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\uploadhandler.py first seen with mtime 1708272005.648272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templatetags\__init__.py first seen with mtime 1709531170.7335496 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\_encoded_words.py first seen with mtime 1694771047.8149602 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loader.py first seen with mtime 1708272005.9263134 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\compatibility\__init__.py first seen with mtime 1708272005.6381364 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\common.py first seen with mtime 1708272005.9895475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\decorators.py first seen with mtime 1708272003.9043806 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\dh.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\safestring.py first seen with mtime 1708272005.9741254 +File C:\Users\fhjj3\djangoProject1\users\__init__.py first seen with mtime 1708506684.0176537 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\windows_utils.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\ImageMode.py first seen with mtime 1708273276.516985 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\pkcs12.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\codingstatemachinedict.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\sites.py first seen with mtime 1708272003.1582563 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\sessions.py first seen with mtime 1708274996.4953983 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\stringprep.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\johabfreq.py first seen with mtime 1708274930.82756 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\checks.py first seen with mtime 1708272003.1520252 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\validation.py first seen with mtime 1708272005.699519 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\_cffi_backend.cp311-win_amd64.pyd first seen with mtime 1708777045.1399848 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_elementtree.pyd first seen with mtime 1707383301.6540148 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ctypes\_endian.py first seen with mtime 1707383301.9413548 +File C:\Users\fhjj3\djangoProject1\cart\models.py first seen with mtime 1708321694.970901 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\padding.py first seen with mtime 1708777045.4391272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\admin_modify.py first seen with mtime 1708272003.6644244 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\encodings\utf_8.py first seen with mtime 1694771047.8770776 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\utils.py first seen with mtime 1709531170.220505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\streaming_iterator.py first seen with mtime 1708499979.0373075 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\selector_events.py first seen with mtime 1707383301.7845829 +File C:\Users\fhjj3\djangoProject1\main\urls.py first seen with mtime 1710936867.3997936 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\selectors.py first seen with mtime 1696309058.429445 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\proactor_events.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\finders.py first seen with mtime 1708272005.6091714 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\packaging\__init__.py first seen with mtime 1708499977.8906622 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\dates.py first seen with mtime 1708272005.9946315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\sbcsgroupprober.py first seen with mtime 1708274930.8394392 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\decoder.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\constant.py first seen with mtime 1708274996.0107274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\_version.py first seen with mtime 1708274995.2665815 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\__init__.py first seen with mtime 1708272005.9121313 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\parsers\expat.py first seen with mtime 1694771061.284227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\managers.py first seen with mtime 1709531170.225505 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\lzma.py first seen with mtime 1694771054.0941894 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\__init__.py first seen with mtime 1708275928.9383018 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\operator.py first seen with mtime 1694771054.1410599 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\utils.py first seen with mtime 1708272005.6908345 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\creation.py first seen with mtime 1708272005.7490022 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\autoreload.py first seen with mtime 1708272005.9533725 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\grouping.py first seen with mtime 1708272002.3715158 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\encoders.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\pkgutil.py first seen with mtime 1694771054.1566823 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_futures.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\defusedxml\ElementTree.py first seen with mtime 1709531169.4560318 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\parsers\__init__.py first seen with mtime 1694771061.284227 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\templates.py first seen with mtime 1708272005.6370807 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euctwfreq.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\_cipheralgorithm.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\move.py first seen with mtime 1708272005.6452036 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\__init__.py first seen with mtime 1708499979.994482 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\select.pyd first seen with mtime 1707383301.548544 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\__init__.py first seen with mtime 1708272005.6197722 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\wsgiref\handlers.py first seen with mtime 1694771061.082249 +File C:\Users\fhjj3\djangoProject1\orders\__init__.py first seen with mtime 1708321695.0507934 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\_serialization.py first seen with mtime 1708777045.433604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\locks.py first seen with mtime 1708272005.6452036 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\asgiref\__init__.py first seen with mtime 1708272002.6950648 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\resolvers.py first seen with mtime 1708272005.94931 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\defusedxml\common.py first seen with mtime 1709531169.463774 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\cache\backends\filebased.py first seen with mtime 1708272005.6285076 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\__init__.py first seen with mtime 1708274996.485356 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\tokens.py first seen with mtime 1708272002.369514 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\translation\trans_real.py first seen with mtime 1708272005.9822087 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\apps\config.py first seen with mtime 1708272002.8312175 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_decimal.pyd first seen with mtime 1707383301.643485 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\generated.py first seen with mtime 1708272005.803233 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\packaging\version.py first seen with mtime 1708499977.9042609 +File C:\Users\fhjj3\djangoProject1\manage.py first seen with mtime 1708321695.0458086 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\memory.py first seen with mtime 1708272005.6512735 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\security\csrf.py first seen with mtime 1708272005.6411397 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\abc.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\keycloak_admin.py first seen with mtime 1708499980.151623 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\queues.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\engine.py first seen with mtime 1708272005.923311 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\decorators.py first seen with mtime 1708272005.9613807 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\multipart\decoder.py first seen with mtime 1708499979.065306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\algorithms.py first seen with mtime 1708274995.6306217 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\related_descriptors.py first seen with mtime 1708272005.8067338 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\schema.py first seen with mtime 1708272005.6985092 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\readers.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\__init__.py first seen with mtime 1708274995.2614622 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\wait.py first seen with mtime 1708274995.28814 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\aligned_indent.py first seen with mtime 1708272002.373515 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_ctypes.pyd first seen with mtime 1707383301.6278477 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\connection.py first seen with mtime 1708274995.2665815 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\gb2312freq.py first seen with mtime 1708274930.8177454 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\gettext.py first seen with mtime 1701795055.3006198 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\loader_tags.py first seen with mtime 1708272005.9263134 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\tempfile.py first seen with mtime 1707383316.7030134 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\multipart.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\csv.py first seen with mtime 1694771047.2529056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\crypto.py first seen with mtime 1708272005.9563732 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\ed25519.py first seen with mtime 1708777045.4418166 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_itertools.py first seen with mtime 1694771051.6745913 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\parser.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\exceptions.py first seen with mtime 1708274996.4923987 +File C:\Users\fhjj3\djangoProject1\cart\__init__.py first seen with mtime 1708321694.9645002 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\output.py first seen with mtime 1708272002.3745146 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\nturl2path.py first seen with mtime 1694771054.1410599 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\expressions.py first seen with mtime 1708272005.7922037 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\__init__.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\log.py first seen with mtime 1708272005.971064 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\database.py first seen with mtime 1708272005.6335773 +File C:\Users\fhjj3\djangoProject1\main\models.py first seen with mtime 1708592607.195247 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\ratelimit.py first seen with mtime 1709531170.2458272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\management\__init__.py first seen with mtime 1708272005.6132233 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\static.py first seen with mtime 1708272005.9389977 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\json\encoder.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\models.py first seen with mtime 1708272005.824716 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\request.py first seen with mtime 1708274995.2811196 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\admin.py first seen with mtime 1709531170.2225068 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\forms.py first seen with mtime 1709531170.225505 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\resultdict.py first seen with mtime 1708274930.8384342 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\utils.py first seen with mtime 1707383301.98824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\hmac.py first seen with mtime 1708777045.4391272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\role.py first seen with mtime 1708499980.1496224 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\admin.py first seen with mtime 1708272005.4197824 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\defaulttags.py first seen with mtime 1708272005.9223137 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\utils.py first seen with mtime 1708274995.6385725 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\big5prober.py first seen with mtime 1708274930.8166883 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\helpers.py first seen with mtime 1708272003.1550274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\__init__.py first seen with mtime 1708272002.3705149 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\reverse_related.py first seen with mtime 1708272005.808248 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\trsock.py first seen with mtime 1694771047.1895287 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\base_session.py first seen with mtime 1708272005.1753852 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\python.py first seen with mtime 1708272005.686318 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\cookies.py first seen with mtime 1694771050.6586244 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\graphlib.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\client.py first seen with mtime 1707383304.1459494 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\compat.py first seen with mtime 1708274996.4914002 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\locks.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\ed448.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\socialaccount\__init__.py first seen with mtime 1709531170.326594 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\security.py first seen with mtime 1708272005.916202 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\engine\statement_splitter.py first seen with mtime 1708272002.3725145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\urls\conf.py first seen with mtime 1708272005.947127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\functions\text.py first seen with mtime 1708272005.8132446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\hashes.py first seen with mtime 1708777045.4386127 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\__about__.py first seen with mtime 1708777045.3702962 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\exceptions.py first seen with mtime 1708272002.367446 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\dateparse.py first seen with mtime 1708272005.9593828 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\apps.py first seen with mtime 1708272003.9003315 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\internal\http.py first seen with mtime 1709531170.2458272 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\subqueries.py first seen with mtime 1708272005.8187182 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\PIL\_typing.py first seen with mtime 1708273276.5851386 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\renderers.py first seen with mtime 1708272005.8272424 +File C:\Users\fhjj3\djangoProject1\users\urls.py first seen with mtime 1710755748.2748985 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\datetime.py first seen with mtime 1696309058.3992383 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\schema.py first seen with mtime 1708272005.7530026 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\templatetags\__init__.py first seen with mtime 1708272005.9369888 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\euctwprober.py first seen with mtime 1708274930.8177454 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\staggered.py first seen with mtime 1694771047.1895287 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\glob.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\coroutines.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\text.py first seen with mtime 1708272005.9751296 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\socket.py first seen with mtime 1707383316.687333 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\dispatch\__init__.py first seen with mtime 1708272005.8197153 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\filepost.py first seen with mtime 1708274995.2700982 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\__init__.py first seen with mtime 1709531170.2438269 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\__init__.py first seen with mtime 1708272003.1490226 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\deprecation.py first seen with mtime 1708272005.9623787 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\certs.py first seen with mtime 1708274996.4903975 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\constants.py first seen with mtime 1708272005.8162813 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\ast.py first seen with mtime 1696309035.174228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\_compat.py first seen with mtime 1708499979.0343025 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\signals.py first seen with mtime 1708272003.9107015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\eucjpprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\certificate_transparency.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\files.py first seen with mtime 1708272005.802248 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\_weakrefset.py first seen with mtime 1694771061.3159857 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests\hooks.py first seen with mtime 1708274996.4934087 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\typing.py first seen with mtime 1707383316.7504952 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\certifi\core.py first seen with mtime 1708274996.1923244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\certifi\__init__.py first seen with mtime 1708274996.1883242 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\name.py first seen with mtime 1708777045.4603634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\__init__.py first seen with mtime 1708272005.801238 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\urls_patterns.py first seen with mtime 1708499980.1557024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\_virtualenv.py first seen with mtime 1708271985.168512 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\__init__.py first seen with mtime 1708272005.6492734 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\static.py first seen with mtime 1708272005.9862702 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\escprober.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jose\jws.py first seen with mtime 1708499979.9975073 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\constants.py first seen with mtime 1708272005.7882037 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\x448.py first seen with mtime 1708777045.4418166 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\exceptions.py first seen with mtime 1709531170.2448273 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\list.py first seen with mtime 1708272005.9971554 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\sjisprober.py first seen with mtime 1708274930.8404393 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\sqlite3\_functions.py first seen with mtime 1708272005.7464592 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\deletion.py first seen with mtime 1708272005.7902057 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\environ\fileaware_mapping.py first seen with mtime 1708275928.9413319 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\locale.py first seen with mtime 1701795056.0664911 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\forms\__init__.py first seen with mtime 1708272005.8217156 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\difflib.py first seen with mtime 1694771047.2685764 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\admin_urls.py first seen with mtime 1708272003.665425 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\apps\registry.py first seen with mtime 1708272002.8312175 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\logging\config.py first seen with mtime 1701795056.0674913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\images.py first seen with mtime 1708272005.6442056 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\base.py first seen with mtime 1708272005.6502733 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\proxy.py first seen with mtime 1708274995.2801187 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\library.py first seen with mtime 1708272005.925385 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\utils.py first seen with mtime 1708272005.7992294 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\authentication.py first seen with mtime 1709531170.2245045 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\constants.py first seen with mtime 1708272004.8465116 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\response.py first seen with mtime 1708272005.9274178 +File C:\Users\fhjj3\djangoProject1\djangoProject1\__init__.py first seen with mtime 1708321694.9744332 +File C:\Users\fhjj3\djangoProject1\orders\urls.py first seen with mtime 1708321695.0626125 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\__init__.py first seen with mtime 1708499980.1455538 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\version.py first seen with mtime 1708274996.0157313 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\connection.py first seen with mtime 1708499980.1496224 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\escsm.py first seen with mtime 1708274930.8177454 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\decorators\http.py first seen with mtime 1708272005.9925535 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\multiprocessing\__init__.py first seen with mtime 1694771054.1098123 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\asymmetric\__init__.py first seen with mtime 1708777045.4416673 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\utils.py first seen with mtime 1708272004.8490758 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\__init__.py first seen with mtime 1708272005.6938355 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\__init__.py first seen with mtime 1708272005.652274 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\models.py first seen with mtime 1708272004.1224792 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\datastructures.py first seen with mtime 1708272005.9572842 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\iterators.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\zoneinfo\_tzpath.py first seen with mtime 1694771061.2998595 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\api.py first seen with mtime 1708272004.8455117 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\util\timeout.py first seen with mtime 1708274995.28512 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\__init__.py first seen with mtime 1708272005.983209 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\urllib3\contrib\__init__.py first seen with mtime 1708274995.274096 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\features.py first seen with mtime 1708272005.69634 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\base\base.py first seen with mtime 1708272005.6948347 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\handlers\base.py first seen with mtime 1708272005.6532726 +File C:\Users\fhjj3\djangoProject1\users\models.py first seen with mtime 1708506683.991898 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\datastructures.py first seen with mtime 1708272005.8162813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\checks.py first seen with mtime 1708272005.4207804 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\highlighting.py first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\functional.py first seen with mtime 1708272005.9654408 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\checks\model_checks.py first seen with mtime 1708272005.6355772 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\string.py first seen with mtime 1694771060.9877644 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\threading.py first seen with mtime 1707383316.7030134 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\exceptions.py first seen with mtime 1708499980.150623 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\__init__.py first seen with mtime 1708272002.8322785 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\types.py first seen with mtime 1708274995.6375577 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\message.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\auth\_digest_auth_compat.py first seen with mtime 1708499979.0533097 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\handler.py first seen with mtime 1708272005.6512735 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\models.py first seen with mtime 1708274996.0137274 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\uuid.py first seen with mtime 1694771061.0664566 +File C:\Users\fhjj3\djangoProject1\cart\urls.py first seen with mtime 1708321694.9729092 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\re\_casefix.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\__init__.py first seen with mtime 1708272003.662427 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\uma_permissions.py first seen with mtime 1708499980.154704 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\xml\etree\__init__.py first seen with mtime 1694771061.268605 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\__init__.py first seen with mtime 1708272005.6826892 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\permission.py first seen with mtime 1708499980.1485543 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\urls\static.py first seen with mtime 1708272003.148023 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\base.py first seen with mtime 1708272003.665425 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\__init__.py first seen with mtime 1708272005.9172108 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\choices.py first seen with mtime 1708272005.9553733 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\idna\intranges.py first seen with mtime 1708274995.8321874 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\x509\general_name.py first seen with mtime 1708777045.4603634 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\traceback.py first seen with mtime 1707383316.7504952 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\importlib\resources\_adapters.py first seen with mtime 1694771051.6745913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\serializers\base.py first seen with mtime 1708272005.6836898 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\DLLs\_asyncio.pyd first seen with mtime 1707383301.6278477 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\apps.py first seen with mtime 1708272004.8455117 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py first seen with mtime 1708272005.9192493 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\gzip.py first seen with mtime 1694771050.6429799 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\secrets.py first seen with mtime 1694771054.1879306 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\requests_toolbelt\adapters\source.py first seen with mtime 1708499979.0463047 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\reprlib.py first seen with mtime 1694771054.1723063 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\files\storage\mixins.py first seen with mtime 1708272005.652274 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\http\cookiejar.py first seen with mtime 1694771050.6586244 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\keycloak\authorization\policy.py first seen with mtime 1708499980.1486204 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\types.py first seen with mtime 1694771061.034897 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\keyword.py first seen with mtime 1694771051.705838 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\utils\regex_helper.py first seen with mtime 1708272005.973064 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\core\internal\__init__.py first seen with mtime 1709531170.2458272 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\__init__.py first seen with mtime 1707383295.9510689 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\html\__init__.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\backends\utils.py first seen with mtime 1708272005.692837 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\argparse.py first seen with mtime 1707383301.753335 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\johabprober.py first seen with mtime 1708274930.8285773 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\templatetags\admin_list.py first seen with mtime 1708272003.6634247 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\core\servers\__init__.py first seen with mtime 1708272005.6878285 +File C:\Users\fhjj3\djangoProject1\orders\models.py first seen with mtime 1708592720.355561 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\locale\__init__.py first seen with mtime 1708272002.8386085 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\heapq.py first seen with mtime 1694771050.6429799 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\management\__init__.py first seen with mtime 1708272004.1043391 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\management\commands\runserver.py first seen with mtime 1708272005.6172554 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\exceptions.py first seen with mtime 1708272005.924315 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\base_tasks.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\urls\__init__.py first seen with mtime 1708272003.1470168 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templatetags\__init__.py first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\jwt\jwks_client.py first seen with mtime 1708274995.6366165 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\generator.py first seen with mtime 1694771047.7993367 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\mime\base.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\filters\reindent.py first seen with mtime 1708272002.3745146 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\base64mime.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\views.py first seen with mtime 1708272005.6132233 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\validators.py first seen with mtime 1708272003.9127786 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\charset.py first seen with mtime 1694771047.7993367 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\__init__.py first seen with mtime 1708777045.3758225 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\__init__.py first seen with mtime 1708272005.9935522 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\__future__.py first seen with mtime 1694771061.3159857 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\email\policy.py first seen with mtime 1707383301.9727523 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\query.py first seen with mtime 1708272005.8172884 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\taskgroups.py first seen with mtime 1701795055.2188418 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\models.py first seen with mtime 1708272005.1784742 +File C:\Users\fhjj3\djangoProject1\cart\views.py first seen with mtime 1708321694.9729092 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\bindings\_rust.pyd first seen with mtime 1708777045.4169433 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\apps\__init__.py first seen with mtime 1708272002.8302183 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\fields\related.py first seen with mtime 1708272005.8052292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\views\generic\base.py first seen with mtime 1708272005.9946315 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\sysconfig.py first seen with mtime 1694771060.9877644 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\management\commands\__init__.py first seen with mtime 1708272005.6147292 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templatetags\allauth.py first seen with mtime 1709531170.7335496 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\futures.py first seen with mtime 1694771047.1738276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\charset_normalizer\__init__.py first seen with mtime 1708274996.0077226 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cffi\__init__.py first seen with mtime 1708777045.1471913 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\chardet\chardistribution.py first seen with mtime 1708274930.8177454 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\asyncio\streams.py first seen with mtime 1707383301.8002088 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\cryptography\hazmat\primitives\serialization\__init__.py first seen with mtime 1708777045.4498503 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\sqlparse\lexer.py first seen with mtime 1708272002.3685987 +File C:\Users\fhjj3\djangoProject1\cart\templates\cart first seen with mtime 1709797331.2451537 +File C:\Users\fhjj3\djangoProject1\cart\templates\cart\detail.html first seen with mtime 1709797331.2441432 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders first seen with mtime 1708321695.061612 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order first seen with mtime 1709556079.0286837 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order\create.html first seen with mtime 1708321695.061612 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order\created.html first seen with mtime 1709556079.0278215 +File C:\Users\fhjj3\djangoProject1\orders\templates\orders\order\pdf.html first seen with mtime 1708321695.0626125 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account first seen with mtime 1709531170.6979802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa first seen with mtime 1709531170.7190285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\openid first seen with mtime 1709531170.7210276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\tests first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions first seen with mtime 1709531170.7315457 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\account_inactive.html first seen with mtime 1709531170.667301 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_entrance.html first seen with mtime 1709531170.667301 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_manage.html first seen with mtime 1709531170.6683075 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_manage_email.html first seen with mtime 1709531170.6693091 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_manage_password.html first seen with mtime 1709531170.6693091 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\base_reauthenticate.html first seen with mtime 1709531170.6703155 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email first seen with mtime 1709531170.692475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email.html first seen with mtime 1709531170.6703155 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email_change.html first seen with mtime 1709531170.6713145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email_confirm.html first seen with mtime 1709531170.6713145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\login.html first seen with mtime 1709531170.6713145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\logout.html first seen with mtime 1709531170.6723144 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages first seen with mtime 1709531170.6979802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_change.html first seen with mtime 1709531170.6723144 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset.html first seen with mtime 1709531170.6733148 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset_done.html first seen with mtime 1709531170.6733148 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset_from_key.html first seen with mtime 1709531170.6743145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_reset_from_key_done.html first seen with mtime 1709531170.6743145 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\password_set.html first seen with mtime 1709531170.6753147 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\reauthenticate.html first seen with mtime 1709531170.6753147 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\signup.html first seen with mtime 1709531170.6753147 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\signup_closed.html first seen with mtime 1709531170.6763153 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\snippets first seen with mtime 1709531170.6989908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\verification_sent.html first seen with mtime 1709531170.6773162 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\verified_email_required.html first seen with mtime 1709531170.6778219 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\account_already_exists_message.txt first seen with mtime 1709531170.6788323 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\account_already_exists_subject.txt first seen with mtime 1709531170.6788323 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\base_message.txt first seen with mtime 1709531170.679829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\base_notification.txt first seen with mtime 1709531170.679829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_changed_message.txt first seen with mtime 1709531170.6808288 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_changed_subject.txt first seen with mtime 1709531170.6808288 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_message.txt first seen with mtime 1709531170.682829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_signup_message.txt first seen with mtime 1709531170.682829 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_signup_subject.txt first seen with mtime 1709531170.6838286 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirmation_subject.txt first seen with mtime 1709531170.684828 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirm_message.txt first seen with mtime 1709531170.6818295 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_confirm_subject.txt first seen with mtime 1709531170.6818295 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_deleted_message.txt first seen with mtime 1709531170.6858523 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\email_deleted_subject.txt first seen with mtime 1709531170.6873715 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_changed_message.txt first seen with mtime 1709531170.6873715 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_changed_subject.txt first seen with mtime 1709531170.6883805 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_key_message.txt first seen with mtime 1709531170.6883805 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_key_subject.txt first seen with mtime 1709531170.689382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_message.txt first seen with mtime 1709531170.689382 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_reset_subject.txt first seen with mtime 1709531170.6904752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_set_message.txt first seen with mtime 1709531170.6904752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\password_set_subject.txt first seen with mtime 1709531170.6914752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\unknown_account_message.txt first seen with mtime 1709531170.6914752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\email\unknown_account_subject.txt first seen with mtime 1709531170.692475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\cannot_delete_primary_email.txt first seen with mtime 1709531170.692475 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_confirmation_failed.txt first seen with mtime 1709531170.6934752 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_confirmation_sent.txt first seen with mtime 1709531170.6944842 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_confirmed.txt first seen with mtime 1709531170.6944842 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\email_deleted.txt first seen with mtime 1709531170.6954775 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\logged_in.txt first seen with mtime 1709531170.6954775 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\logged_out.txt first seen with mtime 1709531170.6964748 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\password_changed.txt first seen with mtime 1709531170.6964748 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\password_set.txt first seen with mtime 1709531170.6964748 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\primary_email_set.txt first seen with mtime 1709531170.6974757 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\messages\unverified_primary_email.txt first seen with mtime 1709531170.6979802 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\snippets\already_logged_in.html first seen with mtime 1709531170.6989908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\account\snippets\warn_no_email.html first seen with mtime 1709531170.6989908 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts first seen with mtime 1709531170.7084978 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\alert.html first seen with mtime 1709531170.6999867 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\badge.html first seen with mtime 1709531170.6999867 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\button.html first seen with mtime 1709531170.7009866 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\field.html first seen with mtime 1709531170.7029896 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\fields.html first seen with mtime 1709531170.7039902 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\form.html first seen with mtime 1709531170.7039902 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\h1.html first seen with mtime 1709531170.7049866 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\h2.html first seen with mtime 1709531170.7049866 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\hr.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\img.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\panel.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\provider.html first seen with mtime 1709531170.7059863 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\provider_list.html first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\elements\table.html first seen with mtime 1709531170.707492 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts\base.html first seen with mtime 1709531170.7084978 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts\entrance.html first seen with mtime 1709531170.7084978 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\allauth\layouts\manage.html first seen with mtime 1709531170.7094977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\authenticate.html first seen with mtime 1709531170.7094977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\base_entrance.html first seen with mtime 1709531170.7094977 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\base_manage.html first seen with mtime 1709531170.7105024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email first seen with mtime 1709531170.7145028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\index.html first seen with mtime 1709531170.7105024 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages first seen with mtime 1709531170.7165031 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\reauthenticate.html first seen with mtime 1709531170.7115035 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes first seen with mtime 1709531170.7180228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp first seen with mtime 1709531170.7200282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\recovery_codes_generated_message.txt first seen with mtime 1709531170.7115035 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\recovery_codes_generated_subject.txt first seen with mtime 1709531170.712504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_activated_message.txt first seen with mtime 1709531170.7135034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_activated_subject.txt first seen with mtime 1709531170.7135034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_deactivated_message.txt first seen with mtime 1709531170.7135034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\email\totp_deactivated_subject.txt first seen with mtime 1709531170.7145028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages\recovery_codes_generated.txt first seen with mtime 1709531170.7155042 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages\totp_activated.txt first seen with mtime 1709531170.7155042 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\messages\totp_deactivated.txt first seen with mtime 1709531170.7165031 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\base.html first seen with mtime 1709531170.7165031 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\download.txt first seen with mtime 1709531170.7175183 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\generate.html first seen with mtime 1709531170.7180228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\recovery_codes\index.html first seen with mtime 1709531170.7180228 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp\activate_form.html first seen with mtime 1709531170.7190285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp\base.html first seen with mtime 1709531170.7190285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\mfa\totp\deactivate_form.html first seen with mtime 1709531170.7200282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\openid\base.html first seen with mtime 1709531170.7200282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\openid\login.html first seen with mtime 1709531170.7210276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\authentication_error.html first seen with mtime 1709531170.7210276 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\base_entrance.html first seen with mtime 1709531170.7220285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\base_manage.html first seen with mtime 1709531170.7220285 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\connections.html first seen with mtime 1709531170.7230282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\login.html first seen with mtime 1709531170.7230282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\login_cancelled.html first seen with mtime 1709531170.7230282 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\signup.html first seen with mtime 1709531170.7240279 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_connected_message.txt first seen with mtime 1709531170.7240279 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_connected_subject.txt first seen with mtime 1709531170.725028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_disconnected_message.txt first seen with mtime 1709531170.725028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\email\account_disconnected_subject.txt first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_connected.txt first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_connected_other.txt first seen with mtime 1709531170.726028 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_connected_updated.txt first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\messages\account_disconnected.txt first seen with mtime 1709531170.727532 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets\login.html first seen with mtime 1709531170.728538 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets\login_extra.html first seen with mtime 1709531170.728538 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\socialaccount\snippets\provider_list.html first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\tests\test_403_csrf.html first seen with mtime 1709531170.729539 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\base_manage.html first seen with mtime 1709531170.7305448 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\messages first seen with mtime 1709531170.732551 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\usersession_list.html first seen with mtime 1709531170.7315457 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\templates\usersessions\messages\sessions_logged_out.txt first seen with mtime 1709531170.732551 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\widgets first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018 first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018\digraph.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018\label.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\django2018\relation.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original\digraph.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original\label.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\graph_models\original\relation.dot first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\templates\django_extensions\widgets\foreignkey_searchinput.html first seen with mtime 1708568721.9421916 +File C:\Users\fhjj3\djangoProject1\main\templates\main first seen with mtime 1710915719.31491 +File C:\Users\fhjj3\djangoProject1\main\templates\main\about.html first seen with mtime 1709805141.1082456 +File C:\Users\fhjj3\djangoProject1\main\templates\main\base.html first seen with mtime 1710915719.31491 +File C:\Users\fhjj3\djangoProject1\main\templates\main\callback.html first seen with mtime 1710826534.7217093 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product first seen with mtime 1710753964.805735 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product\detail.html first seen with mtime 1710322666.8037064 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product\list.html first seen with mtime 1709803052.8001108 +File C:\Users\fhjj3\djangoProject1\main\templates\main\product\profile.html first seen with mtime 1710753964.805735 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ar\LC_MESSAGES\django.mo first seen with mtime 1709531170.2483387 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\az\LC_MESSAGES\django.mo first seen with mtime 1709531170.2503822 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\bg\LC_MESSAGES\django.mo first seen with mtime 1709531170.2523403 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ca\LC_MESSAGES\django.mo first seen with mtime 1709531170.2533395 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\cs\LC_MESSAGES\django.mo first seen with mtime 1709531170.255339 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\da\LC_MESSAGES\django.mo first seen with mtime 1709531170.2563374 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\de\LC_MESSAGES\django.mo first seen with mtime 1709531170.2573397 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\el\LC_MESSAGES\django.mo first seen with mtime 1709531170.259826 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\en\LC_MESSAGES\django.mo first seen with mtime 1709531170.2608266 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\es\LC_MESSAGES\django.mo first seen with mtime 1709531170.2618265 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\eu\LC_MESSAGES\django.mo first seen with mtime 1709531170.2628262 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\fa\LC_MESSAGES\django.mo first seen with mtime 1709531170.264827 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\fi\LC_MESSAGES\django.mo first seen with mtime 1709531170.265827 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\fr\LC_MESSAGES\django.mo first seen with mtime 1709531170.2673337 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\he\LC_MESSAGES\django.mo first seen with mtime 1709531170.2693403 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\hr\LC_MESSAGES\django.mo first seen with mtime 1709531170.27034 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\hu\LC_MESSAGES\django.mo first seen with mtime 1709531170.2713394 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\id\LC_MESSAGES\django.mo first seen with mtime 1709531170.2733397 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\it\LC_MESSAGES\django.mo first seen with mtime 1709531170.2743385 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ja\LC_MESSAGES\django.mo first seen with mtime 1709531170.27534 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ka\LC_MESSAGES\django.mo first seen with mtime 1709531170.2773395 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ko\LC_MESSAGES\django.mo first seen with mtime 1709531170.278443 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ky\LC_MESSAGES\django.mo first seen with mtime 1709531170.2794406 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\lt\LC_MESSAGES\django.mo first seen with mtime 1709531170.281441 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\lv\LC_MESSAGES\django.mo first seen with mtime 1709531170.2834418 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\mn\LC_MESSAGES\django.mo first seen with mtime 1709531170.2854414 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\nb\LC_MESSAGES\django.mo first seen with mtime 1709531170.2864406 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\nl\LC_MESSAGES\django.mo first seen with mtime 1709531170.288449 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\pl\LC_MESSAGES\django.mo first seen with mtime 1709531170.2894557 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\pt_BR\LC_MESSAGES\django.mo first seen with mtime 1709531170.2914605 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\pt_PT\LC_MESSAGES\django.mo first seen with mtime 1709531170.2924604 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ro\LC_MESSAGES\django.mo first seen with mtime 1709531170.2944615 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\ru\LC_MESSAGES\django.mo first seen with mtime 1709531170.2954607 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sk\LC_MESSAGES\django.mo first seen with mtime 1709531170.2974613 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sl\LC_MESSAGES\django.mo first seen with mtime 1709531170.299975 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sr\LC_MESSAGES\django.mo first seen with mtime 1709531170.301971 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sr_Latn\LC_MESSAGES\django.mo first seen with mtime 1709531170.3039734 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\sv\LC_MESSAGES\django.mo first seen with mtime 1709531170.3049705 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\th\LC_MESSAGES\django.mo first seen with mtime 1709531170.3059704 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\tr\LC_MESSAGES\django.mo first seen with mtime 1709531170.3074746 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\uk\LC_MESSAGES\django.mo first seen with mtime 1709531170.3094792 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_CN\LC_MESSAGES\django.mo first seen with mtime 1709531170.3104813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_Hans\LC_MESSAGES\django.mo first seen with mtime 1709531170.3114796 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_Hant\LC_MESSAGES\django.mo first seen with mtime 1709531170.3124814 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\locale\zh_TW\LC_MESSAGES\django.mo first seen with mtime 1709531170.3144813 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\da\LC_MESSAGES\django.mo first seen with mtime 1708568721.87046 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\de\LC_MESSAGES\django.mo first seen with mtime 1708568721.87046 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\el\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\en\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\es\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\fr\LC_MESSAGES\django.mo first seen with mtime 1708568721.8784976 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\hu\LC_MESSAGES\django.mo first seen with mtime 1708568721.8842504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\id\LC_MESSAGES\django.mo first seen with mtime 1708568721.8842504 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\it\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\ja\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\pl\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\pt\LC_MESSAGES\django.mo first seen with mtime 1708568721.8872015 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\pt_BR\LC_MESSAGES\django.mo first seen with mtime 1708568721.895399 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\ro\LC_MESSAGES\django.mo first seen with mtime 1708568721.895399 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django_extensions\locale\ru\LC_MESSAGES\django.mo first seen with mtime 1708568721.8992639 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +"GET /callback/ HTTP/1.1" 200 13949 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0007_alter_validators_add_error_messages.py first seen with mtime 1708272004.111096 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0004_alter_user_username_opts.py first seen with mtime 1708272004.109091 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\migrations\__init__.py first seen with mtime 1708272004.279176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0005_alter_user_last_login_null.py first seen with mtime 1708272004.1100948 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0003_alter_emailaddress_create_unique_verified_email.py first seen with mtime 1709531170.2326095 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\migrations\__init__.py first seen with mtime 1708272005.4132214 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\backends\db.py first seen with mtime 1708272005.1814744 +File C:\Users\fhjj3\djangoProject1\main\migrations\0002_alter_product_price.py first seen with mtime 1708592630.9072697 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\migrations\0002_remove_content_type_name.py first seen with mtime 1708272004.279176 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0003_alter_user_email_max_length.py first seen with mtime 1708272004.1080234 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0001_initial.py first seen with mtime 1708272004.1070178 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\0002_logentry_remove_auto_add.py first seen with mtime 1708272003.5251837 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\middleware.py first seen with mtime 1709531170.2265053 +File C:\Users\fhjj3\djangoProject1\orders\migrations\0001_initial.py first seen with mtime 1708321695.0544572 +File C:\Users\fhjj3\djangoProject1\users\migrations\__init__.py first seen with mtime 1708506684.0176537 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\__init__.py first seen with mtime 1709531170.2346053 +File C:\Users\fhjj3\djangoProject1\main\migrations\0001_initial.py first seen with mtime 1708321694.9898424 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0010_alter_group_name_max_length.py first seen with mtime 1708272004.1130946 +File C:\Users\fhjj3\djangoProject1\cart\migrations\__init__.py first seen with mtime 1708321694.969901 +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\__init__.py first seen with mtime 1708272004.1151564 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\middleware\clickjacking.py first seen with mtime 1708272005.913129 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0002_email_max_length.py first seen with mtime 1709531170.2326095 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\migrations\0001_initial.py first seen with mtime 1708272005.6061544 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0005_emailaddress_idx_upper_email.py first seen with mtime 1709531170.2336047 +File C:\Users\fhjj3\djangoProject1\orders\migrations\0002_alter_orderitem_price.py first seen with mtime 1708592726.7066953 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0002_alter_permission_name_max_length.py first seen with mtime 1708272004.1070178 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\0003_logentry_add_action_flag_choices.py first seen with mtime 1708272003.526099 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\0001_initial.py first seen with mtime 1708272003.5251837 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0009_alter_user_last_name_max_length.py first seen with mtime 1708272004.1130946 +File C:\Users\fhjj3\djangoProject1\djangoProject1\wsgi.py first seen with mtime 1708321694.9784534 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\contenttypes\migrations\0001_initial.py first seen with mtime 1708272004.2781794 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0011_update_proxy_permissions.py first seen with mtime 1708272004.1141546 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0012_alter_user_first_name_max_length.py first seen with mtime 1708272004.1151564 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0004_alter_emailaddress_drop_unique_email.py first seen with mtime 1709531170.2336047 +File C:\Users\fhjj3\djangoProject1\orders\migrations\__init__.py first seen with mtime 1708321695.0544572 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\migrations\0002_alter_domain_unique.py first seen with mtime 1708272005.6066594 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\migrations\0001_initial.py first seen with mtime 1708272005.4132214 +File C:\Users\fhjj3\djangoProject1\main\migrations\__init__.py first seen with mtime 1708321694.9908433 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\recorder.py first seen with mtime 1708272005.7650497 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\graph.py first seen with mtime 1708272005.75905 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\migrations\loader.py first seen with mtime 1708272005.7610507 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sites\migrations\__init__.py first seen with mtime 1708272005.6071646 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\db\models\sql\compiler.py first seen with mtime 1708272005.814751 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0006_require_contenttypes_0002.py first seen with mtime 1708272004.1100948 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\migrations\0008_alter_user_username_max_length.py first seen with mtime 1708272004.1120937 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\allauth\account\migrations\0001_initial.py first seen with mtime 1709531170.2316048 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\admin\migrations\__init__.py first seen with mtime 1708272003.526099 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +"GET /products/ HTTP/1.1" 200 13949 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\auth\context_processors.py first seen with mtime 1708272003.9033809 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\locale\en\formats.py first seen with mtime 1708272002.9087086 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\context_processors.py first seen with mtime 1708272004.8470173 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\session.py first seen with mtime 1708272004.8520772 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\cookie.py first seen with mtime 1708272004.851081 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\context_processors.py first seen with mtime 1708272005.9213128 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\conf\locale\en\__init__.py first seen with mtime 1708272002.9087086 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\messages\storage\fallback.py first seen with mtime 1708272004.851081 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\sessions\serializers.py first seen with mtime 1708272005.1794763 +File C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\contrib\staticfiles\storage.py first seen with mtime 1708272005.611222 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE ("main_product"."available" AND "main_product"."id" = 1 AND "main_product"."slug" = 'no-name') LIMIT 21; args=(1, 'no-name'); alias=default +"GET /1/no-name/ HTTP/1.1" 200 6672 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +"GET /check-user-authenticated/ HTTP/1.1" 200 26 +"GET /static/deps/css/main/static/deps/img/mg.png HTTP/1.1" 404 1867 +"GET /orders/create/ HTTP/1.1" 302 0 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +(0.000) SELECT 1 AS "a" FROM "django_session" WHERE "django_session"."session_key" = 'evxacuwfue3c6ydtvzo1m3efihhxp68h' LIMIT 1; args=(1, 'evxacuwfue3c6ydtvzo1m3efihhxp68h'); alias=default +(0.000) BEGIN; args=None; alias=default +(0.000) INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('evxacuwfue3c6ydtvzo1m3efihhxp68h', '.eJyNUk2v2jAQ_CtPPmPihHyf2p5677F6ijb2GgxJHNkOr4D4711HoMKtyiWe3Z3ZGfvGFo-uM5O2rL0x_DOzNq1S0RRFVmcbZiA8gFzUEYAlHLpgRnyHj8GwllW6zCBXFddil_K8liVvpAJOXWWtFWBRKEak3lPzIYTZt0kSGbfjJaAz1m1P18QhDKNPfoIb7XRhUVNRP0hplynQ2S89ndOykqrJUy51KnhekE5fpooDilxXJexqUVJzuJAl9gPBoYtc13gENZqJy8FENvTe2KnzAQK5YjtdK4Si532fI89FJXhTQc1TlfWiUVUuGoxE0sUl4t8w2C9U3DqzNxNZ-716I2tpVm0FfWlbCyGS2Vm1yOAT9rlhq8uOTGFM48acHXCdtVoPZsJnacOWEboYEvFfIdCqhCnUsAyBr1P88Ijq8x55vV2cxBfqZ3KvKiNMsEf-L9R3gNMKpyh-NvjFaXFtBiR-EvDSzjEnHMEMH88S4Ub9f3rrcHemO9cGaS64BTdsgviu2PdTbwN8_CKDtFS8o9mhRudQdfG5PtoC-mBOVN2bM07d2zChGkYzXJ7wC9mqTZA-HI-7ohHf9hHYSjuy-_0vasz7QA:1rmuwd:MLs-729nsp3bpBEwRTK8G8VnLjnEfs7Z2_USaDaOwvo', '2024-03-21 12:21:23.191504'); args=('evxacuwfue3c6ydtvzo1m3efihhxp68h', '.eJyNUk2v2jAQ_CtPPmPihHyf2p5677F6ijb2GgxJHNkOr4D4711HoMKtyiWe3Z3ZGfvGFo-uM5O2rL0x_DOzNq1S0RRFVmcbZiA8gFzUEYAlHLpgRnyHj8GwllW6zCBXFddil_K8liVvpAJOXWWtFWBRKEak3lPzIYTZt0kSGbfjJaAz1m1P18QhDKNPfoIb7XRhUVNRP0hplynQ2S89ndOykqrJUy51KnhekE5fpooDilxXJexqUVJzuJAl9gPBoYtc13gENZqJy8FENvTe2KnzAQK5YjtdK4Si532fI89FJXhTQc1TlfWiUVUuGoxE0sUl4t8w2C9U3DqzNxNZ-716I2tpVm0FfWlbCyGS2Vm1yOAT9rlhq8uOTGFM48acHXCdtVoPZsJnacOWEboYEvFfIdCqhCnUsAyBr1P88Ijq8x55vV2cxBfqZ3KvKiNMsEf-L9R3gNMKpyh-NvjFaXFtBiR-EvDSzjEnHMEMH88S4Ub9f3rrcHemO9cGaS64BTdsgviu2PdTbwN8_CKDtFS8o9mhRudQdfG5PtoC-mBOVN2bM07d2zChGkYzXJ7wC9mqTZA-HI-7ohHf9hHYSjuy-_0vasz7QA:1rmuwd:MLs-729nsp3bpBEwRTK8G8VnLjnEfs7Z2_USaDaOwvo', '2024-03-21 12:21:23.191504'); alias=default +(0.000) COMMIT; args=None; alias=default +"GET /callback/?state=&session_state=3f8dea5b-bb4e-4070-97a8-1d2b09d7409e&code=d8a81bcf-5994-44b9-8fb2-5f7dad5c9bd4.3f8dea5b-bb4e-4070-97a8-1d2b09d7409e.897c9a40-02c1-46b5-aecb-186cdb887f08 HTTP/1.1" 200 13949 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:21:23.355945' AND "django_session"."session_key" = 'evxacuwfue3c6ydtvzo1m3efihhxp68h') LIMIT 21; args=('2024-03-20 12:21:23.355945', 'evxacuwfue3c6ydtvzo1m3efihhxp68h'); alias=default +"GET /check-user-authenticated/ HTTP/1.1" 200 25 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\shlex.py first seen with mtime 1694771054.1879306 +File C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\Lib\netrc.py first seen with mtime 1694771054.1410599 +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2024-03-20 12:21:26.428205' AND "django_session"."session_key" = 'evxacuwfue3c6ydtvzo1m3efihhxp68h') LIMIT 21; args=('2024-03-20 12:21:26.428205', 'evxacuwfue3c6ydtvzo1m3efihhxp68h'); alias=default +(0.000) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE "django_session"."session_key" = 'evxacuwfue3c6ydtvzo1m3efihhxp68h' LIMIT 21; args=('evxacuwfue3c6ydtvzo1m3efihhxp68h',); alias=default +(0.000) DELETE FROM "django_session" WHERE "django_session"."session_key" IN ('evxacuwfue3c6ydtvzo1m3efihhxp68h'); args=('evxacuwfue3c6ydtvzo1m3efihhxp68h',); alias=default +"GET /admin_logout_user/ HTTP/1.1" 302 0 +(0.000) SELECT "main_product"."id", "main_product"."category_id", "main_product"."name", "main_product"."slug", "main_product"."image", "main_product"."description", "main_product"."price", "main_product"."available", "main_product"."created", "main_product"."updated" FROM "main_product" WHERE "main_product"."available" ORDER BY "main_product"."name" ASC; args=(); alias=default +(0.000) SELECT "main_category"."id", "main_category"."name", "main_category"."slug" FROM "main_category" ORDER BY "main_category"."name" ASC; args=(); alias=default +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +Exception while resolving variable 'slug' in template 'main/product/list.html'. +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 875, in _resolve_lookup + current = current[bit] + ~~~~~~~^^^^^ +TypeError: 'NoneType' object is not subscriptable + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 885, in _resolve_lookup + current = getattr(current, bit) + ^^^^^^^^^^^^^^^^^^^^^ +AttributeError: 'NoneType' object has no attribute 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 891, in _resolve_lookup + current = current[int(bit)] + ^^^^^^^^ +ValueError: invalid literal for int() with base 10: 'slug' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "C:\Users\fhjj3\djangoProject1\venv\Lib\site-packages\django\template\base.py", line 898, in _resolve_lookup + raise VariableDoesNotExist( +django.template.base.VariableDoesNotExist: Failed lookup for key [slug] in None +"GET /callback/ HTTP/1.1" 200 13949 +"GET /static/deps/favicon/site.webmanifest HTTP/1.1" 200 263 +"GET /check-user-authenticated/ HTTP/1.1" 200 26 diff --git a/djangoProject1/__pycache__/settings.cpython-311.pyc b/djangoProject1/__pycache__/settings.cpython-311.pyc index 87f6ea0aab5c217d7f8997c53bef05affb4f3471..6eb357d27b011b4fc5dd8535866021cb24070f36 100644 GIT binary patch delta 57 zcmaE*u~>s|IWI340}yPv@+*sa(-T3YVzjQEZ2AhMTD3>Fu;fgz7JZPCkaku F0swuoD;@v< diff --git a/djangoProject1/keycloak.json b/djangoProject1/keycloak.json deleted file mode 100644 index 330388a..0000000 --- a/djangoProject1/keycloak.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "realm": "Harmony", - "auth-server-url": "https://auth.myterior.kz", - "ssl-required": "external", - "resource": "admin-cli", - "credentials": { - "secret": "wOVphEiLVBS1AlNKRpaQpD4yQh5Wm3TJ" - }, - "confidential-port": 0 -} - - diff --git a/djangoProject1/settings.py b/djangoProject1/settings.py index 2903c27..c73dc6c 100644 --- a/djangoProject1/settings.py +++ b/djangoProject1/settings.py @@ -35,8 +35,7 @@ INSTALLED_APPS = [ 'django.contrib.sites', 'allauth', 'allauth.account', - 'allauth.socialaccount', - 'allauth.socialaccount.providers.openid_connect', + 'django.contrib.admin', 'django.contrib.auth', 'django_extensions', diff --git a/invoice_3.pdf b/invoice_3.pdf deleted file mode 100644 index d35bb90..0000000 --- a/invoice_3.pdf +++ /dev/null @@ -1,68 +0,0 @@ -%PDF-1.3 -% ReportLab Generated PDF document http://www.reportlab.com -1 0 obj -<< -/F1 2 0 R ->> -endobj -2 0 obj -<< -/BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font ->> -endobj -3 0 obj -<< -/Contents 7 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 6 0 R /Resources << -/Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] ->> /Rotate 0 /Trans << - ->> - /Type /Page ->> -endobj -4 0 obj -<< -/PageMode /UseNone /Pages 6 0 R /Type /Catalog ->> -endobj -5 0 obj -<< -/Author (anonymous) /CreationDate (D:20240218230455-06'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /ModDate (D:20240218230455-06'00') /Producer (ReportLab PDF Library - www.reportlab.com) - /Subject (unspecified) /Title (untitled) /Trapped /False ->> -endobj -6 0 obj -<< -/Count 1 /Kids [ 3 0 R ] /Type /Pages ->> -endobj -7 0 obj -<< -/Filter [ /ASCII85Decode /FlateDecode ] /Length 102 ->> -stream -GapQh0E=F,0U\H3T\pNYT^QKk?tc>IP,;W#U1^23ihPEM_?CW4KISi90MntRifICK%KE/ee05&l(FoZ!9neZ[Kb,ht@Ke@a%(R!A~>endstream -endobj -xref -0 8 -0000000000 65535 f -0000000073 00000 n -0000000104 00000 n -0000000211 00000 n -0000000414 00000 n -0000000482 00000 n -0000000778 00000 n -0000000837 00000 n -trailer -<< -/ID -[<58e49d6780c80c154396c8a9030fddee><58e49d6780c80c154396c8a9030fddee>] -% ReportLab generated PDF document -- digest (http://www.reportlab.com) - -/Info 5 0 R -/Root 4 0 R -/Size 8 ->> -startxref -1029 -%%EOF diff --git a/invoice_image.png b/invoice_image.png index 934425db67bdb6d6ee072572a2071ec0755926b3..72b6b71d046410bbd2ec6dd85f486d8c061cea7e 100644 GIT binary patch delta 4082 zcmb7H4OCQR8vgE`@6OMiduO=AMFxQZ8AUt{2^=joBoGxbA*wao)K=2n%0F(~DN6ex zvPkx`{TN`>u~P_`yJ!E9j_mu*fIqvg={@J2JKy)c zKhO8R@AJ-?tsNy>J4#B+gfg+r^foPZvnn@DxA~12y0`HC1UQjRA7%Bk?SB%OGLo*Q zY)2A3VZmeeOe(cl+0F?xIjEg|V&+bU+Omz&o9P`vmD2C!$Hjo*GJ`aiKJ7Ootg$ztyOa>A&3DNoX;M4Oh5x%Y>!r>kMBJVFN1&U5eCgt}dL3lIf z2{srvk-{VUsFRJqpZ;2ex+EG6@zE5~I(?IYoSTFpgU=x%Y`LEZ-MENAfcGFk9c9uY zA~cl{0qUEn`XV6B5fb4z=G`3e5F(3%-hS$#Up8PWZrw;@F1w4@P3G6lH?xy3(>)?AKB`6d z4Ud?V4dYHxFJM!IX_;8;l)=m3>*6!!sG@(7=yfY^-pJvt9xCD|Cib^l`hy6COQ>q* zw!IzxqHuVph3c@sfy&_n;c*vSUaG);ZlDgc-^d#B_Nj^eeJ}k`^c%5oOE-8MEhfBbu+}!W@b_|tw-fl9xmL!G)e63fE_J#c<5`OD4*YXgPG+W zr^Q^)EcAYh5a2)yjpqTvVf!X(zwE9SF!oDyQC({~WKNORq8~7`Ib9(?u(OYbK~yD; zfWm%ii9LTo?A61conMi!4)SP@N{q(!l=CO3$NLt`63roQG_$+<=mQAR2cDHw8;!j` z=Dc#~%a~~)Vh(LLZ9pIUx@j!u=2a-O?Dm)@Az+v(y?*BVCHz*;@+N!O4AU^bzKaUa zLv*hr;+E>6V95Rj|+L0U!A3~6jHp#BT8!M^PzeG*?j0l@A&~k{L|MT7qT85;@;N@|Ik(@lI?S&qGoVn(r` zSW#>!GKwAhT=}OvV7P5`?5+pbGRFtX9Rl($Qe?%o%44R0v0Uae$Ro0ny~->T-UL!B zWE~jYU*$70bwgG_Zy!M8kZeWa!pWLsVMMKrKZ8&7?%R6ElM;* z9#zs|{Wf_tOzhBcww$(M_*fCD?RLu6e5Fh=L2I2B2cz1QQU2czgJX4CEUbT5P6{m9 zZlx)|`PXEYIZeGw;DMq=_S}!k3`B`T?36OnN=U-&he^+Df02)Ggu~m2I8fYg)4LPMFeH+$v9DB2NT`#>Fy) z+0p7SXzX)jKvo~_-EC9NaHtOxd^%Z`1I8vR%~;o|^1usuT_QwQm!uY;6B+h4XgY*p zn&6IPH36QeRLmit1wM5=@7xZH-2&}4dwjs?vGF!?iW^jynY}qdz10K*vMU<;k0@@g zx}aT`gb6S$L(PEt2E_sOGtqBH6u0$R;mqy!g{I#=`4rUDn3nmCzVps3;9HAe5B50} z`01=-VVyJ7s$ik5@WmK=EITq^&#^MJZ{+a9MaJ$_n@pC3*eIMHJzpFiZ+>sPnb`7pL{i#)j^h{bu=m4U1!l7`V(*a{w$bY~b*!h*0i_p1NwlMojjiO~D_alSrrTvxe9aX0z({*4-eDV71pz)?r_F@KHpR<&>a=VjL^;nhnhnmjDIV~( z<44L{+AOy7aXkmo0Iw$6mF+`2oD^oMcl}h705ul7&bsz#GthMmrR6v-%9y_^fV|X>G%ckH2xcNu%d^Xk}uHb|ZQk3Fe;_Y|!@I zQX23wg*{pt>+I3m zc>GTUs6DGq4bkSVWYvRR#vJ`Y^!5-_Jw7!FKDrMp5hU)6pS42vO{*@-)I0vbXb$BY z0dTZX)@5~J`x}!~FH}U^6_#jsO%y_Wz3E2P21yxe9CYT{!{GU)I)&m4)d3II$}X7K zp-0vw6+|crQyBHAukfYOjYb+*P}dNBcp*--!_(I`RHvepc|ItBbGW zJmu--E|y*%{_#6kNsXs$^vrudzQ#`E>OSf6q&N};)EMmGVIqXh)BCR2@7KxHo%=-& za~#oe(Bh~bE5h|l_3y5-!*dj@NOF*B6mED-@4R9=C(HDa*KXd-gT;${wx@`Y^Nikg zZ4DfZIZA}AD!u0y8rC7xcjxA>;{g*zL^?u*ytnk;%k}9B-dlJ+b3Z@-zb)vMX=}}b z1n%*AEWwoM*Ze@4bfB(q&VFej3t7sY`fIZ3x4^Pn_wu~Yi~J+v9||ZqH6aKo5hz1AHCfgY2eK(t)Z3adrvzox zi2}@?&bW)rsK)$fakV^(X_TX4N|U4I4`56`V+5KrtCfibvk#9aJe_9ruC;mhoU_l~ z-`V@y`&?dcS@e3#qS6(@3UP(yEm|7vF~V7CFdgThj^OmeaBdQPiq%eYz9%qc7=4D~ zGCVn#2C>aC^stRpCQzH5Z&{N>V;z>rZ*xUXeKyUsvC=Q) z645lqSV1kPHn{XKEe;91k96lgO1kyIr0@9$A!ndwHbp3||D$0V7bIH#?~{*1!27hs z=OUfLj5_LKA+za2VoW^gp0x>G^g1|GLd4n{9Q4kQ%qQJk4uR(g4ZbDqJ4_?Ris!7e zGV4?HadGK2qdsTkeIoQY}zgD~65 z8eXKkL!@=5B*V#*5^kgcAI`RMq|f-0cfrCw*+kEa9z%lU zZFC~TKU296pTb28JH4A87O$qU2GQ{_U7=0j{h)5x! zqrYulE;zS-I-iHm3L1H{dZuwoqL&|kq=lboB_LHO+xDz>TriD&6h=9ukT@j7sS|zP z+AD~-o{+9b^1X9RN46_yzvIBv( zBVfPB+abCi$@dftlyLA$ER=4g$@Wti1ukF&Q$4^JAHMa>Uam37U&H0ELD;0`@I#o? zH>rOopU8%WNH1fhMZx|sNrC+#(lC!Ppl@Irt0-^rw+nQ{57Yk6X|krj3DdYN!rnbt z-yPWKUI8tPj_o&QINs4?pkDA*?>=jff)yz%)>e25#`GVW1z$;2FFx=&_w;Aq7SpQo z2*%98#)7HPVL^x#1fTAq4v#VLrucNvl6r^}x%!1Xt`x`ErTf6NOu3J@xHH2bCv7y*e94Io16I-$J zT`){6(o#&L#ZLE!WIV(I4k`}_Xe3Bv3pOdmmbG&=sw^P-ly!tG^^gmUc_yftcGCzJ zIgUt?E!wT*SineDU9c)e)nI9zB0=k3#R~USYQsH-4hhf6L9jPZ4`%0zw72ZEBzpcI zxFZbx#ZJWzt&>#+etlGNL&iF73MOf{d6VM5uN;DSP&` zl5T;=&MGl*?>23Or$~omO-f`KA$d#lNQNJS+X!qRWFaKB=)tD(lAUgLwSL3W?p7b} zVL+J3R(+*Rwm{<+%?2~um8fA~oFKK$XruW*9&xfi}G(4XC5`<=DAk5##w+*rPdV3HOlbva%@r0cQwp1SF z9%u2?2a0S~QH<&RMjeao-W{InCxVG-xfCsdz8}5=T2zO+&Xc z)T!r~28xVLR}Z0&fa~Eev|GBO*Mc@g%ruQ?uIv`!K%p9E7HqWG&TV}S6XJ`}7d@z} z1L)?}<9}rH52|x|LcBh*Y~}_PB>=_6W^Nd;{@|{;T9Dv9KzWgNyT{03c$y|BzxeUw zb3_i-#$1avDnMzKLfPVC?LpaN6e@+T+d2t}B2zLZ-Oq*uxsM3&%`!>iS6L7?HybYq z9n?A(h9QB4R%i|Z$||*A@Y1ot{_hn9T3?dKv)y_67}+$A^f0wifTydpOjuH-1i;v1 ziUvQVs7`jVN=p*>r^%{yS_YimEa$L;^YoE2-I&=Kz%CxrPVa~XXPa3+Uok&>Gin!tTr8^h0~M;G--(fRBhLDXm|+u z84TVdhww=FIGt`9qD>_@+Zq&ar(-VF9mef)madYZ zzDjelKNV|fIH%CzU*G*C?4KwM_j1_RwC_PKbSgH6J&#&UBhKMl$P{=f*`?daX6E57 z?>?En6t{Ri$9rDjl=~#WG-7#Vq5^3B+iN;m?qPSEu(P^)aAeuIGB+DnHt?gjZ(!_X znf@!((Z$YX>2Z=DQ9tfOHb~@|xbo91^x#F`@Ym#dETBQhhJ=l6tO!3Z(m%U_dUq+P ziy&h~es#bd#d_<1>bpt&f9BtMO(R=Ajqd@iu~US#pT!r}{-=#ZFTI>mZH_yrc-i!8cVSad&#a`789aD!lxD9~&G DXuTq} delta 117 zcmZ3_xto)3IWI340}vdq`<2SaypgYrnNe?YEA##E8(bF5sJ~9A_FCgLpD`!K< z1un$}rdO2BZ*WNgrP*YF(rhw7X*QV$EF29k9TF2vr&uotzrdnW$7NJ*3>Q*!l)WLt(!%aScqj%CSC+}b6Our%*1(dI+l zqY%T9OBJvI)o@|giz14Vr1{fELHa|efHp-@6iv{gKZ@d*9#DaR3kR(V@I?RmOr9M1k<(v(3cWWtiIYf{rt@^=?xr9>N$=|pfLG_p;@S#vWqMRw5m%V-m{VuZTkPeIMws0XlW zPG2c5l&Bxtt;}f(5idI)4y>Ot{lm}}1R`z2QO;8Fx?D)Xn)AhMp+v*TiLeA8@pM8{ zu>!PhKh(o+@~!4Upmngf_&uAl)Yo^OYOtyJqY^|VhG&;F%v~`)y4%y zrrE;P;_ixva7;gdVgkUW>iRd}9^&v6j;ABQJj!})1z7Zv?X^)Ez+#4RE2q3lom22CFZIc6B8HfM&eFTRJ$sko%r_2shP2}sgpC)r_UtxRjRxK z%VvuOdH}~5!I#v6ExsNbO4XRo<#gv)EmyO-l1!-{4ubAe8+Eg%&QPoFE!;kO0w)uh zqI&cc!UP)>-DTb3LI#9gNoTIp^T3&cPq_^7u*7XRT}z3Yg==YlEBKShqsXea5*W|| z1FFfp!3Szwv-xPv&}i-YQs6>E>d?d=ZfJ>=`kjK7C{}{=T5x`O>Prh3IIucZ@gLFr zN0!fkumcB|6Zd9T&Q=`zYwR~-yYI2+uW?3e*Dk=MwkZ2TZ1?j(fBN)k&B29^F7prg zir}vaoXf-ZyN1dJ^P$J?&YxahJEywGEADa4J-#e#xPxzuJ{(=0d@x#ZAJp6jmjw{# zXnN4C28T8x-D@}hbVF^r4DT04;z*MJaELXIn3F`on16T7H#Wlke#AB&HhyGi8V?vh z3Yeh{v4Wdh6{sv_DJ1Cnr>=(va)OoI#pD=pAoDDFxinXl=p=OOj(!JmLqUoNX z(?C_wVLL&~LzsXgW%>$GZy-CSyWk0nd!lBrIoiWAo?m;wc<+N*H8NBYhc$6n6^3g9 z8)y#sz{oAm+NFvZ*TlFg#Hn{Z-F%kV>&XdHX^8#GJ9eZUn-~}|vmS*sfdoAVyRe1n z2ljSgThFlV++c&gutx&&3Vh1<0G2pd*&AkQUz9l69p9+e#yLFq<9Fjf7`->Ta$K|b zsHPt3Wv|-<>;LwJNZSxf9Y(kU@XXntmh#y`Kb6zDywXoItUutl97KMUoeOkz@0JD= z5_MH~ibU0tE6&bB_>Z$kfzb5V)dan+>NR02u@rg@guM@+@;1N{_e2b zEG0IXsU<;dY^vo1)Q%svd|ckEI=zbeWB_j3`nTowQ&j!4KLfz#qV8C1ax$doUiG1} z%^}yeH8Yi!=+~)l2P2^-_v&Sh7Gc_l@F`h<|E;;`V_yZw8_^Y-J@W3*C-yGY)CFF+ z5c(WKcC2+^bSFluwycsZD5Z2EBhxb=lFlNG1H_&WT3l^6XxUn8*rfpJVM=-4-QgcBk!k&kJIA+TY|yVe&=V!1i@~(1&VK z31P<)iZ>2=0b$n-7y`7&zUm0|;%-#US91%>T#T=0>N(`1(RDuw+a6{wMq7^Hc!dXm z492H^Y&7bjoT_`P?yN-^qvGH@dOmNmccS6b7V{ahDLC&t?mE=wfr>Dw34^LIxGA{q zIUl^Hww1JRoY|a!Du}quZ;CA|M_2hZ)6W|!;vr2ugrzw_ zo^1iF|Vw`cxl3VdP;R7^q56a>vS?d~5>YMukDuWFuS z6?$5j(lHQ3J#Y-jypuZA4#+&=l6y4&qQ+zwlGUe%RVQt5@#oLnen@m!X6V;I@~ z%$%ILUcWEw8Ag|YZ6J*AI^2N^#>jLmT2E+~bS+(&E%qsMMOw-%loV=Yi(Rc{j4U_< z;9`+e^z*uYLc?`{mipi-l2__iHPf{sTu-bx+PNhvQ-nKI_KF^+Rr?lku2h<*Xb{Cq zn|>ps`psbkyLcVZPi*~sf!HoXACHf!6>dONdReRrsZ=4Ims6>FD(Fd34||-g?-)j? zZtVM8r|!Nc?6CK`v*iuWwxs_y zxK4HNTeI0nyvFT7h>$)weYe5pB~uWG&*2LK@zl5-@EVC5!f_iM-2_kXy$DBn?IL02 z{VnAHIbP#-;238MF8efV%gRW_+NoJPmn=1tll0cO9q4EvO*L)@!dB8<<95JnMP+uN XBKI3as*PE`uiW70%Tb#X20pa~upK6&Jcz3<82Qzps$56u z08riA%L=B0FufJH9TrX#7emw>+O*E!fhq69+idABwGE`gss}KldI6)V4=@H=+d*qL zX!TzN>*DD+s0;urp`x=~s^d$lVJ2m%*|1hrHC$_**UFjFrA2KH{%~e^Xc(BzT6hI-Sp2so;9w23{iCFv5RZTBrg%aHq+9-I) z9m@;WcIdi^jlUCT;s|?zpi}#z*auj%W-pblmT?gJVe${Y6Zy9u@((T1P9WeIm2j0y zSF~aVj94n=ie((3oG1y15pNQ@x*Z_;s9_&@LF}^b1zL<0#6KfH`Bx&ibxMjMlprPh zK&FRI@28NW&`04ZfRuo#x?1a1UBkKJ<E09wNyGg*+hmMh>u9(aWq1IxNlw7_^I0( zNOPe1Qg-eNei67QsMuN9>{afr%e^{P4Mu+zdOPxq$Yy&bIAjKg457U$1{<8yI@Yk* z?LGC-USr?npI$bnGGswfU#Ox9+cd62HAr?Hg_I$a~;x4&WOKYtmg$=&gyL zO>7=tpQw07OwY)gRF_-VdyUY(j|0_EvKovvtd@~@g9G@Qvp5sqP=KK|L0)%95x@1G z`)vz4Oip@A=_6n?q=l`Zl^04Xraowf+d0}}F6LPlFu&qi>LW@8H#U7JF5wdFiiUp( z)XS8eWG<`{k2lU&yHjM$`$w;hbGNV08~UfQEc0udaieU=B0 zBACejaGM6?SK-x{0am$tzAiHEk0U3^`X|~YuEqDpsT-$WpS?M|F=IOW4WS?V$+R5Y z`pn;n4h>VCBNXNU9=HaxY9Ut~#9B6A&Ynq>OmEB3+d$ky?GIwe6;!Jd`f zjNV=QPHxw1`O^G6MEFsdkP>P#)8EXqn%GQU6@OQTvzp0-c0POs^xTA3|24oWS5?}= zMs#$uAAmltXIH1{>67+B#mZ5xV|#6x+;U87J;AM!!ew>1>D zA#|E3(Kty*4w82wv4hvFWqK5Cw`J>-hv!*1!>`$vg=5^s@oQq)^GJ^4mic9od=-fx z8>mYnk&Hy+(Ema7BdXT@pK8fu>|OCWn0^i`JO|K^P88C#vM%bxY=iX1cLm?6YitxTbs^Q2xXo)Nci zM&zr+kK5R;(?XZp4(3I&oD3r$`DHR}dkyFYM?Ol9$~5IuXeO1!Jp}c11li$Qlhws+ zalSOL02eN71rcl`fu61v8ZB^Iz#Sp4vtzn>Fgxb5xI6&2ih|CrTQy;^1VxbDDO}sC z=1OoK%3W%P9=&O?YZPYJ0eTr>_Xu_pHv^L%C^b7=TBcb^tVx+naV1;OGMQ!^vxsiS zES=5lrBQ{c(U@BJF30@C4yp&zL0I+Gymkox6j%^+oclooZ-d)`HV(gL~$`pN7zi4mG$Pc$#yB*8Jv*y<_9qialZ46RWm{Afu-n+zxa)P+NoBfes1v q(uHk9n@HEW1KtSgZg5Y+5yYXS!6hDl8a5tHP%9X?ce@kJ@BapV;6la# diff --git a/main/urls.py b/main/urls.py index 165d36d..6847205 100644 --- a/main/urls.py +++ b/main/urls.py @@ -11,10 +11,6 @@ urlpatterns = [ path('about/', views.about, name='about'), path('', views.callback, name='product_list'), path('products/', views.callback, name='product_list'), - path('/', views.callback, - name='product_list_by_category'), - path('//', views.product_detail, - name='product_detail'), - path('about/', views.about, name='about'), - -] + path('/', views.callback,name='product_list_by_category'), + path('//', views.product_detail,name='product_detail'), + path('about/', views.about, name='about'),] diff --git a/main/views.py b/main/views.py index 5a42f5f..2866fd8 100644 --- a/main/views.py +++ b/main/views.py @@ -1,14 +1,13 @@ import requests -from django.shortcuts import render,get_object_or_404 -from django.http import HttpResponse, HttpResponseRedirect +from django.shortcuts import get_object_or_404 import logging from djangoProject1 import settings from .models import Category, Product from cart.forms import CartAddProductForm from jose import jwt from django.contrib import messages - - +import jwt +from django.http import JsonResponse @@ -30,6 +29,8 @@ def product_detail(request, id, slug): def about(request): return render(request, 'main/about.html') + +#Получение access token пользователя def exchange_code_for_token(authorization_code, redirect_uri): token_endpoint = 'https://auth.myterior.kz/realms/Harmony/protocol/openid-connect/token' client_id = 'admin-cli' @@ -53,6 +54,8 @@ def exchange_code_for_token(authorization_code, redirect_uri): print("Failed to exchange code: HTTP status", response.status_code) print("Response body:", response.text) raise Exception('Failed to exchange authorization code for tokens') + +#Через access_token получать данные о пользователе декодировав его в json def get_user_info(access_token): userinfo_endpoint = 'https://auth.myterior.kz/realms/Harmony/protocol/openid-connect/userinfo' headers = {'Authorization': f'Bearer {access_token}'} @@ -62,7 +65,7 @@ def get_user_info(access_token): else: print("Failed to fetch user info: HTTP status", response.status_code) return None -import jwt + def decode_access_token(access_token): @@ -70,98 +73,130 @@ def decode_access_token(access_token): return payload -def callback(request,category_slug=None): - #Получение кода авторизации из запроса +def callback(request, category_slug=None): context = {} + # Получение кода авторизации из запроса. + # где клиент получает код после аутентификации пользователя на сервере. authorization_code = request.GET.get('code') if authorization_code: try: + # Обмен кода на access_token с помощью функции exchange_code_for_token. + # Этот токен необходим для доступа к защищенным ресурсам (например, к информации о пользователе) + # на сервере аутентификации. access_token = exchange_code_for_token(authorization_code, settings.KEYCLOAK_CONFIG['CALLBACK_URL']) + # Декодирование access_token для получения информации о пользователе. + # Это может включать имя пользователя, email и другие данные, в зависимости от настроек сервера. user_info = decode_access_token(access_token) + # Сохранение полученной информации о пользователе в сессии. + # Это позволяет использовать данные пользователя в дальнейшем, не обращаясь к серверу аутентификации. request.session['user_info'] = user_info - + # Добавление информации о пользователе в контекст для отображения на странице. context['userinfo'] = request.session.get('user_info', {}) - except Exception as e: + # В случае ошибки (например, проблемы с обменом кода или декодированием токена) + # добавляем информацию об ошибке в контекст. context['error'] = str(e) else: + # Если код авторизации не найден в запросе, сообщаем об этом через контекст. context['error'] = "Authorization code not found." + + # Загрузка всех категорий и продуктов для отображения на странице. + # Если указан category_slug, фильтруем продукты по данной категории. category = None categories = Category.objects.all() products = Product.objects.filter(available=True) if category_slug: - category = get_object_or_404(Category, - slug=category_slug) + category = get_object_or_404(Category, slug=category_slug) products = products.filter(category=category) - return render(request, 'main/product/list.html',{'category': category, - 'categories': categories, - 'products': products}) + + # Рендеринг страницы с продуктами, передавая информацию о категориях, продуктах и контекст с данными пользователя или ошибками. + return render(request, 'main/product/list.html', + {'category': category, 'categories': categories, 'products': products}) + + from django.shortcuts import render, redirect def profile(request): + # Проверка метода запроса: если POST, значит пользователь отправил форму для обновления своих данных. if request.method == 'POST': - + # Получение текущей информации о пользователе из сессии. user_info = request.session.get('user_info', {}) + + # Обновление информации о пользователе данными из формы. + # Если какое-то поле не было предоставлено, используется текущее значение из сессии. user_info['given_name'] = request.POST.get('first_name', user_info.get('given_name', '')) user_info['family_name'] = request.POST.get('last_name', user_info.get('family_name', '')) user_info['preferred_username'] = request.POST.get('username', user_info.get('preferred_username', '')) user_info['email'] = request.POST.get('email', user_info.get('email', '')) - + # Сохранение обновленной информации о пользователе обратно в сессию. request.session['user_info'] = user_info - + # После обновления информации редиректим пользователя на страницу callback, + # которая, скорее всего, отображает информацию о профиле или подтверждение об обновлении данных. return render(request, 'main/callback.html') else: - + # Если метод запроса не POST, пользователь просто посещает страницу профиля, + # мы загружаем текущую информацию о пользователе из сессии и передаем ее в контекст шаблона. context = {'userinfo': request.session.get('user_info', {})} + + # Отображаем страницу профиля пользователя, передавая информацию о пользователе в контекст. return render(request, 'main/callback.html', context) -# Настройте логирование +# логирование logger = logging.getLogger(__name__) def get_keycloak_admin_token(): + # Формируем данные для запроса токена data = { - 'client_id': settings.KEYCLOAK_CONFIG['CLIENT_ID'], - 'client_secret': settings.KEYCLOAK_CONFIG['CLIENT_SECRET'], - 'grant_type': 'client_credentials', + 'client_id': settings.KEYCLOAK_CONFIG['CLIENT_ID'], # ID клиента + 'client_secret': settings.KEYCLOAK_CONFIG['CLIENT_SECRET'], # Секрет клиента + 'grant_type': 'client_credentials', # Тип авторизации } + # Отправка запроса для получения токена администратора Keycloak response = requests.post( f"{settings.KEYCLOAK_CONFIG['SERVER_URL']}/realms/{settings.KEYCLOAK_CONFIG['REALM']}/protocol/openid-connect/token", data=data ) - return response.json()['access_token'] + # Возвращаем токен доступа из ответа + return response.json()['access_token'] def get_user_sessions(admin_token, user_id): + # Установка заголовков с токеном администратора для авторизации запроса headers = {'Authorization': f'Bearer {admin_token}'} + # Запрос на получение списка сессий пользователя в Keycloak response = requests.get( f"{settings.KEYCLOAK_CONFIG['SERVER_URL']}/admin/realms/{settings.KEYCLOAK_CONFIG['REALM']}/users/{user_id}/sessions", headers=headers ) + # Проверка успешности запроса и возвращение результата if response.status_code == 200: return response.json() else: logger.error(f"Error fetching user sessions: {response.status_code}") return [] - -def logout_user(admin_token,session_id): - headers = { - 'Authorization': f'Bearer {admin_token}', - } +def logout_user(admin_token, session_id): + # Установка заголовков с токеном администратора для авторизации запроса + headers = {'Authorization': f'Bearer {admin_token}'} + # Отправка запроса на удаление сессии пользователя по ID сессии response = requests.delete( f"{settings.KEYCLOAK_CONFIG['SERVER_URL']}/admin/realms/{settings.KEYCLOAK_CONFIG['REALM']}/sessions/{session_id}", headers=headers ) + # Проверка успешности запроса на удаление return response.status_code == 204 + def get_user_id_from_session(request): + # Получение информации о пользователе из сессии user_info = request.session.get('user_info', {}) - user_id = user_info.get('sub') + user_id = user_info.get('sub') # 'sub' обычно используется как идентификатор пользователя + # Проверка валидности формата ID пользователя if isinstance(user_id, str): return user_id else: @@ -169,40 +204,55 @@ def get_user_id_from_session(request): return None -def admin_logout_user(request,category_slug = None): + +def admin_logout_user(request, category_slug=None): + # Получение ID пользователя из сессии текущего запроса. user_id = get_user_id_from_session(request) - + # Получение административного токена для обращения к Keycloak API. admin_token = get_keycloak_admin_token() if not admin_token: + # Логгирование ошибки, если не удалось получить токен администратора. logger.error("Can't obtain admin token.") + # Отображение сообщения об ошибке пользователю. messages.error(request, "Can't obtain admin token for logout.") + # Перенаправление на страницу выхода/авторизации в случае ошибки. return redirect(settings.KEYCLOAK_CONFIG['LOGOUT_REDIRECT_URL']) + # Получение списка активных сессий пользователя через Keycloak API. sessions = get_user_sessions(admin_token, user_id) if sessions is None or not sessions: + # Логгирование, если сессии не найдены. logger.error("Can't find user sessions.") + # Уведомление пользователя о невозможности найти активные сессии. messages.error(request, "No active sessions found for user.") - redirect_uri = settings.KEYCLOAK_CONFIG['CALLBACK_URL'] - return redirect(redirect_uri) + # Перенаправление на callback URL. + return redirect(settings.KEYCLOAK_CONFIG['CALLBACK_URL']) + # Флаг, указывающий на успешный выход из всех сессий. all_sessions_logged_out = True for session in sessions: + # Попытка выхода из каждой сессии через Keycloak API. if not logout_user(admin_token, session['id']): + # Если выход из какой-либо сессии не удался, флаг устанавливается в False. all_sessions_logged_out = False logger.error(f"Failed to log out session {session['id']}") if all_sessions_logged_out: + # Логгирование успешного выхода из всех сессий. logger.info("User successfully logged out from all Keycloak sessions.") + # Уведомление пользователя о успешном выходе. messages.success(request, "Successfully logged out.") else: + # Уведомление пользователя, если выход был выполнен не из всех сессий. messages.warning(request, "Partial logout. Some sessions may still be active.") + # Очистка сессии Django после выхода пользователя. request.session.flush() - redirect_uri = settings.KEYCLOAK_CONFIG['CALLBACK_URL'] - return redirect(redirect_uri) + # Перенаправление пользователя на callback URL после выхода. + return redirect(settings.KEYCLOAK_CONFIG['CALLBACK_URL']) + -from django.http import JsonResponse def check_user_authenticated(request): diff --git a/temp_order_image.png b/temp_order_image.png deleted file mode 100644 index e69de29..0000000 diff --git a/users/__pycache__/views.cpython-311.pyc b/users/__pycache__/views.cpython-311.pyc index 2535a62f665d3c717b6d2a1945a23e5e617912bb..6b583b1ca3265ab7f47a55753adea646abf97c5a 100644 GIT binary patch delta 458 zcmaDTctL<~IWI340}!ma{42GWV5R)585mXrF$AP=wlFLM zGFQU{7^3)77=sx!xn6=q{3iFXXiR*gwON-@fr*VBC{n~WIha|Ok#%w-b15U&XGh&^DJ{J_9I zc@vw7=~p%e0htRj)(4y~@Oxb3_qf9Eae>35NE)bHQ{WbRPJViNW?uR&?v$*=y!3p% zjFOUqBIe0+*_F&$fJ$x&K*ftQ@{3B6OG}E2SV6)t<;nSZX+>-x5svKC%H*8<#O%pg z>?&48AZM;*09#We31t7`u*uC&Da}c>E7ApWK>=EP5J-GrW@Kc%!NAu5hBp{gCf9H% xGT&fOo&2BOM3qyjL;MP-)C`M@oGMp1RT|hnun92AePDnSIt)x=lUH(B000Atdz1hG delta 621 zcmY*W&5P4O6rX9*H0jr*t?PcZMN4;U1q;H03$Dv{^$=O`A_x{Q*(RHIH%-bUIV>U; z5%g%uMetscy$E~rqJMygi3BWxg%uR^7SMxu+DX+e`{upJ@BMgh-g`4d{F2MQ&Sa8+ z$~E*`9mR*)Irwf^Gw&%t;dRs#TOtG$3wo}XZ{;T#>YxQ;K+P*j4UQlH2h{$Gl6ne8 z6dwF1K&zm@yP%%_5ixg$zb?<#VIVkISBO0vQ)G z4oth>nfq&FRQ`-=pHS`X1A=NE+Vs)pKssWR&$gay5ply~n?BnlZ1X5pcp-VIlAkIO zw)8Vz z{*|k2lxPW##(x7QL*aRf|L|))Q*m^49bctk^hs7oUC2NPk3n`YIUxt&vim-Iq?Us~7+P diff --git a/users/views.py b/users/views.py index c66c5e2..f238628 100644 --- a/users/views.py +++ b/users/views.py @@ -1,16 +1,14 @@ - import logging - - +from django.http import HttpResponse +from django.views.decorators.http import require_http_methods from django.shortcuts import redirect from django.conf import settings from keycloak import KeycloakOpenID -from urllib.parse import urlencode -from django.contrib.auth import logout - logger = logging.getLogger(__name__) -def keycloak_login(request): + +def keycloak_login(request): + # Инициализация клиента Keycloak с конфигурационными данными из настроек Django. keycloak_openid = KeycloakOpenID( server_url=settings.KEYCLOAK_CONFIG['SERVER_URL'], client_id=settings.KEYCLOAK_CONFIG['CLIENT_ID'], @@ -18,29 +16,31 @@ def keycloak_login(request): client_secret_key=settings.KEYCLOAK_CONFIG['CLIENT_SECRET'] ) - + # Установка URL для перенаправления пользователя после аутентификации в Keycloak. redirect_uri = settings.KEYCLOAK_CONFIG['CALLBACK_URL'] + # Получение URL для аутентификации пользователя через Keycloak. auth_url = keycloak_openid.auth_url(redirect_uri=redirect_uri) + # Логгирование успешной обработки запроса. logger.info('Запрос успешно обработан') + # Перенаправление пользователя на страницу аутентификации Keycloak. return redirect(auth_url) -from django.http import HttpResponse -from django.views.decorators.http import require_http_methods -import logging @require_http_methods(["GET"]) def keycloak_redirect(request): - - # Extract the authorization code from the query parameters + # Извлечение кода авторизации из параметров запроса. authorization_code = request.GET.get('code') if authorization_code: - # Proceed with the token exchange process here + # Если код авторизации получен, продолжается процесс обмена токенами. print(authorization_code) logger.info(' 2 Запрос успешно обработан') return HttpResponse("Authorization code received.") else: - return HttpResponse("Authorization code not found.", status=400) \ No newline at end of file + # Если код авторизации отсутствует, возвращается ошибка. + return HttpResponse("Authorization code not found.", status=400) + +