From f8d4e822f16e2fe6b24e3a0a72ebc8c9ad6e9daf Mon Sep 17 00:00:00 2001
From: akagundu <david.akagunduz@gmail.com>
Date: Sun, 3 Dec 2023 14:16:38 +0100
Subject: [PATCH] ajout rectification makefile + struct pixel

---
 Makefile    |  16 ++++++++
 evenement.c |  37 +++++++++++++-----
 evenement.h |  14 +++++--
 main.c      | 111 +++++++++++++++++++---------------------------------
 main.h      |  15 ++++++-
 prog        | Bin 0 -> 17168 bytes
 6 files changed, 110 insertions(+), 83 deletions(-)
 create mode 100755 prog

diff --git a/Makefile b/Makefile
index e69de29..0b30417 100644
--- a/Makefile
+++ b/Makefile
@@ -0,0 +1,16 @@
+CC = gcc
+CFLAGS = -Wall -Wextra
+
+all: prog
+
+prog: main.o evenement.o
+	$(CC) -o $@ $^ -lgraph
+
+main.o: main.c evenement.h
+	$(CC) $(CFLAGS) -c $< -o $@
+
+evenement.o: evenement.c evenement.h
+	$(CC) $(CFLAGS) -c $< -o $@
+
+clean:
+	rm -f *.o prog
diff --git a/evenement.c b/evenement.c
index a3cf5e9..fe150e9 100644
--- a/evenement.c
+++ b/evenement.c
@@ -2,6 +2,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include "main.h"
+#include <time.h>   
 
 
 void AfficherTimerEtScore(int m,int n,int score)   /*Afficher le temps passé et le score*/
@@ -21,18 +22,41 @@ void AfficherTimerEtScore(int m,int n,int score)   /*Afficher le temps passé et
 	CopierZone(1,0,0,0,930,710,0,0);
 }
 
+void InitialiserPastilles(PIXELS *pastilles) {
+    int i;
+    couleur r;
 
-void MangerPastille(int *serpent, int* pastilles, int longueur_serpent, int longueur_pastilles)
+    r = CouleurParNom("red");
+    ChoisirCouleurDessin(r);
+
+    srand(time(NULL));
+
+    for (i = 0; i < PASTILLES; i++) {
+        pastilles[i] = gen_pastille();
+        RemplirRectangle(pastilles[i].x,pastilles[i].y,T_PIXEL,T_PIXEL);
+
+    }
+}
+
+void MangerPastille(int *serpent, PIXELS* pastilles, int longueur_serpent, int longueur_pastilles)
     {
+        couleur r;
         int i = 0;
 
-        for(i=0;i<longueur_pastilles;i+=2)
+        r = CouleurParNom("red");
+        ChoisirCouleurDessin(r);
+
+        for(i=0;i<PASTILLES;i++)
         {
-            if(serpent[0] == pastilles[i] && serpent[1] == pastilles[i+1])
+            if(serpent[0] == pastilles[i].x && serpent[1] == pastilles[i].y)
             {
-                
+                printf("\nMANGER !\n");
+                pastilles[i] = gen_pastille();
+                RemplirRectangle(pastilles[i].x,pastilles[i].y,T_PIXEL,T_PIXEL);
+
             }
         }
+
         
     }
 
@@ -64,27 +88,22 @@ void DeplacementSerpent(int direction ,int *serpent, int longueur)
     ChoisirCouleurDessin(j);
     if(direction == 0) /* Direction vers la gauche */
     {
-        printf("Gauche %d\n",direction);
         serpent[0]-=T_PIXEL;
         
         RemplirRectangle(serpent[0],serpent[1],T_PIXEL,T_PIXEL);
-        printf("Longueur = %d | x %d | y %d",longueur,serpent[longueur-1],serpent[longueur-2]);
     }
     else if(direction == 1) /* Direction vers le haut */
     {
-        printf("Haut %d\n",direction);
         serpent[1]-=T_PIXEL;
         RemplirRectangle(serpent[0],serpent[1],T_PIXEL,T_PIXEL);
     }
     else if(direction == 2) /* Direction vers la droite */
     {
-        printf("Droite %d\n",direction);
         serpent[0]+=T_PIXEL;
         RemplirRectangle(serpent[0],serpent[1],T_PIXEL,T_PIXEL);
     }
     else if(direction == 3) /* Direction vers le bas */
     {
-        printf("Bas %d\n",direction);
         serpent[1]+=T_PIXEL;
         RemplirRectangle(serpent[0],serpent[1],T_PIXEL,T_PIXEL);
     }
