From 16f25a21a4f28d78ef3a4bb886bfcbc7383daa1f Mon Sep 17 00:00:00 2001 From: sparky4 Date: Sun, 23 Nov 2014 15:46:16 -0600 Subject: [PATCH] modified: Project 16.bfproject modified: modex16.h modified: scroll.c modified: scroll.exe --- Project 16.bfproject | 24 ++++---- modex16.h | 3 +- scroll.c | 137 +++++++++++++++++++++---------------------- scroll.exe | Bin 21064 -> 21288 bytes 4 files changed, 81 insertions(+), 83 deletions(-) diff --git a/Project 16.bfproject b/Project 16.bfproject index 3a2786fe..698c75de 100644 --- a/Project 16.bfproject +++ b/Project 16.bfproject @@ -1,9 +1,9 @@ c2e.convert_special: 0 e2c.convert_num: 0 openfiles: /dos/z/16/doc/project.txt:0:0:0: -openfiles: /dos/z/16/scroll.c:12102:11962:1: -openfiles: /dos/z/16/modex16.c:6464:6244:0: -openfiles: /dos/z/16/modex16.h:1191:2119:0: +openfiles: /dos/z/16/scroll.c:4669:4145:1: +openfiles: /dos/z/16/modex16.c:2077:556:0: +openfiles: /dos/z/16/modex16.h:1150:0:0: snr_recursion_level: 0 convertcolumn_horizontally: 0 adv_open_matchname: 0 @@ -18,7 +18,7 @@ c2e.convert_iso: 0 opendir: file:///dos/z/16 wrap_text_default: 0 bookmarks_filename_mode: 1 -ssearch_text: color +ssearch_text: modexShowPage(spri->page); snr_casesens: 1 view_blocks: 1 name: project 16 @@ -27,9 +27,11 @@ replacelist: \t replacelist: putPixel_X replacelist: SCREEN_WIDTH replacelist: SCREEN_HEIGHT -replacelist: animatePlayer(spri -replacelist: animatePlayer(draw replacelist: modexClearPlayer(mv->page +replacelist: animatePlayer(draw +replacelist: animatePlayer(spri +replacelist: modexDrawSpriteRegion(spri +replacelist: spri->page = modexDefaultPage(); fb_show_hidden_f: 0 editor_tab_width: 4 show_visible_spacing: 1 @@ -104,11 +106,6 @@ snr_escape_chars: 0 htmlbar_view: 0 spell_lang: en ssearch_dotmatchall: 0 -searchlist: mapScrollRight -searchlist: 32 -searchlist: map.dat -searchlist: int index -searchlist: draw searchlist: SC_INDEX searchlist: gq searchlist: setvideo @@ -118,7 +115,12 @@ searchlist: color 0 searchlist: sprite searchlist: clear searchlist: modexClearRegion(mv->page +searchlist: animatePlayer(spri searchlist: color +searchlist: modexShowPage(spri->page); +searchlist: animatePlayer(draw +searchlist: modexDrawSpriteRegion(draw +searchlist: spri->page=NULL; autocomplete: 1 outputb_show_all_output: 0 bookmarks_show_mode: 0 diff --git a/modex16.h b/modex16.h index 855042ff..9ee36908 100644 --- a/modex16.h +++ b/modex16.h @@ -34,7 +34,8 @@ void modexClearPlayer(page_t *page, int x, int y, int w, int h); void modexDrawBmp(page_t *page, int x, int y, bitmap_t *bmp); void modexDrawBmpRegion(page_t *page, int x, int y, int rx, int ry, int rw, int rh, bitmap_t *bmp); void modexDrawSprite(page_t *page, int x, int y, bitmap_t *bmp); -void modexDrawSpriteRegion(page_t *page, int x, int y, int rx, int ry, int rw, int rh, bitmap_t *bmp); +void modexDrawSpriteRegion(page_t *page, int x, int y, int rx, int ry, int rw, int rh, bitmap_t *bmp); +void modexCopyPageRegion(page_t *dest, page_t *src, word sx, word sy, word dx, word dy, word width, word height); /* Palette fade and flash effects */ void modexFadeOn(word fade, byte *palette); diff --git a/scroll.c b/scroll.c index 65ea0279..314d5bd7 100644 --- a/scroll.c +++ b/scroll.c @@ -51,7 +51,7 @@ void mapGoTo(map_view_t *mv, int tx, int ty); void mapDrawTile(tiles_t *t, word i, page_t *page, word x, word y); void mapDrawRow(map_view_t *mv, int tx, int ty, word y); void mapDrawCol(map_view_t *mv, int tx, int ty, word x); -void animatePlayer(map_view_t *mv, short d1, short d2, int x, int y, int ls, bitmap_t *bmp); +void animatePlayer(map_view_t *mv, map_view_t *src, short d1, short d2, int x, int y, int ls, bitmap_t *bmp); #define TILEWH 16 #define QUADWH (TILEWH/4) @@ -85,14 +85,14 @@ void main() { screen = modexDefaultPage(); screen.width += (TILEWH*2); mv.page = &screen; - screen2=modexNextPage(mv.page); + screen2 = modexNextPage(mv.page); + screen2.width += (TILEWH*2); mv2.page = &screen2; - modexShowPage(mv.page); + //modexShowPage(mv.page); /* set up paging */ draw = &mv; spri = &mv2; -// draw = &mv; //TODO: LOAD map data and position the map in the middle of the screen if smaller then screen mapGoTo(draw, 0, 0); @@ -104,9 +104,9 @@ void main() { player.ty = draw->ty + 8; player.x = player.tx*TILEWH; player.y = player.ty*TILEWH; - modexDrawSpriteRegion(draw->page, player.x-4, player.y-TILEWH, 24, 64, 24, 32, &ptmp); - - modexShowPage(draw->page); + modexDrawSpriteRegion(spri->page, player.x-4, player.y-TILEWH, 24, 64, 24, 32, &ptmp); + modexCopyPageRegion(spri->page, draw->page, player.x-4, player.y-TILEWH, player.x-4, player.y-TILEWH, 24, 34); + modexShowPage(spri->page); while(!keyp(1)) { //top left corner & bottem right corner of map veiw be set as map edge trigger since maps are actually square @@ -116,17 +116,14 @@ void main() { //TODO: render the player properly with animation and sprite sheet if(keyp(77)) { - modexDrawSpriteRegion(draw->page, player.x-4, player.y-TILEWH, 24, 32, 24, 32, &ptmp); + modexDrawSpriteRegion(spri->page, player.x-4, player.y-TILEWH, 24, 32, 24, 32, &ptmp); if(draw->tx >= 0 && draw->tx+20 < MAPX && player.tx == draw->tx + 10) { for(q=0; q<(TILEWH/SPEED); q++) - { -// modexDrawBmp(draw->page, &bmp); - animatePlayer(draw, 1, 1, player.x, player.y, q, &ptmp); + { + animatePlayer(spri, draw, 1, 1, player.x, player.y, q, &ptmp); mapScrollRight(draw, SPEED); - modexShowPage(draw->page); -// mapScrollRight(show, SPEED); -// SWAP(draw, show); + modexShowPage(spri->page); } player.tx++; } @@ -135,10 +132,8 @@ void main() { for(q=0; q<(TILEWH/SPEED); q++) { player.x+=SPEED; -// modexDrawBmp(draw->page, player.x, player.y, &bmp); - animatePlayer(draw, 1, 0, player.x, player.y, q, &ptmp); - modexShowPage(draw->page); -// SWAP(draw, show); + animatePlayer(spri, draw, 1, 0, player.x, player.y, q, &ptmp); + modexShowPage(spri->page); } player.tx++; } @@ -146,17 +141,15 @@ void main() { if(keyp(75)) { - modexDrawSpriteRegion(draw->page, player.x-4, player.y-TILEWH, 24, 96, 24, 32, &ptmp); + modexDrawSpriteRegion(spri->page, player.x-4, player.y-TILEWH, 24, 96, 24, 32, &ptmp); if(draw->tx > 0 && draw->tx+20 <= MAPX && player.tx == draw->tx + 10) { for(q=0; q<(TILEWH/SPEED); q++) { -// modexDrawBmp(draw->page, player.x-((q+1)*SPEED), player.y, &bmp); - animatePlayer(draw, 3, 1, player.x, player.y, q, &ptmp); + + animatePlayer(spri, draw, 3, 1, player.x, player.y, q, &ptmp); mapScrollLeft(draw, SPEED); - modexShowPage(draw->page); -// mapScrollLeft(show, SPEED); -// SWAP(draw, show); + modexShowPage(spri->page); } player.tx--; } @@ -165,10 +158,8 @@ void main() { for(q=0; q<(TILEWH/SPEED); q++) { player.x-=SPEED; -// modexDrawBmp(draw->page, player.x, player.y, &bmp); - animatePlayer(draw, 3, 0, player.x, player.y, q, &ptmp); - modexShowPage(draw->page); -// SWAP(draw, show); + animatePlayer(spri, draw, 3, 0, player.x, player.y, q, &ptmp); + modexShowPage(spri->page); } player.tx--; } @@ -176,17 +167,14 @@ void main() { if(keyp(80)) { - modexDrawSpriteRegion(draw->page, player.x-4, player.y-TILEWH, 24, 64, 24, 32, &ptmp); + modexDrawSpriteRegion(spri->page, player.x-4, player.y-TILEWH, 24, 64, 24, 32, &ptmp); if(draw->ty >= 0 && draw->ty+15 < MAPY && player.ty == draw->ty + 8) { for(q=0; q<(TILEWH/SPEED); q++) { -// modexDrawBmp(draw->page, player.x, player.y+((q+1)*SPEED), &bmp); - animatePlayer(draw, 2, 1, player.x, player.y, q, &ptmp); + animatePlayer(spri, draw, 2, 1, player.x, player.y, q, &ptmp); mapScrollDown(draw, SPEED); - modexShowPage(draw->page); -// mapScrollDown(show, SPEED); -// SWAP(draw, show); + modexShowPage(spri->page); } player.ty++; } @@ -195,10 +183,8 @@ void main() { for(q=0; q<(TILEWH/SPEED); q++) { player.y+=SPEED; -// modexDrawBmp(draw->page, player.x, player.y, &bmp); - animatePlayer(draw, 2, 0, player.x, player.y, q, &ptmp); - modexShowPage(draw->page); -// SWAP(draw, show); + animatePlayer(spri, draw, 2, 0, player.x, player.y, q, &ptmp); + modexShowPage(spri->page); } player.ty++; } @@ -206,17 +192,15 @@ void main() { if(keyp(72)) { - modexDrawSpriteRegion(draw->page, player.x-4, player.y-TILEWH, 24, 0, 24, 32, &ptmp); + modexDrawSpriteRegion(spri->page, player.x-4, player.y-TILEWH, 24, 0, 24, 32, &ptmp); if(draw->ty > 0 && draw->ty+15 <= MAPY && player.ty == draw->ty + 8) { for(q=0; q<(TILEWH/SPEED); q++) - { -// modexDrawBmp(draw->page, player.x, player.y-((q+1)*SPEED), &bmp); - animatePlayer(draw, 0, 1, player.x, player.y, q, &ptmp); + { + animatePlayer(spri, draw, 0, 1, player.x, player.y, q, &ptmp); mapScrollUp(draw, SPEED); - modexShowPage(draw->page); -// mapScrollUp(show, SPEED); -// SWAP(draw, show); + mapScrollUp(spri, SPEED); + modexShowPage(spri->page); } player.ty--; } @@ -225,14 +209,13 @@ void main() { for(q=0; q<(TILEWH/SPEED); q++) { player.y-=SPEED; -// modexDrawBmp(draw->page, player.x, player.y, &bmp); - animatePlayer(draw, 0, 0, player.x, player.y, q, &ptmp); - modexShowPage(draw->page); -// SWAP(draw, show); + animatePlayer(spri, draw, 0, 0, player.x, player.y, q, &ptmp); + modexShowPage(spri->page); } player.ty--; } - } + } + } modexLeave(); @@ -464,7 +447,7 @@ mapDrawCol(map_view_t *mv, int tx, int ty, word x) { } } -void animatePlayer(map_view_t *mv, short d1, short d2, int x, int y, int ls, bitmap_t *bmp) +void animatePlayer(map_view_t *mv, map_view_t *src, short d1, short d2, int x, int y, int ls, bitmap_t *bmp) { int qq; @@ -474,35 +457,47 @@ void animatePlayer(map_view_t *mv, short d1, short d2, int x, int y, int ls, bit { case 0: //up - //if(ls==0) modexClearPlayer(mv->page, x-4, y-qq-TILEWH, 24, 32); - if(ls<1) { modexClearPlayer(mv->page, x-4, y-qq-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-4, y-qq-TILEWH, 24, 0, 24, 32, bmp); } - if(4>ls && ls>=1) { modexClearPlayer(mv->page, x-4, y-qq-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-4, y-qq-TILEWH, 48, 0, 24, 32, bmp); } - if(7>ls && ls>=4) { modexClearPlayer(mv->page, x-4, y-qq-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-4, y-qq-TILEWH, 0, 0, 24, 32, bmp); } - if(ls>=7) { modexClearPlayer(mv->page, x-4, y-qq-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-4, y-qq-TILEWH, 24, 0, 24, 32, bmp); } + if(ls<1) { modexCopyPageRegion(mv->page, src->page, x-4, y-qq-TILEWH, x-4, y-qq-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-4, y-qq-TILEWH, 24, 0, 24, 32, bmp); } + if(4>ls && ls>=1) { modexCopyPageRegion(mv->page, src->page, x-4, y-qq-TILEWH, x-4, y-qq-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-4, y-qq-TILEWH, 48, 0, 24, 32, bmp); } + if(7>ls && ls>=4) { modexCopyPageRegion(mv->page, src->page, x-4, y-qq-TILEWH, x-4, y-qq-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-4, y-qq-TILEWH, 0, 0, 24, 32, bmp); } + if(ls>=7) { modexCopyPageRegion(mv->page, src->page, x-4, y-qq-TILEWH, x-4, y-qq-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-4, y-qq-TILEWH, 24, 0, 24, 32, bmp); } break; case 1: // right - //if(ls==0) modexClearPlayer(mv->page, x+qq-4, y-TILEWH, 24, 32); - if(ls<1) { modexClearPlayer(mv->page, x+qq-4, y-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x+qq-4, y-TILEWH, 24, 32, 24, 32, bmp); } - if(4>ls && ls>=1) { modexClearPlayer(mv->page, x+qq-4, y-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x+qq-4, y-TILEWH, 48, 32, 24, 32, bmp); } - if(7>ls && ls>=4) { modexClearPlayer(mv->page, x+qq-4, y-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x+qq-4, y-TILEWH, 0, 32, 24, 32, bmp); } - if(ls>=7) { modexClearPlayer(mv->page, x+qq-4, y-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x+qq-4, y-TILEWH, 24, 32, 24, 32, bmp); } + if(ls<1) { modexCopyPageRegion(mv->page, src->page, x+qq-4, y-TILEWH, x+qq-4, y-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x+qq-4, y-TILEWH, 24, 32, 24, 32, bmp); } + if(4>ls && ls>=1) { modexCopyPageRegion(mv->page, src->page, x+qq-4, y-TILEWH, x+qq-4, y-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x+qq-4, y-TILEWH, 48, 32, 24, 32, bmp); } + if(7>ls && ls>=4) { modexCopyPageRegion(mv->page, src->page, x+qq-4, y-TILEWH, x+qq-4, y-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x+qq-4, y-TILEWH, 0, 32, 24, 32, bmp); } + if(ls>=7) { modexCopyPageRegion(mv->page, src->page, x+qq-4, y-TILEWH, x+qq-4, y-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x+qq-4, y-TILEWH, 24, 32, 24, 32, bmp); } break; case 2: //down - //if(ls==0) modexClearPlayer(mv->page, x-4, y+qq-TILEWH, 24, 32); - if(ls<1) { modexClearPlayer(mv->page, x-4, y+qq-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-4, y+qq-TILEWH, 24, 64, 24, 32, bmp); } - if(4>ls && ls>=1) { modexClearPlayer(mv->page, x-4, y+qq-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-4, y+qq-TILEWH, 48, 64, 24, 32, bmp); } - if(7>ls && ls>=4) { modexClearPlayer(mv->page, x-4, y+qq-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-4, y+qq-TILEWH, 0, 64, 24, 32, bmp); } - if(ls>=7) { modexClearPlayer(mv->page, x-4, y+qq-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-4, y+qq-TILEWH, 24, 64, 24, 32, bmp); } + if(ls<1) { modexCopyPageRegion(mv->page, src->page, x-4, y+qq-TILEWH, x-4, y+qq-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-4, y+qq-TILEWH, 24, 64, 24, 32, bmp); } + if(4>ls && ls>=1) { modexCopyPageRegion(mv->page, src->page, x-4, y+qq-TILEWH, x-4, y+qq-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-4, y+qq-TILEWH, 48, 64, 24, 32, bmp); } + if(7>ls && ls>=4) { modexCopyPageRegion(mv->page, src->page, x-4, y+qq-TILEWH, x-4, y+qq-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-4, y+qq-TILEWH, 0, 64, 24, 32, bmp); } + if(ls>=7) { modexCopyPageRegion(mv->page, src->page, x-4, y+qq-TILEWH, x-4, y+qq-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-4, y+qq-TILEWH, 24, 64, 24, 32, bmp); } break; case 3: //left - //if(ls==0) modexClearPlayer(mv->page, x-qq-4, y-TILEWH, 24, 32); - if(ls<1) { modexClearPlayer(mv->page, x-qq-4, y-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-qq-4, y-TILEWH, 24, 96, 24, 32, bmp); } - if(4>ls && ls>=1) { modexClearPlayer(mv->page, x-qq-4, y-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-qq-4, y-TILEWH, 48, 96, 24, 32, bmp); } - if(7>ls && ls>=4) { modexClearPlayer(mv->page, x-qq-4, y-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-qq-4, y-TILEWH, 0, 96, 24, 32, bmp); } - if(ls>=7) { modexClearPlayer(mv->page, x-qq-4, y-TILEWH, 24, 32); modexDrawSpriteRegion(mv->page, x-qq-4, y-TILEWH, 24, 96, 24, 32, bmp); } + if(ls<1) { modexCopyPageRegion(mv->page, src->page, x-qq-4, y-TILEWH, x-qq-4, y-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-qq-4, y-TILEWH, 24, 96, 24, 32, bmp); } + if(4>ls && ls>=1) { modexCopyPageRegion(mv->page, src->page, x-qq-4, y-TILEWH, x-qq-4, y-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-qq-4, y-TILEWH, 48, 96, 24, 32, bmp); } + if(7>ls && ls>=4) { modexCopyPageRegion(mv->page, src->page, x-qq-4, y-TILEWH, x-qq-4, y-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-qq-4, y-TILEWH, 0, 96, 24, 32, bmp); } + if(ls>=7) { modexCopyPageRegion(mv->page, src->page, x-qq-4, y-TILEWH, x-qq-4, y-TILEWH, 24, 34); + modexDrawSpriteRegion(mv->page, x-qq-4, y-TILEWH, 24, 96, 24, 32, bmp); } break; } } diff --git a/scroll.exe b/scroll.exe index 6bf9ba9fd85f584bba6a5abed8e1aa711c547a48..90acc4703b0572de8b558cbf0890c8d1486a7985 100644 GIT binary patch delta 3430 zcmb7{4^R}>9mn6>-8=3MI0y(Ff9?+=h!PkN)066ehvF)Tc!D|5RJ2nw(>5_SiAbB_ z?%G~(va>n0d6T3`Yg?+Zoo1$~xlX%aVkugq#B}_VARdHRHTur;Pi#g-#Jm3X{t1z` z=8k>0zuo z1^SP4x&2J*U&6SnhS_3=*?dbDvWF~iy>gIcLY6_+d~`oXqCF^#(qAQrOBnh`E$47$7Fo$oQQ96m)+-& z<)2l`X0qJA`*WOn|&fNj6UEm4bj|0b1!{ynpA>p)R*Nx#DG(w zc1~IZaX-Xds9h=5LGXS!fYl~7LiA1~^0D$7rd^Q;*2*&wkw^r#I3VhjBcbrhy7jGV z*F161CZ!@;mDSP|DHST=OMxF3?7`dTXh#;=!RhnVa8fQM!eLm~k_OTGETM*xRERFl zB1bqqGb4*!;$CAaGKouJ$7jiaVlnN3bCr5*p998#`l9BNXSP{Y(uBTpq% zrC!nqGD05%w|g3*_eghwgK?#k3e^^uQoTmAC-H8QTnOlRT1&Kysf5FVeOz=VbslX~ z2o1r2Mi@PDRsm~(54!KN?FlE&mxX?JNae3pxI@^{5HBUXri2fcrowe&Hj!7AaQ&Zv$y051;PcanXjy#f=6jG3xBdbE8~K^=Ds&97&Y0RLdyr+`A z0fV_o2LCUVn8;7UBG)xK*G5^SqbfcWrzUF5gX3T#-jvI^F>m14zc=WAoB66Ca{B*U zFH{wBO^~v}vm@-Y*g6JA)Bc1hO?nvR9jb|pQQtoGSNqu6e>eGb-Gric1Odbbc#ISG5}ZSL3hRc;7?$2AsUEVw3r^ zu*8n!3@C}C^m*l!u04!Ug)9`GStx_@bi`fD0pb6)++cXTs$^3X5o*N!$}kGv(9e_) zD$A~oiuN(u2gPQxYcW`-Dtx0(a%~J;+bPSD9myuF^8P8As__l-M%FM>rt`Mzjxi9` zk@}pU~_!s2WSv)q9;aNF}<+FuT!WY6A z4JHvhI~{*aGG-Tgt+U@`@lG;STF)&#LDNV{Sp&X9UMO3S-|+g%cox@@{PL$VZc^be z5M=kTD9|hApdQvr|3$jW9r!z5@T0M|t9=3Q383Vy!1FCCY<{^l(=9NUY8^Cmo-6oy>NXKa%9-T2l z?r2E52t0A_3^Q#e&7^poOfr)pQ9E9+<597TW5;P??2HMxl*CSR6>tpWx+pTRy>}%M zY-r-u?A<+k_dDl1-#NQ`_2voq!Exw(yr~Lg0X0y72_Q*_mE;usClLTM2yTtB02Ian z@M01GG06Z3WdDrpi)7C;0dQ%0@g=f_?gl`t2lz_Do?W}^8=exrbj?^r2=E_bhfF}s z1ifvuSYmtmS)8LFqriKc1pbnkN+$exE)Lh}-TV@M(b(HIh82cheoWwpUHp`}x9uh_ zBKA#z|A(6ïp+q{+u%V;m}#rKrKvrBkR>E_QVwV?kx>*hy}{WAgjQ5}=mFc=3Y zN)b&*lfjq5xXP}xnT{Nb)XV$r4O0F%>*B^(#%&m5EfYf!2($R0%57uttbV6UQg@6= z+;vv01voRd%iGHO-T(xMj>06TjUnFg%TaEdqRZQ9Q?3W4nZQ{>OhRM_LABZHsv}{Y61?zj#H`$yUDfL$*d|u?50^7>Xc5_L1s6}nwF(=apNpQ^$STS zLphn z#|8O)Dj7&D(s5-ZRtxJBf%rJUmSEt8MOtmq4D4bY+0DqqMuj-MvQDm_gZ1?-221E5 z9F|MC1_xoBa9B_TIf#&QXp4|F`qbxIbd^oAkYw~rDa78DbDvIf24_g!oeZ`HVW0U5 zB;2jFc=4SWF&o%%b*$?gBef{RN@A1{Lm{EbrGMVW!qH<*)^VSA*O<50jqa5y0Xh4U!UCinA=JD9m>^pd*8IiUWRhKnfD(VF0c(T$*{qYP%*{l|u8G$b;+I?jwp}A!xqKr>dgE7W-=M-JLC0gXu5MnP%`a_@ zBzFbe{K8fRIq{Ry&=){+z+LahQ!1%V7j6NI*N(b1dgm7!m!xpi5H}qU>E_r2ZfK0W za12D;sT|eBXNT=!SgHKDlKMlr+Sr`OD7eEa<2u#ZolCCUkq@LI+@qN+aunjw#yY!M zUpGrN;6u@t1z?F7t2KC+BEuTUkd+F(r>0`mQZXLRABTS?Q^}5qcmAA!Ra8mEvXVbQ zCTa~bmJ6Y3#ZY%0+e2amm3Sbhpco%2<&?_9k2dgKT=G55tQ3XfzNay|sRxv-i+8$J zs|5G~Y;iDpD7cmM;mUT{LHs?S$@lqFliGf*pkzMQ#pTR!RDp_6VZ%7TyK}*Hn|?Or z&h`rdd|ZZ@^l{ES=*xpEGha@dJ{zmsp@AZo+kw18!fxdUrjZc%f9P=o$$Zihb9 zyzxEQf}&E*unheu)e2M5^Qom|_TAJia4VWjZHIHHe$yd%1zp&b0lz@An~ZP@snU{R zE=o_^2hSl_TA$v&&egdDTGVcv8XrL!>G{#WT_>EM{^K6uEN+*CVPOo{p@Zqi;oB%C zqc#p}EZ!qea^~r;g%9vyy{}OsU+cH=pHN#yBjnJ>8C#$kEo5ZE0hIno0R9-6Gm{Kj zbqF*=K(BggGIzj|61^)RwWgO!Qma{%B>B~U78ga35AwCH(bk!+3l1!5$fA&&o|>+A z1>o~fk;}Iz%`NC}n+xCt^zG(fz*o`!tVH-aI-JE9r)$phO91@Wrc$)%k36Fa5EFtU zbt*Vmw^_I%%#xZb^un;5uzZ6sOJ)^#9No)GhrpAV{Td6q(W#s|#UrCwhaz&HfOk++ z?tX|oL%BQ)Z3u3AcEfEfj1ZdfWPLX66%)uh&59?`@3uMMK997mn2kvNl890v>Hv;I zwt_-Z0Y^a@e9d#ZU_0kLQCd{lQ{GVCQ(jbg|L;Hrwg0?)JnYE^8esw0v+#cr(=2z9pBF<