From 99a8a978c9f6dd5d2207f4b220c01f650fe40b14 Mon Sep 17 00:00:00 2001 From: lishuang <573230334@qq.com> Date: Tue, 30 May 2023 13:42:07 +0800 Subject: [PATCH] upload --- .gitignore | 3 +- TP_PROJECT/TP/__init__.py | 0 TP_PROJECT/TP/asgi.py | 16 +++ TP_PROJECT/TP/settings.py | 128 ++++++++++++++++++ TP_PROJECT/TP/urls.py | 22 +++ TP_PROJECT/TP/wsgi.py | 16 +++ TP_PROJECT/app01/__init__.py | 0 TP_PROJECT/app01/admin.py | 3 + TP_PROJECT/app01/apps.py | 6 + TP_PROJECT/app01/migrations/0001_initial.py | 30 ++++ .../migrations/0002_auto_20230526_1003.py | 23 ++++ .../migrations/0003_auto_20230529_1446.py | 35 +++++ TP_PROJECT/app01/migrations/__init__.py | 0 TP_PROJECT/app01/models.py | 37 +++++ TP_PROJECT/app01/serializers.py | 8 ++ TP_PROJECT/app01/tests.py | 3 + TP_PROJECT/app01/urls.py | 26 ++++ TP_PROJECT/app01/views.py | 16 +++ TP_PROJECT/db.sqlite3 | Bin 0 -> 139264 bytes TP_PROJECT/manage.py | 22 +++ 20 files changed, 393 insertions(+), 1 deletion(-) create mode 100644 TP_PROJECT/TP/__init__.py create mode 100644 TP_PROJECT/TP/asgi.py create mode 100644 TP_PROJECT/TP/settings.py create mode 100644 TP_PROJECT/TP/urls.py create mode 100644 TP_PROJECT/TP/wsgi.py create mode 100644 TP_PROJECT/app01/__init__.py create mode 100644 TP_PROJECT/app01/admin.py create mode 100644 TP_PROJECT/app01/apps.py create mode 100644 TP_PROJECT/app01/migrations/0001_initial.py create mode 100644 TP_PROJECT/app01/migrations/0002_auto_20230526_1003.py create mode 100644 TP_PROJECT/app01/migrations/0003_auto_20230529_1446.py create mode 100644 TP_PROJECT/app01/migrations/__init__.py create mode 100644 TP_PROJECT/app01/models.py create mode 100644 TP_PROJECT/app01/serializers.py create mode 100644 TP_PROJECT/app01/tests.py create mode 100644 TP_PROJECT/app01/urls.py create mode 100644 TP_PROJECT/app01/views.py create mode 100644 TP_PROJECT/db.sqlite3 create mode 100644 TP_PROJECT/manage.py diff --git a/.gitignore b/.gitignore index 403adbc..48019c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,8 @@ .DS_Store node_modules /dist - +.idea +__pycache__ # local env files .env.local diff --git a/TP_PROJECT/TP/__init__.py b/TP_PROJECT/TP/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/TP_PROJECT/TP/asgi.py b/TP_PROJECT/TP/asgi.py new file mode 100644 index 0000000..06ba708 --- /dev/null +++ b/TP_PROJECT/TP/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for TP project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'TP.settings') + +application = get_asgi_application() diff --git a/TP_PROJECT/TP/settings.py b/TP_PROJECT/TP/settings.py new file mode 100644 index 0000000..1dee54c --- /dev/null +++ b/TP_PROJECT/TP/settings.py @@ -0,0 +1,128 @@ +""" +Django settings for TP project. + +Generated by 'django-admin startproject' using Django 3.2.19. + +For more information on this file, see +https://docs.djangoproject.com/en/3.2/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/3.2/ref/settings/ +""" + +from pathlib import Path + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-kqm6r(-!q-emw5c!!@dc)9l^hm@m#4!)-d7ecq85&u^5leu5)_' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'rest_framework', + 'django_filters', + 'app01' +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'TP.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'TP.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/3.2/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/3.2/topics/i18n/ + +LANGUAGE_CODE = 'zh-hans' + +TIME_ZONE = 'Asia/Shanghai' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = False + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/3.2/howto/static-files/ + +STATIC_URL = '/static/' + +# Default primary key field type +# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/TP_PROJECT/TP/urls.py b/TP_PROJECT/TP/urls.py new file mode 100644 index 0000000..de6b545 --- /dev/null +++ b/TP_PROJECT/TP/urls.py @@ -0,0 +1,22 @@ +"""TP URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/3.2/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path, include + +urlpatterns = [ + path('admin/', admin.site.urls), + path('api/', include('app01.urls')) +] diff --git a/TP_PROJECT/TP/wsgi.py b/TP_PROJECT/TP/wsgi.py new file mode 100644 index 0000000..3e8ddc2 --- /dev/null +++ b/TP_PROJECT/TP/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for TP project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'TP.settings') + +application = get_wsgi_application() diff --git a/TP_PROJECT/app01/__init__.py b/TP_PROJECT/app01/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/TP_PROJECT/app01/admin.py b/TP_PROJECT/app01/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/TP_PROJECT/app01/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/TP_PROJECT/app01/apps.py b/TP_PROJECT/app01/apps.py new file mode 100644 index 0000000..60a3620 --- /dev/null +++ b/TP_PROJECT/app01/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class App01Config(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'app01' diff --git a/TP_PROJECT/app01/migrations/0001_initial.py b/TP_PROJECT/app01/migrations/0001_initial.py new file mode 100644 index 0000000..e6709aa --- /dev/null +++ b/TP_PROJECT/app01/migrations/0001_initial.py @@ -0,0 +1,30 @@ +# Generated by Django 3.2.19 on 2023-05-25 08:07 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='MyModel', + fields=[ + ('uid', models.AutoField(primary_key=True, serialize=False)), + ('video_hash', models.CharField(max_length=50)), + ('record_time', models.DateTimeField()), + ('police_id', models.CharField(max_length=50)), + ('event_type', models.IntegerField()), + ('is_violation', models.BooleanField()), + ('small_image', models.CharField(max_length=50)), + ('relative_time', models.IntegerField()), + ('video_dir', models.CharField(max_length=50)), + ('car_number', models.CharField(max_length=50)), + ('ai_analysis', models.CharField(max_length=50)), + ], + ), + ] diff --git a/TP_PROJECT/app01/migrations/0002_auto_20230526_1003.py b/TP_PROJECT/app01/migrations/0002_auto_20230526_1003.py new file mode 100644 index 0000000..bf7bad9 --- /dev/null +++ b/TP_PROJECT/app01/migrations/0002_auto_20230526_1003.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.19 on 2023-05-26 10:03 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('app01', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='mymodel', + name='ai_analysis', + field=models.CharField(max_length=255), + ), + migrations.AlterField( + model_name='mymodel', + name='relative_time', + field=models.FloatField(), + ), + ] diff --git a/TP_PROJECT/app01/migrations/0003_auto_20230529_1446.py b/TP_PROJECT/app01/migrations/0003_auto_20230529_1446.py new file mode 100644 index 0000000..5ec91a8 --- /dev/null +++ b/TP_PROJECT/app01/migrations/0003_auto_20230529_1446.py @@ -0,0 +1,35 @@ +# Generated by Django 3.2.19 on 2023-05-29 14:46 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('app01', '0002_auto_20230526_1003'), + ] + + operations = [ + migrations.CreateModel( + name='TP', + fields=[ + ('uid', models.AutoField(primary_key=True, serialize=False)), + ('video_hash', models.CharField(max_length=50)), + ('record_time', models.DateTimeField()), + ('police_id', models.CharField(max_length=50)), + ('event_type', models.IntegerField()), + ('is_violation', models.BooleanField()), + ('small_image', models.CharField(max_length=50)), + ('relative_time', models.FloatField()), + ('video_dir', models.CharField(max_length=50)), + ('car_number', models.CharField(max_length=50)), + ('ai_analysis', models.CharField(max_length=255)), + ('add_time', models.DateTimeField()), + ('update_time', models.DateTimeField()), + ('is_display', models.BooleanField()), + ], + ), + migrations.DeleteModel( + name='MyModel', + ), + ] diff --git a/TP_PROJECT/app01/migrations/__init__.py b/TP_PROJECT/app01/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/TP_PROJECT/app01/models.py b/TP_PROJECT/app01/models.py new file mode 100644 index 0000000..8bf1406 --- /dev/null +++ b/TP_PROJECT/app01/models.py @@ -0,0 +1,37 @@ +from django.db import models + + +# Create your models here. +class TP(models.Model): + # uid + uid = models.AutoField(primary_key=True) + # 视频哈希 + video_hash = models.CharField(max_length=50) + # 记录仪时间 + record_time = models.DateTimeField() + # 警号 + police_id = models.CharField(max_length=50) + # 事件类型 + event_type = models.IntegerField() + # 是否违规 + is_violation = models.BooleanField() + # 缩略图 + small_image = models.CharField(max_length=50) + # 相对时间 + relative_time = models.FloatField() + # 视频路径 + video_dir = models.CharField(max_length=50) + # 车牌号 + car_number = models.CharField(max_length=50) + # 分析结果 + ai_analysis = models.CharField(max_length=255) + # 加入时间 + add_time = models.DateTimeField() + # 更新时间 + update_time = models.DateTimeField() + # 是否显示 + is_display = models.BooleanField() + + + + diff --git a/TP_PROJECT/app01/serializers.py b/TP_PROJECT/app01/serializers.py new file mode 100644 index 0000000..0547209 --- /dev/null +++ b/TP_PROJECT/app01/serializers.py @@ -0,0 +1,8 @@ +from rest_framework import serializers +from app01.models import TP + + +class SerialMyModel(serializers.ModelSerializer): + class Meta: + model = TP + fields = "__all__" diff --git a/TP_PROJECT/app01/tests.py b/TP_PROJECT/app01/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/TP_PROJECT/app01/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/TP_PROJECT/app01/urls.py b/TP_PROJECT/app01/urls.py new file mode 100644 index 0000000..0a6b5f8 --- /dev/null +++ b/TP_PROJECT/app01/urls.py @@ -0,0 +1,26 @@ +"""TP URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/3.2/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +# from django.contrib import admin +from django.urls import path, include +from rest_framework.routers import DefaultRouter +from app01 import views + +router = DefaultRouter() +router.register('', views.ModelQuery) + +urlpatterns = [ + path('', include(router.urls)), +] \ No newline at end of file diff --git a/TP_PROJECT/app01/views.py b/TP_PROJECT/app01/views.py new file mode 100644 index 0000000..f8a1938 --- /dev/null +++ b/TP_PROJECT/app01/views.py @@ -0,0 +1,16 @@ +from django.shortcuts import render + +# Create your views here. +from rest_framework import viewsets +from app01.models import TP +from app01.serializers import SerialMyModel +from django_filters.rest_framework import DjangoFilterBackend + + + +class ModelQuery(viewsets.ModelViewSet): + queryset = TP.objects.all() + serializer_class = SerialMyModel + + filter_backends = [DjangoFilterBackend] + filterset_fields = ('police_id',) \ No newline at end of file diff --git a/TP_PROJECT/db.sqlite3 b/TP_PROJECT/db.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..305b9ee2b5598e0d66ef45544e0955d667ca9bfd GIT binary patch literal 139264 zcmeI5du$uYeaE?cEoqTl$+En6C(ByV*4d0s7RlvOq7K)b&d0M=+wxhKady$eW=XE3 zwfQnhNfrXMpw4$`8x(C*G(Za^DcZC^pGngMLDA%&q)m|qZGs|cn!bXd1=^%YQWQwi zA}!FF*(G=R(BmBYAo#w-X>WJtH^2GLXJ%(-XNL6kYnP3NF0EE-C9NUJu0a>axt^CK zm&=tPe^K&xlKgSx?-Kd*lE2o6hVA!BxX!)vYd&Jd2|uK^qVU7;*ueJ(o*wv<;8*zX z1%Jc;8Q+@smptEc|DXFR_deH`_H(#jeDj@0dGXFP*Q^`mf__iiXsoLnb-kvp)hZj+ zx_NFC%uAJ=WKyyc&&TuXM%lRAZ9aT{IlHium2NC8Ub~T%7MEVk-jt%`V9 z6Gf%7Q6|hNM4yqOOdin_jWy?ocyTSmH8r~gW^7fjm5h4bsFdrfeNGE8m&z;oOj2jc zdW?@+rEtpcG1|qWLwrvXT7(WAMEuksFTP5|U)f8%>51shC6e)cZZ*?i_t1fK_c+^6 zaw`E*ds_&IO;3i~Idvep9fein`GTBOa&f!m^bi`{z5Vpq+D&qgYz|yD(xf`vkiwph zkgA#Ls2Yb!zEW=J<%ZhWuIjW&C0A3kX+4!=Rb$%;ed@%HRd@5^&~01O_S2Ps$h;or z#qB9>N3g5JPSTS>zEaT3T1i*q2`wkjDwtXy4OA}+6FmsW^W=A>_`~%+`Rvt0wMH;)z zBrPs2t}HHGzI@9H%)Z#u2zxd4c(+*`ERWbue1I3Hr@8yXU1-@I<^XD5hjzngMjtA8 zW*>2|T4A;aME2S{g1k6B&b@J}6Ir|Q9oYra1JS8!_4-z&Mq1>iR?DwzwX=!jT&&$J zNh2w0^@duktQqB~RL~lF!zk&_c%!b?H%P;vjWjCdDwU!$mWI+U!1gc4ZTHr*o8+=; z)JQhFTegJkX`z=iqiE+etJpb_^i*g=TV3rHNn*5o!`LJ$yYtK&@*d*lW3m~>?{R%F_Yo$&)W5Cwk7-SGH;BY&|sgM z?=gCyW?*`G=#80Bw+lrFP>-UIX%6~%abkjN-su9$n6r}cyMcQkSeKQ<_NBj1$?VvNP&~y^JW`$ALxR04 zv~XK1uT?r8-j<~OA5QJ(v)wbr9a>_|i(X!=$XxT?>}Knem8w;%YEjGSMYTjmB1LsJ zoh!%%Imd<}eG>RAn4NDFeGK>ZY>q@w3LX?$5Zq1#JO}LO}xs(KG)df zLR~jkT}b8$)hHVcLo2ouDN=lHK0Z62OrBF_XBAn#c+}?_d1ZmVMH73HVX;BhpV$Pe zJq4wfw0mk%FRwM$`+Jg=RQmZL;^{)mQ$pRSvbmyat#WVMv0hW}>mfa-q~-I2#KV=A zhq$H1oEV_*4ExC-4Cmwv0&#M~auUxt3&dvb4&q3eRWiy;5#s22%h8vr&1$RZH0oW*J_oTS|U}at?B&{rP7L$SO^hki!EnqwMO0* zjhfz?QK0J~b(Pe7vM=RSQcf!`3=kKWS}qi4x$LP;wY*X6-)d6vgdBhV2=URX>v+oP zqs^vLZS*gQoFeV@e2{o()iu3K>~_ayE%!q!$J0vYVt_blHQsou@!HcpZ2ojVPsvm& z6Tis&T$2|Ttl1ofky0dlOO?$wUUR*PwxGUv6LSi=L;d6yo^0R$d*6cbjFOZWeIx}b zMWJMrS&u;`m&xK*ZJV_WIuTnbtE)wAP0g=Y3^Fg!H*>;6mKVIl6{#1?Rg%tAo35;a zko&ws-S&48R}?w!G4)$6_SB!sq?Al@#!YI0l$doPd-pl1xjAxg&2j|xWH;=+bDGU4 zb4pnF9TzWba>6%-FAIMvYzprceogoTL4BkhI-G+52!H?xfB*=900@8p2!H?xfWYHL zfV^Fc-cZ;xW_fB< zdC}*QxjuU`0>d89bij&W^A>c@VubU|w5;u&3L{5|-+)kb3EvU6g`)5U;qQe{3%@SB z_wlL*lm-Mq00ck)1V8`;KmY_l00ck)1l~FVA+I=OzP>lAfg!IrYF=2A0{k)W*eKW9 zYGnQ2f5JO?igWIvaGd+X-jNYDjX-Azyb-~S&?{$rhcD?_P`n;~mQ;v83y5l_L^}0qz=oSI`{vY;`E0JEY z_y41AaydaS?f3s7j$}I4@%~TO|E2J+xP(lp{YGxe!T4#v|eIe~14i{H5?`!+#w9P2vC_5C8!X009sH0T2KI z5C8!X0D(78AnfHvxxl8OZ>f!{BzU=TER%Ix;~aw3nu|cJrEi`sypWoBHjgEiJotXd*${8n+Jv5~x0JD<9n zURcOK$CmgLN%{Gdl0KKOl-j>dNPZqQJ})ctO5&WXB$DY2UH|8VAGpYW{6i@soPYob zfB*=900@8p2!H?xfB*=900C6e{hys4E_F}?0w4ea zAOHd&00JNY0w4eaAOHd&@GuBq{r_Q5gbxq^0T2KI5C8!X009sH0T2KI5IEcf@cw_e z>j&yU00ck)1V8`;KmY_l00ck)1VG?n5TKj>B_Zn){#W>c@L$5Wg?|&iA^d~z72%7* z=Y`J-pB6qT{E_f`!fy#55`I zkG^BQ*-y@Tv1uw#TB!}RD0vEu+c9%08IJ-P$z$g`uL9erL;kn_@mhaTJ> zPcVq}|Hr*?qI@6#0w4eaAOHd&00JNY0w4eaAmDO2e*X_RKmY_l00ck)1V8`;KmY_l z00ck)1RhfYc>jM)D;C890T2KI5C8!X009sH0T2KI5C8!O0lfb^VBi!4KmY_l00ck) z1V8`;KmY_l00bUW0(k#_Oe+?}0s#;J0T2KI5C8!X009sH0T2KI2LZhQJ7C}x1V8`; zKmY_l00ck)1V8`;KmY_DQvzWh`M3XEA8`q%BYzY8ivKg=E$>aw@A`eAPxxw~arZ}q zPX(^HKH~l;_deH`T+eku82FC=b@A#n*Gw4Yf__iiXsoLnb-kvp)hZj+x_NFC)U=jJ z>V>&nx52UV%h`pMthBiFV)mvK?T+qAAC+GFsgt}oJssw>G9HgP(~`jQny!}gdR<#1{!Is#EaD_zAyUf?wXt2*Sq^RKRQ7WArR;Kc z>3sHjyR6OxR&is}i_~tJFN>Dr3*Bl_TZ>Bd zl2$Ad`O-$YZmgB{LYsqh{$lq0B~mvX_CNNV6pzK4TO$Fn8C>9YX1dxO6J6D7C8J&^ z6=b(QJB$!h6Dcj7OUp@hqio!57r|_5wq^YZtL5BSTD*3nPYZpJ+@jLeC1)$|_CYze z(34uQ)zF%bHKzu7@zo61ykZxe-Dj$8SU2xHTFzV|8PDfdGpvX`c0+ycydI-oXO0r| zSX1?8AX9r=Aob+Qa66|CB-btj6(7$R7#|EBu-4w^ixi?OAB5T7qvJ0er=rn&^+Y^8hJFf{x*LPWyOqYKnX9r|t6CP*?)dYTZ1o z6lx|VEAf0hZ;vM&5{E5`yAAa$rF%QwUAC1jN*ZcQ54l5chInydfxG{#T>;FH9qg(w z@6x_8;XVznui*nVK<4RSH!C$g*nRYt+^a9U{j_P{VqmQsqpsiG(93zf>(bMKuq*N` zy$7EmDPzrB952qya620FX}v|3jJ29ZUj^$u0qzdJt=CRF!2{KZR;}7SLQ+vW-Wxmn zi|$yGv}ow$eYEFwHHP(n+8^Qr0w4eaAOHd&00JNY0w4eaAOHf7H-WJGt7QHE<6d9Q z`*k4|F~SR>I|F~_UT}Z?h#34=?vmT<`Z)hZ{)?0XF?}>2_gA@3iLn^>#x$E?DeGIR zIfF^3mO8KKG;8zNEH7SSWEFF3juqszyy$=~RcRDfx6Vot8UICamch zYuiC*WZ(4W>|UoKoy2kEMHXn&3QtS1bH+JMWXbAG+qJ&Z8A%?7q7;4n@a8!rzSeD2bx0(o=uIHSgGyFX8TOAcsrNe z*i`5P&4YDLbtM!h6l-og_}iZ2E;`xml9O+KmR$0W`Nz1=i)YSoZ(K49RjtMoYH7Pv zDd?)cwj+Snt?-Z(|?s~SDY#If=LaBUREcHg$_fP1kI(vF4!UTx_@6 zZhOB_dxue8NvHIjmhLt*KTBZF_GZjxZ&u!op*uReLF+C z?wMW#+&Jok-Z=M<&hz5f826qnN5|EuntfKI8tvCzk>Iy;PqkP7K{~s)t|QY5d-drX zRW_p8ecK`FvkOMOTGYshp`*u+B~pGdJHFfV-CnUZSBmMFEAZMoWPZ;bBK?-T9SecI zi|~6r^Qv0CzC|8sb|;@m&ULJB6}5VUZtyh9&P6P;=h1vv)i=nJshNF8(Mc>DLUydC z_Zu=0LzcxJg9~D!mo%eji%cr14w0k=>J4pmwTr(gk?v*OBy0NJ`dF>rCd>AH*XKyu zRij4AzK5__^YmG=Gw^`h&kAaCH8q>oQ|2}md#O3n`8;9G!jA2EEVaBi7QSt3+M)D3 zO`6xw@Z$Cqw2!H?xfB*=900@8p z2!H?x90~$?Z^(5<9t#GiM#rbP&D?sSmfK7u<&=_6#*^}NT$xU$rGz{m&&AB5S@2j4WYqUF)hv$C9 z9deCP_mgAfpWn4aCOiEnlD7QhW_f)}->4YmSZkSg|KI&CF65eUiY7&(a60||C|KzF zzcg^uCH$lCG2v%~oG>qhBL5uuc;x+&T4X75E^;*dpW(j_e>D7hcqM!)^!?D6L%$!o zA9`2lxzMqJ{}}k(z#k6$;y{f!zy}0C00ck)1V8`;KmY{Z#sr>_d@gSERAAH4x70@U zyjGUzsnn>R7$-5~X95Mis5f*g&b*+pC(YRWx>jCm#hMo+_V^fyeR3k86$(~Daz?^W zogm?pGd#-K1u@tmz zED7xTM3C5wpYc!)Z38NTU7QV&*eTh~R8;j^$>?lWcF;3Cv7DK8TYBsWO3e~w2R`FB ztu1AC1huy0*?~{{h;=OCrW)-~YD$ILA*a1QSMW@Ni7i&v^m3!N-L5neAhD3M9%416 zSVEn4mQ35y%`7dEPD@K-+cL@#%gGrk&}l~HwQU^V{}C5`^qfoBhX00@8p2!H?xfB*=900?vvX!?1<`cgGVzPc^TLF>!g2mgMucc1TV z_wm#xsOk3~79qaFBE)-Ggm?~#kbqmTzDyr%H`cE2(