diff --git a/evenement.h b/evenement.h
index 274b155..a7a8cdd 100644
--- a/evenement.h
+++ b/evenement.h
@@ -1,6 +1,14 @@
+#include "main.h"
+
+#ifndef EVENEMENT_H
+#define EVENEMENT_H
+
+void MangerPastille(int *serpent, PIXELS* pastilles, int longueur_serpent, int longueur_pastilles);
+
+void DeplacementSerpent(int direction ,int *serpent, int longueur);
+
+void InitialiserPastilles(PIXELS *pastilles);
 
 void AfficherTimerEtScore(int m,int n,int score);
 
-void MangerPastille(int *serpent, int* pastilles, int longueur_serpent, int longueur_pastilles);
-
-void DeplacementSerpent(int direction ,int *serpent, int longueur);
\ No newline at end of file
+#endif
\ No newline at end of file
diff --git a/main.c b/main.c
index c9710cb..a6babb8 100644
--- a/main.c
+++ b/main.c
@@ -3,17 +3,7 @@
 #include <graph.h>
 #include <time.h>
 #include "evenement.h"
-
-
-#define W_WINDOW 930 /* Largeur de la fenêtre*/
-#define H_WINDOW 710 /* Hauteur de la fenêtre*/
-
-#define W_GAME 900
-#define H_GAME 600
-
-#define T_PIXEL 15 /* Taille d'un pixel*/ 
-
-#define DECALEMENT 30
+#include "main.h"
 
 #define delta 100000L
 
@@ -28,70 +18,46 @@ int ArrondirPixel(int nombre) /* Calcule un arrondi du pixel pour pouvoir respec
     return arrondi;
 }
 
-void gen_pastille(int nb_pastille, int *p_pastilles)
+PIXELS gen_pastille()
 
                                    /* nb_pastille = int nombre de pastille voulue , p_pastilles est un pointeur d'un tableau de pixels qui sont des pastilles*/
                                    /*Générer une pastille dans la grid*/
                                    /*Code n'est pas complet*/
                                    /*-Elles se génèrent à des endroits qui peuvent être les mêmes ou gêner le snake*/
-
 {
-    couleur r;
-    int x_pastille,y_pastille,i;
-    r=CouleurParNom("red");
+    int x_pastille,y_pastille;
+    PIXELS pastille;
 
-    srand(time(NULL));
+    x_pastille= ArrondirPixel(rand()%W_GAME);
+    y_pastille = ArrondirPixel(rand()%H_GAME);
 
-    for(i=0;i<nb_pastille*2;i+=2)
+    if(x_pastille < DECALEMENT)
     {
-
-        x_pastille= ArrondirPixel(rand()%W_GAME);
-        y_pastille = ArrondirPixel(rand()%H_GAME);
-
-        if(x_pastille < DECALEMENT)
-        {
-            x_pastille =+ DECALEMENT;
-        }
-        else if(x_pastille >W_GAME-DECALEMENT)
-        {
-            x_pastille - DECALEMENT;
-        }
-        if(y_pastille < DECALEMENT)
-        {
-            y_pastille =+ DECALEMENT;
-        }
-        else if(y_pastille > H_GAME-DECALEMENT)
-        {
-            y_pastille - DECALEMENT;
-        }
-
-        p_pastilles[i] = x_pastille ;
-        p_pastilles[i+1] = y_pastille ;
-
-        printf("x : %d ; y : %d\n",p_pastilles[i],p_pastilles[i+1]);
-        ChoisirEcran(2);
-        ChoisirCouleurDessin(r);
-        RemplirRectangle(x_pastille,y_pastille,T_PIXEL,T_PIXEL);
+        x_pastille =+ DECALEMENT;
+    }
+    else if(x_pastille >W_GAME-DECALEMENT)
+    {
+        x_pastille - DECALEMENT;
+    }
+    if(y_pastille < DECALEMENT)
+    {
+        y_pastille =+ DECALEMENT;
+    }
+    else if(y_pastille > H_GAME-DECALEMENT)
+    {
+        y_pastille - DECALEMENT;
     }
 
-}
+    pastille.x = x_pastille ;
+    pastille.y = y_pastille ;
 
-void DessinerScene(int* pastilles) /* Dessine la scène */
-{
-    couleur c;
-    ChoisirEcran(2);
-    c=CouleurParNom("lightgreen");
-    ChoisirCouleurDessin(c);
-    RemplirRectangle(T_PIXEL,T_PIXEL,W_GAME,H_GAME);
-    gen_pastille(5,pastilles);
-    
+    return pastille;
 }
 
 void InitialisationDuSerpent(int *p_serpent) /* L'initialisation du serpent */
 {
     int x_millieu = 0, y_millieu = 0 , compteur = 0;
     couleur j;
-    int i = 0;
     j=CouleurParNom("yellow");
     ChoisirCouleurDessin(j);
     x_millieu = T_PIXEL*30; /* 30 = 60 colonnes divisé par 2*/
@@ -103,7 +69,7 @@ void InitialisationDuSerpent(int *p_serpent) /* L'initialisation du serpent */
 
     p_serpent[0] = x_millieu;
     p_serpent[1] = y_millieu;
-    for(compteur=0;compteur<=18;compteur+=2) /* Commence par 1 car p_serpent index 0 initialisées pour la tête et 2 + 2x9 = 10 couples de coordonnées 2D */
+    for(compteur=0;compteur<=16;compteur+=2) /* Commence par 1 car p_serpent index 0 initialisées pour la tête et 2 + 2x9 = 10 couples de coordonnées 2D */
     {
         p_serpent[compteur+2] = p_serpent[compteur]+T_PIXEL;
         p_serpent[compteur+3] = p_serpent[compteur+1];
@@ -112,12 +78,18 @@ void InitialisationDuSerpent(int *p_serpent) /* L'initialisation du serpent */
 
         RemplirRectangle(p_serpent[compteur+2],p_serpent[compteur+3],T_PIXEL,T_PIXEL);
     }
-    printf("Avant \n");
-	for (i = 0; i < 20; i += 2) {
-        printf("(%d, %d) ", p_serpent[i], p_serpent[i + 1]);
-    }
-    printf("\n");
+}
 
+void DessinerScene(PIXELS *pastilles, int *serpent) /* Dessine la scène */
+{
+    couleur c;
+    ChoisirEcran(2);
+    c=CouleurParNom("lightgreen");
+    ChoisirCouleurDessin(c);
+    RemplirRectangle(T_PIXEL,T_PIXEL,W_GAME,H_GAME);
+    InitialiserPastilles(pastilles);
+    InitialisationDuSerpent(serpent);
+    
 }
 
 int main()
@@ -126,13 +98,14 @@ int main()
     int score =0;
     unsigned long suivant;
     int go_on=1;
-    int x_pastille,y_pastille;
     int n = 0;
     int m = 0;
+
     size_t longueur_serpent = 20;
     size_t longueur_pastilles = 10;
     int *serpent = (int *)malloc(longueur_serpent * sizeof(int));
-    int *pastilles = (int *)malloc(longueur_pastilles * sizeof(int));
+    PIXELS *pastilles = (PIXELS *)malloc(longueur_pastilles * sizeof(PIXELS));
+
     int direction = 0;
     int direction_davant = 0;
 
@@ -149,8 +122,7 @@ int main()
     InitialiserGraphique();
     CreerFenetre(10,10,W_WINDOW,H_WINDOW); /* Peut être changer cette ligne avec la fonction Maxx et Maxy fournie dans graph.h ??*/
     ChoisirTitreFenetre("SNAKE SAE11 IN C");
-    DessinerScene(pastilles);
-    InitialisationDuSerpent(serpent);
+    DessinerScene(pastilles,serpent);
 
     while(go_on) /* Lancement du cycle pour les Inputs et le Jeu*/
 	{   
@@ -220,10 +192,9 @@ int main()
                 suivant=Microsecondes()+delta;
 
                 direction_davant = direction; /* Check si le serpent à le droit de changer de direction */
-                MangerPastille(serpent,pastilles,longueur_serpent,longueur_pastilles);
+
                 DeplacementSerpent(direction,serpent,longueur_serpent);
-               
-			
+                MangerPastille(serpent,pastilles,longueur_serpent,longueur_pastilles);
 	            }
             }
             
diff --git a/main.h b/main.h
index 6adf711..031d981 100644
--- a/main.h
+++ b/main.h
@@ -7,5 +7,18 @@
 #define H_GAME 600
 #define T_PIXEL 15
 #define DECALEMENT 30
+#define PASTILLES 5
 
-#endif
\ No newline at end of file
+
+
+
+struct PIXELS {
+    int x;
+    int y;
+};
+
+typedef struct PIXELS PIXELS;
+
+PIXELS gen_pastille();
+
+#endif
diff --git a/prog b/prog
new file mode 100755
index 0000000000000000000000000000000000000000..e4c8f944e2482e1cf638c5e34a008dd58890f2eb
GIT binary patch
literal 17168
zcmeHOe{fvIec#g$5JpC4VuLU-J`+f7h!4p&#uyAI<Yzw<%gC10k_2*`bx+oTbSLfy
z*aU$+XM-<ir6LKGPFrGVXCVE-kSU~w30M+f3y+hL8Jf6B+EJ(}cd<!jVH)wv*Uxu%
zzfbR;btKdDk4{H>bML#~pZneK?%Un>-tL3O`ZZ-9kKj};ZV-fxp06kY&1k+(X8;0X
zg_w!!d~u053wVX3DSki!a8){5Rt&2&y&RDAYAG`X{JbIyhU_6h(kqoZ&s7|T!mDu7
ztE8;P-Edxwl4HnxyF8!b3l}`B>&MWkN3p3|tn{i@xuCB1LJe7u%#mKL)~nTe423R_
zA;*(qLjM)oo*UMIM~R_ZuT$%};cBHO7*ZLOTHZ;9|0m@&YrVZbX-2qVQjrBiE^j0B
zC@#Nm;%45Y%PZ9m6FQy@sl6#()fL&ieA!i9;l*8%Xlm=?tt*x<UcStqi20XDKKbRt
zpZe6=4Q<pM14QHIEZeSdwnx0#nosg=Pc&Wgc5Tl0^tWrjf6v_A?=E}ly#UFO-=sq_
zl*k@8IpLI_i$BT8czAXoC(4L+G5$xapLAb4p5@zyctz=Z!1S$MM86&er=n9kOhu>i
zeMJ@&a!m<4FM~amoi!!swI%F)TtYrrg8pC$I>p(CzdL;i1fQD-{7><p%KuFz=x>&w
z|3?XWONsi{m!Lma!p`~<@=Hq4=a-<rSHga{g#0<6UkV*}GC-e&9_tGz4v#w`7~Ikw
ziv|<PP&^q7ir~7|reN5LTU#QDq!n*%YV3+dt=7=yE=%#I<QVPoNZe|*wk9pn*cpo?
zB5{yHQAQeLsV*xOUu`845fEcN5i9;x*cGj@RC}joL>rPxD+=W`R=nGauZ@R#IwN<d
zEV0Sz?&*reH(Bk;P;?7?XpCD{e2o>gl5tC{i$;=>P*)`3RMF+PMj*k0su<A}X^+Pe
zR(mWOwi0kdI@KJCZ-{jx4((e*!H!52_U^Mpcc`l?)($GhpLQLc?hu?$pju(klS(E;
zBH9y=M3WsNkwnDeqT}9p1a%0Kc>7(!_RhP49id2<NJhFX0Xti$S~PUk5!Oz*<znsn
zbvHEzm-v@1v$K=ACH||?Tpo-z9@mxd$zQpYD8scv%27@w4@Rzg(e^wJKmW*M7_KVB
z4o#aKiOi(YZI8xNb0g=_==K<JO7?uIP%-d1mGSaCs_EM`y(*vx+`kw<dZVJ#SV`k6
zr%?yJnu&lp2OSRDY0N>Vv6j<>gMJ|s0lB}^{6OO}r#dZvHVC?^lC{D?=NJ+r;Gpx|
zLUhwXm+KlLA~iecRA)}NI_Ok3r#l>Ujvetj9dtB|oq8Pf88%gjtq!_gf=TXn2mL&U
z{B8$bFTEtU-$CcTLyX5A^jQu&dmVJ=`2386uDgiTdd@+o`Iyr_2Yn6`0S6rP3mo)e
z2ffxoA92txa?q!<(-D}Cz;p!uuSMYfnoB-1(<iFTY~>qQVOrTWkSr^VnCaK5UX`vE
zuKvg`#CYNIj{$1t3zF|7&UpS;g+ifU;xv(s=a1MpO<?2sK^v!uYdrr08>fkQJpZJP
z(*!o2f5gUV;u_EIuyLBO#`AaEI89XJ`H+p%1T~)DXyY_7jprL|oF=64e7%j+gg>5N
zVB<8=kLPFEI89XJd5?|L1T~&Nd7A4>6BFuh<1`_m{x(h%5$bQ_Gy$RhHck@{>d!c$
zYsu)Y7BarTA6-n*p2YiH_%0XT>%vnmyxWCaF8p>E-sZxaT)5%FSGn-3UHD=bez^;u
z=fdZ>@R=^W(uIGD=Qd}&K5*jo@2$%m`MQ~T+e{xDYi>2_2kPH2`&R8nw=B$gACjj!
z{5A7;qET=I^sV|36tk~#oWQjc$vL<+en@%T8s`*7Yvyk!xmPuW{2NmK>LCJ)PMeuA
zbMQAenu8PNrssfp<aBa24D@OPRfW+G=_l*c{j+`5Ux6)BSGJkyRbQp7nRzE!ZDv<>
z0LlH!r-ec;jLvwVG6mdoJ9O>xNk4xtn3QRQUZ(d%);M9dkC>4+GrM>1HV1$0^9&7s
zRGv97czS;3$fA>(LxXQuEIPDkBx6jZdne9*unG!S8WYEB_EASiE;9s*2mDX6#wWMG
z%BC?+cyr%CuT|Dx|Hr2uVe98)1_wW!zvxip&`v~k(Qsxc^Rrw8Ze@(IoC%f8kl8+D
zMh0HkvEgEKFy|YbI4g66RE8tNw_?1=j6msNZn;!BmF^vz_u$zFjj>DMP`dY&L{1Ts
zHOAm});I;{%&al-hSR$`Gt+w%T96Y5jZ+GoAb|Fqi&4Nt5i<}@6E;Yjap(+T5QEN_
z0QS@PmAe#j+0-c%_#%bnCAvWUYo9<pYaGqCjb*%)G5eY;$e*%<hAb-o0|-(RJZ|>Q
z-i5r7Ql62lS5eagWoBQsgEO2Ss>#?)k6Wz`t@);z9x8{{qsm^}QPXoMD>7wl5xnBE
z>X?JFiaDaFI(t4Y6w=0tvUKkWZ_T$1gulPPD5gHdG-qZ~qbe%ZRQ<lnw=m>V@Lq<x
zGnj<GNbUI&^@CR^X8Y-qyNm?01}q)SWikFEKT7!<Xb>zau=#+oA1yILH9cs&MRUtR
zV?bfA5ik!Lqcnm7=4hmsrUpmL$lN^T&zLM~aI~Cg=V%`f8pEW1&^S!ML?08W#ke;w
zS_CXJ_|gJUU!meqze-)dUg+*4T0VtJL1#kgytD93og<i*sJwNyP6KrIL0ROij}Vsw
z6qlzcF68!py5y?KxxUJO(z-80&P3OO|LB}QC38K9Q2yWGgR*oNB+?U}nq3##q{m5V
zRck?rWL&|Thkp#?=BgIZYIgQd<{y4R<~Nb-7tB=zYaV`*Xz2-G&CVT?yOFq!`ELS2
z%uoz&!NcV>yZU5q7-grC%NmC>#_;iPKm=7H5l<?a?j0^qMK!BKM;xrOR1hqY`if?4
z1Pjq1Es?qztg_T<&ANVj?|zXw3%$T|d<OEKR0Z`21nIA_4xorseTaxqBlhPH$m@W-
zz9g^D<4P84cKt1KDrP@}f_bfRv?l!+XlY}>lQjm;93m_AAa>WG>uChr^=9hawDFop
z_r7e~NVaJpYrK~E34G|Zjo(McEB8L+fo~WVjNy!Nn7U+U$jmm40XL;WH-bdHGBe1`
z6b(URRH5YvMY{Jb_*{#|Rz81cLgySe$Bq;9&LH!0HI0%lRMGX(3S7fxw&L=I@Q7~3
z`T>M$7nV?Dc^<5onO(IIGP4SRdLgL$sa<ockh@ddDH>$wY}iM=^F=TO1ykJ(>b~Fk
zTUbcH=FRp|vDrt-1+#CL51=74oH=6l&8bD1uY{q7f>j-Egi=;|X!aTXQmFC_p}AyP
zS$dJWgqaz7<(tUtzaB{LddW5Vi&-?n<Q9PS8NNeXs7en1m-4+I@tz2qSE^VgD|0be
zm<(?V=C_43gCKr)VM$8y`&UxUVA#?_7vcNKa_&3Og#h_?&^Sh<<Ke7vOpf}m6ABer
z`h1xR#Xi{(<!4G@Ug*L6;Z_8>c%c6G4``r1=1KP+t9anCe$?f5$K*%8uaLfHQX`qR
z!<nXG?G-BX1dX@w)$6JZ;aV#HBkeIwQqq@duEdDx8P1AphiZ0xmur<Cs3;*9sJM10
z6+@YRUFL0Y+g-bn$*??$@R^x2!h$lV3X3Echvo38$*|OXYbCm)J2Z$)Ak%voQ`kVJ
zZ5XXGfQi%irOX5>GKQYmmcmi^y`FAU#OfIAqT$Ctl6NjhM-<6kI1o;^_v0o_K7Gx!
z9vL9VG51bVNnBEk{hkeF#GX3*@%uSIye3fc=yr;c9&oM+n2BYc>NE~5tlNG`ivnVt
zp#|nBF>|OrRtKm#`V$FXXAIZu*-AIG9*=(eK7vXk^VQ^hR`fNWq>Nne48U+jwoWmM
zmJ$un%Ks1*l2gG-l8~}q&ZU2iWey`#nm9dPC>*~>&KFBm34P5ql=&Tc2T1P*=#{5d
z*ag@{$>o(zp33!yppR7ue5bW8dQ8>i6EKMXj}yJ)r?kz&cZYlNePByxatpq7M0K5w
zcpM*4eBnQm-z7rHNG$3LTfXjBzuz6hrx*VW(Xyf8%Z9I|!KknIt=r&h6b&hS0r4f}
z7Z$dg#P^hhZ>8_@x+US2bP+9$w`?*b<(jaFTVXMysbRxfW0P+|krSSa%dbnqmznr)
z|Ib3<8Nku8LV=ctV}Lop0JR?AB6L8SAa?@#058Qo767~lxAq-??*eWItiX)D7qA`c
zrUAhDSc4q{T#2=9l?sRaRtuBDbKfT6+3NLNTzz&`KV)d(Ngr3AIaw%tkpxzs?Imy-
z{>$(m`Hd<|oabG0UhT~_=iXbjUEDZ#<rPaWyOiWe|2F)q;JZ{LA`;P)lmWdN<#3|1
z_Taw&b^IC;jq|(@l{L;ht85cIQoj5>$hU$2L=pc{n@>xnpM&2@c3Hpt%N`OS`zP=}
z53#x%(B_wQ+WOVd3xYonW24P4pIy%S^vrY{2J&E${XdrWeNb5s`d?uF`w{ZCzL733
zdsY@9NTvreOVKVDJ8eLwe5N!b{roO?SD?+7QXARzxS~v10c|=>M_@Vv(-D}Cz;pzr
zBQPC-=?F|m;P;FG?=Ry0M6?X06ww*RX-^ZSY6a{KPV{_2$va;`-uuD(n0OBmmh3X|
z9wOe)MC))$%>UqYAx8LfwB|;tR6uOS`!h-!h@+ZMFOw-frTybQIJJr_oO@b`q}4?2
zjY>d2_J|3sPtPNic&`xeZR(+Ktq%I*+F|zlsA3B(Cb)e1c0-Bf@W>_WhvFm&?>!}c
zs}{i92<A&YJQhiOuIA%WLE>BwDfGX1vG-fMY}V<Awt$As8s4E{kA~Yd?ALIwhR<m@
zpy7yyqZ*EBh)t6+c{TKDSf^n?!)6Wd(6C2Cm)pM+tqLfSwT+D{eGA(*r=rP}ufE>D
z%wM;-J|)rm2bL`H*DYJ5$)9bKx>1EVi7yGoiTZ^HoISeXe40(4$fuI0ep4pA!t30`
z1)5LO11|bfP3QX<s7&i{^<W?B!hphcHy3S^eu3coP;rI09~ml_#|5VEmhyA#{fSI}
z8kwp5f3^g@RDJ2ay9aLrhUMD=wyxk*_J<|wbM`)Z*7yZ79^8F=e>450q+cl9{ks|i
zfKOo53b3St9|1V`)iL*61aK<4uLRu-`{yH`qgqM6JAtt)rMy>MrUxAP4g>TRp!>Km
z2V7gi{;ehG-9#^&Wsl2jDp5lI!4mXum!R)0L4TnH{dLf%s@JbTpG6VXOuRmqX{?0&
z48+qrMSESS<Gf!_IP!f8EPWC5OSMfWpih)jwd2MT^sj?HtL!4-4LGd`ai^5`iVO56
z$-6asYY97hv>hII*xH|KJ8$UwTE6oF^XU?Ho(0{D``Yc#OC{w0xdi>)67*BreqDe)
zRPaM7?-fJ3-^zDuV9mm~M*aNfdP0})szARC^r`m2UnAv<Z4>s>68_u_d1`leeK(e{
z6D>i%U(&teZ}dV%zPm%YkCc$74}(;%hjshPcY%<9n&@R%4e`81&LjPUmM_=+P`>*k
zMoW7<S?`Zww|Z!EB$y0s5g;Uzsg4eRyO=xx5KMLl+vx~E0+Qiaa7$NgbEqpAPR8Pi
zU?{a!w8yYR-%46x>}sD<g7(x$f}wakv@M7|{_$<1BOdCug5gwm_co|FuplIpMWVFj
z9{yPOV8?$qw2==6*KBHNGJ?j2)pTAVh!Z+N!_-7`^(GNqyZ)A&8rBDIS+l0aXbrYD
z+_c_+;OehzXlPp3c;=A;-o_u`t@yO--f>1@ixmy_gc8X}7oCA9J}yD$0E+acJdz+o
zAe@IJ)bWBM&En$-`V>R)!3p<iiO)W)aSP5Ngd@>lDuK89Qgq6*8)&ppGNg_;h$ft}
zu;R^=wRIkfD00_*QlseDM=*$kBf5pup${wG(vCLd10hAHGvGlY7VN~i3Iw<z9>?*F
zNW3|+)#}pcLlE`NiG+61eZ0c<YMDBlVdJtHoySGc{lb%HM&vh?)u|RM-h+-MR$Dz?
zp?2BHn52$%6xmZpJc>v`i{b|tT_;6sA)M?eK6uj5(GkI^mv}4Ag~W|yOM47wS?G|6
ztwOHL(<btcnDlwFX%a&C6Wh9zq0NBFxPqOW!>JThOZcO)q~+fdP5FD`u^ua)+~y!{
zPDOC4E)v$HhMU$crcpqOcZL$3!XMriMG*=n<BD^S6;I&XQxOsbFK%^(NI~a%x{|_A
zceC&#>)#U7863V5{v^%`2|o=BkdDdd`K?Yp5OjuNjWK0IjR;DE^C&9R9f2{Wj_x7+
z7>a0&pwaCQPBdI%%E#JMCHMJQeooYEDa(0+U%;Q9*;v2SIZ%?Nq#vggg6nepo%-(c
zp!A)~nRuPTG+Jjn^?9Ao(8q!ry7m7AbZkqAvH$%1%W$FA<L6(u{~_?{*_ZYC`IzBe
z%^)8s&aBVRsS(gHb=ms-yv>lGuOT86*>EOW_t3K|m(S0u3|DAj_Mhb#J^(&F3p38o
z!wdsj-|fF93)-VaF=c&zK4-|!=Ul$K{(q+RZ_)<&d7mM_A0T~-nOpx!&?qKs-(DB!
z^?_avKtd&V`~M}#PJN%&V|a%v;JoZ$__RxZyM7*K$a1=Pw|n9_mwvz2XXyMkOE%aZ
zL)tv$^ndhxk`nfF&tm(<k)pGn!mwir8K*wKPh!aLnONQ(KiaiJ`rQ7)rzJJ~o<<pP
z`!W7wWSshYeTu`-J<7Su|AkAxc7f7o_&gbRBzO7mfJfW!=^muS@6YV>+lp*oS)bua
zaBA>peSWU@E><cm#|9W@_$e6FcUhmGlleS82bS(XO0382_;;XD6>WX}ey#Q@lE%I<
z1?(&9Gdv5*PJI#3qIC*#Ic$LS7^iRbMC0;(0mbo_(Dx~}eVwJt*Wxyv^{=!kDnq_f
zazeZBDVDqjw81((Fw6s$9`V?J9)Icm5c@6_^`(a<CZr)3lgm|Hdd8Ysf5}QEG1sNw
HLdAarBbS7q

literal 0
HcmV?d00001