<fjQPS1Pjf1ɎَѼ|}r,`|uuƀrIᾢ}K1҉ .w ޿)Itduddu`P쌋DL Zs*}}0r4u.t"rURAZrUu tBRZrˀ?tfFRff1fC0fZf=w@(f8r^P[s Ot0FsF ^(FwReadBoot error PUWEVfd1440?-?@ WEVN @ @  BTX 1мfjf9W_▬s uU}EEE Efh (֖Ж f"1ɱѱ8ٺ6 -)б3QPhj+5 QQQQRja %"1"Жf юَH"1Ўػpܖtr4!PP 栈!桰!桰!XX!j@j td>0tc>2tk> u~tEj$USm]]fEfE EfCe[]XPPPP`jr11t$PV^=1ɱ󥖋D$@t+rBR/=_D$HuKKf)J󥑉-w1)ثufȫd$aσuD$ `X6 OtŰ=Vtfst^tGCRu fu6 ЖFt -t t  u^ u sPXPX$< i/ u`1ɴPf 8cuf1< tPЀfBPr0ƀrf PffaÉg ?}KJ int@errDeflPeipHeax4ebx(ecx0edx,esiediebp espcsLds es fsgssscs:eipHss:espBTX halted P4T=)0H=L=19 100P=h=1 5P=Çl$EMU ]$PXE(PD$E,D$Xu0}4l$S\$ L$T$JtCA[ UWVS$$Ƅ$/Ƅ$:/uB ր/t FtuSR$ U<[Ƅ=J$9s?=<CtPh3XZU:S tA@:t:tCCh\$S7`@t=<t h3[1~C1u$1Uh3Z1Y[^_]UWVSP<D$Ll$L =<D$H1=4@6tt4љjPUs c\=Tt'=Tu149u9uE0==_w G<4u <4uh3 Y:<1҃|$d'\$d9@6UxЋM0 D$ ED$T$1$É1t$ Md\TƉL$u D$M!ˋMD$L$ t1jPt$TL 1ҋD$dt$ \TuL$LhPh4\$LhPh@5D$d@6=P6T6H6L6T$h\TT$Du 4L$< P5\$<|$<+==9|$lv|$lD$lD$@=‹MPD$0#8|$0T$,D$8<||$, w3\TuD$,4D$,Ű54Ŵ5 MtA 9T$0| 9D$,U0 ȉә\TD$u5Ɖ 656L$, |$1ҋMd t1ۉ\$$1҉t$(|$$T$(T6;T$(P6u;D$$t'jt$(t$PW uKL$$\$( P6T6|$,D$ H!ǁ\Tu\$HƉD$Ht>Md t1ۋD$8 \$$1҉t$(D$$T$(D$8T$8%|$0T$4D$D$8||$, w/D$,1T$0MP \$ [>iC@ @@@<@TU iC  `` S,8iC?AiCiCiCHtlAiCiCiCPAiCiCiCAdAiCiCiCBj]m iCiCiCIDX5m'qiCqiCiC P SOAiCiCiCO3?^AiCiCiCDX5WAiCiCiCEQ AiCiCiCF8iCiCiCXQ s2iCiCiC`&m  ... . .. tar fixit_crunchɝ catchmod cp dd dfechoʝexprʝkillʝ ln lsmkdir mv rmrmdirsleepsyncʝbsdlabel39clriʝdmesgfdiskmknodmount mount_cd9660 h mount_msdosfshrebootrestoreswaponumountftp disklabel9rrestore39telnet viviewʝ exchownchrootchgrp ... .+ .. misc̝ . ..  scsi_modes . ...snap devstand bin!sbin̝" etc' mnt(mnt1̝)mnt2̝mnt3̝*mnt4̝ tmp+ usr 0.profilel#!/bin/sh -p # # Simple replacement for tar(1), using cpio(1). # # Copyright (c) 1996 Joerg Wunsch # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT, # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # $FreeBSD: src/release/scripts/tar.sh,v 1.7 2001/04/08 23:09:21 obrien Exp $ # # # For use on the fixit floppy. External programs required: # cpio(1), find(1), test(1) # archive=${TAPE:-/dev/rsa0} blocksize="20" device="" mode="none" verbose="" usage() { echo "usage: tar -{c|t|x} [-v] [-b blocksize] [-f archive] [files...]" 1>&2 exit 64 # EX_USAGE } # # Prepend a hyphen to the first arg if necessary, so the traditional form # ``tar xvf /dev/foobar'' will work, too. More kludgy legacy forms are not # supported however. # if [ $# -lt 1 ] ; then usage fi case "$1" in -*) break ;; *) tmp="$1" shift set -- -$tmp "$@" ;; esac while getopts "ctxvb:f:" option do case $option in [ctx]) if [ $mode = "none" ] ; then mode=$option else usage fi ;; v) verbose="-v" ;; b) blocksize="${OPTARG}" ;; f) archive="${OPTARG## }" ;; *) usage ;; esac done shift $(($OPTIND - 1)) if [ "X${archive}" != "X-" ] ; then device="-F ${archive}" # else: use stdin or stdout, which is the default for cpio fi case $mode in none) usage ;; t) exec cpio -it $verbose $device --block-size="$blocksize" "$@" ;; x) exec cpio -idmu $verbose $device --block-size="$blocksize" "$@" ;; c) if [ $# -eq 0 ] ; then # use current dir -- slightly bogus set -- "." fi find "$@" -print |\ cpio -o -H ustar $verbose $device --block-size="$blocksize" exit $? ;; esac  ... ... {Active Partition} i1 {Write Buffer Full Ratio} i1 {Write Buffer Empty Ratio} i1 {Write Delay Time} i2 {Data Buffer Recovery} t1 {Block Identifiers Support} t1 {Report Setmarks} t1 {Automatic Velocity Control} t1 {Stop on Consecutive Filemarks} t2 {Recover Buffer Order} t1 {Report Early-Warning} t1 {Gap Size} i1 {EOD Defined} t3 {Enable EOD Generation} t1 {Synchronize at Early-Warning} t1 {Reserved} *t3 {Buffer Size at Early-Warning} i3 {Select Data Compression Algorithm} i1 {Reserved} *t5 {SCSI-3 Associated Write Protect} t1 {SCSI-3 Persistent Write Protect} t1 {SCSI-3 Permanent Write Protect} t1 } 0x0f "Data Compression Page" { {Data Compression Enabled} t1 {Date Compression Capable} t1 {Reserved} *t6 {Data Decompression Capable} t1 {Data Decompression Report on Exception} t2 {Reserved} *t5 {Compression Algorithm} i4 {Decompression Algorithm} i4 {Reserved} *i4 } 0x1b "Removable Block Access Capacities Page" { {System Floppy Type Device} t1 {Supports Reporting Format Progress} t1 {Reserved} *t6 {Non CD Optical Device} t1 {Single or Multiple LUN Supported} t1 {Reserved} *t3 {Total Logical Units Supported} t3 {Reserved} *i8 } 0x2a "CD capabilities and mechanical status page" { {Reserved} *t4 {Method 2} t1 {CD-RW Read} t1 {CD-R Read} t1 {Reserved} *t4 {Test Write} t1 {CD-RW Write} t1 {CD-R Write} t1 {Reserved} *t1 {Multi Session} t1 {Mode 2 Form 2} t1 {Mode 2 Form 1} t1 {Digital Port (2)} t1 {Digital Port (1)} t1 {Composite} t1 {Audio Play} t1 {Read Bar Code} t1 {UPC} t1 {ISRC} t1 {C2 Pointers are supported} t1 {R-W De-interleaved & corrected} t1 {R-W Supported} t1 {CD-DA Stream is Accurate} t1 {CD-DA Commands Supported} t1 {Loading Mechanism Type} t3 {Reserved} *t1 {Eject} t1 {Prevent Jumper} t1 {Lock State} t1 {Lock} t1 {Reserved} *t4 {S/W Slot Selection} t1 {Changer Supports Disc Present reporting} t1 {Separate Channel Mute Supported} t1 {Separate volume levels per channel} t1 {Maximum Read Speed Supported (kBps)} i2 {Number of Volume Leves Supported} i2 {Buffer Size supported by Drive (KB)} i2 {Current Read Speed Selected (kBps)} i2 {Reserved} *i1 {Reserved} *t2 {Length} t2 {LSBF} t1 {RCK} t1 {BCK} t1 {Reserved} *t1 {Maximum Write Speed Supported (kBps)} i2 {Current Write Speed Supported (kBps)} i2 }; 0x00 "Vendor-Specific"; 0x0a "Control Mode Page" { {Reserved} *t7 {RLEC} t1 {Queue Algorithm Modifier} t4 {Reserved} *t2 {QErr} t1 {DQue} t1 {EECA} t1 {Reserved} *t4 {RAENP} t1 {UAAENP} t1 {EAENP} t1 {Reserved} *i1 {Ready AEN Holdoff Period} i2 } 0x02 "Disconnect-Reconnect Page" { {Buffer Full Ratio} i1 {Buffer Empty Ratio} i1 {Bus Inactivity Limit} i2 {Disconnect Time Limit} i2 {Connect Time Limit} i2 {Maximum Burst Size} i2 {Reserved} *t6 {DTDC} t2 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 } 0x09 "Peripheral Device Page" { {Interface Identifier} i2 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 } 0x1a "Power Control" { {Reserved} *i1 {Reserved} *t6 {Idle} t1 {Standby} t1 {Idle Condition Timer} i4 {Standby Condition Timer} i4 } 0x08 "Caching Page" { {IC} t1 {ABPF} t1 {CAP} t1 {DISC} t1 {SIZE} t1 {WCE} t1 {MF} t1 {RCD} t1 {Demand Retention Priority} t4 {Write Retention Priority} t4 {Disable Pre-fetch Transfer Length} i2 {Minimum Pre-fetch} i2 {Maximum Pre-fetch} i2 {Maximum Pre-fetch Ceiling} i2 } 0x05 "Flexible Disk Page" { {Transfer rate} i2 {Number of heads} i1 {Sectors per track} i1 {Data bytes per sector} i2 {Number of cylinders} i2 {Starting cylinder-write precompensation} i2 {Starting cylinder-reduced write current} i2 {Drive step rate} i2 {Drive step pulse width} i1 {Head settle delay} i2 {Motor on delay} i1 {Motor off delay} i1 {TRDY} t1 {SSN} t1 {MO} t1 {Reserved} *t5 {Reserved} *t4 {SPC} t4 {Write Compensation} i1 {Head load delay} i1 {Head unload delay} i1 {Pin 34} t4 {Pin 2} t4 {Pin 4} t4 {Pin 1} t4 {Medium rotation rate} i2 {Reserved} *i1 {Reserved} *i1 } 0x03 "Format Device Page" { {Tracks per Zone} i2 {Alternate Sectors per Zone} i2 {Alternate Tracks per Zone} i2 {Alternate Tracks per Logical Unit} i2 {Sectors per Track} i2 {Data Bytes per Physical Sector} i2 {Interleave} i2 {Track Skew Factor} i2 {Cylinder Skew Factor} i2 {SSEC} t1 {HSEC} t1 {RMB} t1 {SURF} t1 {Reserved} *t4 } 0x0b "Medium Types Supported Page" { {Reserved} *i1 {Reserved} *i1 {Medium type one supported} i1 {Medium type two supported} i1 {Medium type three supported} i1 {Medium type four supported} i1 } 0x0c "Notch and Partition Page"; 0x01 "Read-Write Error Recovery Page" { {AWRE (Auto Write Reallocation Enbld)} t1 {ARRE (Auto Read Reallocation Enbld)} t1 {TB (Transfer Block)} t1 {RC (Read Continuous)} t1 {EER (Enable Early Recovery)} t1 {PER (Post Error)} t1 {DTE (Disable Transfer on Error)} t1 {DCR (Disable Correction)} t1 {Read Retry Count} i1 {Correction Span} i1 {Head Offset Count} i1 {Data Strobe Offset Count} i1 {Reserved} *i1 {Write Retry Count} i1 {Reserved} *i1 {Recovery Time Limit} i2 } 0x04 "Rigid Disk Drive Geometry Page" { {Number of Cylinders} i3 {Number of Heads} i1 {Starting Cylinder-Write Precompensation} i3 {Starting Cylinder-Reduced Write Current} i3 {Drive Step Rate} i2 {Landing Zone Cylinder} i3 {Reserved} *t6 {RPL} t2 {Rotational Offset} i1 {Reserved} *i1 {Medium Rotation Rate} i2 {Reserved} *i1 {Reserved} *i1 } 0x07 "Verify Error Recovery Page" { {Reserved} *t4 {EER} t1 {PER} t1 {DTE} t1 {DCR} t1 {Verify Retry Count} i1 {Verify Correction Span} i1 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 {Verify Recovery Time Limit} i2 } 0x0E "CD-ROM Audio Control Parameters Page" { {Reserved} *t5 {Immed} t1 {SOTC} t1 {Reserved} *t1 {Reserved} *i2 {APRVal} t1 {Reserved} *t3 {Format of LBAs / sec.} t4 {Logical Blocks per Second of Audio Playback} i2 {Reserved} *t4 {Output Port 0 Channel Selection} t4 {Output Port 0 Volume} i1 {Reserved} *t4 {Output Port 1 Channel Selection} t4 {Output Port 1 Volume} i1 {Reserved} *t4 {Output Port 2 Channel Selection} t4 {Output Port 2 Volume} i1 {Reserved} *t4 {Output Port 3 Channel Selection} t4 {Output Port 3 Volume} i1 } 0x10 "Device Configuration Page" { {Reserved} *t1 {Change Active Partition} t1 {Change Active Format} t1 {Active Format} t5 : # $FreeBSD: src/release/fixit.profile,v 1.10 2004/09/02 13:40:34 keramida Exp $ export BLOCKSIZE=K export PS1="Fixit# " export EDITOR="/mnt2/stand/vi" export PAGER="/mnt2/stand/more" export SCSI_MODES="/mnt2/usr/share/misc/scsi_modes" # the root MFS doesn't have /dev/nrsa0, pick a better default for mt(1) export TAPE=/mnt2/dev/nrsa0 alias ls="ls -F" alias ll="ls -l" alias m="more -e" echo '+---------------------------------------------------------------+' echo '| You are now running from FreeBSD "fixit" media. |' echo '| ------------------------------------------------------------- |' echo "| When you're finished with this shell, please type exit. |" echo '| The fixit media is mounted as /mnt2. |' echo '| |' echo '| You might want to symlink /mnt/etc/*pwd.db and /mnt/etc/group |' echo '| to /etc after mounting a root filesystem from your disk. |' echo '| tar(1) will not restore all permissions correctly otherwise! |' echo '| |' echo '| Note: you can use the arrow keys to browse through the |' echo '| command history of this shell. |' echo '+---------------------------------------------------------------+' echo echo 'Good Luck!' echo # Make the arrow keys work; everybody will love this. set -o emacs 2>/dev/null cd / (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx    ( 0 8 @ H P X ` h p x    ( 0 8 @ H ELF 40~4 ( &&'Vf E UWVS ]׍t ۉ5~$Ett Wsx hDcxPVEPSPMvщMǐU= t8vҡut h ~ ÐUth h w~ tt h U~ÐUVSj/]Sl ^Zt p& = t3Vނ ZYt݃;1e[^UWVSPPhOh\58 RG 1 = tN1MUUO~58 j F Yu_3hH58 F ;58 j PF jtUWVSWWEE} EEt8uGj/7i [^Xu = t66S ZYt>>tEEE} ENe[^_ShOh58 HF e[^_UWVSu] }N}] u[^_,U>UWVSRR;@ u;=u@ P蹩_t!=u @ f` 5@ [EE n = t u}KEE=tO=t tFEuh5< 9E =u < @ @5< [ Y u]==u,< BHBy;B| $]Rj$E\ 5< j$~ _@Z8 ="=u)< BHBy;B| ^ Rj^[ 5< j^ Z@Y]=u*< BHBy;B| IRjI5< jI=Àv SKi _ D4%=u)< BHBy;B| M RjM[ 5< jMS Z@Y=u)< BHBy;B| - Rj-Z 5< j- Y@_Mv Sh Z D4%=u)< BHBy;B| ^ Rj^`Z 5< j^ Y@_=u7?tك@< BHBy ;B| t GRQI5< ?t؃@P?=u/< BHBy ;B| t RSY 5< S _Z@t:߃=uFHFyV{ @ V- YÃZ=uF @ V Zt35hne [= _uff VY=u < @ @5<  Zt hj e[^_UWVS Džth| ZYu1 jR@ ^X袓8-jjjuV jjj>= x`jhEPEU gvS?5PVS< y S8@ [jS; @ZYujf X؉Džy!hneM _X :t3u@ )hWQ SH =u < @ 5<  ^=$P: Y[t5hnejC d=sP / Zu6h"1SP?? y hj )u5 5W(? }5hne [^ tW> Yt0 e[^_UVShju] vbw~$zdX L6j5< Y XZ%58 h< ^Xjh4SV} I0=u-=u$=u= u=u =t1҉75<  [t hj' 5 \kUU58 hp1< j6kUWVSLu} EEEEwg1PtgHtGLtRXt| RtZftYur}\htNotR|vtrxrDEEeEEELECE:E10L9-u<A9u4yu.C0$EhWVʋ 0)N<}t0}t hjY }t}t}t E E 7V7EZu Vhj jSW EE\htG4H ws$<}7jWu Cw? $wh E1w $wh E }G<@Pu"‰EG<@%[9^uwUZYt}uwhne ^_Et}tnwhneN1 Y}[~QuVG<@P]~SG<@% EP~SG<@% EPVG<@Ph 0 $j Zu DžXՌ8t h#j u$* ugUUWVSDu1f$Lts HtQPtpRpinrv1DžDž1DžDžDž@_)D/h,u V 0U )ƍU =DDžt<=@th7u ut hlj{ Dž=@t)tthjP NE hShhL =v Sh1hсgh `uh.`ii`J/t-iv%/u B`B`ivz/ޡ`dU EPhh1 ÃXZu诉8t#E%=@DžN~ VjDž=Du=@t%u t4PE 0`1 4PU 2%1 ^X<%=@u=@u =Dt Dž Džt)u Cu hhh hhhjO hDžO3 $f93 $Gu  u hnDž0F4tt$4t u*vZ $vhJvh! f~2u[tHj/v ZYDžt +NAFhPYp [_u F$N~$+9/dt z/t/B:-h=vQhhh}WQRE `z/uB`B`iwf~4~ =tjv!t.t 4ج*4hj 4RPhjhӋ9ډ6|9w0RPhjhӋ$9ډ |9vhjhj e[^_UE E EEwa UUW1t hjI <}UEUEU}tjh)QEPc hjjhEEP u uhPtuhj P@ t8UE E EE` UWVS wjEPSmEUw 8t5hnej E9؉EiEEUWt_GtOBt-]Kt/Mt3Qkt# btgt)>mtwt&2E"EEE@EEE EtOuE]މً}]ߍu]uU؉EԋERPEUc9u{9uwE@EEXt *xum@UuE]މً}]ߍu]uU؉EԋERPEU'c9u9t.j"} $5hj 5h+j EUe[^_USEu2 w=vjhhEjx ]USEu2w=vjhhcj1 ]UE ptujjhj UE[y hj u(, (,UESw=vjhhj 0]UESӃwvjhhj@ ]UWVS$tjEPSlEUht 8t5hnej> }9EEWt_GtOBt-]Kt/Mt3Qkt# btgt)>mtwt&2E"EEE@EEE E]EU܉E؋EËU‹uEƍE܋U܋E؅UE |w1҃} |}w19uuuub99GEEXt *x@i]EUUԋUӉEЋEЋuU֍UԋUԋEЅUE| v1҃} |}w19tuuuub9u9t.j" $5hj 5h+j EUe[^_UE $UEUS8t )Jt A;rjX]áUtUWVSQQ=tl څtC< tIu1R)P5!4 eAD 1)Ë5-09v¡8Et19s,;C t:E8AF19s;C tAF t;0F)ȃ uH09s!)P8 tP RVO\ Nt; t`dC< tBuu H0;rjZ5=e[^_ËU҉t]`Rd)P5m20)P8 tH QRP[0U 8VSt5)Kt F059H9r5x u I9r*9 9r!)YSV51  @;rj[0)9УwtR)P5I1 e[^U=Stp5hB  A[9[r5y u H9r*8 9r!)ЍXSR50  ]Ð111111U1‰USdÍEPs @ZYt9E%=uK = t=`uXEPhzf@sf @ushnej- UtK tKE%= uAuUWSjxP ڍ|څx%xXɞݝpZvݝp5\5X5T5P5L5H5D5@hjd]S贁 1у,IQSj  lhȃ tIЃ ȿt:3W5l5hhjd]SV 1IQSj $ d` tIЃ ȿt:3W5d5`hjd]S 1IQSjU $tRpP,$y]Eܵp$tpRPh]jdS蕀 1у$IQSj e[_USa!a[U1}Pl UWVStxmaE1ҡUe]׋M ߍ jMuEu5nSB @a8ҡyhDhOjv ׋E S55 ~t)wu4tpwvptMhbj t&}u25hne EXZ5hnej Be[^_UWVS  tw_E1ҡ U e]׋M $j}u؉Eu5QBb@[_8M$ҡ yh|hO t1 EEPhm5fEE @EE9U| 9E555- @tiEPhm5fEE @tB}u$EU9ס i|9sc555 u5hnejP ;t5hj EU $e[^_ÐU.UWVSLpprrEUJ]K MEEU[$eM]ĉϋMĉEM]U MS UMB(R,K$EUeU܋UUu܋}}<>E؉}܋EMH(MQ0]X,ЉUeUЋUI4UE̋]ЋEEЉMEM̋]H0MX4]A8Q<C8A@SF$9|˃t$D8P Zu3~ hh X X X1n@o1;};j 4S 1у \,RJ F_CC6 ^* [6hHt hj* $P&Y58 h XZj@hTu uP 0U jQ)EU @1^;_s$1Ku} ?Džu*=jPY[9DžDžÉP_ZuVVWZ=Yuy.9t y Whc& _XhSV8> 9t19sTDžx1=t{xxKu=t]tXDž|1=u1ҋD% u|+|Ku=tj,EP} 7ZYyD7QE%= $U |M h{ ^uh詻 [DžtPq Yu#Wh聻 WDž DhjPFtE 0hne@ DžbVSOYZu,ƅ4=t*U 2hne XDžZjSSW M VSY_yShne蛺 XZDžhP[_t DžD}u򍅴=t E } ?=te[^_ÐUVS] 1ۋut-0$;t3V7 ZYt1=0e[^UWVS]1tz;nu{ou 01؀8t 8,uG@Pa Yuh 1.؉ @j,P蜌 [ZWue[^_ÐUUWVSQ։EM0 UÃ1IQRjjhPj1IQVj(jhPj1IQSjjjhBj\$jR(UWVSf|fEfBu fEE]thP5 ZYu KEETKUEUP E_u 'E>tU1у~Auv|\u|cu AEC>tEC뫃}uEEC}t<]~Suj8 @u {E9E)]Ee[^1_ÐUiUj  Xu h(jK EU AQUVSSj u YtV CZu h(j =4Et j PVg j PV@ E <e[^UUHw BE| UWVS}1҅ɸtt11҃tkJ=4t&j jw ÉJ 8"ujj詴 j jw Ɖ w _w1ҍe[^_UVSuHv4j ÅXu h(j vvhS ^e[^UE8UWVSH01҅tsH1щuSh8覈 ZYuD2щu&~=u <t#!>tVde[^_UVS];Cu C'18tSZY tSC ue[^UhFjس UVS]Su Zt SV؍e[^UVSu] VhYu S]Zt'VSY[EE e[^Se[^UWVSuVr} [u WdYtVWwvm} [ZV_WYFVO_11 1RP~VW e[^_UWVSSSuYu u Zt1uu }E pUr| ^_1RP?uu EU XHBR19ӾEU |9w11WVu]u Ue[^_UWVSSSu4Yu u 'Zt/uu E pUr&| ^_1RP?uu EU XHBR19ӾEU| 9r11WVuu e[^_UWVSSSuYu u sZt1uu E pUrr{ ^_1RP?uXu PEU XHBR19ӾEU |9s11WVbuu e[^_UWVSSSuYu u Zt1ueu ]E pUrz ^_1RP?uu EU XHBR19ӾEU| 9v11WVu=u 5e[^_UWVSuV} Zu W[tVWwvz ZYVWFVO_11 1RP!VWe[^_UU WVSEM]u}|(v|v|wy y y1[^_UWVSuV} V [t WIY uhSA=4t?GFWVRPeppwwvvF thSj衮 GFRP+YXVWe[^_UVSVVEMU EȉU5U tڃىUMY[[^E^Z[^UWVSuV} p [t WcY uhSA=4t?F+GVWRPppwwvvU thSj軭 F+GRPEXZVWe[^_UM WVUS1 Ћu}tQRuuH29u9te[^_UWVSu [tu Y uhSs=4tqUBRUEE HXEuM MuEutppU rrMqq* t%hSj説 U BMARP-_Xuu e[^_UE 5 EUMu AuBt1UWVS}Wu [t VY uhSRVF uhh?=4t=RPww0RPvvwwhthSj̫ G~RPUXZWVe[^_UWVS}Wu [t VY uhSVF u hhj^ =4tRPww`. G~ЙRPXZW^VXe[^_UWVS0}Wu jE puV*y t hSVP RShnejê jEPjwV7 u3]ȋMĉ u'}xWEEGP(E)ȋURP }ujjXZ h$^Wu ~EPW e[^_UVS8u''~'X5L)t PR Y P Zt`hXҍpLtPR Z PQ Yt#hDXDX8@1ҍe[^UWV=XSP<lu XhLD1f6 =ly4ly l6lx9ul@9Lr hwLBfrDLBDdB<lt"x9u ?@9Lr u-LBfrDLBDTB hy-Y1e[^_UVSu] hj跄 hqX uhZthf58  jUWVSSSu] hc3! NZYN~Num=w uoj EP3   :E8~ǀ~;=&| 4@'ƛ < j|hf3[ ZYu2Nhi诣 Xh231 Y_1A:-z-BRv R Z D4%ty]T=wHt>j EP3  :tE8t Rhj胡 x;=&| N~jh3覶 uNuEtUj EP3  :tE8t Rh胢 WQ@ZYu3hne襡 YEXNunUaUhh(hWhi58 ^ j7UWVS`=}u u4EPW[ZE%=@u5}uF]SVZYuE%=@t&=|ueSVZYuXE%=@uHj/Wp Y[u@PVhehST =~05?WEPV"[=tZt=5< Vh58  =u# @ AHAyQg% @5@ # Yƒ tGtB=u# @ AHAyQ!% @5@ " Zƒ tB뼃ytYt58 hM $V[uVWZYtVhneS "=ptWxPVh 1e[^_UWVS`j/] 3eYu_u@hdPL _ZchSVW0 @u0)ƃt= fwW$t?|3tphSV/ u0)ƍ u -xtt *t#jjh3 Pjs=|tt-EPVmZYuE%=u J2EPVhY_t Vhnej E%=@t193tjV3 ǃ W UUE @@E E@@Ef UE@@U E B@Ef UWVS}u O<^=u5$@ $B@8.u=u B $A&;\v\=u =tP$w@;\Y[v\k$@<(@(O<9W8|9v(B8@(A;8PB@^u!$r@BphW $fy2duq@hnehR7G "$w@GphehRG Edt8RH; 8RF;Y@[u$p@@#4P8@@_Zu)$q@AphW7 8? 8?^4uh$ 4[14эA;`v`D8P Yu h'jQ @P4 DCP (A%= t=`u Dž= t-DCP B =tFD= TuDC 4Pz 4 $_ $@$ u#=u =d0W, \UME@hjUR1ۋ }E}D ؉򮋅P=u$< BHBy Rj  5< j &R XZ1EP$piƃ{Xth _[\t<=u$< BHBy Rj  5< j Q [^e[^_UWVS,=@}EԋG ;~/P5޵ …XYu j蟃 XG Etx t MAM@u=wtG$p tGp=Eu!ƍ6x9}}e[^_ЙEЋE}ЃE܋tfx2t.=ut!WڍJ1Phm [XEUE9Um=uuM؉MEEE9EMW$wzE=YtEEEU9U]E]!;]=t E@;EMԋUԍI=M̉Uu7< ɋBH By ;B| t"RQ6 5<  PeO XZ]]#]aEMu9M=u$< BHBy Rj  5< j O [XE؋E9Ee[^_UST=Eyj9>I8dZ=u jk [=t=uLEM9~9}=u=uEPɪ $SjP]S5< S: ]UWVSp Utfx2t6=u =t$MQڍJ1Ph _XUDžDž<y =y ne[^_UWVShtjP{ DžlF1ۃÅpv W Z D4%"\19}VU=:_u/< ȋBHBy ;B| tRQ 5< PC Y_릋p1t=v Rd Z D4%t %l}=p=PhH Y_=u)< BHBy;B| \Rj\ 5< j\C XZl=GZu/< ȋBHBy ;B| tRQw 5< PB Y_lۉhu#Džht1}Ih1;hYE=8u)< BHBy;B| \Rj\ 5< j\!B XZ=u7< H0BHBy ;B| t"RQ 5< 0PA YX=u7< H0BHBy ;B| t"RQ@ 5< 0PoA XZ=u4؃< H0BHBy ;B| tRQ ؃5< 0PA [XlGtHuhtjP E utPjupP: 4le[^_U58 hv诳 j UU58 h艳 j@ UWVS]} EE9ptmt &vt$EEhWS u0uhneln XZu ޯ^tu hPn Y[uW%uf^vv Wft5vv u hGn à tPu hjn ff FPW蓫YZtPu hm hvDWѭ[Zt#N8-u~DtvDu hm FEF EEPu EE芪ZYtu hGm [^WYt u hneu褮Ztuhm =0tu uh覥 1e[^_UPuDju u=0huPhhe hhnel $ujEPR8 @uhzEt ht Phu7juhhhhce hhne$l j貦jEPR7 @uhh k 0Uthhl 1tRhh4l UWVSP=(u} jW[Z|]SV=@ZY3=$t=0xWh [^f=,th0Wh;58 5 yjWxZY SWZYEPEP{h0WjuSY[PjuR[Z} Pt|PEPh]58 躬 (=u# @ AHAyQ @5@  Yƒ tGtB=u# @ AHAyQ @5@ j Zƒ tB뼃ytYt58 h %WV货ZYu=0tWVh衢 18uvEPV苦@Y[E%=taSVYZuSVh{_j [PS贤YZu-$PS [Zuh-j )WVh[i ]SVZYtVhne>i &E%=u SWV WV*ZYe[^_UWVSxitft$nnt=vtXb,$4($,1$,(0hu u a0U )E}U EP} Mt _ZuE%=@t }~qE p0t5EP4kYZuE%=@u GEEC<Ʌtd=Pt[58 hiA XZu uhHWh|58 K }u58 h ^X/~-uhUPh58  58 h%râ 58 H =u# @ AHAyQ- @5@  [ƒ tGt]=u# @ AHAyQ @5@  Yƒ tBBtntNtyt Y1ytYue[^_UWVS=H}utWh58  =DF%=wju Y[uFDuU=8HEPFPvD9 u hKj_ =Tt Whj_ W;|uP;uPjv7I_ZPjv :HZY} Pt|PEPh58  $S _58 U =^u# @ AHAyQ< @5@  [ƒ tGtB=u# @ AHAyQ @5@  Yƒ tB1ytYue[^_UWVSd}EPSYGE^Lt0tfEO=<t8OShne^ Pt'jp $Sh_ XU%=@u%=@uSh ]_ XZX=<u$%=tEPSSA =8u EبtuPSvYXuME%=uS謚.=@uSQ=TtEPS^ZtKShYt*=<t 8tShne] XXZ=4t uSLV ^}_e[^_UWV1=8St=<u=Hu=Dt=Lt jPuWr =<t8/hC4H $sn $shj2\ =<t {sn $shw] X.=<u-s6&Yy.6hneW XZEShneW [_y=dt6CP Y=`tb1эDH9v8/t@-H9r8/t@9t)S蟔Zx=dtSO _j/SB ZYu1 E9u U)US jhy]S jSjӘ]UWVS }ucE @CE]v R! Y D4%@uъ1<-u3SUC=fw u:.tc<+uCEU=wtj EPR 1ɉMEE8.]uDUBEBЁw(t0C ȉיuu}}~ jEP+XZ1e[^_ÐUU贕jy UU1ҍt8u'B~ 154Q<)‰UU`RPZYt h jS E%=t=t5h^jMT EЋU444UWVSRj5E虖_Xy 5jG=5t _:h4hd@V] uh4hd@VF t h}jS 4Ӌ49ډ4|9v hjS jjjV4 h hV= t5hjR V躕4jhPl#}tt5hj S 7hjhP7hjhS7 5jhS7h5jhSN8 S8^tS55v9h1RP5555N1ۃ9ӣ55 xu49u0fJ1ft"551҃Tt)XAÃ9|e[^_Uhh4hohhh h4hdhhhhh!h3hH58 u @jK UWVSVV׉u5hsVE =5GWf_Uw4 h<PhzV SjhV ujhV Vh#q譒 YGX[t Vh蚒 XZGXt Vh臒 Y[GXt Vht XZVj  w(hV舓 w,hVz w0hVi w8hV[ w4h VM $w~j5覎ÅXZ(=5t5hL <0h jhP0hjhS0 5jhS04Phh&S0 S1^uxSg2=5Y0h,jhP`0hjhSN0 5jhS80hh h2S#0 S61ZtPhnezL S1:S1?5hSu ;t5h;zK S, SX1e[^UVSFt1Ӂv R蠲 Z D4%@uӄt#u1e[^USSCEt,Ёv RS Y D4%@u}#uʊtC<#t ؋]^1]UVSPPj5l^Xu5hJ F=5t );h4hd@S' uh4hd@S t S1^hjh 41R4P5454WEV$WEVuVhd@S蜉u E ?Vhd@Su uE&=w =$5 1 f*f, famnesiac5T1Ҹ=sf3Sf(藊e[^UWShqPӉ YZuWuZu WhDjG hPSr {1e[_UWVS,EEuE=5Ex(u 58 hZ*Uz,u 58 hiMy0u58 hzވ Ex4u58 h軈 XEZUfzHu hH _My8u A0A,A8Ex<u ‹@4B8Bhh<4 XZhhL4 ^_hu[11S= Yj5nZ8Cts8#uujY_u|utVm[sPpYctPqt$hy ZuojhSS 1 Shnejh{-4 h]3 X39tP_yVHm[ hh7u ZYhjW褳 S, Xt hWh軳 hmk ^5<  =[u#@ BHByR 0@5@ 詵 YƃtD t?=u% @ AHAyQ踷 B: 5@ c Z 뿃n(hsXOt91ҡ< 1pt hvs Y_uvhjW0 1uju vOu Džq1&du FY1u UVS]SC C u ‰KQA A C ‰VKQA A C ‰VC F C F SC fF[^UWVSQ]SC C  ‹} WEVQA A  WEV ;Ef19ÉEs$Q Ѓ1;MrfKSC fGSC fGjGPCPl jGPCPl K(QA A C( ‰W(K,QA A C, ‰W,K0QA A C0 ‰W0K4QA A C4 ‰W4K8QA A C8 ‰W8K<QA A C< ‰W<SAC@ fG@SCCBKD fGBQA A CD ‰WDSICH fGHSKCJ fGJSMCL fGLSOCN fGNKPQA A CP ‰WPKTQA A CT ‰WTKXQA A CX ‰WXK\QA A C\K` ‰W\QA A C` ‰W`KdQA A Cd ‰WdKhQA A Ch ‰WhKlQA A Cl ‰WlKpQA A Cp ‰WpKtQA A Ct ‰WtKxQA A CxK| ‰WxQA A C| ‰W|QA A  ‰ f fQA A  ‰QA A  ‰SVSXOZy1ɍe[^_US] UBBBCBJAAACBJAAAC B C B fCBfB[UWVSQU ]CCCfBCfCfBCfCjCPЃPg jCPE Pg M A(C(S(BBBA,C,S,BBBA0C0S0BBBA4C4S4BBBA8C8S8BBBAu(x$t8ut}t$]Cj)PSuBuhneX hj U Uh 5t65l65p65h6hX =6w=6w =6?v hc XhMX 56565656hBX UWVSj6h6PE诳 uh~ BmUB E51҉ËEU}MΉu܉E؋M܋UUMMY1ɺ9tAV|PPPhW U<tRPuuMq qhVW EPЃ,?PMAPARQЃ?PAPARh W e[^_US*h Xu!ShSV CZY~ ؋]z]UWVS`=5u=jW_[XEPVZ@ZY5RP]ȋMSQ 66у t WhG6tPO [EċUP66iO 6YuWhtN56PV>_ t V^Zt Whnej  69΋6u9t WhjN e[^_UWS6ڃ16~[_UVSxu0xu*x u$66C6C6C K156156C1҉561҉56CB?K IS156ЉU156C1҉561҉56BC? ˆS[^USQ 6D 1م66uˡx61566)أ66Z[6UWVSSSUEE jSQ56}a 5u:555W56-]¡5 9t=5~PW56]e[^_á5U66VS6tPL ^56L 6[uh8P11@Yuh#6 f=UthB *1۾6P6PIXNZy1e[^UWVS=6t 1۾6P6P}XNZyߡ6ƀUƀDžt6h#jhPh)jhSj/5d6. ^_ud6@PjhS55hySSYu S\Phne XZSD  $P5556 ;5teW5d6h-Sr jjSuZ x!hMPSX V肥8u48/t-Ph6hB hd6i =d6uhWNj d6$P5d655ZM@ZYu 8%5d6h+ - u5d6hG  [_=5u=5u=5u1ۅtS5d6Q6Z@Yu:諤8uuj5d6Q^_6=6u86u5d6hj p Y[cShd@PWO u6l66?l6?Shd@56O u6p66p6Sp6 l6hd@h656t66x6N u u DžPhd@56N uP1RPVS迒x661R6PVS虒6h6=x6u5d6h =6y5d6h j h&@ 6Zuh  hV} hs uF>~ ,=5u =5Dž16?y^Sh> XZuF~Ӄ=5t$t h X!u DžtbS_tCwt¸6=6~Cw ƃ6=5t Zt=5u=5u =5tP=5uhE= ht [^=5ut h Yjs UVS]u CFCFCFCFCFCFCFKQA A C ‰VK QA A C ‰V [^UM SUABABABABABABABABZCCCA B Z CCC[U{U58 hC jr UWVSQ׉蒗j EPSlZ y 8t ShnejT E8tWShj e[^_UWVSE} vlGumtS;tN1ЃщMMQM}/ DžXu hj VShuWʰ  Vk ^tSZ/ Ye[^_UWVSVE 0E}EDt><-uj=Sw FY[t(@hsSFz YZt FFh)QEP| ÅXZuE 0e[^_UWVSQE} tU8tPtL?tGÉE'VWy YZt;,u<FCuK,h)QEP>| ƅXZue[^_US]susPjfYZt h PTYZt h4PBYZt h;P0YZ t hZPYZ@t h P YZt h,PYZ@t h`PYZy hkPYZ@t hBPYZt hvPYZt hPYZt hP}[Z]UWVSS]sPƍEPW(Sh3 V- SN' u W&Ytpph3 e[^_hLux ^Zu#hPWx Y[u E%E*E/e[^_( UWVSx P]u}u XZuu;st޻VSU $jhPRvw uth4V7Y[thsV XZth:V [_hAuw ZYuEuhMhPd WPVdDž8U dh= 7DŽdt>uhG1 _X;}dhH1 Y^Cj ŝ7:ttth V* hLuv ^ZuWY[P6WhVPB 8uhVuhfx jNh V* j|PSy h H j|ƒut%wtt4&Rh 3=7tISP3_ZyRh =7tSS^1e[^_UWVS }} uh /h&)Wh8"Wu)EE1E5Sh&)t ZYuWSh8"t ZYuuSVlY[h)QEPw ÅXZuu)) u!) Euu1уQ( DžXu hj! fnoGSW] WuW( jShE uCPuY_SuEXZh)QEPXv Y_oV~( Ee[^_Uhhhhi58 98 jf UWVS$uE1EEEL p%dt[FtcatEftaoteurtittkvw 75$QMy$8toPX7;hsE}t hj 5$E$EX.M%7hMu?Y[EhRu Vl 0U )ƍU E tjEPjÅXZu ha(hswq Y^t&hswq ^Zthlwq ZYutuwY^uchow r^ZuPEuSuW u6Epw u@w Puw7wEX$tEa Dh=7t>9]V1EuPZYu EPE_Ku!9]1EuPZYu EPXKu}tE 00_EXU 2EE+E^uE 0hv1P[ta](V0p ZYu!Pwp ZYu Eu)U 8/uxuhPNjEEX}Etpw (pUju jEuЋEu܍RuPWE 0&DžXuU 2YDžXu E 0hChsw=o [^t7hsw*o ZYt$hlwo [^tU 2hj w uuw7w}j@E 0 ZYuj:U 2 ^_t{?@uw1э|1E 09tR=w u5Ӂv R{X Y D4%u.t -t:uF9uE~juu܋U r2up@E؃}ufg1u]hh2 ÅXZtFEPh Sd Hu*E~#jPt0@^_u8t hj St [u*` U58 h 1 j` UVStu] E(0%oujEPh 5$h%SVR uǡ0)ƃtnUEЃ%EE[PRShLEp01҅yT"tu/SuhEEt Suh` Suh uhne* XZe[^ÐUWVSE EUEUEu E܅^jj~ >nu~ou EEj=V$ Y[t@];taU1IMQRV uUt <=tă;t%{ MuME;CCu !‰=6u Vhj{ 1h)QV tƅXZ8U܉Ue[^_ UUSM ˀ:tz/uB:/tBA)H~ y/uA[US`] SuzZYt-EPS}*ZYuE%=@t)Shj@ %0N $Shj@ ]UWVSQQE uEÍPU2Z MljXZu E Uu& UU1҉߃}ыELCM ؅_y}֋Et]U e[^_ÐUVS] 1ۋut-7$;t3Vi ZYt1=7e[^UWVS]1tz;nu{ou 71؀8t 8,uG@P) Yuh 1.؉ @j,Pd [ZWue[^_ÐUU58 h, j@[ UVS,jum-Y^Phc@SC+ @tT)ƍFd<fPhcSƅƅ* @uS,S,ZxuHy ȍe[^UShr]&Zy-hr&Yxhr&Zyhp _j CxYtMj C|Zt;jhsx A jju 0ZYPs| A s|sx: ҉Ћ]UWVShjtP]u DžpDžl1j EEE jtg$bt?Cet6gt=rth ot>st`vtlpppzpqpPlPh5$BNpE5$_ YE4G15$tP8@YZu hrjG p 3hVSwz 0)Ã4ttPv SSlp}DžxtDž|Eu8SEZut h ^Et Ph! Y[tPltPh&)ythnej jW UWVSE EUEUEu E܅^jjz >nu~ou EEj=V Y[t@];taU1IMQRV uUt <=tă;t%{ MuME;CCu !‰=7u Vhjw 1h)QVmƅXZ8U܉Ue[^_ UUSM ˀ:tz/uB:/tBA)H~ y/uA[US`] SusZYt-EPSy#ZYuE%=@t)Shj@ !{0J $Shj@ ]UWVSQQE uEÍPU2V MljXZu E Uu" UU1҉߃}ыELCM ؅_y}֋Et]U e[^_ÐUZUSRÊ0<w"jEP5$+J xE8t Shj@ ‹]Uh;h[hhi58 ;' j@U USh(!Zy0h!Yxh !Zyh j YjhPu; uZtP[Z7j Yt+PK j 0u1҉Ћ]UWVS hTjPDžDžDž1d 1DžEEE-g5Lu9tjDEM?W.olt)mst ut)$SO Zt@5CtЁw uu QY YQh^DžS$S* Zt@:CtЁw uu QkY [ Qh1jC Dž$f$fE5$jjZYtj.5$諵 Y[u5$hnejNj EZjjCPY[Puj EZj5$P8 PPh 5$ j E[uj EYbhF5$^ [Zu*EISO8@859-f@2ECP85f@2hO5$^ ZYu'EISO8@859-f@7ECP73f@7jhX5$V^ Y[u jh`hg5$7^ [Zu#jhqua ECP86f@6 5$hnejBhxu ur 0B;EttufEtEfE }4\u/}tJj1 EYuh&ISO8@859-f@1T@u hjG PSAVV%TDž\Xt tucPSc@YZuShnu u uf%fEfTPPh y VhnejG jN UWVSE EUEUEu E܅^jj^ >nu~ou EEj=V Y[t@];taU1IMQRV uUt <=tă;t%{ MuME;CCu !‰=7u Vhj[ 1h)QVcƅXZ8U܉Ue[^_ UUSM ˀ:tz/uB:/tBA)H~ y/uA[US`] SujZYt-EPS]ZYuE%=@t)Shj@ r0. $Shj@ ]UWVSQQE uEÍPU2: MljXZu E Uu UU1҉߃}ыELCM ؅_y}֋Et]U e[^_ÐU?UPPjjEPEPhEth 1EUWVSj/] 3E#ZYt@hPf ^_Et7E1EE|F w@$Md$EZEQMEDM@;4=7u P Ph58 x jNK hSul hE%=u hj t o tuoj1}thh$hhQ ~JjhePjh|S1}IQuS$jhSS[}u_u>P [t8=7tj"jhM Whj"jh7 Whj hhhoQ }u-jj@ZYuh'jj5 jj@u*n8t hjv 58 h _Xdj?1^+}uj#9YtC~׻j j@_Zu 'n8uPC^um[n0) $jj=@ZYtRhB jm U\Uh&h|hh&h|hh|hh|hh|hh58  8j/UWVSj?}YAhj詷XE ZERDž :-PK _ÉE 1Q' ^Dž8:OtruWhKq Y[J1уQ Z‰u jj -B0BP= Y_"u-FDžF94tu+] CEB+q$ j P5$D7P; Pg‹ 8t5$hm$hT<7 =(7u# $=(7ut h$(7$7tPRhj5 $7{07oj P5$Z: ‹ 8t5$hj 0h c,78747Ch6 u uf `0)EE =$7u hK jb h9j&0 H_Zu jj0 [^h9j 0 HZYu jj/ ^_58 y[uh%蛇 Yu Džu 5(7E<X}ZuU BEE B$7rtIRtittx~Xj@-j8D/sX=Lg87~ft5< h~  ^_h 8j,Y=87[t5< h  XZhjhT&*9Rt5< h l ^_jD8j,Y=87[t5< h A XZhjh% h Whj^(X ^=<7_t/=87t5< h  Y[hjh% jh P5XZ+h 79S h j'jh 5Vj+jN7^_EHE@hVE 0E LVk]thtPV$ VjM+j6Y[EHE@tLhVE 0E V]t˃=tVaZhSV$ Vj&=<7Xtj(UVSÊ< t< uCmts\u Cu58 h!V XZGC 't "tCF2C t CF8uCuPh:!58 ; K < t< ue[^UWVSSh]SdN Zu YtjhF!S u;/uf. f./F1҈щM߃ыEL;Mr58 hI!s j'SV7 YX?tGÐUVu NS1ۃ=áDgt;=87t}5< <t!%P XZuVh&%5<  e[^UWVSt1M =IʉEDgu}u&=<7Vh/%5< 7 } u=$7iu =87tv=u&u hD%]SA u u S\Gu ÅXtSe$V"< ZYtWu V uPMYfKEe[^_UM S1ۃ=IDgt*u,…XtfBzfBtRX؋]UWV=87St5< hI% XZjÅXta=87t5< hf% _XCPJgу0{tDg0tSSKS[^u;5TgV[YtxNgu^=<7tS$hx%5< P {uSeKSSMs=C =[XZuFie[^_U<|NILS<<th%h<# XZth%h<# YXth%h<# XZth%h<# Y[<]UWVS M IEEEDgtEuDžXt)wMƅXu h%=HX9tEu ƅXtM^t 9t*[EuP9tL}uWIW[_0׃=<7tWF$h%5<  W+LY1eEt"Et F;EuEt G;EtM}E$fN}uWcIWXZWKXuu u@ }uPXJXfK=<7hS}ufFufFFu'uVd$CuVJfNq~uVE3$uh%Muu ufH ;}uaWHWEPu uo}uPI_fK=<7SvD$uEPh&}ufOfO=<7[WFth&VCF[^;~uMu Yt&~t h7&VFXZVGV[_vuu uPH1 uVJYv=F uu u5=mƃfN=<7VC$uEPhY&5<  x=<7tuEPhf&5<  EGu uh&uEPh&58  uEPh&D Ee[^_UWV=87St5< h&> [^;=TgsvWYtfxt`ODgtF^t?f{u3=<7tS$h&5<  SFS7XZ[G낋5=t^^tR{uGf{t h'S)DY_=<7tS=$h&5<  SESXZ[몋v 랍e[^_UWV=87St5< h*'* Y[=1۾=tE{ts C SESoXGZuۅuƋ=thK'SrC_X[ e[^_UWV=$7RS87ut85< hd' $t5< h' Y[5 7uXZj@Ƌ= 7XTg9dgVs@[;5dgsEV6Yu Vh'~BXZS$h'58 A fcV*@ƃ볡dg9tPVh'58  K6QVÅXu h'BYCu h'SNBXZCt SCfcXSY$36fcY 79Pu5X= 7Ze[^_UWVSWW=87t5< h(< [^jf`g'5lj9?ETgHPZ?ǃ u 7E?WEX;5dgvE9 7u4E9 7t4^u;5dgsCVFÅXu h%@XS$h'58 S fcV<>ƃ;5dg9VÅXu h%8@XS${4Efc9 7^F4e[^_UWVSjYt<=87t5< h(( XZFtV1$=ff_vu߃=87t5< h7(E [^Dž;TgslYtLXtECt:V$W X~ZujjS$WD fc[댍e[^_U=87VSt5< hB( [^;5TgsCVyYt3fSЃ{fCufSf{t h[(S>XZ[F뵍e[^UWVSPuV} EÅXuVhq(58 ; 1LW9YtEt 9t@u Wh(+>XZ{u}t h(S]>_XEe[^_ÐUbg%=@u1=dguUS1Q@=t 9Ht1Z[USf@ fC$==~95Lh =jf)hgfg $=CP$=SgP $=S =У$=]UWVS1;u ]=kt ShcXZ=kt;t=ku {uCCC%S)u9C 9=87t5< h(9 YXCt=87t5< h( XZC S9s=87t-PRh(5<  =87t5< j h [Xփ;Ue[^_USjjj06 +CC]UWVSƉӋ}9tU)ySh)58  %jRP6r6 %FthF P6EF e[^_UWVSExu=h PU2U B=<7tg58 h)) ^_SEH;H| @릋]ˍ{ fWft)9~$=<7tPhB)58  1U1UB{ uChPP+ Y[t2;Tgr&=<7)Phf)58 U e[^_UWVSuS ^/Xu@x/t1k<1҅tR1LPRL$1[y5L|Yt@9uWVCPA uԉڅ҉u1&:hPP_- ƅXZt >s؍e[^_UWVS ] ujSuUjSuU huP1ۃ EѸ)PhPP- ؉򮋅PIRL5Le t$h@P) _Zu5L=^uh)58 h t$hCP) ZYu5LXuh)58 * LIDžƄS=CvhPVhV$58  +RPVu3VVpL5LTáLXhe[^_US]3%Y]]xUSjP YX1t"h ?Zu S1 @]UVSu6Zt$StVR:1e[^UWVS@=87t5< h) [^h*] Yt8u*$7rtRu5@gPh *h =#u h*6Khhq DžXZuI>0% $h0*58 2 hh;*58  58 hU* %=ufg W6P^Wj4jEP軠 =uG WO[uƠ$7/t ^_jELg=D7Ef`g@gu u[u Y PhY/x%XZE]ܣTg47)ƉE؉$Q5 QH19}t k$BQ$9sQkB$BB:t k$BBt k$BBt k$BB t k$B $뫍e[^_US];Pg~BRtPY PRZu58 h~/: j]UPgB=D7SR]tRj |@ } YHgt HRj:Stk YZt/j:@RS`k [Z5@R+CYhS  YZhh/ YHgZueO,0x $h/h/58  hh/ Hgu&,09 $h/h/58 A 2PRPSD [RZu58 h/ j@]UVSV5f5f]+SEn $h/5<  5f5f+fE֡f ƹ0t S+ [Qh05<  (=xft:h8fhxfhe5eh!058 V heh@058 A e[^U=LRt"f=`gu5ghK0hu0 Tg=LRg0f`gfbgdgtjhVLRaUQQ= 7=PRt58 h0` jH=@RfEEt Pj,XZF=HRu=EPhm5  y")0 $h058 # U=07uEu u5V @u.)0Ϧ $5g5dgh058  UE jRP5V Bu5@u2W)0耦 $5g5dgh158  jU[E =U[~$PRhW5gh6158 A jtU EW U5gha158  jDUS] Su5V V]Uh1E VUUx6=HRt5DRtDR=@Rt*,PCXUE Pu58 Ӣ UVSuU 1>˃htH09~.bqtn ltAstwtk DF륅uщKxAQuKx~ BJBJJBuKxX BJBJJBJBBJBJJBʅuPh158 d jFe[^UREEPhdEUWVSW C=T=l=ku%58 h1 58 h1 =Tt=C=lt3=k58 h1 58 h1v =ku%=87t5< h 2L Y^k=k޿Eu EOuEOu}It)5g5dguh$258  1W=kt0ShI2PhdpxPhW2_BVW$8 CC(K,~V)19@{lujxu ks$s$C|XZC{lC|sg$sR$s09$s8CXS\*$C`Kd Rh\2u_X=ktC$C&=<7CTXR\RU;uW58 h|2 Y ^tRPh258  58 j * XZ=`Rw[$P58 h2@58 h235h2 5h258 L 58 h3 _XVHdR9tPRh358  58 j o Y^;1҃t&19}5Vu tB@9|CdRV=`Re[^_UWVS$}uVLR\RXR=PRV}thhA3c=47[=u Hg@ @5HgX Y=u Hg@ 5Hg2Z= 7=HR7@=PRw$7t<>/u4WÅXujWY0WP"fK/F뿍e[^_UVS]s{1Yt9tF@u h%=SXZsVh5=h<=h _ e[ _^UWVSuF t hE=V[_fN V$S 6JVa$41INV$S e[^_UWVS`=,7u} t=07uW>X}u6=07WVCY[H0q $VWhe=u}u|=07WVÅXZyqEPV9ZYu)}t#jV聮ZYuWVȯuViy40 $VWh=58  uh=14=87t&V}W=t=Ph=5< Ư e[^_ÐUSh>X| Huكڰ |tPjj|PCPDžtDžxͫtUh|P5  ~7{ Ƅ|tBR|P50ch">Tj UWVSu~ 1҅0c_Lhj [=$c^uCh.>h_ ZY$cuh2>(P膀 _(cu hN>^nj@50c? Y[to0cEƀ8tTÀu-v S{ Z D4%u _t-tuh\>cY[j F>G=0c (cEhr> Zuv>hhne^_hSu(c0$c@Ph0c*),cyu50ch> 50ch>58 A Pg =E~EEm}~"jEPhh5,c%xjEPhh5,cjEPjj5,cEy h>ǼYjEPjj5,cE趨y h>虼Z,ce[^_UWS uh>j]S 1IQS5,ce[_Uu u5,cUPjEP5,c Htj3XEUWVSlj։Ã~< uC#CNh>%Wh!?je[^_UWS]؁ ljU؍B<wH{SWhEP }Fu  cCAt51эD9v H8 uEPh6?mj: EP e[_UWVS1ۃ ׉EU؉IQR5,c莪}I 9tjXEe[^_USU x&Ruhk?hS ڸs?l]UWV1= cSu+@VGlKGNyl[^_USPu uhy?jP]ST ڸ]UWVS u h?j]S' ڸex119}+)PEP5,cz jXэe[^_U= cu?q cUVSu uVh?hS ډ c*e[^U{]UWVS u Vh>j]SC 1IQS5,c虨Vu5,c芨({ e[^_ÐUU=VS։uP4P<@YuMtt&u/Sh?=u Sh?f u Shne f XZ1e[^U2v Ph?58  l vt58 h? 58 h?蘦 XZj UWVSj/u 6Dž\DžXKQ 1[Zuh'Su ZYt h @Su Y[t l1dtjU At,at2ktn ht`ltJst9w=un=w\P=t6@Dž\9DžX-M&K=umh@Vu '0=4Dž`tzkh@s _ZuXhos ht ZYuEt Dž`)=3@tUFP t Ph%@脜 du >u>1ҋ t Dž`2=lu)=6@tUFPs Ph%@ 맃Xu \EDžLDžPDžDDžHn KTtMt"Džp DžpDžl pPlPq^_hPEPhB@Džhj; @u hO@]Xt@pha@j tS hl@lSlhr@hz@ 1jjdPhEP|BREPDždm @}t h@j]a Tm4pVP884VG ~1e[^_UVSSS]SuVjZYujSjju"jjVjujjjVe[^UWVSHuVÅX1эA |/u HVb_uoj@VE ZYV)PBPhAhW~ 1эA/uHƄ荅P_t.jjVjjjVjPV辔ZYtVhAfPV[Y_tVK%=@ubVhAhW PWtWhAY XZ9uVhA uVhAY "u P^_uS2e[^_UWVS4Et 1=hBjW hPs ^_hss ZYt&hss ^_thls ZYu~EPsb@^_tmusZYu\{QDžXu hjV sWu uuW?1utWΉE#1e[^_UE hPuK UhBhXBhl58 f j? UWVS,}] E1VEftJFt6 At!at|ttHht0nvt]ge^5$-|=lE$l4}t hjXU 5$EXlhBSW  H09Ǎut t=lt}uh~sE_lt@1}ԹhlEPjRb tP1$5lhjHU t EP[OE~=iuuȍPZYuV^tEOu蒇&|u{PhnejS uE[(E;tu3ZYtEu UVS] 1ۋut-l$;t3VM ZYt1=le[^UWVS]1tz;nu{ou l1؀8t 8,uG@P葆YuhDU 1.؉ @j,P' [ZWue[^_ÐUShyihBI X1Zt&u uj蒪 $hBS SF ]U҉uBRPhBjb UWVShhBݕ Yp[DžxlsV1҃8hBhBj^b h'jPb p 1d<#<  < hBV ÅXZtm;thhBV YXt?u :NhBV ƅXZt>u S-j |PSf t @t |8tڸ/mh蛄YthWCP ƃhVP ƃxǃxphcSє pK e[^_UWVSVVhhB YE[uhBhBE5l~twt8CVPR _ZuPR ZYtȅu5W^S6hBuV }tWShBR E싶puh }_u#hB蓒@^uhBh Cj_ 1e[^_UWVSPPEu Eub El_tnu{W ZYuTtVP ZYu=}t$PWCtPh#C>Q hjCP 뎋EEe[^_bUltlRl?XÐUUVS=ÉY=LVShNT5ّ 52 5@ hPg uL5h_T5萑 =u@ f` 5@ [v Rc Y 4nt~?t{atpt'qt@ShzT5 _5hT踏 XZA5hT5 1SShT5觐 e[^UEVSu t~]6hU5m  |=t#3PhB 5A U;5h\ eH$h hU5 =t3v; YZt;;uvhU5轏 QC t8tPshU轈 shU諈^Zuj 3h T CL e[^UVS]ۋE 5\u;L=uu \=t;Xt88u] EUe[^M u =thphU phUއYZuL5\e[^U}E u0hU5耎 E EU}E u0hU58 UE E{U}E u0hU5 HTE E3U}t E 0h V hhV5蜍 U}t E 0h@V h hRV5f U}t E 0huV hhV50 UWVS} `\}1ۀ?tJH9sC`Ёv R3 Z D4%t1C<t\븋`tv1ۀ8to`[ҁv Rر _ D4%t-[v R^ ^ 4`C`<돋`}t~1=@`tF@tv;tN1Ҁ=t;8u"9s2@Aʋ\+`H9rBtvŊAC`}1DžT1DŽd@~?=ƒ$St \u;F8|9t DŽd`=DžTƒ[t,$m\AAA<$ucA=wbtXA<0u?t1BF:XσdT;TtBFDžTt{u<]tu\uA]$uPA=wIt?A<0u?t5BF:XσdtT;TtBFtAF<,u9DžTITAt*<]t9\uA<A9uq,]tYIA=wEt;A<0u?t0BF:XσdtT;Tt BFFA9`8u5hVx Y[Ǎe[^_UWVS1}uU BEBfEtAHuhVE PEP t%}hVE PEP t}~E 0hV5 E pYuE Ptڋ8a Wt=WuW1Ʌt =`tQ1Ʌt =tQjRf‹E 1;Xu;PtQRSV趝 Szwe[^_U=VStW=|tNW5t55[^UWVS4EtHu=h&WE PEP! u$E 0h2W5裆 E hHjjht=tB?t =u=E 5`55W19u =uPR=WWuWP =u@=|t7IWWdjju o I=<=d=E 5`5E j4‹E 1;u =uQE R=4WuWP ==|IWWWK1 SjhE 4Ju uE 4hNWB S; ==E 5`5j7z19u =uPR=7WuWP趙 =u@=|t7IWW#t &P:[F;uje[^_UWVSh1}DžuU BEBfEtAHuhVE PEP t%}hVE PEP t}~E 0h\W5K E Pp[u o1҅t =`tR1҅t =tR1҅t =tRV}=`u5hW臀 1PS|Z}Yu/yShW? [_,u(jE pcZYt[9| DžGWE 1;Hu;XtRuShW*Vqe[^_US ùWuQju u]UhWju uUj&=|Yt0j=hBu @ 5J6 ZP7 jh UWVShEtHu=hWE PEP u$E 0hW5 EE hW0Dž ZYu(=`Džu5hWa~ hHjjh{q;t =uT=Gh@S^_uShW5  E ڋ 5`55St9PVyZYu Vh< _X19ju =uPס ǹWuQSVhWb=u@=|t7XWj5tu rje[^_UWVSQ}u t 6hXhv} DžXZu%vh-X5g} e[^_Ë WEWu(E;t^ujVj?S(m[jh`CjjWulj}e[^_& U}uU}VSu$E 0hU5| t)@5IXtRhWX5u| 5hkX4{ [^=tuFjr=Yt5h{X5.| 5hXz XZj4^5`\8uXP5$hX5{ 5$5 $hX5{ $hh h hhY5{ 5d$5$5{$5\m$h>Y5@{ 05L$5>$hsY5{ 5$ $hY5z 5$5$hY5z ,=th@hhY5z 5hY`y Y[=`thhhZ5gz 5hZ&y XZ58_$5p5K$h%Z5z 55h5h!$h`Z5y (5T5d5d$hZ5y 5,5hZ5y $5$h[5y =P[uP5X$h:[5Xy 5g$ha[5:y (=H~A5h|[1w [;5HX}%ShO5Fx  ;5H|h[h[h[5x e[^UEWVSu] }u 1>Ru6hsH ZYu2hsH ZYu3h[5Rx $t6\$Wh[5.x e[^_Uh[hu uGUh[hu u(Uh[hu uUES] u1={t 3h[GhsG YZtPhsG YZu ;ssZsh\5;w |p5/$h4\5w =t5phJ\5v 5heu [Xt 8]Uh`\h\u uUhm\hu uUh\h8u u=8t Uh\hu uaUES] t~!3h\5u  1=u>hsF ZYu [hsE ZYu<us`XhshmL \m =t,\t8u5h\s Y[75`\8uXP5$hX5t ]Uh]hdu uUh ]h$u uUES] t~ 3h)]UujhsD YZu \hsD YZu =sTZy+shN]5t d1==t55$hh]5s 1=]UEt!Hu:h]E PEP u!E 0h]5gs dE ph]qlZYu9=uA=\t5h]q YXE ph]3lYZuxMUSEU u Bt2h]5r vriÅXtgS r@Yu Sh]0 B =@t$h@h^5pr 5h^%q XZ]][b]UEt!Hu:hVE PEP| u!E 0hC^5q !E phZ^kZYu xUSQEtHu=hWE PEP u$E 0hb^5q E hHjojEh;u ~=tuE ڋteShZ^0j[Zu x=u@=|t7|^Wjju Xuj]UEtAHuh^E PEP t%}h^E PEP t}~!E 0h^5p 8E ph^(iZYu!E ph^iZYu xUWVSE EEEEE;puuEUhhPު YZu+=\EuE E^e[^_)n t]}E^u%Uh^P苪 [ZE^tE_~ E@E~Uz E Et:~5}u}t U2h_ E0h_5n }tNhD_训Yt8uJ_1ӍCP&|SVǍ@P[ EPhW踩 ^Zt??|t:UW[t¸O_Eu 1jjhuWu$}tt}e[^_^e[^_UVSEt;HhWE PEP t}0hVE PEP uE 0he_5m VUE LDhQMM裰诨 ^Zt5E8|t-PE[t¸O_uE h_0e ZYhHjEjEh{t}=tyijjPE 4}u_u^P諐=u@=|t7E WEF=t EH9^uj-M[9M^t u\Ye[^UWVS}u$E 0h_5k RjjɽkÅXZSCYkX~jj螽h_d u_j/S. Y^u@hPP9 =tJ5Sj X=Zu$BHBy Rj 蕂  5j Y^O~j5h_PS" jPS" Shne( j蕘 ~PO9ZuVj覼^C_uh_( Y e[^_UWSPE1ۅt#Hh_E PEP EvE 0h_5#j E ph_4cZY}h`U BE_E ph`bZY}5h`h 5 5@ jO]SHj u?5h `Uh [=_u @ f` 5@ Ys1D)E X EE p h?`Nb_Zt5hG`g +u}uE p h?`bY[e[_U}E t0hU5h N=`u#=`uE EV`Vg h`h|`5mh  U}E t0hU56h N=@u#=@uE E^f h@h`5g  UEt!Hu:h`E PEP" u!E 0h`5g _E ph``YZu9=u<=\t5h`0f XZE ph`p`ZYu xUEt!Hu:h`E PEPu u!E 0h`5f _E ph-a`ZYu9=u<=\t5hae YXE ph,a_YZu xUWVShuP} F{ 9}7hE4Vl{ G 9}hh|VR{ CōPhne9_^_Hu jX[xe[^_UEtHu:h4aE PEP5 u!E 0hNa5e u uhfaUEtHu:hlaE PEP u!E 0hNa5^e u uhUEtAHuhK&E PEP t%}hVE PEPd t}~!E 0ha5d E ppha]UESU \u2ha5d /H\u ha]Yrha]XZ\]UUBSM \v1ha5/d /J\u ha2]Yqha"]XZ\]UESU \u2hU5c /H\u hb\Yrh b\XZ\]U}E u"t0hU5gc =thbn\XU}E u"t0hU5c Ã=t jjvXZjp=Yt jjZXZj躐 UUҋE t~0hb5b u@ h.bIYE E?`[Uj =tXujoX1=jnojhUWSWEtHu3hE PEP~ uE 0h7b5b E p\E@[u 5hJb}u5h_b` qEx u 5hrbjh:ZYuIhfj蜳jnM y t4=u+5hkX6` jnSj_vhUhLaY_~&1)QPhv ME PPEHPQXZ1=jmSjݲe[_Uhbhu uUhbhu uUVS]ۋu t~6hb5f` ju&5hb_ ?jv@ht u @jvh@t e[^UESu)5hb`^ `t$hbE PEP t}~!E 0hb5w_ wj 5` [=tZtC; tj S ZYh5hs C; thShs ]UES] u1=  t!3h c5^ hs. YZu  hs. YZu 'hqs. YZu 5?$5 1$hX5^ ]U=\*cu1PhXu uPUhEu6Ee[^_UWVSEt!Hu=hVE PEPN u$E 0hC^5T hD_趓EZt8uEJ_1}ӍCP*|Suƍ@P]i jjhWEE pV\hWU\>xE(VU\De[^_U}VSu t!6he5S he6$ [Zt(he6# ZYthe6# ZYuvYtu6hf5_S ttt,5,5hZ5'S e[^UEVSu t ttG6h fU`=`CuP3j h:f5R ;v%ÅXuvhCf5R JCtPBCXvoC=\YtP3hYf5KR e[^U}VSu t 6hpfv菇ÅXuvhCf5Q 1CtPACX3hf5Q e[^US}E \u0hU5Q ;=TuE Ef]hxn<[uh|545@ZYujh_ ^_=t5hh(G jj/hnDžDž Y[XuƅDžXn7X nvK;/tmShnP\ X=xu$=rthrP _Zrt jPr [^FrDž|C=t:;u )j/S ZYt@P9$5r^_|PjP+ u|tPhn5F hPhr[ xz\DžTr1;PsyT1XЉIP߉I9Pw/XIQSX uS\Y[TrT\xX$\ XZ Phhj, e[^_ÐUWVSEDžDžu} uH%hdE PEP u E 0hh\Dž 5H9 }+j SE p t 9 |ڋ ;Hu%E phh5E hh$PY k ̦;ЦCҁv R j ^ D4%@uѾ $t\CS=wY1u Kk |CЁw uދEK9|u)PE tVX E |AiuOC;EDž}<)PE 4VX E <1эt1 F<; }0zYu 5hJb+u 5h_bx t*=u!5hkX%B XZ=\tN5hA Y=_u$BHBy Rj Z  5j XZR5 VY=_tG~tA=u)BHBy;B| RjZ 5jH XZh$PhPW { EE k Ц9t C9ct;E,e[^_ÐUWVSQE1Eэqߊ< t < t< t< uGVRW! 1҅u4t< t< t< t< u< t < t< t< uGE8ڍe[^_UWVS8EEE%P҈UҁH=<ӋUEUu.=v PGf Z D4%tFFɉ0E=w uUvRe _D33UE EE@EU:Ee[^_UWVSEUt.t*}t$} t}t}t}t }t} u hhjV EUEUE EUE UfjhiuE u"EUEEfP6jh#iu u(EUEEfUjh*iu uEUEuuh2i U tP/E XUtP.E_UtP.E^UtP.E[U tP.E Y3U1:%j/R _Zu ub/+]CSSuP&S E8uFV4U $@W [^tbE8u <U C:Pj:E 0Q t@PָUYU 8Ut*?[uij]_S ^Zt @t<:tuuWhBiu)PÍGPWS W輵uuuWhbiE1ۀ~:u^j:W ZYtCUۉ:t1jST^_uuuShi Uf]}tuU[E 8uhPַU Y=tpU uBUPffuRUuBPUuBPUuBPU uBPhi5V< 1e[^_USpjɍjdhi]SQ P=Su @ 5 ZP;jhUWVSLjh#iPDžDžDžDžDžDžDž 1 PPPPPPP7m@tt8tt8u Vhi8j;P Y[h jP9 YZu DžFhjS YZt5hjS _Zuh!jc ^VShNjQ vVDžtj@P t)CP<;[j: ZYt@PXH8?t6>t1j/V 9[_uu xPt{1u t=t{uBPuBPuBPuBPuBPuBPuBPhnj59 $=dDžDžtQuHt >thjV ZYt Džt ?thjWg Y[t Dž=t jjXZ EԋE؋Et EEEPR@@Y@[t!Hu3N uhj t tEPj莩EPj9hjj XZ1ۃuj/V Y[tC=t+ۉuBPuBPh k5U7 t>taEPjEnquExwX=xZu0>V=F58 h#k5 ^_/ۉ-t?uDž t3hVSK hhPSK hWSK ߃$EW}Eu t<=(t EWEXEPjR= uj/W Y[t@ =  =(EEEt Pj/PjXZdљu DžtP%Dž_tP%Dž^tP%Dž[tPk%DžYe[^_UWVS DžPPPDžDžPDžHDžLDžDžDžDžxDž|DžDžDžDžDžDžDžtDžDžDžDžPPPP7m@/u0t&8t!h(lP2 ^_th2lt8u,Cu = uhYl~t [uj/t ZYt@PtA_t 8uhl4=thl52 =(DžTDžXDž\Dž`DždDžhDžtKhm [^t5:|t*XPR-ZYuEhtl2 ^L_uthlX=Pu LA L [Pz,ZYu#x tGjR=Pu LG L< _PIv ythl2 a=\thm5 1 у tRPhm50 5j @0 [^uu.uhogDžHuhegoY'm>hzgDž[oZ8PH1эq_{8tvj:P Y[t0j PBPR ‹ 8uA9u61эQ9rR)SP h&P|m _ZdtPDž^u&ug PPPPPPP1m@-w/t%8t t#8thPPj Y[t h;m.Zt~j% ^_tkhTmC Y[tPDžZtPjDžXoPKDžEtP,DžXtPDžXtPDžX质XtPDžX1}ԹXE؍PEPjEEEk tP$hne_BtDžӅSojjjhVss thh.`VA =\t;tVhm5, SffBs js( y hmm _CssP[ y2Phm@ P+Dž [yhmhWP0l [=\L^thm5+ 1mth=\t)Whm5+ fhmLr+ =hiLh nRhnL<+ j:蛼 tF!PiZYtj%Ss ZYtSh.nL* Sh9nL* ffPtPhBnL* LhQni) LhFnY) LhTnI) у tM5W)) 55hhnL9* 55h}n5* F(=htLhn( Y[hn˚ ZtPhnL) h[h[hnL) } t9=\tWhn5) F u hoL{) }t4=\tWhn5X) F uh oLA) =\tt5ht"' [^LhQn' Lh` @uh&o-jh!RjPLcu&h;o HtD< t< t< t< tŃ=thPo5f( j ¹ ZYjj @RPJ Ƌ t*Ёv RrM _ D4%@x[t Yjh!RjPLbHD< t< t< t< t=tQhPo5G' _otdj P'у ɉ£ 8 =QRhoo5& oo8*u@j SP ' ҉dh}8-nj @SP& ҉\`Gh9`5d9\!8/Px*u,j PR[& ҉TX8=t5hoH$ XhZudu5j*$ _X+`\hdho5'% XTho5%   hoo(Sho u4Shp uSh(pׅ DžH8u(P [=j]P $h>pNQpt/ =|Yh[p tptethpv p=5hpF" XZpKup7\qu=9jhq:t XS=Xh+q5" tDž_/!,}d3t1 1t5 h@qO |t |?u heq1 vBv~ hq 1uD=\t|hq5! u u|} =\t|hq5! | uE DUD=\uD9ttuxhO5! t ?u hq D85hr 5@ j Pj! u(=u@ f` 5@ Ԅ v R4 [ 4y 11ۋD=@<Dž4Dž8Dž0tQh(r5 qt6jhBr% uj"S# ZYuhJre _X)؍XS.$P4^4 4hvr5a t+hVS,4 ShO54 h5V ^5@ hW u)=u@ f` 5@ &[01Ƅ)M XP Zu~tujSHDžW SDžH@u*P $x $h?s5Q ҡ|vj`XDžFjhds6hshshshs Xhs ^_tPjfY[tPj fXZLt LV @t P#XPtHt HPXtPI Xt >_tP-Dž^tPDž[tPDžYtPDžZtPDžXtt tXtPDžXtPvDžXt WXt BX|t |-_xt x^e[^_USjhtP. h[S! ZYthtS ZYu 5h$t:htS ZYu 5hth*uS ZYu5h1u6 Y[IhuS YZu$hh[h[hu5. Shu5 5j t 1jjhiSG t  ȉיut 5hyʍ\PXPEPEPEPURhyh`5 hxS7 ZY  ȉיut5h=yHt\PXPTPEPEPEPURPPLPhyh`, LPT1UE E E fXf\\PXSTPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPURPPLPhdyh`\t5hyLPT11DBvfXfS hwxSs5 [_   ȉיDžXut5h|xKP\PJPIPHPhyh`~uH:Iu:Ju:Kt5hyjhԡhC8 \f=%hyiPh50 r xjh@h7 =t f0tPYjjP9 £0yh豶 =u2j`PjhR@uh zhzx XZmPh50 yhN=t;j`Pjh50[@u=thnxhmw _X1DžD󫍅DPh50; @uhRwǵ [jD50pZYy h&z虵 _=*ƒt=X=PjhdP&6 G eu Dž|j j VhSdPdR uVVSWh-z=A=Pt5hx Y[t tIPPPPPPh=zyǃPPjPPPPPPPPPPPPPPPPjjhTzǃX=u=u]1t =uBj`Pjj50Dž`\@u=thzhmw XZ1)500_t e[^_UWVSH= jj50Z rPj50; @Wj]ġ0SEfExXUY~BEXZ tRPh{m uuuhU Htuj+>j} tU :-tRh{5( }tuh{5 =ttuu ui 9Lt jPY[^jDž`Dž\DžXDžTh:qZYt=~ j`Xhj:hxjy:hu \# u @ h8 ] ;|uLjj 3:] hCSXhuShne:8Dž`^_uhr/jh/j E0j@VG 1tp軃 EĉuȋUBEE@t<@EPE@P5Y=@[ut jWV^1 Tt?=u6Phɀ5H 5TxM=kT}t/p'jh V=hr/jh/j U=u 臱=u @ 5Sj YP( ;ZUWVSL=\u=8u }KjP'++^҉_yH@Bڽ څ11ݝ|_vX݅ٞ։vAQٽRf,$ f٭߽٭؉Ѓ 5tS55hhP$ ٽf f݅٭۝٭Q~LعQӉtRQh+P P# ؙt.Ph+P P# غ<љRPh+PP# É @ |vv@SPy   )Ӹdkd y Ph+PPDž" }=5 ݅ҡ 񉝰9|9+RP,$WV,$ٽܵf fܥ٭۝٭عËh#+PP!  t.Sh+PPp! <әRPh++PP1! ++҉yH@B~2h5)P  hB+PP }Su =u @ 5d [P辮e[^_US}ҋ|HvA=|t0j=hBu @ 5rd ZP_ j$X]UEEEjEEEPUjU$U@E EEPE }ЃEE$EPuݦ xUUMw1ҩ`uu QhAjk Ru QUWVSP}u:jh襩XZjPi ++^҉_yH@B9|E9v; Džx~w9~dPz PhghS P=Su @ 53b [P  jj@jjh 4= =8}ujh#jj}ujjjm =8$hhQDž $ t.Phne+PP ҡ RٽP߭f,$ɀ f٭۝٭y1 d~dVh+PP,  =v$ҍXt1I)˅~K։йdh)Sh`SPh)P 1 A |vvރBP@SPVSh+P PB ++҉yH@Bڽ11څ|WvPɉٞv?RٽVf,$ f٭߽٭ A |vv@SPy   )Ӹdkd y Ph+PPݝ =5݅ ۋ |"vs9 |*9v"ظ+hЁP)~1ظ+h݁P P +5=WV,$SQ,$ٽf f٭۝٭?~~4hЁ+P5P Ɖ ؉֙t,Ph+P PB +h+P2P Ɖ ؉љf<RPh+PP ؃}u-hB+P P  =Pu @ 5[ YPΥe[^_USj]U=Su @ 5 Yuz=u @ @5[ ZuV=u# AHAyQ @5u [ƒtBv t,tu1"B\u:=u# AHAyQV @5 YˆC=u# AHAyQ @5 Zƒ"rB\u:=u# AHAyQ @5c YˆC=u# AHAyQy @5& Zƒt t t t ,g1=t4C-=th3 ZYtۃ; ]UWVSx1=Dž|hhs ^_u$8=hhne3a Y['hS _Zyƅj.SEn4 [^Džt tDž|||o zhur ZYJh5r ^_0j.53 Y[t;Pr _Zu))ShPs u j.u3 Y[Pcr _Z+]Shu:s _te tk7TXU uhU hP [^(<U thP ZYt@=Pu @ 5W _P[^x ?+EE8hUf=Pu @ 5V YP艛_Zx ?TE8HhU^3=t_ t uA=u#BHByR @5\ [Ãu t u5hHk1GFf=u#BHByR* @5 YÃv S Z D4%@t{ tE=u#BHByR @5` YÃ0C' Hu ̦k@̦k̦tu=u#BHByR0 @5 Zà u ~tF뢡HkV@ЦHu&5h/3 hhJ] _X|t0 t+\ c@hd\ h85E 1>5hd5hhd\ h\ [^5 e[^_ÐUS]Ct&Ёv R Z D4%@uh#Sm ZYu XujhfSn u \Uh(Sm ZYu `8h(Sym ZYu dh4S\m ZYu h]UWV=S5\u \hdYtWj h. 1[Zuj h- ZYt {.uK;hh95h tjhThn tuVt  j hh  tbh hU5 Ht  t*j hfhWn u5hqx [_1T@~hf+衔Yu)0p5& u=u=Xu XtW=uN5h贏 X=Zu$BHBy Rj 8  5j h ^_E\Eu Ue[^_Uhh@1ZYu@=th@h5D UWSS}W,ZYu WhN ;/u/1} эyWu Sb u =/t1e[_UWVSEEEP9Us%MM<1эy;}~}E֋ EЃe}ufUBH1EE9EE9uMM܋UM܋t5S Y_EEU;BrA=u'BHBy Rj a  5j  XZo1эy;}}I=u)BHBy;B|  Rj 5j 1 [XEMM9u%EEe[^_UVSQQ]0=Shht@u @ 5C ZPˋ @tfCft    P0e[^UEtt'[ht hdtKT/ht9~)Уhdt T9~)Уd PhAjI U =1=4=58 55@ B[ P4:jdUjRP 5h[ j 54(hkj54h4j54(hj 54h|hqhj 54 jhhj54j54EPj 54i(@t}u jj54r =u4tPX4tP4XUSQU=w}tsj EPR` U ҉t`:t zu[v R衟 Z 4gt# t'bt"ktmt   x؋]USjhhh]ST@u5h I XZjh,hhS%@u5,hĆH [X]UWVS]11Ҁ;}u tO9sK;UsF t w"t  \u :\B9s AB< t 9s;M[^_UWVSEE1Ҁ8] %tE H9yE bEM9ct?&/.}3%!Mmn=`u.EEt c3M9t AB9E H9]AB߃=t u9tvmu9.tlE H9so]AB݃=t 9t?E H9sB]ABE H9s.E%E H9sM %B9s BEEhM[^_UWVS1؍}Թ$EPEPh2uVEEE u u" Y=tVSh5< 1e[^_UVS]u SXu ]e[^&UyUWVS(uVjjV荃ePjVp @L=ufE~jEP覂EXZuu Và C#8$=~JjEP\U+UE+EY҉EԉU[y HEԍ@BE؋EغәiMy1PjEPfE u 8tu <SCtgEt:EPEPhhVE裁@t7}tGỦ ; WjV#1҃ Je[^_US]STuYu ShjA ]Uy u h#jA US] Su @ZYu ShLjA ]UEu hmj2B PT Zu hjoA UWVSQ}W] j EPVT U:t69u2h.>Wd YZut-SWh=C f@A=wՀ:uЉVjte[^_UWS0=d]uS2T1}ȹ }WjhSjJu}uShNWB W;1E0W;؍e[_UWVSp=uEEEEEt9uBPEuBPE uBPh܇5c =<th\gE EEY} uE}uEEPEPE PVE} PtPVh5߂ Vh5ɂ 5@ jO]SEa uB5h `n X=Zu @ f` 5@ X1щщMD)}Eu PE 4] ,=tOы} 1ˉӍ<WWu Pݖ WhS WVS E] (u h_z^_uj}uh!E['EYuh`zÃXZu9}Euh.bE#'E_E8t3Ph?`zY^u}uYEtRPh?`az_Zt@h+? ^hh9h 臺05 %;Wu E=t[uC15H9}Wh ZYtC9|E t }tPp_Et }tPp^Et }tPpp[Ee[^_UESt9=t 5h?-Hh]"E PEPx MAv$E 0hj5 Bt`~E Pt\t8u hj< RPRE p,z[Z=t"=\t5\h5a j hUh ' j h׈h L j hh $j hhɓ j h(ihl讓 =@tjjE p ]ÐUs-USS}] t3hM&u Cw~tuShd6j4 hrYEPEZu1]UWVSSS=!Eu/Vh茢 h N E EFӁv R Y D4%@uׄE0E}t;EuYES\u FuDL"u E"7'u E')Ӂv R菢 Z D4%@u GFutF+Ee[^_UŠ<^uR?tЃUSøutvtlv80q0rB0p\st*vpqC@p^qrp[U=StCtP3hxr ;1]Uhjh1UWVShuVUE!~1[ZuhPV~ZYuhOr h92 h;r E=tD1;эqEA~hFr EX3huq u^_;j jhVd~P~t uVhԖ9t ߁H0< wk B|Њ:tuVh58 z &v uVh6=uh_41 1 jWUe[^_U庝U庘NmU库ZU庠&GU|á U~%5tjhPMiy h|YU=@thhh0 XUEHx>¨tt ¨uu 1=Hu%t th#h$/ jU)uu hN/ Yh~/ j6fXZUEHu 1Huthhјj/ j2U"u hS/ YhF/ jeXZUEHu 1HuthEhj. jT"u h. Yh. jReXZU=St.Ct8tP3hn j X;j hhPhxun 1]UVSƻ=t=Ct.8t!P uP3h1n j AX;e[^UWVSP}E258 h)v VhfVh58 $w 1E tvE 0jhVE GzPzutS t21:Ct!PC 8ƚu˚Rh[`m {t jS!EXO녋Ee[^_UjhPyU=Et't 8tsPhњ%t 8tLhZPhl XZUEWVS} V}uxhPwGxZYuhw4x[^tR=ts3hxfl ;j shhPhx9l Gjhwx u whPxYs tp}twh| YZu'wha _Zu hH+ hCt!PC 8ƚu˚Rh[zk {jSY}th~P8xZtwh58 t 1l{twSs 3hٛk Bwh讯 Y^t GU‹C C bP3hj Ce[^_UWV}S} 58 hr hPw6v^Zuhw#vY[tl=ts3hxUj ;j b1hhPhx+j Vh<Vhj58 `s 1m}7udjhVwv tPvZuC t.Ct!PC 8ƚu˚Rh[i {tWjSYOPevZR{tjSs 3hYi !C C P3h6i M)e[^_Ujj"6jj5jj5U=t jjp5YXjj"5jj\5U=t jj4 jj"]6XZjj4UQuhj( hڜ`( 1'ҋ@t !jEjEP9UEUE1USh ( X=t.Ct8tP3hxg j X;1]UVS}u thYjhvNt u vhCPtYtvhk58 p <{ t!=uh_U' hڜK' XZKtCEe[^e[1^UWV}S=t;F t,~t&8thhf Xvh Yf [_>j Y='t28 t-{uC "P3h s 3hf ;;}U )jhËE 4rS6su V)sZt U 4huuE 4hΝf 1t3F t,~t&8thhe Xvh Ye ^Xt8t28 t-{uC 9P3h s 3he Gae[^_UVS@]u ~FP|PhNe ~F h&7e 5@ j2]S&o ؃th5< 迥 e[^U1=lh=l$ =lƚu˚Phyd 5< l US\EPEP)ZYjj1ۅkEPEP)t"=tuE9EuE9EtN%jc\]USg\EPEP~)ZYEttthr}Xh_ ÅXu_j/S ZYu@}~jhh_PS2$ jPS$$ h}jxejEPEP( t$=t}uE9EuE9EtM]U=t>j5 gh# 5 (}uhžE p菧 ZYt jhuUjj.U=St.Ct8tP3hxb j X;Ћ]U}VSu t58 h˞wj @jhvn u vhPoZtvh.58 ak 1s S3e[^U=St.Ct8tP3hxa j Y;Ћ]UW}VSu 58 h\i jhvn u vhPLnZtvh˟58 j CC 9t=3{ tPs G9C |Rh58 Vj 1v vSe[^_UVSƋtVsz YZu1e[^UEt@UEt@UVuSt@tPYXC t0PYX'jYáCYtXV:CCV9 Cu |9 C e[^UWVS=?t0j=7 ZYt@P7C@=[^˸I@ 8:tjhQP; uzj:s ? ZYhPB 1E΋эL1QXPhB V赀 s Xs Wu(\tp hW_hW% hI0hd&e[^_USEt8PtPCtPWXC tPWX]]W]UVS]uShlfuSh58 g e[^8ve9XEe[^I7USt&s sC*Phɠ] ֋]U}U tx+@(xtxtxxt9Pt1UE1҅tP U=S5hw[] [}X~h֠E p ZYTtHhޠ uPh] uPh\ .8=tuh/hN =Xt hq XuPh\ YXt)uPhj\ XZ hP XhPhġD\ 5<  ]USXӃt 1Ƀuj.hPPpu ȋ]U1ɁU ЋpAu퍅pPAPUUjh֠hVhbUjhžhgh\jfUWVSSS}EE hߡ1;ujhE 4g PhYC ;E|-33{ tPs h 58 @d {{3MSUpt=u}th_ hN Xh9Z}Ph` hy hƢo hŋE 4h U 4hIWZ _11;ujhE 4f u58 hz2b aYX{t.G1{ ~U DP1{ ~U DPSEXs Z?jhASjh+shhSFL1;}e[^_USjhP f u jh Se]UWVSQEEu }sQ}u>=u$< BHBy Rj y  &5< j  XZjjY{jjP{=u5hhX [Xt_~F< t O~FB1t.J: u(t =h] Y=t5hhJX XZ5@ hh3b uO=u @ @ 5@ A[u$=u @ @ @5@ } Yty7r=tit[CPdZthuhģ{ t=uh_} [h5SZY}u(=u jhEe[^_\Oe[^_UWVS]u:hգ Y=tiGtP7jh:fV ?K~CE E 0ZPcZtVh uVhV _Xw ^븍e[^1_UWVS=}] Dž8Dž$Dž DžDžDžDžDž t5h8JjhRopenf U 15@ пѸ)PЉсQ_ =3Oh3A YZhP3+aYZhc3 YZuOqhX3 YZuO|mhf3ʙ YZuOt:* u  uOVh[T \P\  tՃ1}Թ󫍽@WuVjEE uWVjE ÃtXSQ$h 58 x]  K0@- $h 58 G] @ _5 jhS t T ^ t ? [e[^1_U>? UhХhhh"5hhS58 'Q j UWVS<] uEE j/3ZYht@jhgh5hl# 1 H|xctKd084DEF-SLN Xa1n9fRd+e1kJlNusrUsUx]yawm^hK ?0jEP5$d U :u;$t=v.hl5$h5hh]58 O |xt5$MD5hhq5hhѦd5hhW=$|Z5$=XL~C$E9-5hh5 5hhc58 @N hSV誝 p=|u1=|0)ƍ~hUȅEĉUthc EȍEЉE}X}thf UEUXUNU~ CUEh_t%jwO^hr[jjj EċU)PPFHZYe[^_Uhh h Huhh h Htjz < USĀ| Hu уӰh ||PjjBRIu )8tyh@\gX |]Uh!UVShYÉY~.hZujSjj55 M ÃyG茞87t;肞8#t1:5[5 hjh@1ۃ=ttAS5j>v; t,ShY9XuhZt(1e[^ÐU1W}SU ]EPPډXP [_UMQB;As+QBAUU9BUE@UUBE ;B r+BB@BUU ҋMtEAt+yA9}A;Q r+Q@;QAu ;ArAAUS] S9u C9CrC )yC[US] S9r u C9CrC )yC[US]St9uK9u C9CvC))‰yC[US]Ct9uK9ruC9CwsC )yC[UWVuSt>uJ9Zlj| u9XSu Ep5 Suz] )e[^_ÐU=u < @ 5<  Y=,u @ @ 5@  Z(蒛Uu u5,HUu u5(HUUUX9u :'Y9u=t'v'oP9ut_(OZ9u*(=_9u1%+8u&U9ui%S9u %1U=jhtu < @ 5<  ZPEUhj踉 j,hh@ UEwi$X]YVPOSHUA\:]3Q,_%ZTV^ b1UjhhP US4]؀9,8` Py4Zv;EP5(Έ YXEPj5(ӈ ` P@4w։j,h@,EP` E؋Mt=@E؉MtM E؉Mu e%=4} ME~EEu$E EEtEE؁eEEuEMtMЋEt@Eu EEt E̋MЋUtU% ‰UԃCMEtlhjF^hj:^h@j.^hzj"^M X-E U}  E& U} E E=IhZ~$jhh2jhj>,ER? U}  Es) U} UMu{@9tlugЃɣ@uhZ~$jhhjhj>E, h YE&US]h Y~Etj hhBjhj hh(jhj>+]E]/ Uɨt H,tبRhߨ. UUtGU`ab"cDdUWVSV}u UDEBM=wl DBãDu BDDDB}Du BDDDB}Du BD[[^_ËDBU=Sw}DPD@D@Á`D~Ph9Z~6D-`Ph`hD-bPhbj>!* h X]US1=4s&PyPPt 8 t  Ӊ[UWVSE E}M}҉U_~jjRkE ӉEUGֈEU:uUA9u_A 9uEU舂GARY u؃9ƉEGȀAWE舐u}tYAPAPu mtEe[^_4#e[^_US64sJC t>;uCCCtPCP-iP j"]UtiU=4s@@ @ jYtjZtjYtjgZtbj8$Yt ) )j 0Zt,5B,5j <Yt8A8Aj HZtDMDMj |TYtPYPYj M`Zt\e\ejlYthqhqjxZtt}t}jYtjZtjbYtj3Ztb=u8jYUSF4sICt=8t7uCC CPCP-iP# j]ËDUB;VS+5d}^u~\DPD@hDs9Z~'S5dh'dVPj># h4 ^dt%PDd[e[^ádUthPsdXZh0dYdu*h  DdPDDBDBDBDB'DBDBDUBDt@UShW]Si ZYtWhISi ZYtFhdSi ZYt5hLSi ZYt$hWSi ZYth[S~i Y1҅[uЋ]UWVSQQ=d]t;uOjjXZSXjj_Xujj[^SYjjÅXZuVSE1эt } D_Mt}ыELHL19 MD19vud)WR_ZdYu-h` Dd+D)щ DSGD^EtMDCt7DB;wP~ =uDD뺋]t#DB;wDE떍e[^_UWVSWWE }EE1?u~}ujV;]}Rt&u}t u^tu CtFC;]|}t u[Ee[^_e[^_UWVS+Phj<Bƒ $Lv;dB:S=t=tP _h^0pPjS dI(vDžd S[Dž\<:t\8|uG\\uލ PDTTYWT΃1DžXDž\cc|t c:\B\+X)dt)PXd uXTM1XыTPZ9sPX3 t݋Xc:\c<|u\\|c勍\X1c t cyOcv S'N Z D4%t%v S [ 4\\\ ɈcwTxu21u T9sBVT9u:dt dT9s BT:tT51I(wSY 8u B1h~9Z}>hhSjjhhh]Sg? $WShFjh$)";B:lPhPhhhljj hhhMQ> }10hs9_VEPhCPE_j;Y@t2 t8@t t14"4d dj9 Bt(tgtTt+|t/)PR)PR6)PR@)PR)PRj)PR ? 9+t )QSw`;B:hI蛽^t1ۉI+vjj#Y[hhRjj#hhhtj2R薕 x(hs9Z})VtPheCPvPj>  hq Xe[^_U1=t'jhʩjUS]t jj*YXt jjBXZ]Ujh|jhhjhTjp`jhhUjhjhhhh=ptBUjhjhhhhZUjh{jhghhhUjh:jh!hhhUWVSuhͩ\ 1Xhu]EEEEEE)79؍}Z|SVhCPWj>`e[^_Ujhojh[hhh =ppt=xtjYUjhjhhhh=ppt,=xtj^XUjhjhhhh3=ppt=xtjXUjh(jhhhh=pptR=xtjXUjhjhhhhYUjhzjhfhhhUWVSEPEPY[MEuEE}EUuEU BuBEBuBE܈BuBBZh5)9Z|SVhCPWj>e[^_UWVSQQ1EE%u>}tuhXEEZh5GDžXOFE$ u=lu=0l ~Hu,FOE=9=`, u uFOE?=u=`u jh(Y[=l==` !==`jhXZs $N?0!hhh! j =Bk==`jhShh rShh SShhh S<Shh@  t,Btt B!}tzt #t |/'t^vjj[X%hIгYtP4jjLXZjS cYX ijSDXZj0 jSYX6"u1jjXZ cjj[Xu !djYShh  t(Btu Bu8t."u @t jSXZj/XjpYu=tb=s =sShh =s P=s =s hZ}tuhN^_1}u}te[^_UWVS,hEEZt4=pu$u=tu tEhyhEY^t=luE1=LuhZtf1=1҃}RSuPuVhETE1Eu>}tuh"^_EEh=[GẼډEu NE=t$9e=ts.t P9ujhZ9u jhʩjJ h9tU9t FOMɃ t u`Th 9u$9~ )ރ}uV5YX~Sh#XZx9u )ߍGe[^_U1uf=dttt=t'u-=Ht!9~t @U}tEUjÐUVSutEv SO6 Y D4%tv S< Z 4F봍e[^UEjPuu u US]t;< tPR XtHhSK ZYt7hSm ZYt Sh4 /Sh658 , jhG< hN ]UWVSQQuE} EEuEPhY5 =tC~9s(P*t Phb5 CԃE3 ~ 9sPhd5W C E ;< u PhQn Pj  XZ|6Ee[^_lF US=<ME ] =u4w4QhiSQhs5 =t*=t=t=-tn{ (#RQh}5k /w54u5h XZ,Sh 5' SPQh5 ;< uPhQn [XE]EE E E ]: ]US1ۊ`/w P4wP4hPSh* t//w 4w4hmShˬe/w 4w4h٬>Sh6t4/w 4w4hSh XZ/w P4wP4hPSh(: t//w 4w4h?mShMe/w 4w4h[>Shi6t4/w 4w4hwSh YXC]UWVSDE=<}Eu!=` U : }}<tPh5j M \9t9u 5h X/Zw 4w4h?Sh5 /w54w54 Y[Vh 5 5hk XZ5h­R ^_j ] Ѓ th#tDv  "z#.' 5h׭ YU [B5h XZ5h C M AЅu35h  E PGPh_5 Z u5hQ ^XRh5h 9! U Ph$5@ C 5h* Y[9M AЃt!tGt!t);5h>%5hC5hG 5hT XZPh5 9g U Ph$5 C 5hD ^XM At/] K RQPha56 CuPh$5 ] K RQPha5 9U Ph$5 C 5hm Y[M AЁt0zYt)|t,B5hw%5h}5h 5h XZ5h8] Cu=5h Y^9U Ph5 C Ph5  9rM Ph 5 C 5hO XZG97U <w4hH Ph 5: M D t!tEt!t)95h%5h5hȮ 5hҮ Y^U D ۮuPM D@uPU |xPh5 M DtPh)5k U DPh5O M |u|uC9U Ph$5 C 5hq XZ5h M AuRuRuRuR"uRh$EP }52tEP@ ] C$tPh(5M 9U Ph05% C Ph5   9M Ph 5 C 5hw ^] XCЅtWu5h~ Y[Rh5 9NU Ph$5m C ڡ`H`y `;< uPh8Ph> XZ9M s${- #(M 1RQ 5Pȋ XZ"M PƯP5  C9=u)BHBy;B| "nRj" 5j"R _XSuE 8t+EE)e[^_UW}V1St4 .'1] ;t3WZYt|ۅuۉ]e[^_U1}ÐUVSPPu EES PÍEPh6S-e[^UVSRu ÍEPS5S1~Ee[^ÐUE EtPXUVS] u~K~Phۯ' ZFYe[^ÐU UWVSP5MEt>u9Q@A49‹YHsD9uA9u9QtEFuu 5耉 @t}t @1ҍe[^_UVSuM FɋUX$t Iҋ tNHǃ u"Ph\V hjǃ uPhV thj̳ 5< N1 Y?tDtTthj hj 5< 1 Z%B 1e[^UES@@$P] N< =ZtPRS;>tjjC txtjpS e[1^UWVSSS}]t EEPhht@j11 @tu}} tltPtL  t k C;p89`Xt k C;x89}Etu]hzL YtNu#h[胝ZyhQjS@W ƅu#hk\YyhajSW DžufufPh L Ztj jP ƃ hkK [tj jP ǃ }tE0}tE8e[^1_U=Mu1< BHBy ;B| t RQ ZY 5< QWf ÐUWVSj&uFTEHU ;E듍EPV+-ZYM;Uu0EPEPjRV2+E]9CXUM E;v_PV'1[_EdӋE1Fdu+FTu-jjjVs%u FTuEHU ;E럍EPEPjM 1V*t^t Ut;] CEEvdPEPjV诟EBU B;Cxv!PCxPstV聟lCtKtCxEMT] suu su3VS-$E M9EPEPjRV)t^t Ut8EEEvaPEPjV輞E?E;Cxv!PCxPstV葞|CtCtECxE䁋TU BtPuu MAU] EMK@RPQ CU+BEHPu3V.,M yjEPjRV~(t^t Ut;EEvdPEPjV蝝EB;Cxv!PCxPstVoZCtCtECxE䁋TWuu EPEPjU2V'UG]BK96)ʍD:9vhpjVCL uet^t Ut#EEPEPj;Cxv!PCxPstV莜yCtCtEK1ۅt^tU;StuHT;Cxv!PCxPstVA,CtKtMCxE䁋T&;Ev!PEPuVE]CUERM@PQN E+C| WuE 0V)unUM E;v[PVZ,ZYuRdӋE1Fdu+FTu-jjjV u FTuEHU ;E1}t/t"FtM;HtuT u踾Xڍe[^_ÐUWVSE} ptW^0F09tMCu/;N09ϋCuF4GS9ʋuF0S[Xu P Y_jj ÅXZujjuI ;} t9hu J Y_t&u CZuSjjuI1V0F4C9V0u^0F4^4؍e[^_UVS]u tP蜽Yu ǃV艝 Zu jjSI e[^UWVu SuEpH1҅UZ BLCBPCfCfCC PrZths juNs C {XyBEPB0 9CuB4AB0K9{uB0tW褼XS蝼XUB Fxt-PP_t$}uhsjuwMVu*Vu=FX uNFLt PYthvLju,MFPt PqZthvPjuMFHtPXFTtPvXFLtPȻ_FPtP躻[V賻1ҍe[^_UMQ1t*A @@t:} uhjQ&G1USMQ1ҋ] t2BXt:uhjQF] M]]UUSD]<t k Bx8t#jSbYZujjSjb8#t X1҃8#uЋ]UWVSL&EU@R }tru Y[Džu@DžEEuDt;Ut k Bx8tEJ}EE‹t k Bx8t @t+EPu}_ZuEEu;t2EPuC[^u EuPju EEPuZYDžu^tKEuEBXtB<9EuB@9EuBD9EtE5u{PujSDžEjj% uYL ^U0(tk B@8DžDžDžDžjju y8U0dSu^_jjjjjjS1ۀ8Nu @1IQdPuPt(hjuH}tUZt UtM@D2DžDžvsPPjun&N@D2;CxvPCxPstu7CtCtCxTDž;t$<%u {%t%B jV e[^UWVS@u~WXt hPjG$9G(u(hjVyhIfpG(WXEEEG(GUjRURwP u]H $0}tG(CjPu Ƶ gX1jCPEPE襵 EȃPCPuV1F\mjCPEPEh uVFd;jCPEPE6 EȃPCPuVu\E9FXF`FXjCPEPE E܉EEjEEPEPV1/ gXe[^_UWVS<}_SXthjW;{(1hC(SXEEK(CUjRURsP uuH$PjFPEP GL 9Eu%{(ujFPEP GL 9EtC(cX1jFPEP辳 U ;WLuEȃPFPRWuLE9GXtGXG`jFPEP} E܉EEjEEPEPW 辺 cXe[^_UWVS@u~GXt h j (u(h<jV>h+mGXG(EEEO(GUjRURwP u]H$p}tjCPu 莲 gX1jCPEPEm uVFd{jCPEPE; EȃPCPuVF\>jCPEPE EȃPCPuVu\E9FXF`FXjCPEPE趱 E܉EEjEEPEPV gXe[^_UWVSX{ Ɖwj C PsV%htqCCjC,PC@P+ C(ECSEjEPEPsEE R@uh C(@C(C$1ҍe[^_UVSu^1CX{,t+C,{ wjC PsVLgtoCCju C@PT C(ECSEjEPEPsEER@uhWF C(@C(C$1ҍe[^UMQBXu(z,ALuB,APB0ɺPB,APB01UWVSu^CX1Ҩ} ${,CXtC,}EUu3PRjWVt<t WVEEPRjWVE;C vPC PsVet|CCUCxuuCPϮ C(ECE܋ESEjEPEPsER@uh C(@C(C$1ҍe[^_UVSuFtjjPqvAVF9t RA[VF9t RAYTt58 j XZ^lt=s s{StPh[58 H tCBC뼍e[^UVS58 ]P XZtSh158  t"0g $h158 ؗ 58 j 4 e[^UWVSEhDžpu ǀh[ Uu ǂg EMAA ȃAApA|LA0A4Apǁ,0ǁ@ǁDh1Džx\ ^_thJTE0G Y[u Dž>hbU2& _ZthcM1 [^u DžxDžEhu<+uR{ujyYtW-c$1QUZ‰t1-@cCPBP̺ _XW<-uSCu3j"[ujhYf-s@ t<%MAȃB9A uQ MAPUBMAȃB9A uQ MAPUBPYtDžDž7xt *pt |t 3P '_Z0tqVhhW 1򮍅jPIDžDž ttbjjjj jjjj) (jjjjDjjjjH( t k B@8`B4Xt k B@8tB8u*{^ru'M9uwN[El dt k A@8@҉u Љltl%MZYCU:@ tRxU1Q苀‹MXu*jMAX@ pR _XEA(A$Ѐ ru `x P$ujPu[^u-~2P`…XYj@tfJ jjRC;UB|xt2dg_tP8^thPjRPj+jjEPE܃t"Hu Et tMd[븋 t1tPЃP1Yu31+h hhM1ҋVu؍e[^_ÐUE @81US] S8t tBABRB~X1]US@ӋH81҅tA9ru ʋ [UWVu `S}uf't@9t't5v R誥 _ D4%tFE>u7E 9}tUBt;xtu TW p^EE}uuo[u~uEXt Ut+1}EvZuEPjuLt;>U;SxvRCxPstuKtCtCxE{tTpEEHEu tE;}s@u kE Etk UBx8Vhas EY8[v SB Z D4%u\u6=u#FHFy;F| \Vj\ Vj\T YX=u&FHFy ;F| tVS݋ VS XZGY=u#FHFy;F| =Vj=袋 Vj=[_kE Etk UBx8v S? Y D4%u\u6=u#FHFy;F| \Vj\ Vj\QXZ=u&FHFy ;F| tVSڊ VSY[GY=uFHFy Vj 譊   Vj XZ=uF @ VK) _tjjuEE81e[^_UWVShfjj&hE܋]P]D t @rhfjjOhEP]D uQ1K1I1Mؿ=t)8|uSRA uu?Չe[^_UWVS,E {EEIh 3H ^_uEEc3EE1tH=t?u89u%}tuhfju[=]tC봃}Et UBUVEYu:>nu~ouVE\EZuVuY[E:]؁k M}Eu!uU Bxu8?u U fM؋AMrU؊B t}t htt}u h}t hqu_}t-k Etk UBx8u1[k Etk MAx8/E؃xtEPjuuURuVjSu贰VjSuaMAVjSQ}tjjjjSu}t hbu}u}uEEԀHhU=j EPRMQ<t\EPVuÍEPuuyrtPShj PSh5juxkEЁv R Z D4%EPVuÍEPuuPSh\ju ,}t(}tUBt;Xtu TS,^_}"}tMAt;ptuTV][U؊B @t}u hu.k EU苀tk MA9P89E؃xtURuuuPuVuSu:gVuSuH_OUBVuSR2ujj}thVjuEu}u}uEMԀIE@ u\k Etk UBx8t4k Et k MA@8uP§ ZYE؃xtjuuuPu[juSuuFjuSu&^u1MAjuSQujujSutE݈ E E {}t uu_XE̍e[^_UWVS@jjjj?uEE䉅VEEEEbjjjjVBm jjjjV"M`jjjj3V-dh YuPhhW. 1jPIVM| tDžh*Z Zu*PhhS ߃1򮍕jRIVM tDž btj hS 1jPIVM tDž tDžkeytDžime=fDž61򮍕jRIVMr tDž tDžmatcDžhtimDže=71򮍕jRIVM tDž`hh0hS~ ߃1򮍕jRIVM tDž :tDžrepoDžrt=5ƅ1򮍕jRIVMr tDž.Ctj hCSM 1򮍕jRIVM% tDž&nhhhS ߃1򮍕jRIVM tDž'!hchwhS? ߃1򮍕jRIVM tDž+tjhSf 1򮍕jRIVM> tDž2h_ _u_PhhS ߃1򮍕jRIVM tDž4$tjhS趥 1򮍕jRIVM tDž5tj hSi 1򮍕jRIVMA tDž6tjhS 1򮍕jRIVM tDž9=tDžtabsDžtop=fDž81򮍕jRIVM tDž<hhhS ߃1򮍕jRIVMM tDž> t k F@8Hu DžhhW~ 1jPIVM tDž0FRV`Y[=Xw Dž2=w Dž t k F@8HhhW 1򮍕jRIVM tDžIX1ۃ=DžBtt)tMjjjSVjjjSV(}t k F@8PjjSVTt k Fx8t5jt k F@8Pj SVYt E C 8'U :tMU 9t PS蔇 XZ1jPIVM u E 10E hjVje[^_UE E EEӝ UE E EE麝 UWVSSSEhu PR! 1E EE샸}ut k Fx8u"jjjWVjjjWV(jt k F@8Pj WVtjjjWVStk Fx<tGjtk F@<Pj WVBtjjuE GE NEe[^_UWVSPuE1t k Fx8tt k F@8PPXtk Fx<t%tk F@<PgPXE }NNe[^_ÐUE8ujjjjCu1UEMw jh1=vhhGjQUWVS}]u jhu=vhhjSd PjjjS7lupǃdt k CP8tkd C;P<;ht dt k Cx8jjjjISjmFdt k CP8tkd C;P<;htdt k C9p89v#HPjjjISHPjjjIS(1e[^_Uhju51Uuu1U1W}1thju}US]S裫 1]UEU8t% 1US]@tP,ZtP X1]UE 1U1W}1th*ju'}UE8ujjjjuB1UVSU ut k B@8H9r!t k B@8Hu[1^USQ]UCRS`YZu0ҁ}wuuu Sr‰Ћ]USS]UCRS`ZYu"E-0=wuuu S(‰Ћ]USS]UCRS`ZYu0ҁ}vuuu S‰Ћ]ÐUWVS} Eu)UB E hajRӁv R Z D4%t"Ӂv Ro _ 4‹EH@E tE 8Pt} u8tkXhu[^PhjuMU 9zuhEPuγZY}uGE 9t+wwujuEE?@\ˋUBrM EAtk}ЃEU@ȃ9t.wwuju虶XME?A\E ˋE@PU2u'18EPEPjRuU}tMYt Ut>EG@EEviPEPju1&EEEG@;Cxv#PCxPstu&CtCtE܋CxE䁋T}]t&U}rtVuS/ ]u GtPwS _ U1tM}A)ƋEM1t}ttUBPMAE 9uJtVuS賗  +]Suuu:yEU9BXfB`BX[+]܋M I ]1ۃ}MtEXtU;StuRTMA;Cxv#PCxPstu$:CtCtE܋CxE䁋T0UB;Ev#PEPuuc$E܋Mq]]qS跖 tUBVuP螖 +E܋MqPuuuubEU9BXtBXB`E ?9t%wwuju葳u+MEA\VSujupu E@\1}t%UBtM;HtuT uGXڍe[^_ÐUWVSuF H1҅F "t(NA9‹FuA BAV9‹uAV)H1YtfVZt u$F$tÃ;t 3vFXv$hFX~xt FxP}XtPGFXtP6FX@t PlXtPF[t PEYtPEZtPEXVVEe[^_UWVSEu hj}1r ÅXZujjV:EG@GCCxC {C,CxC|uǃqtP>% _fy1tPS`" tPS," tutPS! tEtf<W6DYu jjS ujjV gWRĒ SVt_Zu2 SV肓ZYuSVAD^_u E1 Se[^_UVSMYSC9t9uC9uMsK19tA9AuCBQ9suCCq9s uK CHK[^UEPu hPhUw<$h!hhh h4hhjP o UWVSxLÉUu} w)EPSUZYq}u EtS0HE t.u}t#FU:F}tFMu%@u:EPPjjRS]E@E쉃B jPjjustr Dž DžWY^t^jhSC uJj S Y[t:WZt"jhV uj V ZYuhPjugڐEPP8[^t蹐8uPq=YtP5y ^ZEPW|8Yl[t;UPlh lZujjuA lwP hYu(jjulY-lh8tS>-V8-XZExt x<XxW<_{ ^{xo l[uhtjuԽt;|~hEjuN |9~hju. hjPu u}t(lS,hH,x;0UBlPPxPTu U fJHX@1ҍe[^_UWVSRlj, YuhneujW E PS:XZe[^_UWVS`jj+}WD t k GX8ÍEPS66^ZtJ8ujS6ZYt%ShnejWhjW߶ vhS4:Y^E8t8 t@ShhVO hSt+Pz:V U BL[Zu'jjWmV:hjWW E HX@1e[^_UVSƍEPh);5YZth<h)jVj%Sh)hVhxS蒫 S(e[^UWVS @}8P ZuShaj芵(jj+l t k BX8ShhV֪ hSo@@jjjnHthjǴ uCBTV BP^ujj艴 xLB pj/VYY[uCPL hRhSh0hhhWhVhh hS蟩 D=PS7 9+Vh?2hD2hIhnhPhVh2hPH# $hhhS L=v h%jtx u+<~N F+S6 9u4)lj놃t*t6[t hFj1>苲 u @Tt O6Ye[^_UWVS$}wtFX@u1tIFj vPY[tfXhXvLjW`E tNX E t VPE Džejj+W费 Ft k GX8ShhP) hS@GjhsWh vLjjV;5 @tG#1S5P+5 x()uh P5 thnejW0(4ZuP^t#PL4}4YDž[GjjWh DžE tjjW>g t Dže[^_UVSQu^SXЃ1ɨ@CX⽃{PSXuw1j#Zu|EPVZYulFjhVhCj sPt#hsLjVFjjVh&FjjVh hsL2KX@1hjVne[^ÐUUWVSM ut9sZsÅu Sb#_ SQ#ZYujju 1>)<81Ѝe[^_UVS uEPEPEPu u菌t 1}OEtF9sBM)مډMEt$< t< uMAEEHBEtAރ}Ѓ1e[^USj/]S8Z…YtB]UVuSFPY"ÅXujju 1Vu Sq 3؍e[^US]̄uuu G 豄 8t蟄8"u ;t1҉Ћ]US]{uuu _T ` 8t#N8"u=t =t1҉Ћ]ÐUSSE]U Mtwt #tjjhh#jSt{u1jtPS[wV$0h?$EPSɉZYu8EtPh_hjS覬 M 2hjS荬]UWVSӉEU EE聣xu CPh ^_t jjS950' $t3[./GD?@\-E UBRu趈ZYCCKE j EPRE쁋PtPjju$UUEBU+C)CSE {u hxjuBPuB~Ck8Kv BuIM M~tN;EuVJA҉VFF+EPuVu*F =u ]C($=Pu E@(=u UB(CMЋA( ~`F u ]uF`CL@FdCPFhEt k Ax8tfN| ]tF @ ut 0h ^ C u F`EEFtxtȼt LNtZ8!uPAVFfN|V~t:^v RD _ D4%tVJC҉VFċFV:+zH~F}FEt3E}PtESRr3uumZYu!FvVHFBEĉFRU)}v uCC Y UD4%uM FHCFFMF)]ȉFtػtȿuhÃ~V\Eu0Fv2z u,HFBEĉFRUUF } M FHCFF랁t @E~v~=Ev PIB Z UD4%tVJGEFV봃~&}!t } F8 VJ@҉VF߁0~t:^v RA _ D4%tVJC҉VFċ^v RxA Y D4%u<|ujh0^$SZ F(g ^ UVtNCFBFt6F8\uNv @FAF9uJFHFFtȋVEtF8 tE^FEt3M}QtESRrLuuj_Zu:~v4FP Ut|u= UF @MENFM} t}|u NEFHCFF@^CV^)ӋF+]ĉF~ `CVFuӅt ;\uCH򋆀ƒ:wJtV`t tc  F`t4EPurZYj }uFdUBLMALFd]CP(FlVpF`FdVh4~`%~`u} ExF`u FlFlPu1r[_ t~luFdFdFpFhV`tJty F`MQLuC t?EPQqZYJ }uFlFd]CLFlFdVlVdUBPFpFhFdVhF`FlVp ~`~ ujF`MAL@Fd@QL8t k AP8Fl]CPFpFhEPSpY_ Et ;CLv9FlvFlF F\X ;;!Vu)F8!@FfN|BFt8~v R = Z D4%tVJGVFċFEЃbl/321tUSWlNcf&sw|F^t1+t% #t(-tlt0pt=F\CN\>UfN|J("MfN|I(UfN|J(VJ@҉VFngF.t'+t'-tK=t'^t<fN| %fN|@fN|fN|;3fN|VJ@҉VFu~<+t <-t<^t<#uj1SK ZY=wFQGFEHfN|FVC=w u;+<+t<-rF<-ufN| <+ufN|j EPvEPpMu ;0_U+F)FV;auFlFdNdVpAVhFlNXfN|uvVu$hMQEPEPE  }'}EԅtPulZYEԉFT1~ PvvVu uvFNFEËFEt3E}PtESRr.uubY_uFvVHFBFB2}v u/9 Z UD4%XM FHCFFSE)SPVu~^=Ev P8 _ UD4%tVJC҉VF뻃~FEËFEt3M}QtESRr,uuaZYuFvVHFBFBEFHFCFuE)SPVuuvVuC hju׃ % ^t@Tv RJ- _ D4%u@|_t h ~t;t-v R- ^ D4%C΋P֋EЁEv R, Y D4%u}_uEESUҁv Rl, Z D4%u}_uEE9Eu@CNljjGpG0p0jjux$u.hhjuVUBT1ҍe[^_UVSE @tuFTtjs3Vڼ1҅thf3jVUe[^UWVSƃ~@UEUu jUB <MBIdMNLw MJu?Exdt6jlWdSjV-jWSV0UBRÉ׀: t GKt? 9uu?t)Hu :.uGtZO)PRujVEgaGt$GKu jhujVE?aۉu KtExUZt MɉNL#tujVUZYtjMA 0V[Ѓu hBVhY[_jhVx PVOYhBVDYVYE@}u$ t k Fx8t<4}t k Fx8t@RjWV}MuPG]9tssujVE_u׋݋UVLujV\ZYtFL1ҍe[^_UEU E\UEU EFUEU E0UW} VStGxj@P ƅXZujju~ 1҅teu.1}IQuu 1҅^u1713txt p0u] tكe[^_UWVSVVE PxҋuuF(txu hjM  u>V(z1IQru V Ju V{4:EPVvq juV uOU Bt0uS3Y[t)M A|%ЃPjRu ֋F$F(0V1_X1ہ,F(pV1Y[t]@tfH M A|%$PjRVAutF(1ɍe[^_UWVSP]S(;S$u uhjS{tABE}1IQrVS u ]e[^_1jF|%PSB@ uSC(pS0_Xt:F|%$PjRS@uk(0ɍe[^_UVS]{$u uhjSzojF|%PS? uQC$C(0S0…XYt6F|%$PjRS?u 0ɍe[^UWVSuF$uhjVyEEEÃ;E1}ыE;^(TuF8UH9ErhBUE}tEh|VR_XF(E9úptR93UtRhVRFTu'jjjVOu FTu8hBVRe[^1_ÐUWVS EUEU0EE]E܃} U#: !t"%\ } E싀P҉E1I)M1}Mԉ]tUzt;wtuEE܁T;GxvPGxPwtuGtGxEwtT#U;UvREPVuuԋE؋UrS: E]ԁ UB @EI1}I)M1҉Mԉ]tF8E싀E1}I)M1}Mԉ]tUzt;wtuEE܁T;GxvPGxPwtuGtGxEwtT#U;UvREPVuuԋE؍uS9 U]ԁ } vUB<%t<#t u{EԍT8EV$F}t$uuSw+ ]ԃ}wÙ:/t/CGUPRSN+ F$N]ԋD;BF$@U F$ JtBxu8+ _Eu [];^$uhjug "hjF$+EPFU؍P 14]SEPUESX=`C1tz@Xtt$t k Cx8tjS(YZ1҅,?`Xt k Cx8tujh S\ƃ 1PVE0WS]ujG 0S螲@1du7lu1EPS@YZ}uGlGdfVE0EPGlPGdPWSUSLtCPCPPRSK ECPuu hS<XZ1ҍe[^_ÐUWVSUB@X] tC}uB @8/t hDjRECxtHtELh}W DžXu@P_t@t8u"hjuwb/Ct8 W1҅^{xCt/xu.v.uy.uAu4hPZYthRjuf1${tFCmhneWjufe[^_ÐUSPDžDžDž7YxP7Zyh!7Bt tlhj` tP[tPsYtPaZtPOXj?j2j% uphhSU jSh_h_h_C(hSj$ejB$hP$ B BhP# B1]UVSQ҉ӋEu2~Yt 9tBuPhjV_bCtP% XC tPr% XjEPsl tCBCC,tPXC(tP ^S1e[^US]uZE1҉؋].UVSƉӃ=u SBHByR & @ s# Yt>ujډ~=u#KAHAyQ% @> se# Z>p=u#KAHAyQz% @  s'# Y 21e[^UWVSu} {th(WV t1e[^_UWVS}@u h6W6#ssVhNW6Fue[^1_UWVSSSuV ҋ]} uvS9ZYuwj5FEMjjEEv$REPPSEtwjSK-u ǃUCPSLCPPRS蠭1e[^_UWVSÃ1эq=tV7S! u ?1e[^_UWVSljtE:t@uVhdW5Zp0hW{5s hWm58hW`5^X=ts3jhW;5;1e[^_UWVS E]01ыU IrxQSRuE Px9uUFEF9tjSuU BtuVS_ZtSEE%=@uDhShehWzP VWDž,t.WjuZ j/S薈Y^,t @,1эq7QjV DžXZuj뭍G4Gw VSPq EGhwheh4PO 4P4R0Y[dFP7ZG,jj4P xVw,P 9t-hne4Rju_S^ SG,[01ɋW,:t::uB<BjAPM ZYG(tbhw,q!Y^tdhjw艭ZG,ujju Y jj [^‰G(tG,G,tgPAYG,W,EZuB0BtBx0xGE1҅tjE4We[^_UWVSEE8hcM YE1}у}YtUzt Ut+1EvSSEPju蝨u;c;_xvSGxPwtuzCGtGxEwtTCPuV u8tPu u hEP_Zu؃}tUBt;ptu TV[E耈8U Bt8X~*v R Y D4%@tKG҅tp~,v R Z D4%@uKGԀ?t0Gt&Ёv RW Y D4%@uӉ$uhjuV Wu uPe[^_UEU4UWVS Exluhju3Vl9Dž`Džduj j _dZÃXX j,j Y`^xdA`Z9Y uQ dA`P`dAAU҉PPPӁv RZ D4%ūPPv R^ D4%!!t8tF>uHh!PjPPP+MQuWBnLJGLE܋GPjEEPj'W6:hj ÅXZtBC@tPC[ujjW;WV]iZYu1ҍe[^_UWVSu1th1tVO'YtfV!ZtC,tPpXCtPbXVlYtSKdže[^_U} >Eu E j1UWVSHLPjjjjj6TS։1IQVEPSF,SH5;e[^_UWVSExG|xu tBhj' ÅXZujju.:G|tG|XG|_|C}%h}tECuuu謋 CtLECu C71IQVus CtC 1ҍe[^_UWVS RuӉNju uZ1҅Y$t{ t}tt9C t CBPuWtrt0hh2 hXjW8t.tGt;Ptu T 'Ye[^_UWVSjjuhU, uF@|xtVpX1hi, ÅXtjj1IQSh)h>, ÅXt&jj1IQShVh}, ÅXt};txhSheh4Ws, jjWU@ u(hShehWD, jjWU uF@|xtV[_1t k Fx8jj4hډ tt9bjjhډv uHE94u E98t2E94u E98tu#F@|xtV苑[1u1ҍe[^_ÐUWVS0ExujU B 0u-M Ad@Pu[^uhju!5}tEXt Ut-hEPjuE芅uY{xw8hCxPstuZWEHU BlCtCxEstTM A|tAlE Pd;Plu BM AlE @lEEEUE9%EPEPjuu\rEU؍T1ۃ}UtMYt;stuEE؁T;CxvPCxPstulKCtCxEstT#U;UvREPVu3ƋM܃}<EE @}}v uY UԋD4%tH EHECEMɉM]v RZ D4%urE8)tjuhH Y[t EGE EG EHECEEEt)]v R0Z D4%uEE t PuW EE܋UTljUԃ }t)+EHUBPE)+E+EHMAPEE9EU BdMALBdRlEU9vuuOY[u'MM9M}u@)WVuut*}tUBt;ptu T*VZ!}t"MAt;ptuTV蹥XU Bl+BdMAh@Ah1ҍe[^_ÐUWVSQU B|%Bxtt=6jWu`n utPju0 1 E Xt0#UVVBȁw uukj WCpC0pVjjujk$EH0҃E PtBpB0pVWu~E}PtESE1:Rwhu[Z wMੀt?2e[^_ÐUWVSCtCxEstTE+EP;}̉U)щMĉ}EԃEPEPjuuE;EvPEPVuzauuV^ uVWju 9}t%]CX8t{'tE9CuGCuuS ZYMԃ}EUЉ}ĉUEԃEPEPjuuE;EvPEPVu/zuuV uVujuE ul}t%MAX8t{'tE9CuUȉSEuu [_u-Mԃ}E}t"MAt;ptuTTV2Y]Eȃ}CLCPt,CX8t"{'tC;Er;Ew SuXZڋUMJl1ҍe[^_ÐUUt k Bx8uhh;jRN(USQ]CujE @ 0S w@X@uhgjS(KtSwZu7EPSZYu"jSuZYuhjS'1҉Ћ]UWVS} Gt3uV9G|%PVtuP3V$[Xt;fJ G|%$PjRVu 0ɍe[^_ÐUMS4tQPC4PjQǃ41]UWVSQQ] EE};tH4vWZ4CT04@ 4uEE;uŃ}tWVXEe[^_UWVS}EPu +4P44P?Ƌ4|3 4t=vW[e[^_UWVSU80t k Fx8tMM] Kt k F@8EUM zE@ EE1ҋEu])ӋU;V86K,Eu PhjVF TjjjVuFTEM;N8뚀uhV_ZEkFX‰]t ]hVY[Ã}u};~8suVXZ}qKtkE;F8uhBVE_XEuUPhjVF Tu3jjjV3u FTuEEM } ]Me[^1_UWVS u] Et k Fx8t-jjjEPEEPEPj3Vj js}UWpKj^jE]@9ȉ]t)RWډ8u`FTujjjVuFTt.jjjWEuV1ҍe[^_UMVSU ]ut&j%PQEPCTuIjjjS`u CTu*%t!jPjEP >u:CTu,jjjS u CTu hBSY[1ҍe[^UWVS }ujE @ 0WpE0EE9EEtC?BwVhj ]S: ]EصjjjEPU؉buEPEPjVWr}uEuhBWFXZuuuuWM7GTu(jjjWu GTu F;u1e[^_UVS] C|PClPCdPSuVuClFLCpFP0ҍe[^UVS] fC|PClPCdPSuVpuClFLCpFP0ҍe[^UVS] fC|PClPCdPSuV(uClFLCpFP0ҍe[^ÐUVSPP]{U ujB 0SnDCLECPujVEBdP1B|tBQPjSGuECLFCP0ҍe[^UVSE X|SuVTZYu SVmmZYtۋt1e[^ÐUWVS]CE䋓EUEE8dE@1uKCTu~jjjSu CTu_}u@PVSEh1 uUr,WjSMMGEEPuS[k c=u E@ @ uXYutuZug}tMU }uOEPu S!uuPhjS$}t#tCt;ptu TV!X1 hneu jS#u,}ujjSEh e[^_UWVS|uFU |BxEtPHBtE;!xu3ECOd\tk ||8tj ~u2jVZYjjPV}}E @xjWSu Vx腫WU Bx9xuj B pV_kHxCtP诐YU Btx0pCZu jjjU t% tZBtx0hVJ4 < t!U Btx0hVk hV_XV[u t)jV|ZYt jU B ?jU Btx0EPE jdPu VE @UVLtFPFPPRV4l 1F @EWSu VU Bx~t} E HtQEF f@yRuNrA0Vjl tF p؎F X_F fP? fPVjpV uVY[jU Bt0hu聞ÅXZt&E=PuCS4T_P ZYthneujVR*E%=t!=tSLhjV}=juCSS_PjjVuuh"jVjEPE dPSuV7U BdUt ҉FLt@ЉFLʍe[^_ÐUQuUVSPU V1zx]tBtPEPSjyutEC1ҍe[^UU B| Mtt t  1j B pQmg PrXQYuUWVS]CpE9uhDjSOEEEgF @E1}ыETC8UH9ErhBUE}tEh|SXZF pS_EX6E9t3CTu'jjjSlCT\CTu,jjjS\u CTu hBSnZYe[^1_ÐUWVS]H19rXp tAt1>ut0FIt,tt"8tGKtGF8uKI1҅u1} tE [^_UWVS(EP}WY[EPuVjuWEPUu.[Z}Et_t Ut;E考EEvdPEPjWfEBE;Cxv!PCxPstWfCtStCxEÚTuuu茯 EEPEPVu Wvt }X&E؅tMQPU-ZYtUE9u hijX)EU؋uus\ ;E؉ujhBsE< Ht$u hjW }1ۅt_tE;CtuNEE쁣T;Cxv!PCxPstWXeCtCxStETU(EE;EvPEPuWetgEu؋EuEP EEPuuWtE}t(tGtM;Htu T uUXUЍe[^_UVSut{VJB9tt T モTߋCtP蓗XCtP脗Xjjh3Vv s ʇSćdže[1^UWVSSƋC U}tP菇YGPmC Zu jjV" { u VWus ͬ C {81e[^_UWVS4uv1t HuDžDžp9t:t'Xكڸ t9~ߋ6뿍PjjtPGPtth@jV'e1crЃ91.Ht PV_Zt^t Ut1hPjVDž.bE{xw hCxPstVbCtCtCxTDžhr' tu+V[DžhjV 9sn tuhj!hD;DMt<M9΋Uu9t UWrXhneujujjuWuue[^_USSE @}]ujSZYu.UCRSZYu}u jjSL 1҉Ћ]ÐUWVSPPEEE E}jhWPkPqu EEE Ee[^_yVPWu/Sh ju^] e[^_qUWVS(E EEыt k Ax8tE]t k Cx8tMUt k Bx8t<]u t.v R;_ D4%uFKԅuME t'M@tP<]^E t%EtP<U[}E <u1} t ? u@GNk +} }Et7tMYt Ut1EEvWVEPjuNLEu>;sxvVCxPstu*LCtCtE܋CxE쁋TU܋} ^jCh Si ]܋u t<< ujh SF  Ph  ZYt\CCGNjh S $MC)˃ MM ]]E ]G}EtEXt Ut6EEEv\PEPjuKEuCE;CxvPCxPstuJiCtStCxEUԁT}] }t(M̊D t~t]PHt k Cx8M]PHt k Cx8uh`EPËHt k Cx8t=E-]PHt k Cx8u BFOu Ec}EtEXt Ut1EEvWREPju}HEu>;SxvRCxPstuYHCtStCxEUЁT}u ]Ѕƒ[o*d.[\t~yFOt~t&jh jh S  MPHt k Ax8ES迹 U MPHSt k Ax8t \C\EP‹Ht k Bx8t#MS6 E >~8UPHStk MAx8w\mCFO=E)ÉE ]UtPiM[}tE]E@PiUYujjut Mtuu Py ]E }t-}tEPtBt9E u T u liZMҸt\U uu u tE uuPu (E t ]@E t E1e[^_UWVSXxƉ}u jB 0@LVP|Ut k Fx8uƆƆ1ۅDžDžDž>Dž:EccA-tz,#E  +tC0 LlRg7pErHA\\H\Ng;j EPuE 8uHE 8"u:uh u h jjjV BlBdDBlPVTYZlPVYZCDžztc,,0O?Dž3Dž'@E UBEzE8u utj B pV@~t.t%uu t h *Id@lDžDžDžDž Dž$DžDž9FTjjjVuFT(REPjV 2;uxt^t Ut2(DžDž$P$Pj(;CxvPCxPstV ACtKtR1ۅt^t ;CtuO(T;CxvPCxPstV@CtStCx$T3(;$v%P$PVg@b(u農 M (DžDž DžDžDžDž4Pj EPu Dž4Dž8<Dž@觽 6Dž84 @< Dž( @9vU=s҉u PbZ PRb[_ujjV7 E    Q4 (<҉uDžDž 9r B9 r B jFL VFP{#ZYjjhF V PVbjj]SVXE܃ttr @SVA_X2jSWVSWV hj,PV.. ,@EEqy 1<@19Dž|a9v[|=s҉u PO`[ PRu`ZYujjV  < URP < FTDž2 FL4FP 14819ڋ|y9vs|=s҉u!Pm__!džw jj/ PR{_Y[ujjV  U4 RP 4 UJ  DžDžXG&t \t-PHt k Fx8LG"90}q&tCE^ePUlHu`}PNjHt k Fx8Z1SЉlj)8B)4u@4)@B)u`EujjP*DE@u,jPjjERPaEEjPEPEP)WVuUEjPEPEPWVuUEǂEEt ;Eu;;EuCUtP`OXEǀǀi%u(Ct ;Eu;EuCC<1];Et~u UCFu}tEXt Ut7EEvbVEPju+E>;sxv#VCxPstu*CtStCxEUT}1]܊t ;Eu ;EC\uMS;EuC\u \CGF~u{ECP‹Ht k Bx8uV)~uOEP‹Ht k Bx8t+EWu UCƃ 8CGF,EtstPjMXVKMU_uAjjR }tUBtU;Ptu T uM[NVuP֛ }tUBtU;Ptu T uLYuuSU Ee[^_UWVSE] SC9t5s 9BuC AJ9suCRsLSX9ɋt9SuWPSSILe[^1_UVS] {uusV}CZYtPF 19CtFjuVԜ u/j jsVTu 0ҍe[^UWVSQ} uuwVG[ZEPVv juV. tjEpPBO;N uUFJ BF f@fA.ujQu苜tju1u:GpjV]WUC$C( V1ҍe[^_UE UMtrt 1h E E U3h QjRXw UWVSSƋXF 9CUuC FLCFPQjuV u_SC BCBF fHj jsVou/SV)ZYu;]u98u PV[^1ҍe[^_UWVSE9ujjPM AxtHt UU BtEj EPu{‹E 8u91>9tJ~?9}uh jun}1I>M}9tB;}t2G@Xj/S]ZYu@uPuW+ t}?9uh] uju%1;>tu U B|%PUEe[^_USM9] t@PC|%E]jjQ]UWVSE9‰EUujjuPEx8"E6h jPaUrЃ9E;puuh u huY[Fu^X1эQvDPjjh  Sjjh u蛬U9ruh u胬XZE;puZXtSUR8ЃUv@1ыEQ#9vSRU9rtPh[u"hBu[_6EEEEUBTu.jjjR6uUBTu E9Ee[^1_UWVSEEE EUE9‰U"Uz tr!VF[VuPߔ CCC E xCtCCUߋrЃ9~E,t F-E~ t EF$@EuEYuVPe ~tC(C~ t FC@C E9pu_GO J9GuWW 6EbUBG9u:UB8EUxUrtVjDZujju ^jVP躓 v$_CtBUB CB 6Z 릋UBt$P$UB^ujju H1e[^_USӋҋCtBA Cs^DSXD1]UWVSVVEEXtڋEUZu ut*Ёv RSy[ D4%+}vjCYujjuy-GPCCZujjuZ Cu SCBWuPV C8CUB CB Z  FE>tF61e[^_UVSu9t PVsXZSt CtPCXe[1^UWVSQQËEw(tVvPSE u}u jVhjPV}WWSEEt:j(V5YZthj)PVWWStu jS-u ǃCPUPRSLCPS1e[^_UWVS}9u jjWOiCpC9uh jWJE @|%PVW u*Cst VSWGp V sv$[^1ҍe[^_UWVS}9u jjWC0C9uh jW JE @|%PVW u*Cst VSWo V sv$ _X1ҍe[^_UVSu< t#8t D0CB;t9s< uـ;u9s < t< u1ɉ[^UWVS@ EU BxHAtPf@^U Bt0Z A[ujjXE‹t k BP8…tEY1I9v+%xuh' ju l UIt k Bx8RE 1ӍC Pjl Z{Yt @FF FF~SP C uPhF hShhS[_o<1щр) uщƄ) Yu0GKӁv RsZ D4%@tτGӁv RsY D4%@uτ(GӁv RWsZ D4%@tτGӁv RsY D4%@uτth,GtYӁv RrZ D4%@tӄt/08t!(:t,8t R_I1,ʋ(эL,Qji Y[@(C,PrqX,1IZKKAK (QIq_XFV S9Fu^^ hS2M 4YFV9uhV jusVgVrU1ӍC Pjh _1sZ,AA ȃAqSP誊 @ Džjjr\K y.A [P+F[^u'jjjjj;@u&ݝB JYP)Ήљ;sC< u;t8VڋHZuމ)љ9sC< u9Ɖ;s2ڋ^tu;s C< u169Љ$s"8 t$B;$sz ዅ$;8 $C$1-tt !1IFh{$PiZYuu-$tt1I Pu$ Pru P$hl ju t3}t!MQtBt9$u T $8Xs}tUBt;XtuTOS8_CɃ[^^19/4PQ)CZYtuj/r[_t]qhehSs4/PSBZYuRэqD0Pj_d [_@(CtVPt C0/ F@SPRP CC @BK$C RP! Q S 9AuYX 0DZYth ju F_thju 1ъBtDž ҈AQ9hV ju{tf@tSBt3u/ΘQ hneqju(H҉5^1 Qȉƅ19Džugj jEb Y[XXX j,j'b YZ}GZ9_ uW GHGGUZ JLBPۉ Džt{yU u DžM A|%t.Pvu2 E@EPvu 9u$O9Iuy x9NjV9Rur p0FP vFp$E@XZWtMA BALB APB ZB J1.tW3Xt 3XVu!e[^_UE UWVSLPjjjjj:TSu 1IQVEPS ,Su_ZuU e[^1_ÐUWVSu @É׋EtPڥYt.t k Cx8twh9XZtwwh_r9 < Ee[^_z UWVSxU 9Et 9ux w u >i_ @E4E tStC|\EEtDC@S9u9C|.u/;U CuU BS;U uM SGgXj jjufC@EFtO}u(VuEPjufkug0XVsSjuAkEuuEE ‹@FY9_u2M A0E p)C9CEEC9CEEE1{9s-C0v RdZ D4%tF;suZCCUC@=u'< BHBy Rj V 5< j Y[uE9S҉U+}t}tgSB9EEEvREPju Essuq} C EEEC@9EEjuM|CCXZ8E;CoUъt k Ax8ǀUt k Bp81E;Ms&CU< u1)AEE9EI1)1Dž|9w#1)1҉)Ѝ|9)|D ;C vPC Psu C|CC|tCS C|tCS CN Z juM|uuڋEE@t5Uv R/b_ D4%t t SEK CEe[^_ÐUWVSSSuFLEFP}jWj'VEOuo^CXx ȀCXC4C4t"r;u;WV;ZYu7C4 WV^ZYuC4X EFLGFP1ҍe[^_ÐUSh ]S螐h S蓐h S舐h9S} hrSo1]UWVS U BxHBt0v R`Y D4%1t&fv R9OZ 4tvP6 ut:C u4t$v REY 46vhCsshutsshu迏)tQC tIE[v RZ 4EՋEE]BM؊BAuUsRj huF;t@UBTu1jjjRv^UBTKV e[^1_UWVSQU Bx}HBtxtj B pW j~N[t]u@9u<~u& t k Gx8t ~u2tkGX SW蠄^ZPhW- F v R^[ D4%u|vv RhW1EO~u& t k Gx8t uF tPhOW膍 CE~2GTu&jjjW跉uGTtT 1e[^_ÐUVSh]jSu pv kE C EC`ECd E}ClCpChtfK|Cxstte[^UMSU AxYtEEBAx@Ax[UWVSSE] ߉E~,V09Ur/E@9v!PF0Pv,uguF,}~,=uCHCyS:z@ SwYƒuU=uC S胚ZuBE8u*;=u fc SS谚XG) u }tEU1 EGe[^_U} S]uAC0@K,9t6S(t/zt)K0B8u)HPhjS讱1]UVS]sjSZYuZjjS\ `t k C@8C4Xt k C@8C81ҍe[^UM UE $Phth(PjRLlPhR\PhTu E!Ph?E*ELEoE U霰PhPhPh#jR~ÐUh1jue1ÐUVS]u t k Cx8uhwjS"vFdufV|CL%b tt*@t=t^B-;.4+-CLS BCPBPsLSC fH tvXPsLhhR#PsLhhR j PPjSF|%=t =t jjjj"jjjjSXu tCC CP葬^u-S)YuhBSɇXZ 1ҍe[^ÐUWVSxƉUujE@}EtEUzxPBtCt&Ёv RWZ D4%uӅ};!d\t k Fx8tj UB 0 CEt,Ёv RZWY D4%uЀ}uj UB pj1IQSuVT<jUBt@0EPЃlPPRVfuu hV%XZ1cExdw@l@PV肉Y_uMExxtP}tA;>u<{>u6MCt&Ёv RJVZ D4%uӅt;u uj1IQSuV@UBx~tu{M EHtF f@Q:yOuKr2V tF pV F XYF fP? fPjpVV WVlbXZjSVuWElPEdPVJee[^_UVSuF] ujC 0V]d@XtjډYuIjVcYZu6[|SV@YZuۋt1ҍe[^UEU EZUVSu] jډDZuIjVscZYu6[|SVZYuۋt1ҍe[^UVSu] jYu&jVcYZuCx] ue[^+e[^UWVS|}GEE0E}]EtU M}EDž|Džx;ud|@1udGTjjjW}uGT}$u+x@PxWEhDžx EPEPjVWwSujuU ;EE=uCHCx  Sj DSj Z YuEF|Sid ^udE=PuCSYP'^Zu1E%=u!=uCSYP2)Zu Sn^1t(G@Xuhneu jW読Sn[}$ujjWUh }tM EU| e[^_ÐUMyU ujB 0QjBlPBdP1B|tBQPQSÐUWVS}u ujF 0W{fV|t^Xldt k GX8KXFd@EEtjt' tC 9v)@FdFd^dC9ڸv)@FdVlK9غv)؉VdFlGLEGPEjEPj'WܝK9غv)HVdFlVW跅ZYhWEFdFlVWE芅uxhWZEPDVdFlY[tEEFdDFlEPW[Zu+E9FlvFlVWZYu}tEGL1ҍe[^_ÐUhju蹥ÐUh*ju蝥ÐUVSS] EPC PCP3uVHt}thXjVY ;C tPsZYtCCCCSC1e[^USS] Ct! C PEPj@Put CiC USt PRaZYtCC?CCC C HS9u CBCSCE 1]UVS] {uuUSv7RM, XYЍe[^UUM Aw7$M UM UM UM Ug> DÐUWVSQQu V0}t؃؃PFjjS\C SLPSPPfHhBSt1e[^UVSSjÍEPjsLS.ytCLCPE9CPr 1҅tPSPCLFDCPFHF0% F0e[1^UWVSQËE֋P PSRljEo^ZutEEe[^_US] Ct t?jjjjjj, jjjjjjHlPlPڋEf]; UWVSu F1 ]uF,=t=u_jjvx` =w:` Ph!*ZY/ `+d}tEXt UtL|2Dž\DžtvwPtPju\M|2;Cxv#PCxPstuCtStCxt\T`;|xu(VdP\\' \0\ d j jPpPU z-huۋp~~)9غyy)9غtpuX+!u DžXpXjdEPlǃWjPlPM y+lu#;hhl;h+hlulVXjdEPՁǃdx\% WE\PdS% |+`xP```S+d% |d+d)$R\E p4u|Kjà E1\t3}t!UBt\;Htu T \Xڍe[^_ÐUWVShj}, Y[tGE džudžHtCPDZujjWŊHDPy$ HH |t.1IQ|u F |t&1ҍe[^_UVSutZ0tPdXDtPSX|tPBXtP+XS$dže[1^USU 2M]Et0&t ^ItJWXPt k A@8E] ]t k A@8E M[E M[z1[UVSr0] t t k Ax8t<t k Ax8t4t k Ax8t@t k Ax8tt$t k Ax8t |t k Ax8ut k Ax8t-Qtk@tu@[^UWVS u} jËW4EdžVL$EPEPRVxet}tHEUtFP@9uFPFPSG1tGPjjuujWVu=e[^_UVSERPjju v4]S\buE1҅tPSPStk@uSpXVSe[^UWVS }u jËV4ELJWL$EPEPRWndt}t3E}uSF1tFPjjuujVW<e[^_UVS]CPu CPPv4SI u7Stk@uSoYu ]e[^e[^UWVS j {L_ǃu2EPSbZY}uEECPSEtk@uS0oX}uCjusLSdEPEPjsLSW`unCL@DjusLjSaeuLEPEPCLj@PSCL`u(CLHF1WtVRPjuujVS:e[^_UEU EUEU EUWVSu F0%V4 ;V<}F0u5EPEPEPRW bt}VW6jEF0ZELJtGF8 t k Gx8t!F8Pv4W MF4GLF8GPWtk@uWOmX}usF<9F4ukjFK8C@9st"B tHC@S8C4t B tAC8Ctu)t3(t#s. E<ȡ B\M A4EԍEPuU_ZEPuօZY6Et ttE9uG;EuOuth!juPyEԋ] C{8t4C4C GEЍCE̋}Ѕt)]v R>Y D4%uuuuV&}tK t k Fx8t,SjjE p4VwuHC1҅tPM Q@ E @@C1҅tPM Q@ssq4jVVNt9S1Z.u<P] EC8P0 uus4VkLÃtFtU;Ptu T uXM Q@A[Zu'jŰB<PhWLMM̋A,t @ t%PQW)7}E8z@MIt7w t@tB<v +t^uI11u!j jhjWw5j uujWW5Ur{8t4C4CqUԉVӁv RZ D4%u)t]t"t '_UEԉG! 8uvSCM YCSM C)SC){LC(tPCC8RP C tPCCC(8RP e[^1_UWVSME@ˉUxAx9؋}tX9u E 9F s SsY>F(F$F FtEFPWv FF=E PuWuƺ'^9[usp3UBLFRP}F8VE* t}G)@F(E+GHE)E) F VEPF}O< 5u! PPvvu|&YT[u@hp9hhBu XZTu uX Tdt }X~^P9s19s<(,(8uA9s,8 듋t@t'BKAӃt )~~(~(t3BF(AHFKF(˅t|F+~;F vPF PvuFF ~^^tPWP Kt GBڃYP0[_9%=@"F(uSF@+~;F vPF PvuWFF ~tPW@PZ FHF(F/DžGtC~;juZYth3#ju): Dž[DžE*tikC;Hv.PHPDuy(DDjS U(t!kDȉtDž @t u}t u&Bw9NF(Džuy tDžbDž~7G =w uEDžXCP $|U(t[tjvu{ t%UtjjhjR VF$9F8unuoTt`P PR PEo t"E*)lj~ t DžtE*tPE^XE(tF tHNF FF4FF0Fjvuyz fF(V E+F,^^ CF,t?v RQ_ D4%uǃ CF,v RY D4%us}FF t k Gx8t8Ct&v RZ D4%uDžB PRSumUxMA|G9QxuyxUB|8G F@ME(y|W(GuSWutPjQ}t!MQtBt9|u T(|cXWvVju=PDžGGXu\u TG\T ;G vPG Pwu2G\XTPE#E#E ,E $Qh%$PE?$E U@Qhi$jR2UVSSu ]tEPSZYu#E9r jjSM hw$jS e[^UVSV] ۋut EPjj3Vu%EH9Cu jjV h$jV e[^Uh$ju~UE Ut8uh$h%jRV Uh,%ju?UVSu] Kt)v RZ D4%tFѸe[^UWVS,B1EЉֿtzF4EԋF8E؍EPu0uY[-]t+u{Uv R3Z D4%tTF,t1@ t+Kt(u#1=0=@=EPujvY[O}GǃEPut[ZcEu'Uv RzY D4%tuF,t @ DEPuu[Z}Ooǃ}Eu.]Ӂv RY D4%u _tEEPu't[ZEE"]Ӂv RY D4%uj}u5Ӂv RpZ D4%z_q/Ӂv R;Y D4%u _@u8F,t1@ t+=@t=uhEPut_ZK}u'Uv R[ D4%tEPu8tZYui}tOnV,tB uF49EuF89EuF4Pu2EԉF<ҋE؉F@t)B t }uHF@tB tF4V8 FE=w ujh%jW j EP1҉ ZYtE=w uE1e[^_UWVSHE1} jU}1҃} EWEċuYXtujWF P{ } Et EU} UuE}"} E#j1WE)ÃXZ} Et MEFN0jW1ҋEY__} SEt EUUUwsti}0tcFPEZ1҅ MN0EjPEjY_} Et EUU M}"F1t h%'} t jjj}1WEÃXZp} dEt EEFN0j1WE_X.} "Et UMM}~v7}jtEkUB-hu(Y[PuzMDuF1tEFf0?uuDtCt-StYt!E$ E$dE_c E_y'j jEPju71҅u 1҅%}~u'U t k Bx8t?~(}.t.1} }PEkMAX}NEċ@,9uN0 F(PLUB0 uh%jufF1tMA0FAF1t FUBjLuVF0OMt } u`Eu EtEjEP1ҋEdÃXZ} Et EEFN0<[t <]tzjEP1ҋEqÃXZ} Et UEЁFwdtZFPE1҅YN0MjQEÃXZx} lEt EEF} tOUM 8tEE@ujEP1ҋEfYX} Et MEFGxEPEPjEpLP'U1zPG]9s.E8v RUZ D4%@u9rh&ju 4tMĉyPjQ9[^E];v RY D4%u<;_uEF;usFE]3v R诬Z D4%u<3_uEE9EtUĉ);4Ev!P4P0R]Sta0u}W0j0Ẽ 4}t}t$h4&juiMċAQd_1ҍe[^_UWVSE0VjLj}W4 ^jM V(ZYT jjV\ t k F@8(`F4lXt k F@8F8V4dt k F@8FDF%u`FTuTjjjV[u FTu51t P P1҃?XtfF9t @t jjVU\\ vIF49Es)щEEԉMǃ\ǃXǃTPVB[^ǃ\ǃXǃT1ҍe[^_UWVS E@MEUu}Uu UTt.M䋁TtTudX U䉂TMu%tAjQY[ u+ZW} ujjuU\ VWh_pW } ujjuM\ 5< E%MXAjQ^_jj|Y[tjWDPZC tUWVPuE UCBPl ҉{uXllCy:ttXSYSOXVWh58 _8EPEPuMp } uWVE$Y[|> uOEx4uEPju EMA8HMUE܋XUtI;E܋PvjheEXZ&jhpEjh|EU EPOF9v R:[ D4%uЅ MX;E܉MvqE)ȍK9v&v RY D4%t9]u E+Eԍ-KSv R诃Z D4%u>E؉ËE))u)~|.uK)SVEU ^XtjhBEsY[UBTu*jjjRxuMATuuuuuUjuMe[^_ÐUVS] uS ;Sw:kBjjRVt C @‰C 1e[^UWVSÉU@ EUDž|EtEǂtjyjsLjjS @s@9sDSL;sgVRPSCS@t9`9S<WS$Zx C<@NC<-;C@ˋ;VRPSS@t9ws9S<RS2  jjS C<@NC<;C@똋C@S49jrBPSMSUlCD9C}t8;t*URSV E;vPVˈZYujVY[F@9FDDžX9Es }jURo 5o}OtHtQ]SV_ Jt;Et PV1YZtjtPSn 벋tjPn jjV }thPVYZt DžX}F@9F<URV U9t RVlYZtgMjQRm jjV(XuhF<@OF%uShNOte[^ÉD4ǐUSQ]vT S >%u3_t.w>D4%Ѓ]Ð]ÉD4뭐 S=뽉UUv R=%@áD4%@UWVS ÉKuvNt69r PU t2v PU tK9sNuC9se[^_KUWVS É׋uNt69s PU t1v PU tC9rNu9ve[^_C뷐UWVS EE HӋuEt PUǃ PU9uC9r}u%Edu8 R7<%@t"C9swۡD4%@uM}u9w؍e[^_UWVS ËEHKE@t[9vh3Ёv` R;%@uH PU ƃ PU 9uK9sM}uC9r؍e[^_3K댡D4롐UWVS ËEHCE@t[9sb3ЁvZ R#;%@uB PU ƃ PU 9uC9rM}ueK[^_3C뒡D4맍vUSQ@(A,A0hHҋ|ǁ4ǁ8ǁdA8A<ADA@AH"ǁt.llx‰ C4Jy]ÐUWVSNj@4+G(E;UEveE+E9ruw(ƃ1UE+ERPjSERG(EG,+EG,YG0+E_4[uw(@G0Lƃ1)URujPR@D)D[H+E艷@^G(u<Hƃ1QuUjP@RXZu쉷<Lƃ1LP)PT)uTLjÃ1tKVuUjPQ+؉W(E쉇ЉEG4e[^_UVS֋P0Í2;C4s 9S,sv2J9S,vS02C0[^ÉtS0ΉUWVS ] 1щOut/F0;F4s/~tF,F,@CF,u1҃ [^_ÉsuUVSu ]~ C(9C,s[^ÍvSC,)S(9sS,[^ÉC,[^ÐUP,H(19ʉtB9wz t H9w8 u)BÍvUUxB,;B(ǂdǂhB<B8vHB,ÐUWVS uN,V(9ѸtTh\ v@;V,lj@9vAV,C9w)D`F(9sF,e[^_É~,USS]C,;C0u;C(t'HC,S@S,C09r ;S(vHC,Y[ÐUS]C,9C0‹@vBA9S0wC,C0D[ÐUWVSuN,^09s=V(B9ÿv&AB9N,vQAQV,Bf[^_ÐV(B9vQAQV,fBӍvUSM =]w4t*CV FtQt\tAjRuC‰C빋V tiVuu WEe1ҍe[^_ËFt P2vEFt~S}u E 0Fu믍v‰F 눋EF :tAU FivUWVS Ê֋} tJt"tPPWuVe[^_ÍvU:usj.jh ]'ve[^_sj(jh<]' ‰랉UWVS uEE8 t2S҉tvP8 tZۉue[^1_ËStEF>t'K t݃ VS EuƋS 0u&Et'CUBCEe[^_ËCU:t$1҃uà Q!1҉pj+jhh]&ÐUWVSu<t[^_Ív|9tx9u<tމ[^_qx<uۍvUWVS ]ۉljuF^0@e[^_Áw8D4%t;>^F؃@7e[^_Ív S"%uŃ^tM\t_ t;w`D4%t\ Si"%@u;7O>\F7^A7?8>\F7\* S'"뛉>\0F>F0>؃F07)D4끍vUWVS M׉ӊt_u^C@EC8uce[^_ÉƈUvU R!%tC^C<@FCEuU:t BtCe[^_Ív}^}\} tCUwPD4%tSU R %@u.M lD4> R %u\C0C0C0\C ?D4vUWVS ƋEӋM t|t ~Kt INtHR$PSh;ve[^_Ívu:t v t;Bu2hN볍vUWVS uÉҸt= RWW ҉t' @PWuFv1e[^_ÉD"DwGPWt VR뭐F0"Dsj5jh]! hNs_jUWVS lj֋]M ttH8tStӅue[^_É ҋRDS ҉tFA뭃 Qډ1e[^_À~uD"DCsP1뼍vUVSËu:t#"j@~e[^PVhNsKUVS|$ S%tCw֡D4׍e[^UWVS|1ۀ>0NjxtCY<0u]ػE5t&؃jEPU؉C*t~"1ۀ80tC<0uE0e[^_ÃqjUWVSÉU썀AxEUEE|MME@+@+t+UEVM 8ЈUuEu u֍e[^_É EPtUM܊ :E$XDU:E؃t UR؋U,UM؊ M E$ʉ D0 UM YE܉U UWVSuljE ƅƅ2"@ 9ʉv 99Pu;u  0 hNPhN PhOw# e[^_;u u hNz PhO$0hNT Ph1Owe[^_vUWVS EUxp_1EE8t4>P/uD> t>PSElMye[^_ÉUWVS Uxp114>uz/tC~e[^_ËED>E D> e[^1_ÍvUWVSzƸt<\t<^t&B[^_ÍvB 0Fw&$;vBt 3gu VUw G t*>t 3/;u Ve[^_ÉUWVS,/Ëu@d…>1҉I 1ɉtэy9S`B=19ȉv>vt*;t Št/BGuƄ/G9wRhPs\$G={`~usjjh>OG e[^_ÃVC\ЋP= K`@C`e[^_ÉV0 e[^_ÃVC\P C`뱐UWVS EHhEPA MҋAhPEuUBhP MQP@P FPF1ۃ @PtzCF9ExF PtIF1ۃv @Ptt&CF9Uz Ve[^1_Íe[^_ú UWVS Etppti@Et_//t`V3Iwu / /tWvV3Nuᐺe[^_á/t EuE 1ѡ /tÁ(/@/ /P/t|Vj EPuE8؋u- /Vh NhA FTA8/FPt 0/r QEq @'1 uuRU /BhE&} GhPp 01҃Juu0U /BhQuh\OEp"qWuh\Ouv XUVSƉ~k@Xte9PP|`PdBxt8uXB t 8Bt-8t(Ku VdPh jrKxuVdB$t8u+e[^Ã~OVh SSSrx贖P7Ph jr$%Qh jr VdeBt8E럍vUWVS,EDžDžE@EU;-tA;t7Y[w WRU܉>XZwMY[w,G(PEԺ>XZwLWHRUЉ>Y[w\_XS >XZwLuк$>YXw\S)>XZwu.>YXw uܺ2>tXZw`YXw,uԺ:>LXZwLuк>>8YXw\SB>&2MEEM9MUM8<<"vEEE}?E̋T8FdtފtEŰT: Ut2{uMU막e[^_ËxEU SU{ SUM̋D9 uD9UM MUPD:Pډ0uuȉډEU wu >XZw uܺ>YXwXZw,uԺ>YXwLuк>XZw\S!>mYXwLuк%>YXZw\S*>GYXwu/>3XZw uܺ3>YXw XZw,uԺ;>YXwLuк?>XZw\SC>UWVS EU|E쉂ǂЋx1ҐMB~E EEE [^_UWVS,Eԋ|ǀxEr1Ҋ"B~EE=j)Eԍ]EEEPڋEEԺEe[^_UWVS, Uҋu}|DžDžDžMQҿ:-Rƒaw$H>PU2hyOvGMۉuvjjhO1ۃ1ɋ|8 tCPQyً|C~ՃhQUvjjhO1ۃ1ɋx8 tCPQًxC~ՃhQvjjhO="vjjhO1e[^_É)DžDž@<9ss3hOvC 9rDžE끋xiEXhMGE:t z hڋ @ 989BH 9rU15x<tp8"W~^MGW}7h^v-u8.S2  uыU42hO뇉ڍ#~M;P0X`umyt7jډP &8΃j1҉\P2ShPv랋~p11F@4;& uD; PPE0h_vUWVShS^_jS PSj ۉ:ku HQhjrl XZqlg h蝍Wh$ B膍WhB$tWhB$bWhB$APWhB$ p>WhB$踍WhB $覍WhB//tBvV PRc_P PڋuɋPhz kruB GTBGP* P+[@t3QjPj WL1Pe[^_à h=Dž@rjjh4_<Ah@ PAh@@@QhBB=// jڋw;u⋅Phz B PPhrBQhvPhT_p$wjjhx_`U5|u@ÉUWVS ]ۉlj~9XP} e[^_Ív PG@FKGuWP9|ԋGXy=WBGWtGEt jUG됉W닃 j PUWVS lj)9vz j GO9t}9wP|xt|)ˍCvWdBt 8.qڃ~Odt 8GXz9؃~à jKuwe[^_à j ~Ge[^_Ã~:Wdt-8t(Ph SSSqPwGXt=ʉ%9t*9Љ~E j 9]%GGW )PʉPh RRRqPh VVVr]vUWVS Ƌ@9Љtd9VT|_)Åv~XyFV8uD~%VdB|t8tv j >KF~e[^_ËVPJ FNVKjy~ċVdu0Bht8tyVdPh jrhvCx~뇀8tˉH~@Ph PPP}P;~LPh SSSr|֋Bht8t뮐UWVS @XƉt PdB u&v~ j Ku~e[^_À8tQh jr 贁ލvUWVS ]ۉƉ@X9XPPdtL8tG~6Ph SSS|PJ]e[^_B4tÀ8tB88B(8Ph jr8^ P"GKuVdBPP6vhPw u˃wj :e[^1_h2Z벍vU5|ÐUWVSE@,EMQ09r#x9MA(MUQ,UB(MƋQP9u䋙 $Uv^vC M} U Rf%t>C;]~ vG;]|1GF9uwEGڋEe[^_ Uv4 R%u;]~+]뢉D4{D4͐Cuz1qA(9JUQ,UVSdt |ht-C,)t+S,t0~Q V踜ǃde[^ÃS,uЅ~*؉辜+ǃde[^ 멉ډs,֐USP]K,S09Ѹt0h\ s@מC,u du ]É]ÍvUSP]K,S(9Ѹt0h\ s@C,u du ]É]ÍvUSSEH,P(9ѻv"+H@9r"H,u duZ[ÐP,NvUVSUZ0J,9sOC9t3B@9wB,Nu du2[^ÍvZ,vuȋdu[^É[^ÉUUB0uHB,duÉB,UVSu^(^,tCv R%@t!C^,wܡD4%@uߋdu e[^ÉUVSU ]ҍlt l@ ~8e[^m lR%lVte[^l뼍vUVSË@,P Ut;C0t e[^ZSP+S,)…uZUv| R%t@}?t Eƃ@^Љe[^Uve R%tUD4녺\eu0O0؃:V0vD4뜍vUVSE u^@tPF0;F4sOtb~8t V@趟KtF,;F0sU F,K@F,u鐉 1҃~8tVe[^Éډ藝tuF8tF,;F0rIF,U F,/1҃~8ujVWe[Љ^ÍvUSRM =]w?t5C HOvVDFDEȀEЋt|xu |-]:FE t F0+F(U 1tvF(e[^_ÐEЋuE싖PEPoHuVF^0^,M tF,+F(U 냍v|9PE;T@&EUPE]Ek j $ s~0+~(NFXt1҉1ۅxډCVP9}1҉m끉耄y4F~^0]E +U :!;LPv* RѾ%MU䉖PD4@UWVS ]ۉƉUtXE쉆EV,M } t< ~09t9v9V(w 9tU9we[^_M } uɋEu+dt.]~fBF,Te[^_Ëd+Uu҉V,e[^_ÃEPVQHtjVz]"V,뛉UWVS UU҉ƋX(t1эyPWRS1CE^, EF0EPVHUƒ tc&t+ tW(E]G@룍vt6uڅ~KC댉놋F(F(F0F,e[^_ËE8F(F(F0F,e[^_ÃjVF(F(F0F,e[^_ÉUWVSׁ(ƃƅ.ƅ*PtPPÃƄƄ+.CƄ+*CƄPhPFHF(F0F,jV貪<ujVOe[^_Ë<.t<*tPhRS胪. @*hSPXBD.BD*Be[^_ÃjV5UWVS]hP$ x4Ƅ5[@t |e[^_É|躅e[^_ÐUWVS,UË@,EEEEE܉U؉C0;C4 u7:.zD*EEC0 S0BS0}>t>tS0BS0FuS0pB9S0vS0BFS09w5EPS|HnM(w $>v<( hSEES0;S(v: C0P;S(S0vx uuԅ%E̋t89E]wv<[<]N9v}[MЅt E9EE.xD*G8C,;C(r ;C0#E؈CH}jS蛦E}t}C(C,U؉轧8}:U؉)<Et(}t8}Eԅur}ulF=?uf}:u`EvEE܉E9to<EC,}uEԅtUe[^_ËU܅n뚃ẺƃPhPW"~FE9w{,OK,S0h\ j!yK,9s\9 tWwBC,HK,S0S0K,B9S0s9 tveS0EC,jS- EC0U؉ѥ<E8} E9t؃<EC,?=?}C,@C,EEYE냻Q(A0)Љ4A,)Љ8A4)ЍA4;A,3A0<Y([^_ÐUUBUÃ1tsE tqP?5ti CC j(UC tW jT‰CtH@CSSC$C ؋]Íva눃 ST1]à 3TX s TZUEP@PP@$@ ÉUS]3cTXsZTYs QT]]BTUWVSE EE}EMU 9JwEUE 9PJM' 2"ItG _G g$f$a\uG$G$G A$aG .$aG MWOAOWB9WOA9}E(A GPw GSG EG 똋G\WJOG MB낋EP71UOWB9aG)ƒURPR<_9W1Ƀv_W )WA9_G)GG)GwMGG$}gEtUEEtEMFW EWE1e[^_Íe[^_Íe[^_ÉG$G$G w^$aOMGEW)ЉEG$G$G w*$bGW$G $be[^_ÃW$OG pOG aW$OG LMWOAOG OG  OG W$YW$Wv}GEWUO)ʉUvG$W$UW}1U jURZYjjuuEEEPu}ÐUWVS ]ۋ} yQuh(bW_UBWjjhEbNEEpEvUur 6vhTbW_FuReuRhgbWw_WҖFFSPhnbWI_<$襖N1ۃ~RFPhۯWC_9^Wj x^EE UE9P7e[^_RPhubW^vvhbW^Wj &^EE UE9PPvhbWjjhbe[^_ÐUUBtÉEQPu BPÐUSQt]ÃhbPCuCb]Uj$jzÍvUW Nj@@GPw N‰G W tGT1}G1}ÍvUWVS }ut_t e[^_Éut u -‰C1{щ MKxCse[^_C}щKUWVS }utGt e[^_Ét u ,‰C1{щ MKCx se[^_Ë}щK둍vUWVS ]۸btCte[^_à ChRLCtbQsjPKXZjhb[x&PShG$VY4$[C8ut'觮Ee[^_+1Ca1ZUWVS ]t`S1v21 G 9v$C Dt PKGS 9wމ s KCu]e[^_tKe[^_à PcK]e[^_QKUEUխɸU轭ɸUEÐUVSE u]t>QPh~ 58 Z SV58  (XZ58 j Ze[^ÍvSVhEPYie[^ÍvUWVS E u]tNRPh~ 58 \Z SV58 '_0* Phvf58 +Ze[^_ËEESVhPh}1уY蠬^0)Ph1)P]]S; e[^_UWVSju V}Uvt e[^_Ã>Y0f)$Vhb7W USP]x P Y x PXx PX0u$u2$u@ SI1]à StЉ PH$t‰ PH SH1]UWVS|҉Uǀ ǀǀǀ0ǀǀǀ$1}IHE EPju uW‰SEPRR;WjjT E%= tTQjjuwW+RjjP;T Se[^_ÿ/ utJc uuu hcV xVjjPSyhccjh/Vډ 끍vPh!c3SEtPhCPuk SFe[^1҉_Éuhne3S븍vEchPh9c7$E;uʼnUWVSEEE E}uh4CFt4Ph4jSД3EEE} Ue[^_Zt(誨Z0%PVh 58 Ue[^1_UWVSEEE} uEh4Et4Ph4jS8EEu }Ue[^_Wh^08%Y[Pu1je[^1_ÍvUWVSE ҋ} 1tU8tOEEEE8_t^PEPjjN@tCCfCECF u)Љe[)^_É@E뜃W;e[^_ÍvUWVSE ۋ} u1jRWE 9!Ѓ@t5RVuE T9؍e[^_Ív触tWhGcjuӉEEtxPEPWut9vZjuuE莘!Ѓ@u 1ubQSuE\S|2t E)uE+Ee[^_PhE0PC&Ph\cE0PPhcjuPh\cjuxUWVS u ] }x1jRS 踗!Ѓ@t(PWu RxL9r+؍e[^_Ð3tShGcjV{Ph{6VfWhpc6PhecjV륐UWVS 0 ɉƉu/{RjjjjWjB 1@t#e[^_Ðs3OPhc6VȍvUWVSW0x@,E1v1;M W wr;UwG1G ;u r w;Ewv Muu1ۉ[[^_Ë]u )Ήڋ_1ڋEHE%)É[[^_ÍvUVSu0u$Cu5 SAdž0e[^Ívs3NCt̐ P@ S@dž0e[^ÉUWVSTujV0*@4@@0P*H,P@]EȰcESVEcESVjEPE)PVg_h@VE1ÍvjEPEčPV-hSE%PV =G~0UP0@ 1ҍe[^_Ð}EcESV-EdESVjEPE)PVqhVEhPuVE =un0UPQPhc6VXu>e[^_PhcQhc6VpShcPhdRhdPh$dѐUWVS,} xSh4djW$1e[^_É0H M P%1ۅ҉EEE tb^؋] %؉EP1QR EMU Q)؍e[^_ËP] E yE] ?ڍEP1RPh E؋MU܉@)؉Q뉋E %UR1RP" xjuu近!Ѓ@1PjEPLEԨu1%RP )M ؁%1ۉȍMQRPz juu!Ѓ@tdPjEPK Mȃ]%EȉUuRP +EPhQd7Wu hgdjWjPhdVhHe7WxRhdPhhePhdPheu1ҋE RP} QheuSQ^ WRhePhdWPhfLPhdAPhd6Vh e\Ph*eQSh$fFUWVSEԍ9v׃P5~u}t25P`n1уt10e[^_É<$B<%uBpu1CƒrwY$PfUЋ0dיEЉRU2UQPca1уt1EЍU)MMEz O%vtK~W(@ AG9}1[^_Á뺐UWVS tt e[^_ÍvPjjS@tC@WPjSVjjS 1fz~1FB9~tꃹuQBtjS@tjFSF1PS 렃j1SXZF'܉UWVS E1҅t e[^_ÃjjRtء@@ @x @ f@ffBx P fzfBfBfA B ~ fBj@PQC {C@PCPQC Ëp k1fx1BB\B\@QPj \@tsP@9D GB9rE@@)E U nE11fx~b1t7FG@9~@@t @ƃuƃVf@TU҉PuT tI@ 6@ H#ǀE Ue[^_Ã=`Y= KLX@)E U 111t;FG@9@t @ƃuƒ P?"  P(" X@)E U ~w11N1FG@93@t @ƃuºER 낉Ut+@@ÐUWVS UҸUэ@R(s;B| RQ;xx @D Pe[^_Ív SЃ뽡x @x2v jj]rQx| Pv SЃrQB0ۃ`<~\0ۃ`R;B| MRQ:A P+ SЃmrQѮY;B| ERQi:9UWVS ǡt^ txNxA9~6x)tR(@98t 8 CA9ʉ 09ht P[ A+x9Tp^NQ AH9tx @xt ~09ht Pt[ QBHBxx @Du= A9x;1AH9xAʼn P/뵉 SЃ닐qSجv0ۃ`;B| XRSf8Lx  @pe[^_UWVSljUx @uEv}7;wBH9tx @xt <~,09ht PY˅RBHBxx @DOB9x M})7}aEU9U}9wuEE9E}U94tx Ctb;E}KCxl104C1x C U9Ax9EE}EtJU09ht P;Xx u%PC:PmUx}BH9tx @xt ~09ht PW˅RBHBxx @D|B9x|E<)EE1e[^_1;u}BH9t x @xt ~09ht PV˅RBHBxx @DLB9x}F;F0BH9x1v Pov SЃnrQX1;uBH9t x @xt ~09ht PU˅RBHBxx @DuCB9x} F;vF-BH9x>뿉 PC믉 SЃ념rQp0ۃ`0ۃ`;B| FRQn2:;B| RQN28t/EQPEPPvf}f}v% h0ҡ9ht RSux @P(E9Eu苂hx@tut!x @xu j{SVSxtdtxE<)E BH9x2 Pr SЃtrQ`0ۃ`0ۃ`BH9t^x @xt <~u09ht PR ˅%RBHB;xx @DB9x;B| rRQ/fBH9x P(s SЃDrQΣ0;B| RQf/ P? SЃBH9xrQ^0ۃ`;B| RQ.UWVS E9UEUEu }tB)@;~/19'MM99|!1C9~ڋMe[)^W_v)Љ‹M) h@ut!x @xu j8PSuxtaU艐t1҉x\vCB9SvUWVS 09htxt POQh B)Px @pB9~* v@(4CB9GB9~? 1fz~ v@(4CB9GB 9ˍe[^_ÍvUWVS,EE衠@@S9‰E x BHɋ5tv uB@1E nEHE@ U܉M؉ẺEԍv19}Fu܋v(uЋEԋ 0u94Bt:9|19}M؋A(ű E9Bt9|u]m m KyU9U,M9x @P4h@juxt_u艰tǀxE{u t8t.A9 CA9ߍvEe[^_Ëlh10b4t11Ox @x* jL8uEEQPEPEP!of}uf}1vUWVSESuUxtOM艈tx1ҋEN@TIE])9< SЃCH9x} P:Y}wQ0ۃ`N;B| RQoURh W WpP蒽=}qf}]Xf}]UWVS(j# fbftHfb dxdEx${VE 5x FxtRUM C Q@9‰EUFx1ۅuPu@tlt 0FXE09ht P;5x  Fp7ǀxǀt 1fy~<1҉1fy~#v@(M FA9GA 9ȋEd19ÉE} C;]|@@uC9|6vC(fD@(fDFC 9}Ջ uA9|=vA(fD@(fD FA 9}Ջ{fCfAff ph@ut!x @xu jN: VSxtKtxh蹸P Pj e[^1_ d _; PXǀdExh jjhPS\5x Fx E09ht P)9 1fyXh@ut!x @xu j8 jWxtaJtǀx Q1 vFQ9AH9tx @x]t E~09ht PK8 QBHBxx @DuD A9x:] *B9x7EY뿍v P뮉 SЃ널qS訉o`;B| SRS8GPǁxǁt h@jjxtHǀtǀxU0ҡ9ht R6x  @p @ǁxǁtE 09ht Ph6 1fyh@ut!x @xu j)6 jWxtGXtǀxx @pA GA9yGA9h@ut!x @xu j5 jjxtGǀtǀx jD56Eh@ Q@9‰EUE19ƉE1C(f|u@(f|tTEC9|C(fD@(fDB9|B(fD@(fDF ;u}p*EW x @x j4 Q'UuJ陲UWVS EHӋu MUx BuNBt 9M:Bt9BpXt 9Me[^_Ív9u9Mu h@u tBxu j13 juxtDUtǀxU0ҡ9ht R2Ph ujux @ h@u tBxu j2 jSxtCtǀxU0ҡ9ht R12E~#uPh jx @pXDNu lP0Cx @x11v;u#]h)@ut!x @xu j1 jSxt Ctǀx Q1 GQ9AH9t6x @x]t ~|09ht P0  QBHB=xx @D A9x: *x BBxX9M h@u tBxu j0 jSxtAtǀxU0ҡ9ht R/Rh jx @pX9G9M> h@u tBxu jm/ juxt@UtǀxU0ҡ9ht R/Ph jx @)B9xE@ P//v SЃqSЀe[^1_É0ۃ`zF;B| RSJ  h@]HjSxt?tǀxU0ҡ9ht R-Ph ujux @`P9M/ h@u tBxu j- juxt?UtǀxU0ҡ9ht R2-E uWh jx @>NuBx j, UWVS EHU]u Max BuNBt9SBt 9uBt9e[^_Ð9uu9u h@u tBxu j!, juxt=U쉐tǀxU0ҡ9ht R+Ph ujux @ h@u tBxu jv+ juxt<U쉐tǀxU0ҡ9ht R+E~*uvPh jx @)Nuߍv l\0Ox @x=1v;u/]싁h@ut!x @xu jy* jSxt;tǀx Q1 GQ9AH9tBx @x]t ~09ht P) ,)QBHBIxx @D A9x: *x BB}9u h@u tBxu j( juxto:U쉐tǀxU0ҡ9ht R(Rh jx @9u<94 h@u tBxu jG( juxt9U쉐tǀxU0ҡ9ht R'Ph jx @0vB9xEa4 P#v SЃqSye[^1_É0ۃ`nF;B| RS" h@aLjuxt8U쉐tǀxU0ҡ9ht R&Ph ujux @YPҦ9 h@u tBxu j`& juxt7U쉐tǀxU0ҡ9ht R&EuWh jx @NuBx j% UWVS Ӌx ƋBɋ}uHXue[^_Ð h@jSxt6tǀxU 0ҡ9ht R$zx Bx Ph jBpXKu h@ut!x @xu j~$ jWxt5tǀxU 0ҡ9ht R)$x B $x Ph jBKu1e[^_Ë`?Bxm j# Ux BjSh j=x BHXxSh jpXGRh VjV\VPg1MRh VjV1VP<OUWVS x E @x]tRUM E1`uSjuU Ex HyuLy  G  uEPE Pu5跏uu uPe[^1_9]1~vuh)ީ@ut!x @xu j!jVxto3tǀx1Ҹ 2C;]|+vx Bx }*tPt;MtEH9u8Bt+t!Wh jrx Qh juu Bp 4TP?{ǀxǀtuuu uU E h jSjǡx @p SPנǀxǀtFe[^_ÍvEuSju؋U nOx @xux ] E1ۃE 4h@ut!x @xu jjVxtB1tǀx1Ҹ EC9w9]@@(]h+]@u tyu j.jSxt0tǀx ix JA E t t;} E H9Wh juu Bp QP轞/ǀxǀtEuuu uU r h jSjǡx @p HQPSǀxǀtF|EMTuu MuE+E@PU ERh jx @蜝{Vh jx @fn`Ph j/x :UϵvUhlt 0tÉƀ0h jjj?ƀ0jBHPxt-BHtǀx  鳿v j&ZUWVSltd ]Sp_XjSY^jS}ȃ WSjXZjW{ S(XZjSt{VjSjEuE$ V]SjEZYjP$ jVjzYo`l jWjNe[^_ÉjSr SYXjS  jSj* j#+9+lUVS @Hut jFw EP j]SVEEuV@P.tƀǀ  S& t ǀd|Wtŋ@t  tPZU塜ƀx|uÐUWVuSù1hUEP tMEEPEPjSuEȅt;Ett ve[^1_HuvWjVSne[^_ÉUSR=]u;u>Phjj+u =uu]ÉPjhjغ\ \ D ]ÍvPhh롃 h   jhtUSEpkB B$B($ L ,hDRh@P  ؋]ÍvUSRtC S]ÐUSP=]t9||u s kbXs$bbXs(YbC,}C0u (uiuQu9 s裍Ct K SQ;tM]à P8빃 P*롃 P뉃 Pn|#L P ]à PJ7/8 < s)vU1ÐU1ÐUÉUÍvUÍvUVSEEjPSMu7]يt<;tAE@Pt;u9;te[^ÉxʉƍAEe[^ÍvUWVS$h]u j}f]fuFEܣEU܉|jWgx PfXfXfpǀtǀxǀ|ǀǀǀfǀ\ǀdxǀp$stKƀ0ƀ1ǀ4ǀ8$s$KU܋MǁHǀL ǀP ǀT ǀX( ǀ\0 ǀ`ǀhǀlǀpx @ fx~M:%o@@%<x @ f@x @ǀH/Shh@DPƀGƀFǀtǀǀjjuV]Sb EFjjVSaE$P$P ǀd @@cXc 1ɺBtRjjVS\a@PVRPfXf)XP @ GtvjjV@Pt `£EtP(EEe[^_j@)PVS`yPVRP= hsG488 M܋x C @94VC @U98KM EsƿsujEǀs8{}t EsƿstlC MP4י4E܋x RC MP8י8E8EǀtUELvUM1t6<s# E B@ 1UEtEv1Ut,ǀd P\&`ÐUWVS ++++ + + + + - |+~ _+:'#8 o<>v^### - -$ <( >, *0 !4 f5x FlFHtD11I9s/FHa&`})+| .~0tC9rӍe[^_ÍvfwFHDC @C@lj P5x aUWVS @;D ~0P5@ @ @D 5=fG1f9Nw9~x @ )ډ]C9~t)9tGHPLQuR =G9~2 @ t9WvC9~t9~w9GKx^ @ KxQt9}xA5@ )ډKxt)9tDE@HPQuRgye[^_UB1;Et ÍvB;E tUWVS CESC)Eu uEZYtt$VB@EBB x6uޡx U@ fPMfKx @ M fE fBx @ f@f+EfBU)UE Mp  t 1e[^_ÍvfJ;E|@Ef+CfBC9tLPWuR96K+E;EtC;EuEEC9uv} ;Mt܋M+MM뗃 Pǀ3 PǀvUWVS u }ƀxVW1YZu e[^_à h[oXZj5-[XVWÃe[^_UWVS EEt ltEEt;lt)hH x @ fx~<!EH Eu}tCx @ f@f~2ЉЉ%?   !M9].EĀ}Eteu!#}}t-Eu&}u 9Uu EPjR*]H @Ax @ Et Dx @Qu jEE0JEAx P @tt Et=t5x @t#Ru j貆vt Dttx @tx @}tG]u}t:H 9Mu}ttE9tu EPuQ(@tx @Hdytx @pht tx @Hlotx @pxjtx @btx @]tx @Xtx @Stx @Ntx @Itx @ Dtx @?tx @ tx @@t)x @tRu jJv}tMUhe[^1_ÍvuPu jE PEPEPEPEPEPEPEPEP 64P葃%H }6EUH 9Mu}tEtE9u EPuQ%x @CRu jH H G9Wu j輂Su j藂H 0H }8Uu }'9Uu}tEtE9u EPuR$EH e[^1_À}E9Su jRu jā)Su j諁.Vu j蒁E0 ǁ%H Ru jpdkqSu jphUvRu jpl?{Su jpx)Ru jSu jRu jހSu jŀRu j謀Su j蓀Ru j zSu jaQu jHUh u ÍvUx @Hd1҅ɉt@HhtHlt HxttttttltÐUWVS,Uҋ} @Bt:t5<$t0چCu}fE fEm]mE܍e[^_É{S]VEt<>t2vЁwAt70P t$C<>uыu]C td<*t@<.uC<>tЁwt0P$5 t]E뛍vW $ vUS RP=@BtT Йȋ]ÐUx B@puvRJ uDǀxǀtpt ǀpRlqÍv@HPjr 0P軀떉 P諀x sUSPx ҋ  ~ _әjx @pYXjx @p0XZjx @pHdYXjx @p8DXZjx @pD$YXjx @p,XZjx @pLYXjx @p| XZjx @ǀx PPB( uB<jjj.P4YXj jx @p.PXZj jx @?.PYXj jx @.PXZj jx @-PpYXj jx @p -PBXZj jx @~-Px @@x @@x @4x @@Tx @jx @,]jx @u,,jx @D,Pjj x @,Pjj+jx @p +sjx @+B9‹~=9~=93Љx Xu1v]v9Ëx XtҋSpt˃PRutǃx @ǀ]jBx vǃ^vUWVSV׍U؊ERDžDž9} Dž@Bx B9} SM )BB@,m8  ;EURVDžx @@,1I9KK2qK΋vu (ZYPVNt 9} x +} JBXLt ;_@B@BE؋MFE9MFEDž@Bx BH E9EM)Jt`9}M'ZYP EPVP,tx B@D@B@Bt e[^_Ð]+]J'B@8tPhRQDDžx @@81I˃9K4vP؋K͋9S EPVPvup 6&_ZP ]SVvPtx  9%ZYP EPV Pt x v9Wf%_ZP EPVPtx 9$ZYP EPV=PPtx rPhRQZ9H;u:u1 A$M P(I]=w1;}9 A$] P([]h09G;|耽1;+U R<@$@(UڋCA;|);R MQVPDž@BURVZDžx @@L1I9Kv>KK~%uDž@B |lx @@D1I19v@O)P;tON@BDDž@B UWVS,ۋ} E9EK;M9|WЙEC;E1x @ < BHB N~?x @P8Z< BHBp 1tCH;E}E;E}EuuDžDž@BK PhREPGPt[}\S}~1@;E~%U+UE)}"tIhEPjuuWU=@Bt;}Dž}x BH]B@0`B@H1~ B8t xvtPhREPw8$$tvEEUjjuuWUE3@BtVh jRk1e[^_É1;}vEv@UhRXojuuj=@Bt%;}Džx vhEP juu1jC=@Bt%;}Džx ?EhB@8ZhEP]juuRJKR=@B;Dž+Et~x @pUR9x @p8EPjuu@UHJPx @pHEPMPjuuJjx @p0URjuuj1x @pEPjuujWSh j ihURjuujUS=@Bt';}Džx ?Wh jph5< j h:5< j P:Rj U;BRj {<*vUj@HPjjXpt j[x @u j gà Pj j fËU҉t4ÉU1҉t8ÐUtÍvUSQx Xt'PRj Q P+g]ÍvPRj PPf]ÐUSQx Xt'PRj QPf]ÍvPRj 2PPf]ÐUx @u1uÉ RiUWVS t ; x @ f@fС,jP x @ @P(I(% fx @ f@f С$L ǀlL @ Pp x @xt1;L 1( 9fD9fDC;L }e~ԡۋ )R81fD8fD1x @xt9 fDdC;L |v1ҍe[^_ÿ@tK f<t f f|t fD f|.fD"vC=UWVSEfU Mx؉];P | e[^_Ë50ff ‰EL 9| fu9ډU| fuME M(]fXf9ECEvus(E1Ct hAC9|C%9ufFf+9fNEAC9}}t uEE C;Ep5(MUf PhʋE9x Bt$Bxtu@tZ1e[^_f3҉UL 9Uf9щMfbF9fNfNhFU܍RTRTRPURTRTRPu=$Ppd1UWVS,E] }Ef]f}fE x AU]fO;5L @f}4f})f}f}f}AxUfUf]f} vMBf9MEf]~f}fEf9E~UfUډً]f9]}f;M}MEډEԸgfff)‹EfPf9Mf1+EԍUfBf9Mf9MUE)Ѝ@+}ԙhhȉffEfHe[^_áv f f| MfLx Pu1멃 EPEPEPVPIb1x+Eڍ+Uԍff@UE)Ѝ@+}ԙHx UE)Ѝ@+}ԙvUx @xÐU x Q 1fzx;fzx4Qu+t u vtÉt˸vUWVSEf] u}xa; L }Vt IfBft IfDBft IfDBf[^1_É[^_ÉUSEfM ]xB;P }7t(fDPft(fPf1[Ív[UVSU Eҋ]EfEfEx|;P }tuxx rxV]fuff}tfEfEf]ft ËUfEf=t U@e[^Ðx @eEPEPP LEPEPP] ffuff}gVujhuɐUMɋU tQ1ÐUWVSơ@H1ɉ~9tGI[^_ÐUVSx @1ۀx tp @P~v9tCJ[^ÍvUWVS|EEJ1~@ 8uE;M~ ]Ѓx-E x&StGTuMA@9~e[^_ËU 19W4uGM TMtsMA@9W\_0E G4ZU R]11ۍ #G@9~"EP(UG( F uڃ|ލe[^1_ÃX뒋U JxUMɋU tQ1ÍvUWVS }t G8Eu e[^_É PEfWƀuEEG4M@Y( fDfxCЋuG0Lw())xUG9}fFft994fFft"9|fWEƒE ;E}e[^_ÉfN݉fVƉ1USP]t,C8t%PCC0PC4Ps89 [8u׍v]ÍvUWVSEUB PBPB@PB@P>EMUfAfBfffQMfQMfAMfAMfAMfAMfA MfA MfAHMfAHMfA MfA MAMAMAMAMAMAMAMAMAMAMA MA MA$MA$MAMAMAMAA0A4A8MfA,MfA,MfA.MfA.MA怉EEuh1ۉE䐋UMB(Q(M<4EtfEMP(A(fDfDEP(A(fDfDEUB ;E}Ee[^_Íe[^1_ÐUWVS ut" t1vC9tڋue[^_ÅF uKEfVƀu;1Eƒ ;E|(F(t PjfVE ;E}؃ v(j$j;5tC;5t/;5t 1e[^_1tZ뱐U19‰tÅ~ÉUWVS uEEt E u 1e[^_Éj`j舖EU1tۃ]j uiljC(fCUfBEHfCE HfCEfCUfS fAfCHfs CC 1Ҁ}SCCCCC C$CCC0C4C8fC,EHfC.fCfC@fCDfCBfCFE~+u N1ɋU{(fD9C(ft Ju }uUU A9t vCuFUS] E Pt&@0u t0 [É%鐋@ȉ 0ۀtÁ [UWVSE @uEu ؃} NVF0 Et0 E@V(fBf9~[fJf^A9}ffBfF.fN @f9~ff^tDjVou%vB9}fJf^A9|vfN1e[^_ÉfJlv^É Ёt߁ $ffF뵐 S3ExfNщUfЃ fEډUn  5UVЋE0 E ɋ^Fǁ\% t0 ЉEڍ@V(fBf9fJjViE4 VWfN @EF.9EEVUM~jV EUWVS,uE EE8@} NV;F0% Et0 E@V(fBf9fJf^A9fBfF.fN @f9~ff^vjV!؃@ SSEx'fNщUfЃ fE։UUvЋE0 E ɋ^Fǁt% t0 ЉE֍@V(fBfN9fJjV먐UWVS,uE EEB@} NVGF0#% Et0 E@V(fBf9fJf^A9fBfF.fN @f9~ff^vjV ؃@ S'Ex'fNщUfЃ fE։UUvЋE0 E ɋ^Fǁ% t0 ЉE֍@V(fBfZ9fJUSR];t0 Su{t @PC]ÍvCP]ÐUWVS }U t1ۄҋ5u_1F [^_Ðkux @@ tԳUWVS }E t1ۄ5u_G [^_tvUSQ]C=wS1҉Z[ÉUMɊU t1HA$1ÉUMɋU tQ1ÍvUUtE B$ÉUM ѡɉtx @u1Ívx @t P1ÉUVSupw&9މt t#~ut`p tBe[^Ðx @P@Ҹt RpS ue[^áx @PP뺍vux @P4릍vU塘UP1ÉUWVS1҅ۉt C 9t1t[^_ÐStvUER,랉USS]tuf{ ve[^_ÀT@؃j jiCtÉE|C| | E SE<]u땐U1ÐUWVSEU  \DždXhCTt 8/~ h{ QhPS`rFt|󥍅hEhCt5< t<:uCt!< t<:tt9wʃvTt,Tt t u+  P+x R R 9|vE1=wJt@tÍF|PЊ=vߍ.<*u} FEt8$uF>V1ɅutÍFLPЊ=vߍ. 1*%/(7}u}u#gfffӉ )S.^ j$U$<Ugfffщ )QBe[^_EF=wt F|8Њv=. FF=wt ÍLАF=uFM *tFU h juÐUUҋM t#B9|xB(If|ÍvÐUS]t#C1҃|C(f8u B 9}1[ø[ÐUWVSP}M ]txx fW9} Z[^_É9ˉ]~RI4:1}؋W(fD}G(tfWfTA 9M~fW9}vZ[^1_Ut x uǀǀx `dx `Xx @xx @yx  XPÉUǀx `dx `Xx Hdx @xx @yx XPÐUx `dx XPÉUǀǀx B8% Bd Bdx HX x XP%ÍvUǀx Hdx HXx XPÍvUx Hdx XPÉU} tx `dx XEx Hdx XEwUVSuMbЉ)ȉE)ƍjEPU9e[1^ÐUM; t+ɸx1Bw9 `|ud| á UMɸx1Bw9 d|u`|USx XPPf x t؋]UVS]t/CuA S.; tO; tuэe[^É  P. S.; u UWVSj|RƉt e[^_ÉэyvPWSVRf>|e[^_ÉUWVS<uƋU pE j|tnE +Cj|t8+9uЋ9ue[^_Ë@[UWVS,E }ut u u8vQhjSV{ PWS@vq Ra%tnt Sփu SY  ǂ`UD4%u h}Ac t$ t u늅 e[^_à h ubUWVS| EۈDžDž1utl;v23@tFB~ 73 PhH58 :u~" u-8 BHBxM t(= 058 j Su؋1~e[^_ÃRj Qҋ Dž YDžC((Džv 32z4r,ƅ$_= t]9t4Phl V02t|0ƅuuWU1׹ PRPV{H Vh_B0 9{(= 1JK(DžS0p( ;SP>lC(t$@t$R.YC(HC(u܃SWYCC Co ߍjSiU*= \fK1fu "B9~C<ufKB9fK1fu &B9~C fuCр~{F)[^1҅t[^[1҉^ÉUEuÍvEEUEPQEBUWVSӋU҉t1t[^_ÐE[^_UWVSxEPe u38 U  5 ~|6 VK9MA$$;B}j|S茭tDv)؃ ~!SPU9tHPheBj|^SHuMA( Pv ޿?tZq<EX( 5 [V8C,UB(M @T4A( Poq XE0$@E = ]Ctw@pPhVS|?_}XGHS?Gt$l1Gt@$qGt@$kGt@$xGt@$jGt@$mGt@$wGt@$umGt@$vQGt@ $t5Gt@ $n ju61e[^_É Ҹ u P5 q"d{9ljtpHO͈t5 XtW5 Ph@>=tUt}2 = :t,P@A= 5 i V4}KWC }SG= H=t$5 6R u܋ G ` 1ۃ>tۃ4rRt#vCt4ORu j&!ƒ9zt 9zuB9uЉÅ=P 5 hՈ = 5lj 1= P Pjh55 ÃK]S fJgj+ƅU2膧% ƅ}_u(u,CuB]C f@DfPhhS-$2}WB_{8u?}G f@HfPhhS-$B2WB8_s,e0MAx)MA f@Ff| PhhS)-$1]SB,}C_v`  plj 1= P Pjh p]Ãh% ']Cx*N}_8 jiP荥ƅt xm8j,Xtw=+t8 t+1I9uWSR2uύvF@GlG EX4u# t4UBǀ ZuT}GxuH < u" h/]S}_@b@[PhVSu7_UXBHS7YMALj\}ZGHkCXG@l-XGDmXGhnXG`qXGPtXGTuYGXvZG\wXGdx}4 Vx.WH$h7Dt@HLt@uPt@dTt@SXt@B\t@1`t@ dt@ht@HYCdN@ h}-MQHMSA=y5 6K uP h{6UB f@ffPhF6}}Gu)x&t#0S,UBZulx)SGB@2B+Ph VS4_}XGpST4b}Gx+x'UBu?B f@JfPhhS'$+MQ}W fzUB@}G4@?UC,UBZUBx%-4 C8}_MY; h +MQ]C f@ƅ P*MQY P*W_]C f@FfGPhhS%$o*}WGA hK*]SlMSAY h*MQBYVShĉf3lh 67ZYh v&ۉUCZt<Gt@SRG S;1P6vhq6hbЊҍt$t1A@u Q&)]OSxu@뾋}G@MA(Ή Kj+v,*uƅًFh v%m  VQ(WH$$1GǀtSBS,BQh VS/XZUBpS07MAv h'MQBALGx*fBQCPV5 ƃs  Eh= +5 h&0MYx)rMA f@FfPhhS"$&]S}C_"S]C fP hT0F%h vvv6h/v1m h*&MQ<Y h&W_Pv6hZ/ah[^}_ h̊/vv6h/ ht%MQB,AYRv6h0. h;%MQA h%MQB8Y h$MQAYO] C,ZYPhTGS,uOUBMAp,S,u ]C\ Vj$]SC< VJ$USP ɋ]t91 <|tBwu  ]Ãhj; 묉UWVS}E UEUtjtdUUÀ}ut vFGte8tEt@UMtv8t$AuGEuGu1[^_ËUt>tGtu݊럋E֐UWS(1҅t t e[_à h}vt1щу v 뽉щу Q tRSh~Pǃ h u,UWS]CuEuSCu`C umCuzCC 1e[_Ð PCt P/Ct PC t PCt PCz PCm P 1e[_ÐUUÐUE  t E*hj99 E*U MU  tɉ    t   ÍvUWVS uI EҸt. U;   @ Ѝe[^_Ë ҉U 1 1ې 9=dP5  )P P ۣ u   E ыUYEE}= @< t< t}эQvE| 1| E|  8#:vM fD E 2e[^_à P5 6 t̅ 5 ^ QD = }   USS]v9t@uY[UWVSuEEEsÉ 9tjteE H9t] ti^tp\ tNF}E}X~}u hq'E É 9ue[^_Åt묃 t^u}%tÉw = P%%u SF#ZYPh+&?߃u,_ÉF@ЃwzEE;É"@Ѓv+ ShZ&EE\Ѓ}]~]uEECjw$܍ Sl"ZYPh܋&FiD4 FJ hD%5 , $   ^\:, ha/& ; tB Z h&UWVS| EEEt<  t)P$  t؍e[^_øС NP Ҹuá  Et + Ev t t t\== : . S #%.Ph}  P ) PE1 1t:uv/ t t tD4L= uE.t t t: Sw Phh( ##= = |-|F= E      F :,\ÈFà P_1҃Ft3 S!%uС _tF:6#Gt$}u S&[_Pho!}t%e[^_M t t t$ EPVƃǐD4E;V= }1эy R/ %@t*Ot1E8w֡D4׾OE<8,  : vuN< t< t<,tFj|5 請X 5 & j|5 ȣ }u8u h_  ||9sPӁvX R%@1/lSh8F9r| D4  ,Fhj. | ||1ы||  : 1эt=@A 9t&}u SZ P5 h`  v, 9 1 1 P%t#\.FNw'=wӡD4D5PjEPuV}u@E9u5 h5E8u  9t h  = 7 h̍} h= |}Shэv} h܌ | PVr}u 9t hB 5  g hUWVS }1KCȄuљE u,fC fx,M @W31uՍe[^_Íe[^1_ÐUWVS u} L v L9v#9{u3u51uڍe[^_Íe[^1_ÐU}uÍvU} u ÐU| t | Ív h ]| uЃ h uUWVS ֋| )ЉE1E); v#PR 2| t*UVSz1эeD[^_à h u vU` ud t0d t ÉH`  d t É h t UWVS 1\#^οЁvz R%ty,tr'tm\th:tcx ãx    x  'xx e[^_ÐD4%ux Ecãx <  f1f0 غ  x  }x e[^_Ív@у3%0%$} Ҿ\οfЍffʍf(ƒ0 غ \ãx 'fҍf0  +ãx v@ƿ @tGсvUWVS 5p ljtvd 9u}K=d t7w0vbx  K x ix uϋ l t~{h tB=x 2x e[^_á` 1 @` gHe[^_f?f6 h(3Fx x l hNkhx x lx x Kue[^_UWVS ] }` d h l p t 1ۣx  =v.%3Co%CNwK$tȉލv=w u *t.uC ݊<3]<2& x  %yx KuPPPvZYPh Ppx 1x   x C сw uӀ*t΀.tɺsx  x  | e[^_Ívx C  x  Jx   | e[^_áx  %빺t zvx Kx  t KzϺt 5j빡p @p uh~l @l uhlh @h `uhHix t ne%[út t i*út  t :  t  =+-*/t ú t t x qx t }t dx 5x úx x úcC&u tVE9tO\tW$t%  EVE̋u tE U tu9u1}u| e[^_ÉU B<^t<,uE u   EE룋E x}vE NjE x%_u%]S}Whu 蕳URWhu wmS]Sh:u Y#URShVu ;EPEPhu PWhru HmWShu HTu PFu E؃E }+EvE̋E x/XvЁw u<.t<*uKM u <<  E CE̊Ёw u<.t<*tTj;u xZE uUEu Eej;u XxYE uUEzE̋E 8 EyE̋U j+u xE EAE̊EЉUEIEK;$]j;u wTj;u wM=U=8E U_u u.EԃE }aE  E E U Ã%Nw$P Ë EEU neE U 121iTj %t(E   EE̋E =v΃Ph,v#d낉 %u]܅E5u EEEUSP ]KfC,fC'fC fC"fC$fC&S Ctd1f{tCCB91f{tvC fPCB91f{ tCC B9 ]à hxC뇃 jNC k j,jCK hR UVShjutQhVP!XZVSe[^ÉUWVS U1ˋ5 Ӎ=v5 e[^_ÃR PG 5 e[^_ÉUWVS E ug= )P`F 1ۃ~;NDŽC9~$t0+PC9މN(1ۃ~4V,DŽhC 9~t+PhC 9 5 FR5 5 P F``1ۃf~ u<;FVCF 9~!uًFF C9gV$F"V&Љ`19Dž\}S= PV1 DD\P)DDC;`| \Fo1;`Dž\}TVvF\ PF4V<1C\;`|~(1ۅ~3V,FC 9^(~huC 9^(ve[^_DŽ  6fV 1ۃf҉t0Ftt PVfV vC9ЋN(1ۃ~0 C 9~"G,u jsG,N(C 9ރ vovF h u|UWVSu V}WfV1Ƀfu0HA9~FuGfVA9f^1ft'vF Ht`t G fHf^A9f^ 1ft"Ft=t Gf^ A9ߍe[^_ÍvGfV끍vG fH롐GUS ]j/St@]Ð؋]ÐUvUWVS] uSVK1҅x e[^_Ãt 08te[^_1IwڃVS7$St9tjS댉fDž.vUSQ1҅tZ[É1ۅuډZ[t됐UEUWVS U ҋ](} 1} у Q4 E "U FBU ؃"\w.D4% v  Ӂ R%C@~\F^FU BU >"FEe[^_à S/%O~뺉\^~뫍~\Fn~\Fr~\FbPShV1э|1^~\Fe룡D4$Uuj ÐUUҋM t JEHɉBtUu juÉUM EQPQPÐUWSU ҋ]t11эyC9vKu)Ce[_Ðe[1_ÍvRQ{C͍vUWSU ҋ]t11эyC9v u)Ce[_Ée[1_ÍvRQCCȐUE ÍvUSR ]t#tPhS5 ]Éhj čvU uPuÐU= tÍvP5 hv58 ] xQPh58 ? xRPh58 ! t8uE58 j:lXZ58 j ] E Pu58 <YX58 j 9QPh 58 U 5 hv58  xRPh58 z xQPh58 \ t8uO58 j:YX58 j  E Pu58 wXZ58 j t$RPh 58 뚐U 5 hv58  xQPh58  xRPh58  t8uO58 j:XZ58 j  E Pu58 觤YX58 j $ QPh 58 뚐UWVS ]EU}1~F~BE 0U2:|[~qU U UOFȋUUUFKO~U U UFOe[^_ÐUUUKFlfUUEFE KOKvUWVS ƉӋ}WP|tKe[^1_ðe[^_ÍvUWVSƉUfx"f^$ӍN&;EUEf)fFfFPv FF"HUEF)ЉEӉKx9 M4FU5rFU‹MEMKyNjEfF"f^$;E E f)fFfFPv F M F$VH)ʉEUˉKxAM  M4FUEEMMV fBKfJyE fF$fV&;EEf)fF fF Pvq MFV F&H)ʃKEUx[E E؋U<EEMMVًKx, 7FUűUڋFKyԋMfN&e[^_ËEF]UڋF fPUt ~"t 1Ð@"ÉP"@$Ív1t1ۉU҉tJtQ$@"Q&É@"ÉP"@$ÍvUWVS UUzËU9Ésv4utC9re[^_Íe[^_ÍvUVSËEt$Ht5C&K S$)C")[^ÍvCS")[^ÉCS$)UWVSu9ǃ1xGV$F"V&\ VDA9|u]}Zt~z}tBe[^_fVX9߉}vV fDJfJA9|fVBfN$fFfV X9߉}VDA9|fV BfN&fF 댋EufVX9߉}VD  A9|fVBfN"fFRUWVSƋEUE‰ËUEV$F"V&T;]Us#~v4u tj|C;]rEPvFMI VDI9wFUuډ}[to~*}e[^_ËUUe[^_MufF@fFfF"PvFFH VD  I9wfF@fFfF$Pv NF FHvV fDJfJI9we[^_fF @fF fF&PvFF H VDI9we[^_ÉUWVS ÉU@"S$fS&EEu9ƉEC<C +E)ЍShh3shj=hh3ksrhjoD E 둋E @Dž8x|E J>UVS uƃt,j=Vt!Rj@PVÉ4$贠؍e[^à V袠鐐UWVS (ɋ}uj8t^Z8,ƃ:VWAx:$;u0e[^_É 0(E ;M} C8:-t8e[^_ÉBZ-8,tC5,L8j-W@tf-,- zuA 0y;tz$ 0A8004ң0t*?:t%5, #} Ph58 e[^?_Ë 0A;M 0|58?::4tV | Ph 뜋U $;VWt$ |$L$tfffIutCffffffffffffffffffffffffIu_^ÐWV|$ t$L$uL$u1^_ù))GV)^_ÐWV|$ t$L$u L$^_kv7̀rϐWv*̀rL$QYB̀rQ*UhÐUEUEUEUEÍvUEUvUEUUWVSLӉiEԉ];vtEE<%EЁvo R %@uj R%@t'Ft Ӂw١D4%@u܍vU{uEe[^_áD4%@uF:]tE1EEEEy$T=wtE]܅Et5t/=w%tEM܍Ë]܍TPFۉUu˃}hU}GE8Sj EPV8"~ ]8uEPuuE UEԃu u}}ԋ1׉IPQRVM|J Eԋ1׉IPQRVM{SUB Dt }GEu܊=E}܅Et5t/=w%tEM܍}ÍTPFUuˋEH UBWЁ= R%@N R%@8E}0Ӂw̡D4=2$EE܅Et5t/=w%tEMÍTPЋEFUuˀ}H}k} U}WvЁg R%@ R%@8EE0Ӂw̡D4̓}ԋu uXEE}BE} wjE؅uUԋED01ۉEǹIPQuVM:yt0EUԋEعIPQuMV yu} EUBu܋}u R%EEU5Ёw̡D4̓}ԋu u>UE}ԋUT|1UIWQRVM>xt7UԋED`Elj1IRQuVMxt E}v}}EUBu=^PEE܅Et5t/=w%t}M܍TPЋEFUuˋEH=mUB}0=EE܅Et5t/=w%t}M܍TPЋEFUu˃}wEUB 1Ё R%@ R%@E}Ӂw̡D4=EE܅Et5t/=w%tEMÍTPЋEFUu˃}5/Ё# R%@& R%@EUӁw̡D4F% }ԃ(:Ӂ Rk%@|=1}Y|}E0t/=w%tEÍTPЉUMFM܅uˀ}Y}yUCU}WЁ8 R%@L R%@EEӁw̡D4͋Eԃ=Ã0EE}xЁ% R%@ R%@EUӁw̡D4ͅE؅=Eu u3M؅uu u<SӁ+ R%@J=oaEE܅Et5t/=w%tEMÍTPЋEFUuˀ}M@}<EU5Ё Rf%@w RK%@E}xӁw̡D4̓u uEau uK4EUԋ1߹IPQSMVqEx (UBu}E9u])C)č|$PSVW}賴;F pǹu8uE uES5uuqUB uϡD4"D4D4D4D4D4D4<5u}G u?D4D4};U}Wml[}DQEdHj8vUVSMEU uEQVtMu e[^Ð V EXZVEP複e[^US]fEfEBh-EEEEEDžDžDžDžDžRhj Pc uu EP%<xEE]à u蟍, ]UU uPRu>Ujjju(ÐUVSҋ< u+CHCx8UuuJe[^Ð SSCHCyɐ;C|} uSuAơtv Se[^ÐUVSҋ]u&CHCx30@u:e[^Ð SCHCyΐ Sơtǐ SWe[^ÐUVSuu^ u)e[^à VS^ tؐ Ve[^ÐUSQҋ]u"fc u]Ív]] SАUWVSL]ـ} uty@@tv9t ut"r}W豿R1˅t9vPRu聿e[^_á@@tYwsth u2PFPRuGED0RQh>}WŲ_@tWPh EP}衲BېU駓vU釓vUvUEPu hhuEUvUcUSR5 3XsStC B C Slj u ]ÍvUWVSPljiE SiE jN 3WtT[uEEF 1Ct S P  C t V1e[^_Åt sۈECMtǃ u뷃 u谈C 묃 u蓈[u芈USRhUS:t8t]ÐUWVS,Dž qhP1trQhP脘E1эр) tgu Dže[^_à hBF h*6ээhƄ)Pƿ t ޿ uYDž) !t~ Dž tq/ uDžA냍ƍttrډ0/ %Dž ڋ@   U u1_1vUSS]Cu S<1]Ð P+ S1]UWVSjuǃ t, u dGZt1щ 1e[^_à R踄 vUEpdU  ÐUWVS 1} IuwN j9Ãۉ t4 h Cxt u p蓸 1e[^_à P vUWVS }u t9 3Vt5[uFe[^_ø1te[^_ËCE }e[^_Uh) uqÍvUhuYÍvUhF uAÍvUhAu)ÍvUWVSh&9pjuuuVuR"e[^_ÉK8=#FutxpPpPjjjhh`vvHsh`hm58 wPjjjhh`vvsh`hk 58 ܊$F\xDžPPѥxDžtDžt h /t+h.>h t9pwWcf8#tP_0Y Ph 58 ^襾 jSj蒃e[^_58 jjhL!QhRhBEvEvQxddFjdLh jS1|؉QP4Lj񍽠у9d49}@=\B Hu44 dPPd jjjV\„ @P)WPHPdf`It #fJ؃ `eMZ0uWP}7h 58 |X8 jP58 jjh 軯[d 4 jSjZ׻@^0V Phl!58 ,xZ0V Ph!58 謆X\Pjh4sDž1Q}ىQu4C}ى Qu4%}ى Qu4 jS4H1WjS4ޅHuPjSj蹅 uԋ M1jn1ۃ dU``}=58 j+jh!̭늃 P Ph 58 : d[0T Ph 58  8VjRj~[訹4+}Z0TPE0h 58 謄58 j*jh!X@2[0ZT Ph 58 fDžvU juuuuE PucÐUWVSlxƅPjjjhVRS l 1҅t e[^_}CEEDžPEPh2u1҅u ƅPjjjhSwwrk uσSV襾u @@ C {}EEC]؉Ev 蚷e[^1҉_ÉUWVSdP}Dž\DžX蕁t DždPjjjhhPuu zj tƅhPWhhPRj hVh< t<#t< p< s< ráTv= P-%t= P踕ˆF 9 > 'u`h+-5 hPUE X`ƒ+-CXҋ`uEPuO\X\r1vTD4T4GHG6@ $B5tσ Wƒ1ې t vF t t `  F< < < |uh+xiDžX<@UhDžXhdjhPjP|{B`DžXƒ+8`BDž\^<@`@Pu聺-i@ht&djhRjPze[^_ËXu`Bt<@`@Pu밊h5 . 'i PUE :r i WƒdujP"z\:du`jPyUWVShjh]Pu }ptluQƅiƅhpFtFxF | uuhPhPue[^_Ãuƅiƅhl붸ύvUW }1uuE jEEPuEE2}ÐUWVS} Pu uP裻E1Džu<GPfwbEt;BEt0 uuu RW | W|u E uDžNpVn1IDŽ /.rhDostsDNzËXrv_XhV{lj$zvte]SV*vxzE%= SW+1ZPv W@Ze[^_Ãhh {ǃ ! W@¸!!"݃ W1맸:!ɐUW }1uuEu EjEPEE}ÐUWVS1}ȹtmLX*D@,8uY<<ۃ-1Q5tV@PНEEe[^_ÐEEe[^_yEEe[^_5|]5\܉]4\(]4\`]4E4E4E4Ew4Ed4EQEjj^ j.P tbFu74E@ E@Et@Ed4@4މt:"މjE@"^pVղ.;D$L$A,tAPjjq L$T$QYai qyy1ÐT$z,tjBPjp T$D$JZbj rzju@L$ÐL$APjjp L$T$QYai qyy1ËT$jBPjgp T$D$JZbj rzju@L$ÐUjuu uuUjjujuÐUWVS }u] y{D4%u]$tX-tS_tN.tI+tD!t?*t:'t5(t0)t+,t&%FS4#~5#PjV%qux S%u;u t"u t tACCF\e[^_Ív*t?t[t #pt< w7$8# S[vD4R \뉐؃ t&vV S%u tT\0FF0؃F0Fe[^_ÍvD4뫐@\FՃ@tPyMF S茙%^FC@u?F뎃 \F\FsFm\FrF`\FfFS\FvFF\FnF9\FtF,\FbF\FaF\F0E0F<80F0F-FFD4(UWVS ] MҋutCPVPQue[)^_ÉUWVS ]Mu }MvvFPWRQKwu+Me[^_jWPQh+Me[^_ÐU@B E1CUeEjEPlUWVS M}] ut"Bw0e[^_Ív$@$#e[^P_Á4tE1v CPV]t0SVLtIE }vɃ}ue[^_Ë(t*Mt܋$U }\ˉ(t֋] t$U ԍe[^1_US]x*E]EPEPa1@t$Ћ]Ð hЋ]Ðӹ8uЋU}US ]j/St @]É]ÐUWVSu %I@EMgt.v6- +f qguՉ8ou%AEtEt]tf#A!tf#A!ƃt f#Q!֍vUkt f#A t f#A ƃ@f#y 5XuE f q[^_fA!ƃ(UVSg]u Et;-=Xuۈt!fA[A^Ðotuuۈt:%Ѓ uXt+AfAuI[A^Ív+AfAt-tI=uI돍v+s-hv룍v-u fQ+AIHUWVSl}E1? ]S誑uȃ VSj'^$afE$a fUjVj]E$ TEU1EEE=v:EÃgtnaM GÃguM8GtPjEPWL‹Eă8u xt| uS1e[^_ÉotuuM G돃MG놐G+t8-t3=sEe1EX wa$$(=uU9Urj0u'S%EEEPVh=EBEEe[^_Ð=V]t^U9Ur8E]SuRE+EЍ\EU]EPuuXEE ,G6vIGvΒGtbE9Er>EUURuRE+EЉEEDUEEPVuӋE&E1 =@+ZU9Ur>EEEPuQE+EЉEEDUEEPPuEG EvEt EMGEt E G$GGEI=t|U9Ur>EEEPuPE+EЉEEDUEEPVuӋE EEEExEU9Ur:EEEPuBPtBE+EЉEEDUEEPuuXEM EE/M< uO1)E}Ѓ+t&-t!XtЃ+u1E1Ѓ-t$+t2Xu<A!Ѓ ÊЃ-uA E!!ÃA !E!Ut-GUfWt+GfwDXGf_1 uN=UWVSM1jh/b^|x@uEDž|Džx pPw HhDžlDžhTo PSjW (RSjV QSjV PSjV RSjV QSjV PSjVXZUR|躟 }uEueEMPQj|號P}1IQux2]E U|ƃvPjQ|]H  9sEt ؃Ӂ R8%tTEt#Ӂ RpEt%Ӂ\ RÉPjQ|Q\FH1EG,u}]QHjRjT (jQjT jPjT jRjT jQjT jPjT jRjyT|PPxZ$lYtD4]44e 1}}WjhBxZu,}EVPj|ٜ |WZ :E te[^_1e[^_ 1Ujhh`uzu``ÐUEÐUuPY$WÐUWVS }?)Ѝ9 W+t:FSj0^S5nFU ҍ^t8Fu1e[^1_ÍvFWhvAj^SM 1u؍e[^_É~um j(PUWVS }?)Ѝ9   " W^ t:FQj0^SEmFE ^t8Fu1e[^1_ÍvFWhvAj^SU 1u؍e[^_É~u "m j[ "PUVS(j+u n_EE W EPa1҅ j GEEEE_E_E'dE 8ru u荗YuVU܉rZuP("U܉("u e[^à h$" M h$"LSv h$"L랉 h$"LE 8rQPuXuNEU MI d= d?UBс Rf %%u~ƉuDž|] u΅xt/v8t'CCfCC| u׍v t{Fuuxɋ] thx:t]Mt3t u*FCFCfFfCFC||~ t8u quuM|e[^_ÃdUBс tIt:f t1%`odiƋ`R`8?UU1Ɂ:ELFtËB%=ufzuzuÉUWVS@jjj}WDžDDž@Dž<Dž8Dž0!1@tQj4SWN4t e[^_SFZtHPWIxֿ(ؿ(1SR(ȿPWjj(j?$ $t$,ؿ1҃~#Ë,1ɉ8B((91QRDPWjj $0Dž8E t):t$@@f@@8 uׅj1RVW诒!Ѓ@@8@@v@PVRWYM9c)@4~8~ؿ#v4s8e$4 9tNj] t8t8_3 uh4BC4fQ=t ;|7C4P B<wK881 e,BC맃@P sO3=lDž8袞0t<0 I,t(,HY84Q ЃtK$Dt@DTD$D< BCUWVS׉QEvEXډ11 t؃E uZ[^1_ËEZ[^_ÐUE E EEvUWVS,EE9‰UspUz2Uڀ? Љw rP?vKvډȀ[ MQM11 udE9ErUB e[^_Éȃ* uM9Mt uUE=MQM u1e[^_ËMQM z1܋UERU܃E ‰EtMq؃! EuUԉ]ЋEЉр]E Ur؉р- $to119ӋMЋEwr9w11ۋM9ߋu؋Arww9vqEUruUԉ]ЋEЉр]E uM9MMqDuuEpuEEUr놉UԋE3U3E EUWVS }Wt5KG4tvu&Ku w"8Ge[^_à P8̍vUWVShjÍhuPb95`w3vhPR3WtC t)95`vиe[^_1vUWVS EEt9~GW R7GuG~4 HywMQӃ u+] `S6EtN S‹Eu=GUBW}e[^_ÐRP6QӃ uq6ыG PV6G묐UWVS DžE H Ѓ/ ȋ} tj_vځ1 t Dž;E Z_ t ȃ/ uP} / Gt9Rv] S] VE HЃ/ ";Mve[^_ËO Fhu~E@ @uVPd?ubUB t0A/ AtE%=@_=uF u=?1+URQP$zM9vC觖V fDž.uF @ SV DžDžp]C @t s {.u U . BuPhjQځ]9sHPjRÍ@vQщV t ;ur WU uEC+PhjP(uuWu4uF @ V SYt_ hڋ%EXu 1҉ hڋ\ZY0SURu MA tt "t; htuu]C @t|uVPS(E%=@;U/CBp臓?`URQ;뀍vUWVS@‹~ BuA Ƌܿt*v?{m*1҉WuG ;ܿA 1e[^_Ã[u!V +[G!DB u ue[^_h~ j+ܿPYܿAܿPcU9WӃQ uߍAFؿ]_[G!ؿ1҉W- Fu%^]t-G1҃W]uJ ]<% PƒҋYrt Pu݃\;$븸!GvUWVS, Ë{ CuC} C {uSW9uGDžyQI ЉtJЃ[ ЋN] t u uމN u‹uV  ue[^_ËSC  ue[^_ÉЃ{ u lЃ} _iF9ЋK[ [Ѓ, ȍ{{9s QW9rFQщW uރ u{9.Džv߃ЋK] t uȃ t{뽍vЃ{ t%Ѓ} ȍ{u{{vUWVS E }uE@E E tUB`uDž` vDž`E ]C ECCE \RhjhPwE);`|advhVjWS褾@t3dƋ\rE);`\}\F}  `PUe[^_ÍvPhjhPvE)`9|11?\tshPjWdPν@Yd ؋\S\ϋ`E+\911?\uG?uK\\C@\뿐@ `PUe[^_1۾@0e[^_ÐUWVS(jj]Sjh  u&Et| jjSPh 98e19ˉM}-u}}䐃Vuqt2CE$$;]| u&(e[^_Ë} u ub&e[^1҉_à uK&뿐USP 0"ɋ] 4"~(QSR5,">/0"14"I)9wk,"uwI)ȃ 4"P%,"tbRS54"P.‰0"xD@)94"vE,"0"]É Pc% 0"r1]Pjjjf.0"1]ÐUSRádt=<"<"u1]Ðjh<"u-x dm1ːUSPuE ɉu-؋]É h8"W*E` ɉtӃ h8"c*؃]ÐUWPu>E&‹Eu1;M ~FE"uE}É h8")밉 h8")E}PQRuuHUWVSh(荤t8uJ WPh(jhP"P"1ыEIE e[^P"_ÐPj EPSU|ot>U t zуMt/tGum@뻃muSI9\؁= h(kt?gtLSh(W렃jh(9뎃KuȿWqs@]U jjEPh"jEPEEEMo @)t"ÐUWVSQE1ۅt)1v׹эQ9vӃEEuZC[^_USSv [P!ۉu]ÉUVSut3CuC Ry!f{2y߃ Sf!FuaFuL vJ!F$u& vr01ۃu9 v0u@ V!1e[^à P!*臃 v0t V eUUwE fP81Ív;ɸÉUE@(ÐUE@DÐUU EP(ÉUWVSl@$Ӎuur{,VS(fF fC0C@8.t:Cfx2xv9P(t@fx2ye[^_9x,uAHt .uxu%E9tPj`jVmfF艁 UU@DH vUSQPÍ=CvNCuC7?]Ív PC ?ӍvPs[C]ÐUWVS ]9XƉ|TN@uh jSvSN9KuAKBuBe[^_ÍC(FPvJ[FuFe[^_ÍvUWVS Ƌ}F$UGIu PgÃ1tWF$uZCHS@Cu/ɻ1@tL`/a/fEpxEfEbxEfEfxEfEoxEfEtxEChHPQEPu]]]]Ɉ]>@tċHHPQEPuH FDPEPu1@tD҉V=te1عEPIuMl}1Ʌt"I;MrFBu1ɍe[^_F똋}Utv<=tBu+UM D PtMEAMt<=EB@ɉEt=u=BFBu1g1vGu09t^ ȃ PM`ùPuS50D}PR90뾐UVSu]SVktUBtۃe[^ÐST$L$ 18uBu[ÐUS]9ډsvAtB9r[ÍvUS(PR]SMMu U]ÉUWVSEE UE;EU$%t/]9]t}UBUEMuًEe[^_É11EE}Ãzw$ *MY xY$۸ uU Eع<RUpuu$MIMWuuuUE8uEEEE.EPPwMD|uUQ^EEP Pw܋]ɍuD0Ƌ]t}wlQЃu)ut.RuuuU<<4gPuuuU3]}GuuEUB ҉u uuډhM]C뤅PuuuUEFu]u}*PuuuUK EtUr+r$IEP}ҋ@)Ѝp$I鉅h )lMPu]SP}D`UVuuuULEM|q]}G @EMA (}G(@UB %Ѓ]E]MClEPpUHlMdufEnE+E EJ)Ѓ}E9E$9MhNdufEn`Emz}W PM]MC@}MA}M}A@xuUB]{ w}sMPPuuuU)UBuu E]UWRuuUEE}9EMAUlduUyUBSLE Nju Pw Ph]S uU[EmxFVgtcMuuUrFU})ϸ$I)@띰E}Ed]gUWVS u}EPEPE PEWUËEu19]t)e[^_à h ,btփ58 j \QVh)58 58 j#jh8,,Etet658 j jh)XZ58 j Wj(58 jjh)58 jjh)y58 j jh*랐US] ؃UUURhEEjEЍ PfEfEDžDžDžDžDžO/ uuEPۉtEЋ]ÍvtWLUWVS E"ЃU3B8e[^_ÐEP,1ۃ~ @(94ttC9EP41ۃ~@0949t}hC9E@$1ۃE~]UR U V'!uMC9]~9M %=uE#E EMy }^}3EM3G8^E #E EG<U1ۅuO}M4u(} uBƒfto}t }^E U1EE^9^}E#E E1%=^E#E u7ƒ(M4_t9]t1Ӂ R%_t3с RQ% _GGEU<tE܉E؋UX9ۋu}M9MPSuufU puuPuuuuMU EEE܃ uU܋E9PQ11ۃ EESEBME Z$EEB?1xZ(,t=]Ӂ R%_GuWuuMU ED4gD4-D4 D4uUBRUBS E؍e[^_EUWVS] ;]EU}v]EQ%=X=HEA %=H w3=(t=tv];]|Ee[^_=hWW=XuԋEvFRuSPUE uuu‰ƋE;Eű}OPWCSVUE]eBu]ov=x!u%Ɖu%=u%Ɖu%=uEFRuSPUE uuu‰ƋE;EuC}]O]] 9t!]PWuVڋEu؋]QWuP=0E]=p=xnEFRuSPUE9 uuu‰ƋE!;Eu̍CEU@%|PWuVUE9tAG_]UP%Nj%=uOPWuVUE9uPWuVU萋E,]uA%EN]E+C ƋSt]eE]PE+C Dt ]8QWSVUEuUWVS\E؉UЋE U9EE}cM؃8M}؋EQ%=0wZ=we=EMEE9E|U9UEuEЉE܋E܍e[^_É=)ws=`u벉= =(uM9Mz]؉ȃ8S+EPuЍEPMOƒE҉EtBMЃ}-v=:=*}؋_;]';]UЊ< Ёf RW%_}ЋM9yGЁE R%}_5}9}ttދ]8q +ESPuЍEP?NƒE҉EtB$]MЃt&*3F8E7~<ډEuH Sƒpu#44MtEEvEMv]}%=ufEЋ}9Gu}ЋU9z. $AډPhjSE}؋G;EU؋Z;]v }Ѐ ;EEЊ@ЁE  R%}_;]wMЊӁ R%b_Y_t9]t1Ӂ Rq%_t3с R9% _GGEU<tE؉EԋUX9ۋu}M9MPSuuNU puu8uuuuMU EEE؃ uM؋U9J)11ۃ EEVEBPE Z$HEBB1xZ(/t=]Ӂ R%_GuWuuMU ED4gD4-D4 D4uPhjuE%UBFUBEԍe[^_EUWVS,] ;]EUU8EЉE[v=HEA %=H=(=Sv];]u]EQ%=Xv=xuu%Ɖu%=iu%Ɖu%=uEEFVuSPU܋E uuu‰ƋE;EuC}]O]܉] 9t!]ԉQWuVڋEu؋]RWuP=h=XEvFRuSPU܋El uuu‰ƋET;Eű}OPWCSVU܋E]5u܋];]E܍e[^_=0iEu+EPu܍EPO=¹t@MM/=p=xEFVuSPU܋E uuu‰ƋE;Eu̍CE؋U@%|QWuVU܋EQ9tAG_]؋UP%Nj%=uOQWuVU܋E9uRWuVU܋EuQA%E]E+C ƋStEP]E+C Dt QhjuMPWSVU܋ECu%Eu+EPu܍EP;¹Q@CShju뎐UWVSEH 8eU]u9Ete[^_ÐF u=`d~GFFt Dž UM  u r9sI,ɉhN4dv8WG R%uJ_tA$t6с RX% _ vt; R% _ G < 9 (RpS4 (pSS$(m$9<Dž$ G@WGt DžxMu 1} y9v,hO4w8GE F9*v,hO4w8GSjS(à (pS@98DžxlA 9<| (tN9ɉދu x11| i| $t'~%SWS(N܃t>||S R%uJ|_tA t6с Rp%_v|t;| R/%|_G<9(RpSL (pS4S (Ã} 1ыE LDžvtB$8Ё R%_SWS(Ãl@$l r$lA1xlp(D4WtB GЁ R=%_ D4}SWS(ÃtA1xtp(t@tr$VD4X,,`D4D4,y,>t@BӁ R%_DžDž LVV(脼ƃD4 (B1Z((BDžZ$rCD46D4@1< uGD@v@@P(@<)pRPP(t@wPhjplo0 D~ L詒1&QhjpDž$n 0 (;p@v 7v0DD DF(;p@v̋rDu - AH~ D ~D j@S(`@9PCP(jS@(tt(4@))Ӊދ}O_w ; M30DADAD A F;(;p@vAAA ŋU 1эLD4}Dž,(.,(Džax@<;Fu1 u"@Duv@B@P(t̃0(;p@v 60DD DF(;p@v̋qDu - FH~ D~D j@S(I`@9JPCP(!jS@(tt(4@))ӉƉߋMqYy ";M30DADAD A F;(;p@vAAA šD4D4r9ʉs\h9s68u܋)ȋV<9|lj9ҋhu9Y9ʉsZh9s68u܋)ȋV<9|lj9ҋhu9d@Gu1`u!@Du@B@P(起t̃#0(;p@v 60DD DF(;p@v̋qDu -FH~ D[~Dj@S(}`@9PCP(袶jS@(tt(4@))ӉƉߋMqYy ;M30DADAD A F;(;p@vAAA šD4'@)pPRPJ¹t@+@K+h9d P0qE 1} ыU Lx P(p+PP¹t@1 (@@ Pn0 Le xD@G20xDd PS+h9d P豇DFH(@@ P肇0*zD@Dž$ P&DFHR@GQ@S(6DDž (@@ P蟆0 !zD9ʉsZh9s68u܋)ȋV<9|lj9ҋhu9F{Q@S(' P訅DFHDž P藅wQ@S(褴r+h9}QdAPhjpPhjp[뭋0ucDuK L݄W 0„G0u:Dt̃ P뾃 P藄맃 P艄돃 0 Pm;h;hU;hUWVS E"ЃU3B8e[^_ÐEP,1ۃ~ @(94ttC9EP41ۃ~@0949t}hC9E@$1ۃE~]UR U V׸!uMC9]~9M GDH Spw9sP8) j GH G@({B9B=|BE܅~Ã+*w9FC<v6?t1{/B9$B= /w9GE؋E9EO9`:|WBMG +EPGP+EUPUGEXZjv?{Ƌ;Gs 8,WSVU؉Tw9x:}YB9bx}u ,v Ã+vu؋G+E@PHVG+EغP$uG+E@Px)UUUE j(h7u؋G+E@PHG+E؉$P [^u؋G+E@PXG+E؉$`P@=wSVU؉w9 8w9Et{e[^_Ãu؋G+E@PxG+E؉$4G+EPU؉tjWJjSjG+EPU3G+EPe[^_Bh#9Ɖf UUWVSUƋ@EEEN19:^9B9s ;E5:B\)6.E*dJ‰QN9s*eB9s \$t1E9ʋFEY!E9EQe[^_Ð{ugXЋDH S8IXT BtH$@)F@D"v9ʉ):B)}ރ[(F@@FX@  ShN9s$B9s :\ j)\ FDH SpDN9FB9;:\2z)(B;EMF@t>  j(~M |ME F jjFH F@(FEE9Epe[^_Àz{ZNjN9s 8,5SWUN9aB9s :\n9IB9s :\BFD  BjFH F@$FENBuF+E@PHF+E$PJXZuF+E@PXF+E$`NI .z}* NP9ʉs@=w u 9lj v 돀z) z}vUWVSQUBƸ11ҋ%=`=%=pt\w=0tw1=t=(uLB@=t9w'=xtD=u29~듐=Xt-=h=t =u kZ[^_É=tv4%=`t=t=u%=`t=uă뗍v9~׋UZ[^_ÉUWVSLE$t  "1} эq jL#dú UD@ EPcEE } 7|]xEE1DD@ ~C C KC C$C(C,C0C4C8C<C@CDxjEHCU|9xrxxux|9xrڃ jxqUBC^_SRubCEX=`~5.׉2DžDžC0= ==9K<}%K<S0DžDž%=XZ=xP=ht1=`^9S<S<C0YUB;E rQ+u tK CHEC@UBZ eC e[^_É <7%=`t=t=uF%=`=u9S<|kK EK<~-C8C4}11DžK=Pt(%=HuF;~N=0[=(n9C<C<C0v== ub+}+ x}{AxxMK<oC0UC<C0Mp jxlr=2=p-l==H䋕S0CPPhP<9K<K<@S0 hr]DC4S4C<A~s<1)C, 8S4FGs<9UC< P\C< P\C8DžK<& +S8HAK<;؉OΉp94~9S,28:t(+{8A9~Љ4K<9N륋C0Q AP\C,PhjP荪Ku4P4PCх ~GGVS s5~U h7jjhXh7h7uJ~ u 7t7u 7<É7<ۋ7U҉师7u4ÐUWUWU1EEDž|hIQR|P}WjEP< x%uuu|u PW|}ÐUWVSMɋE EODžd}lj+EPuRu?E8/t)Ɖ1э|19vFO9rEe[^_Ív GDž`hNwX-\Xp.XEBPhPXUElhZDžtURX@XUE9lx|1p;\rE`㉝`SXˊXJÉp\9sp.@.@ pXEUR0Wp/@p|19Uv u腛Ex.ux tۋ@%=.tQUB@PЃpPWXZEPXV̮뀋x9h uEu蜮u葮ۉ‰udҋEt uY XKG1e[^_Ív|9Ux9E7 DždhAKEU1} u-KN@98d+UѥdTdup)EdTPS)PVÉVEtP+Mu9sN/EPRP)VEPU[upEDžt9hN/)PWuVU[XJ諬1[虬"1I臬"tQBUWS]tH1 эAQ7I7tKSP7~1e[_á7u77ؐ PSI UWVSu }Mt2A:u8t,u@t:t.9uA9@t[^_1[^_Ð1ۄt@A8tĄt:u[^_ÉUVSu t4>Mt,t+BA8tItv<:t A<|tۊu[^Ê<|t<:tu[1^ÍvU7u%7771Ív PS77771UWVS j=u uà ۸ jdG_Ed:tItE^td\twCAMu)FdPW %Ed: 0uvA)}XE8؍e[^_C<:tՄtDž։9svB F;r΋)SP)Z409rvPhRu oSB Nv;v ~\F<#uRCZYEt1G?:u_GPu_uuPZY7 PB&57Pv7pDžDžj=hZqP Êt C<:uCJ؃ )ȉjE@PRu t!@tC<:u+)lj{:t:G+)9ȉx) ))‰|xSP)~O|40xP+PSL WL_@CGNU')эA9Ҹu1e[^_1Ʌ^1= ?e[^_ËE DžR u e[^_à u 2ODžCC:Dž#0ht5hS$jjjS Pjj2NE Dž u Nt u jN >uA u` >QR{ v u M u M됃 >뎃 >XuDž1IjRQR t(H8uI@H뱃 Sx=Dž R @S>=81Ӊ$< SPNjXQ{x0;0s S<DžF V<vUWVS7} u=7 757t7P57:DЁ RHq%@1|3\77x7j7Í؊t:\t @FuP57K~=D뱐D4%@^:Q#D 761|3\7X775X  5777B7Z-hrJ7e[^_à PÃtnh0멡7X  577nto\:F|t:t @Au jjRjWEÍ@ vCe[^_1C PsÃ1Л'vUVSu] ] u[^jUjjujEu UÐUVSuU} ЋAu")čD$Ãt;E VC AuP5SuEe[^ UVSuU} ЋAu")čD$Ãt7E VC AuV2SuQEe[^聚 U 5u u!EÉUWVSj/uDž|xE81} у)̍D$eu PkhS:1}DžѾyD>=Wjhz5jF VjF jh5jqFhS`n| e[^_Ð11q}эyD>=PSVSrA W\3SƄ5/uYAEƄ8Q5ux4Ch?w,$5ExDž@ /00PxI@8 Dž| U1: @UuB&)čD$Ã_xCPRCPEP`@ 5Sh_LBz{ jk0^Uh耵tRu PuÉRu 5PuUVSuU} ЋAu")čD$Ãt7E VC AuSuYe[^豖 UEPj #Ð8U҉7u7ÍvU h7j:j:hJ4h8h8uBbUWVS E8ete[^_ËX t;EuCu}C tRK117C t0Q3ZC t(D3XC t G63@9{˃ s 3C,uAC4u'C8uA]e[^_2 P2r -P2ƃ P2뱃 P2뱐UWVS,4u:"u8th8u}5l1PfX؉ZfDŽ)/uPfY_hIPDŽ /LC_DŽ CTYPfDŽ EAp PAs S˃˃\XTPLܠ8A,A(ރ.88888޿88»O 0t h1e[^_É8`8\8X8T8P8L밃 _=8t+8 58/8`8\8X8Tu8P8h8L8c Jҳؑ̑OuL SH  a p0뫃 L .  sUWVSE]DžlP nCP81҅-E=7 2 P .1҅D裐 S4菐#SjuDHDEDE8 8|DD4 ȉ4 D( ʉ( D, ɉX, D0 ˉ0 1DD(ȉD((ȉ((ȉ(F~Nj||xR4}9||tI| u9||[ ]9ىp|1x SʋCȅ SCuB)ʉh|B<lЋU9׉|ah ȉJFD 9( , X1X~.tȉBȉBBȉBFD 9, ؋D0 1~0pȉBȉBBȉBDF0 9֋D4 |:;EfD, ( ȋl T P$+EgE}T RuneGMagiL DǃE@0D4 MP ( 4 , T< 0 }D 1DD(}D4(4(4F~ʋL d8 d@ TЉH ЉL pI1|dDžPDžLHPx ;HT;PD;HC)ʉC\|`|ً]L HG ЉL \!Ld`D KFLHP U94 ;< T]1T@ ~211ɋt;D;DD;DFE 9< ҋMD 1H ~211ɋp;D;DD;DFE 9D WUP |L Gw^Do(MP u ǁL ]4 u ǃ8 u< u dž@ }D u LJH Ue[^_à V'荊O1ҍe[^_SZ D'Z D'E1҉뺋H@ AUE\LP\X0`1ÐUU1tuÍvUWVS }uU ]۹t)t1 t [^_É Bv w*vztH t [^_Ét [^ȉ_ú1^V [^_OvUWVS Eɋ]} u?۸t.FVv CJ [^_l搐UVSEu] MUtEUM] u[ T^9EUM] u[ T^UWVS E Eu}EtFOt0uVSu\tXtZt`)EEOuЋU Ee[^_Í}vt)EuVSW\tЅuNjU Í3U 붋E 뫐UE\$P X`1ÐUU1tuÍvUWVS UuM }tnt(u1Ё~ABtZt1҅ƒ [^_ÍvtZ ÅtE [^_É1덉vBt Åt7V%lU]UEMU u(ɸt fx ÉQ…ɸÐUE\ĖPԗX`1ÐUU1tuÍvUWVS }M u`)9w_9vVSQD:PLqE؃Ot(Wv0t,vAvZB~vRBЃ w[ уW}w; уvnWBЃ w% EVv EB耂VJE$9USPE]M ۸t_tS}w}ЍBC wjՍC}wYэBC wKY[u8tGՍ}w%C?~tt Y[É_VY[à Y[;ڐUWVS EL ҸOӍv< t< uC j$AE1vQjEPSPU9tv҉tp;E~E< t< uCvRjEPSPDE9t=t7v< t< uCvG~PjEPSQPF E9tu VOe[^_ËEL ǀP $E`\xPX\e[^1_ۺ u둍vUU1tRuÉUWVS EPҋ] }xo;`gHx`[tZ҉]u[ ыL 1E4wNO C C$ [^_ÉME֋UBt| CB9v9r9L B !uE LtU E@1t+Ey21@!i~VEEE])։XpU]SsUWVS E@]} ۸tX L P !!9Pt9Pt?9Ptk9PtTL xWv ȀCJ [^_Ë8 CJًx CW΀xL}뭐UE\<P8X `1ÐUU1tuÍvUWVS UuM }tnt(u1Ё^ABtZt1҅ƒ [^_ÍvtZ ÅtE [^_É1덉vBt Åt|V |lU]UEMU u(ɸt fx ÉQ{ɸÐUVSEu] MUtEUM] u[ L^9EUM] u[ L^UWVSE 0E}DžTEtLOtFE9`sOSu6uP]T)]uvU 2Te[^_ÐQhuhPf u6XRPt[;ERPXPufxPu6XRPtt,TOubE 0YE TDAU 22PhhRuf UE\PXTLئ`1ÐUU1tRuÉUWVS EPu Z}tu#€uutE1 [^_ËUZuq%=%=&%=$%==EE@EUߋ %uj? FCE9v9r9;M|F]tEUB [^1_øE!F|xV [^_þEEE뵰E 륰E땰Ew뎋E)߉xUPMvUWVS E 8E]uEtLtHE@~>?~9&wVe[^_Ív~"U)EENtEd:pd:UP d:x4:,d:d:@4:d:4:d:uH9Cv`:9C  ]t ue[^_É%EfS ECEHy}eEMeDEc :fK EADfK ҡ,:f7f;Kto‹9uC +$:,:s99p suC;Ed:d:SPd:Cd:Bd:PuhVD\fS D+PjWV*e>Ed:)d:PWhV[9s t5;Et%3urd:d:Xd:a{sSMK S;HE@ C QSX8 j[ ;`:HCC H SP C `:S +$:;(:,:C;(:vB(:h9e[^_e[^_ :9ܸ 9ո79΋t%t{9ysȅt t9xr N9둸h9느UWVSÁ4:1Et(J9s tJ9rz)ىBJ  +5$:,:,:A9r5:u"Utd:u'Ed:e[^_ QShWYɋEe[^_Ë ɋztBABUS jg %E U41;us҉(` V 1҅u߉ +$:0:H9Љ (:5`:sUUWjjjh%j EPj 1҃Eu 0:5,:mEU0:,:,:uP U-UWVSǡH:P19s(X:ttPWjS-Xe[^_É,:9s΁wHEEuEuU܉ыZt1ۺCt1ЉUfB HffB u2E,:4u+M܋E܍\ˀH ::M܋A؉냸EMEU9Ћ]MfCufs MfC fCu1҉sED E)ЃwщЃ tB;U|9]m 5$:)u,:U,:M,:,:iE>Eb1R@PhU܋BPV[4E1҅rMufC fEfKfM܉уЉ!LE)EufMfMBыUfSfMfK UWVS5ljUE"Eh::5 ::uY!;$:,T:EH: +$: :P;(:9?,:ssF%tC ӭttttD;L:u9uw;E1(Et'Ett;]PSWVTyvhH:h85h:P"$@CvFT\:X:t :Pjjjhjhj,: @1 j/ $:H0:u H H{d:f|T: :ut \:ɻM}M]Ej PZ: h:+Zv h:ZEh::vH{ fXe[^1_Rj?]Sh~9RDt1ۋ \: :=P:tEu ؍e[^_ø!%Ette %HC-HCCX:CP:CT:C\:yCL:iC:YC:IC:9CX:)CP:CT: C\:CL:C:C:C:N911Ej h:W h:: j h9ÃEEEEj PW?f19Y9p:l*8u8t L:]9]T;EE:uP+]ShMP Ov9 9Ew79Su:tP+]ShU-vUU1E9vUE1E9vUEU E9D$9Lv LD$̀rD$PZUu ujuuuu ujh[VÐL$PtD$̀r P PPaYUVSƋ]t6CB 3ZsXs$Npe[^ÉCFlUWVSEplEP1&#tE9F~vue[^_à ^VEgˍvUU;t,~/;t =tQRh;h:~&:Ív-?ڍvUWVS,EX`ۉuMAl1\P9}щNj@uBGEo j- u1 uG uGte jHGUЉW E܉G Rwu# uwuUBlGBpzlUBp j 7v WjFUSR=`;t`;1҉Ћ]Ívhh`;> tUSPuE ɉu-؋]É h:Et ɉtӃ h:؃]ÐUWVS<}E8u U :MEUMvEPuuwM MU}ȹUUċB`1HTVSEPhEPhjr` tUh <Ep` E뀸e[^_Ë u h:ucZtJEPh裪u렃 h:F댃 h:EԋU @P M U2PujMME̋U@$M U2Pu5MMCvUWVSLE E8E} U :uM9E UM$EURuMMMMċU }ȹUUUUB`1HTVSEPhEPh`jr` tnh4<Ep` Emme[^_à h:JJ u҃ h:Tu*Zt8EPhju닃 h: tEԋU @PM U2PuCMME̋U$@$M  U$2PuM M$UUWVS u:1tSZw h:} h:눃 h:봐UWVSEE8} E 85FvEPuEEE EEEUB`1H5TWVEPhXEPhj r` taho<Ep` Eme[^_Ëu h:Ћ u뿃 h:uuKZuU܋EEPhX胤um h:#V h:UWVS}E8u E 8vEPuAuEEE EEEUB`1H5TWVEPhEPhj r` tZh<Ep`vEze[^_Ë u h: uZtJEPhu렃 h:댃 h:~ uU롐UWVSEt8u e[^_Ëtr h:']5TUEEB`1HWVEPhEPh@j r` tch<Ep`0EEURPyt u e[^_à h:uZuUE u ؍e[^_à h:yUEw $>vRPh<h;;ø<ø<ø=ø<ø<ø=ø5=ø,>øP>øp>øS=øc=ø>ø>øv=ø=ø-?ÐUSP]uW=`;t>t`;`;ZtJ u1]Ð h:w1Eu봉 h:#뗉`;vu ]à h:!䐐UU hBPRu赥UWVS1}ȃ,EPu Eȅ]̃E؃ @P uPu܉E0E@$f uPuԉEY_EPh芟XZ5tuSuVj|ǃE V*$"7e[^_ÃEPh-E ׃EPhE e[^1_ÃtEPhE 떐U`<tÍv hs`<ÐUULAwBÍvUWVS,}.M A1E؉]ԋWPWRu h~ hufd u>FRPuu$S1эA)ƋE؃w$C])빍v uuhfAVSc EƀEԍe[^_Ív uuhB΋E1wvB:u@t BKu[^ÐUu ukÉUu uKÉU j@u uaU j@u uAU j@u u!UhE PPu聞UhE PPuYUVS] SuV;1҅u e[^ÐCPV;1҅tCPV1҅tʃC PV/1҃뱍vUVS] SuV1҅u e[^ÐCPV1҅tCPV1҃ǐUVS] uSVs1҅u e[^ÐCPVs1҅e[^UVS] SuV1҅u e[^ÐCPV1҅tCPV1҅tʃCPV1҃뱍vUVS] uSV{1҅u e[^ÐCPV#1҅e[^UVS] SuV31҅u e[^ÐCPV1҅tC PV1҃ǐUVS] uSV1҅u e[^ÐCPV;1҅e[^UVS] uSV1҅u e[^ÐCPV迖1҅e[^UVS] uSVS1҅t t$Ht e[^ÃCPV1҅tᐍe[^ÉUVS] uSV?1҅u e[^ÐCPV1҅e[^UVS] uSV 1҅u e[^Ðh@jCPVi1҅e[^UVS] uSV_1҅u e[^Ðh@jCPVWi1҅e[^Uu u蓙ÉUVS] uSV?1҅u e[^ÐCPV1҅e[^Uu u+ÉUVSu] RjSV1҅u e[^ÐPjCPV1҅e[^UVS] SuV1҅t tt&e[^ÃCPVx1҅tڃCPVGUVS] SuV#1҅u e[^ÐCPV#1҅tC PV1҃ǐUu u ÉUu uÉUVS] SuV1҅tt'wHt?1ҍe[^ÍvuCPV CPV1҅tʺÃCPVJUVS] SuVS1҅tt'wHt?1ҍe[^ÍvuCPV CPVG1҅tʺÃCPVUVSLE E؍EP]ZYShEuuMPEPVStxUe[^UWVS,ÉUEE E̡* u1E}_f{ua=ugA( PuuSg"ffC5]EEju虯 uuuuԍEPuu tr} uAu e[^_É hA[ hAGv hAv} uϭu 1e[^_à hA1䐃 u6Ẽ@tcE hAvQ@jjSPE̋U  u1cBaA A6C2UShgAu$u uuEU à 1tPESPjSR؋]ÐUh`"h`"uuuuu uÍvUWVS}u]ME.>M]EU }u [^_Us$vUWVS8} WÉUE.td1}عEPSE*XZhSUXuujVS%VtNG4f@fGe[^_à P5Eu V襫 WhCj蝯1EЅt Sm1QWhCՐUMEU ME .>UMEU ME gAU/=vUhgAEh`"`"ÐU vU1W}E@f@o@_1ÉUhgAu$u uuuuu uÉU hgAuuuuu uUWVS EEE0gA] t e[^1_th<CE EEe[^_ 5d<ƒ֍vUSP]$t3h< hgAhu uuuuu u3]Ðd<u7uEhhd<Ht hAS5d<| hAd<u렉UWVSUҋ} ut$PjjjhSPRr tVjWugLe[^_ÍvVSWuQLe[^_ÐUWVS ]E;u(= =2CEe[^_Ð j tŃ jjFtVEx^^Fjuuuu VM1E v4$Ee[^_à V~JWjjjUKM1}I ыMxQRSPvS< <1CUX PGUWVSDž\`v `R;C t޿C uͅ S0dVjjjxP jhuzVƅyg1IxQjjxRd> jjDžhjDžljptXRjjxRP{thdxA uu hPSdq \ `\e[^_à pVѐU7UWVSSVuu u,sCCC:e[^_Ë<u>hh<϶t hA^v 5<芶Ã3QEI$9C;E 9C /E9C#uCPH VP-EEPCPEPjsRC PEPjsRE C EC1ы}IwщIEEC@uuu$u uuus pe[^_É BRP hA蹵<eKuCPMZYVP>WWjju; h4zt/t<C]P5<苶 C~UWVS<5<^7GEjEċE jEȍF0PSEEYXEPS` CSPF`C@2jh`"v,S<t(udG<uue[^_Ív<t <<<<<t hAG<t hA߳vv hA藳jdjPtqp<tOF,5< hAS SЃ hI|jh`"p<똡u1 hA1vUWVS\E<sHS0ULFjVPC0 Fs`uVP U UUFRVPUP VPRuVU FVP$+)Y_FjVP Eġ$Eȡ(E̋UEEԉUXZ}WV6EPWEEUP WPR Ee[^_Íe[^_à hA] hAsC0EhAhhHIhiI50fB.0Q.$Pu U$U u(h@hu$u uuuuu u@ÐUÉUVSpPËt P袬f{uTF Pu: VC@uSC4u`C$umC(uz S轜e[^É FP҃븉 sP虜C@fCt PC4t PkC$t PWC(t PC S7e[^USP]t S+؋]hJhhJhJYˍvU1ÐUSEPP1ҋM ]t t t1[ÍvB[ÍvBUWVSE}EPP0U䋂]ufCfCQhjS賥t;tACtRWu V~'jEP e[^_8tUBPe[^_SWu V躪|=tjEP账hJhhJh%JX+18#uqUWVSE} E@PE܋u{u~!vPVWE0 x)߅Ee[^_Ív8#u+E܋t9tσjEPE+EH~E밃jEPťohJhhJh-JW;USS]t,SP 1u]à BP]hJhAhJh6J;W붉UWVS ]ۋ} tisP^tQjVSc1҅t' SXZWSu1ҍe[^_ÐFe[^_hAMhUhJhBJVvhJhThJhBJvVQUWVS ]ۋ} utu CPEe[^_hJhphJhNJ&VːUWVS ]ۋ} utCPP@u Ue[^_hJh~hJh]JUĉUVuS] t5tOFP@p@SVXZjVe[^hJhhJhmJoUhAMhhJhmJQUUWVS,ljUj`jQj`jPXZhjhhVuuЍ@P'C ^PFH "<tTF<F < ]fF>SW V e[^_É<< <<!<!<P!<\<F<F < f hA]fF>SWUVEPS< uuF(& hAkvhJhhJhzJgS* hJd h Kd4$T1UWVSu\ uU Ã1DžddWPhWVB>hC0C,hPj`‰C4hQPWRx dDždPWVEhCUWVS,uE FPhvPRWDž6Zyl8tz8tp8*PhhS jjSPRWDž6x pYXjF@RWPF늉U单x Hu ERxFUWVS E ~\Nju0ufʸ!u6t%fFftO uà 6}uލve[^_à hAW܉ hA[UEU tHt1Ë1~ÉɸÐUVS] SuV<1҅u e[^ÐCPV;1҅tQjCPV@1҅tRjC PV@1҅tPjCPV@1҃뛐UWVS }?] E1;EEPW=tTEt`t@Ehp:jSW t,t1EE]1;EEPW=ue[^_Ðze[^_ÐUCvUVSPj] SuV?1҅u e[^ÐPjCPV?1҅tCPV:1҅tPjC PV?1҅tPjCPV?1҃뛐UWVS }?] E1;EEPW<tTEt`t@Eh;jSW t,t1EE]1;EEPWD<ue[^_Ðze[^_ÐUWVS]Cj Su PʋȉFȉFȉA CSPY_~ WSE81҅u e[^_Ð CSPEXZvSV1҅tփ CSPE+EF ^XCuSPZYWS71҅tCuSP둃VS81҅zFPS81҅`FPS81҅FUVSu] PjSV=u e[1^ÍvCPV 7tCE uK e[^UVS] uSV+81҅u e[^Ð3CPCPV;e[‰^ÐUWVS }u V E(N,ʃ(GRWPڃȉڋFȉEFڋFȉE~ڃF ȉڃFȉڋFȉFEڋFȉUBȉMAN$MڃF$ȉڋAȉAE!Ht)VW6EEe[^_ÉGj WPt‹ȉȅFEuȃFEuȉF ȉFȉFFEȉFCUȅBts=E^Ru#PjeMAE4MAWPWRPUrSrN$MGjWPȉF$UCȉBMA=EYu&Pj賤UBEBWPWRREpSpRFPW7(FFPW4~F PW4FPWr4FPWZ4FPWF$E }e[^_h3MjAhPMh'M4h@MjBhPMh'M4VPqSWPqS:UBÃPEppW6EuWe6F,PW2QMqqW96EwUWVSL}EE0EfGoP5xM5tMjhWġ þt_E EȋEE̋EEЋEE؋EE܋E0EE$EE EċSu,u(EPhEEPhpDjSƋCSPfGe[^_hMj`hMh|M)3?hMj_hMh|M 3vUWVS ]ۋu VS[1u 1ҍe[^_ÃFPS;1tFPS'1t̃ CSPY_~ WSE11҅t CSPEXZvSV1҅t CSPE+EF ^XCuSPZYWS01҅XCuSPAvh3MhhMhM1hMhhMhM1UVSu] tOtihujEEPVu 1e[^ÃCPV0tEsVS h3MhhMhMN1hMhhMhM01vUVSu] t]ttSV/u e[1^ÍvCPVo/tCPV[/t̍C E ue[^@/h3Mj=hNhN0h Nj>hNhN0nUWVS,U]t1t e[^_Ð gAt.>Pǃ1tԃ PPh:Nj ]SSWt)PWu u4$r<$Je[^_à WJ1mUWVShgA} E1tPSWuYE$bJ h.>tQPWu*Ɖ$4J1uUte[^_ÐUEtPEPjjuEP} uUҰuUE EU1ÐUWVS E ۋ}utSWU?t.e[^_Ët4tSWU?uӐ SpE 뻃Vj2ÃE ۉtPVjS끃 hHN ?1UVS] 1;EEuPV/1҅tMue[^uuSVe[‰^U1ÐUWVS } ]GC GCG CS BDs C@LtJ~~tU =90tl@uu4e[^_Ív} ]e[^_j} ]e[^_` hAGu뺅u} ]e[^_$WSP҉u1؍e[^_É} ]e[^_ hAt@ hAtUSP]vVuR=9tkRuj j5tyE B=Bۉ=u1]à hA&t뜃 hADt1աu ]à hAtu ]à hAsUWVS =fDžE@U ZȃtHe[^_Ë3΁w䋅GPVwSxG0FËGG CGM Y(EȃE̋CEЋ>fRf?fn)¡=EȋỦE؉U܋ AEEЃ E䍅PjjuVDžDž H=E؉ȉEȉMɉJE9ЉheNhj袘 hjP=腺XZhj1ң =v =fPB?~Bvjj}W=t)ЋtD ?B')Ћt;xPh~NhNqfSwte1VэPphN vhNhNqhN狵v=?ÉtDžddd?9uA9CuҋSt19ɉ֋uC9(=1ffDhNhN7p;JijPnu+9Љt]|ihNhNohNhNor,= =@~;9}jjBȉE؋ȉE܍EP}HE؋U܉ỦEȋU EȋZ(ẼEЃMA@Du QF(BHA+^(XL=)4VF =fff9f =fXf XCf;u狍AyFQ1׹Qj\Fpv"QVF~ tf@1FBVAQ F A1h OhNm Pg)hWNhNmVC9$=dhO뙐UWVS EP?}wm)Ѝ4=\fSft^1ft2U CUCUCDSJye[^_Ãh0OhNl1e[^_à WEPEPEPUr} uAhAOhNl1fC뺃j&jzÃ=\fC5hQOhNSlEfU EfCUEfCUU fDSJy#UWVS$hhdOYuƃ1RVhPuw<#t<+h{Pʲ[hsOP訲8tڃuSoWu '4$˶e[^_É Pms2DžPP}1IQuhxOo u 苘4$/XcSPhdOhO58 sRVhPVt V̵e[^1_ÍPhdOhO먍vUVSu 1҅tHhSu1҅t-j:S1҅tQj0SVȇF0ve[^ÍvU 0=ɋUE tE UtUSP]tu]]b]Ív BRP]]bvUWVS<h@=Mt/Uq9B+ PPR^91DžPh@J S=tL q CuЋx, SG=uu2t(hPK! S911oBp Ajjjqh" DžDžQPPj1R PPj1R[e[^_áD=u<hVhD=e5t hABf 5D=qen9BBnA P PR$jjph  "PRPj 0RvPhP\i hAe=D=Rjjk j _1rtW@=o BRP1e[^_Ë S[61ރ5D=e뜃 BRP1UWVS ÉUtuCv tt uvz1t'1BWVuu uuSR e[^_Ív <=tuRfl$<=MPQ@Ae[^_Ð8=PuP#l$8=뻡4=,jPl$4=PMQ랍vUEPhhruq tEuUME H1҉UE Phdqutsst }҃JÐU uh!jt9ÍvUS(E] ESEEPhhrEPUqtE؅u UE܉S1҉Ћ]ÉUS(E] ESEEPhhrEPUqtE؅u UE܉S1҉Ћ]ÉUS8EE؋E P]E܉USEEPhhrEPUr'tEȅu UЋẺS1҉Ћ]US8EE؋E P]E܉USEEPhhrEPUrtEȅu UЋẺS1҉Ћ]UWStjhj]S臩 Shsjt et Etve[1_Ív}t} e[_ÉUE Phdquq t}҉ÐUWVS ]׉u Uuu wm1BABABABABABABABH=t5QRSWЃt1҃e[^_Ðe[^_ÐPRSWWƐUMȃxx=t$thA|=Pc<ͅ8<zDž DžDžPDžT04HjP{Bx PFBDžu E4džBRP[_@ȉE DPDPRUP PRuU BRP j6謌 ;48u<= Eġ$Eȡ(E̋EEԍUU؋0P(v9t4)щ+T((҉W G $RjxP DžF@[jW(@,(+H+LP(P89ډT09c'=?BB-@BыS4?BA04<94ً<)щ+T(|A((@Bm1GDž(_@vjjj6HA y^8tT8#kt9NjS]S諉XZ}WS補EgEЅ\džzuC~9UP WPR t";<džx P{AdžAx= RjhPj8e[^_Ð49T~B@BPCVF P hA7E U$ hA6w8i409|= P5e[^_à hA{6 hA66PFP6<x8dž^Edž<謒dž8PW蚛dždžU]ċP SPRudždžEȅSPwUEPM AAUWVS8E]ȋpSHl EPSjY6uzvx=t& thA|=P3͐uWU áu[PjEPj5=ue[^_à hA@4t|= Pd3e[^_à hA:4듐UÍvU‹@1=wB|=@B~ÍvUWVS8E]ȋ} pSk EPSj&5usx=t%thA|=P2͐u8tH M$Q hA3멃 hA;3uFx=PjURjF4u e[^_Ë|= P1Fu%x==SjMQ뒃 hAR2ɋx= uRjEPj3u 1e[^_Ë|= P/11݃ hA1x= hA1 hA1l hA1? hA1EeMQDMȉ0MHȉ@UȉMȉB@ ԋMȉB EPx=PjURjU~EvMQUMFAA8M(MQRFPuyʋU hA/- hA/WRMqFPxUBUWVS8Ep]ȋ>Sf URSj09x=tC t1 thA|=Pi.x=uщFx P8Pul V)UB t 8UBt 8 u(uPPjEPj/5ue[^_à P҃냡|= P-e[^_à hA\.랃 W7! hA . P4(= P#(?UWVSu F^ ~DžT)DžPDžXDžd^d~f?uc `P\PPTuDž``3 xH jXPPTus3 xRdVul3f?t ڍe[^_Ð跉ۋ8h9tPdPVuF5y膉8빉DžTDžPDžXDžddSPhVuDžd4@\QdjViup.) j\PPTuT2 9UUVuS] SVgu 1ҍe[^ÐPhCPVt݃CPV$tɃC PVthtjjCPCPVo u덐h3Mj@hQhQRUhMjAhQhQ4?U1ÐUW}fDžfDž1hX0jlIP DžDDž(Dž<DžXDž\Dž`DždDžhs EPu P}ÐUhph0?)ÐUVSáu=1ҍe[^Ív)uhh=m*uЃ 50?6)1҅ujjP tP50?*u끃 3#gvUhh4?(ÐUVSu=1ҍe[^É(uhh=)uу 54?j(1҅ujjO tP54?.*u낃 3"hvUh h8?(ÐU VSu=1ҍe[^É(uhh>(uу 58?'1҅uh jN tP58?_)u| 3"bUhܫh1ҍe[^ÉC'uhh(?(uу 5]čMS E ЈEȋUjRQ3P  Eċ@ uuWuuŀ E@]ă{ CEɍMEgЋEE3 PPEăj+렍C |U#E@]ċC]ă{ ~ EKUUCE;EvE"CRPuuhEċ@ uuuuńƃ QjuEPt>w@M]ĉECELvUWVS u] 9ދ}sY:tB9r ɸu:t0OtFB9s :t B9r u#BB9sE;D@e[^_Ê뱍e[^_ÃVu0de[^_ÉUWVSQUM u9ʉs :tB9rEEZ[^_É9sB9ʉVs:t B9s؀:u9sBZ9EwNjڍ[9ˉFEwF C9Ew‰Fs:t B9s:u9xB9ʉVl:t B9r[9SB9ʉVG:t B9r890B9ʉV $:t B9r9 BB9E:@9F(^~$EUWVS u] 9ދ}s[:tB9r ɸu<t2OtHB9s :t B9r u%BB9s9ED@e[^_Ê믍e[^_ÃVu6be[^_UEVU S9Ћ]s 8t@9r[^Ív9s@9ЉCs8t @9s܀8u9s@H9ѾwˋȉCȃ9wȉC ȃ9w9щCKs9t v@9s8u9s@9ЉCt8t @9rc9[@9ЉCO8t @9r@98@9ЉC ,8t @9r9@H9Ѿ ȉC$ȃ9fȉC(UvUEu EÉUS]W]]HUEzt ÍvEǀE EǀɸÉUWpXwXwXw  1}ÐUWS׋҉u jjhXjj]j ‰tB1IM]EEEjPEPRR1@t e[_ve[_UWS1t,jEPэEIPRM]R e[_ÐUWVSlT }E|]U Hyf)u$u uuuh\Th;RhsRMQEP0upEMP1|EtKv u$u uuh\ThFRhsREPEP0te[^‰_Ðu$u uuuh\Th0RhsRURHe[^_ËEx@(DžpMEPt1pMQt1pEPt1pMQt1pEP t1p pttMpcEMQ2EEPEMQEEPEUB tEEuM <KU2S)SPV59؍tEUr)QSPV59؍tEUr)RSPV59؍txQ(@AUrS)SPV`59؉pCpxtP(_xAmUr)QSPV59؉ppxtP(%xA +Ur )RSPV49xQ(txAMAtxB MA t||t2e[^_1щpME9Hu t2"U$"LEM1u @Z뤋Eu)RWPV3}u)QPRV3t0Lu)SPRVp3t0uP)PRVT3t0uP)PRV83t0tEP+tPRt 3ttsMA/EiMAEEE@EE@E@ hTjy USP]tXuCu+C]] v PPCt؍v PPCb]]N ]ÍvUWVSLT }E] 0u ttie[^_ËE0E@uwEpU HyjhThRhsREPj9 e[^_ËEu7U HyjhTh'R벋]C w PPEUWVSl} UEEEaw;} Mu EċKSe[^_Ív} uɉЋEЋEЋU@EEMu} ]ċT} C]ċKMCDHPEȉEUċB!}rCEGC EȋUjRW3P M+-t}EċPUċB@B]ă{ ~CzvUtEUEMQ(πQ(׉ЋEAt@/UăAt Eċ@ uuu uuŀ >E;ESPuuXEċ@ uuuuń ЋE PPEă:}]$UEăxDEVPWS u fE@D뽍C ^] APPUPRMQEP~ tEt8tۋUă, ]ċC){E,:uuuuuRujEċU ƃ uuuuus@ujU `ƃEp@DE@@Eă@DjUE@A(@ AP]C@EċH@ @DE;ERPuuwVEċ@ uuuuńƃ Nt]]ă}EP(t@Ct MA C @u S(] Ep +C MQ(S(uuuuuuuu U E@DqE@DhTjmM E| EpCtrMQ($ EpgCtOMQ( APvEă@DlE"M"hTjE UWVS ]E 9Ë}st::tB9r :uRtHOtSB9s ::tB9r :u*Pj EBPR+‹E8:u ;Ute[^_Ê 1}щI)9u9u8U 1}Puu}I@ÍvUWVSu UEDžx!ЋEЋEЋ|@tEtuN];tSEuo>t~PhRj@EP蟅@tie[^_ÍvhSQ0E]t>t~PhRj@}W0@҃uEEEPEP}1IQuEPu &rE;|RPuuREU_u3[xuVuu9 w."x**Ee[^_ËUu{EPEPPPEPRǃ ! uxYEiEǀzf,vEǂPEPUPPQS}WRCSe uhR}wE)|U|TOElpEPEP1߹IQShRu jEu)QRj:PBGC9>)PVj:S_B');lH uuUUE@}GUB(π B(Et}ЋE tuuuu^ǃ exh|u賁;|t"ЋxePEPURSeEW|uu$늿nbEǀPVSprNpUWVS<u 1ۃUDžDžDž\eЋЋЋ@ P P>tP9 V81IQ3 S01ۃVVxqP@hRhRc=wMP3";"TvtSiuJ(0EtEe[^_h8NSXj1ۉǃ P荄mЋЋl_"t"N_8@_Аt?U1҉?t3REt?PE t?P Et?t?ÉUVS5?&v 6sXs $u١|??uh5x?Cu5C uB StZC6t׃ PCt˃ PC t P밃 P}|?뀉x?t??e[^ÍvUWVSL? sWFFuމ?5?u h? uՐPP1IQhU5?  ,??eW5?hP =?4<+uU? hhR?{<+t<#< t>< t:< t< t< tt C< uv)< t< CvC< t< t뿃 5?u1Å۸t[suOS Ct8:t3:(t8hUQFu1e[^_à jǹ1󫋕x?x?ZYhxQnFDžh)QPGF4< < hUV )~* XS DSPVql B@< t<,t< tvFVm<  j@F$n AVPWB01уqDž<\Dž~w GPɉ~"RPNXPVPS*:P5?hQ'ty1эqD3< #ND3<\DžNDžD1эAJ ??r"ApUWSp];=x?t5|?S@OE,PhU4ŰEȉ u?,hhU/£?u(,tx=?tG?e[_PEPhjR6X5?}+,u|t/?t PF=x?=t?e[_1 Q^|?ZYSP(묃 PFRV8?,VUWVSLMtE8u 1ҍe[^_à ?u,?tE E…1Ш uvWVS &U ttPu >uɐEttPu>uEttPu[>ue[^_à h?1҅?E Dž%UE Dž3GPh5UhVsP1ۍPعIQV %}I R1'%@t FӁwݡD4%@u9= P&%@u#F,tt=wՋD4%@tPuu+;,t=v] P\&%@tF׃?@9F1ۃ tҺD4멋EthPh9U,ucE tQPh>UhVq hDUHj됋맋M1҅#nEbDžIUBUhh@?ÐUVSáu?1ҍe[^ÍvCuhh?uЃ 5@1҅ujj tP5@u끃 3OgvUhPh@sÐUVSu?1ҍe[^ÉwuhPh?9uу 5@1҅ujjK tP5@u낃 3hvUhh@ÐU VSu?1ҍe[^Éuhh@muу 5@61҅uh j| tP5@u| 3bUhh@ÐUV5Su@1ҍe[^Éuhh@uу 5@f1҅ujj tP5@*u낃 3hvUjhUhYUh! hVj1ÉUuhUhYUh! h@VjÐUhUhbUh! hVj۸ÐUEUERuu uhUhkUh! hVP蛸01HtUUEUERuuu uhUhvUh! hWPL01HtUÐUEUERuuu uhUhUh! h@WP01HtUÐUWVS ǡ A EP5A5 Ah@V׉ËE u"tu e[^_ME 5 AA=wW PA AtREu"m뗐 h1҅ AtA@ AM"1VU_vUvUS] MUEEUM ][UUvUU$vU1Ҹ0USP]tu]]]Ív P;]]USPE] u tt7]Ë]Eҋu=thhUrˋEtƒ P;E뫃 RV띐U3vUEu EÉUSP]t ]]v]ÍvUErt ÍvEǀE EǀɸÉUSP]t squ]]\]Ív Ps:]]+3 uuu PVqE HtH]EP3?&uuu En}Ue[^_ÍvUB;E_QRVW1EXZuUE)HPDPuRW+ Eu]lЋEHE%ЋEqUM Hy6IQE'E@ ]hhUi]FU HyuuWuEphWhvUhUEPEP葮0EM EpE@E@ }d]} ! uuWuhWhkUhUEPEP0E]1UM U$VUQPj:R"t\9EtW )]EP$CEP$EHSPuR/E@MDE@ ] E@ ] P3ExE"EO} } MU9JECUEuuWuuhWhUhUURuuWuuhWhvUhUMQU2uN+lhWj豼M EwUWVS,} UEEQ} [ЋEЃ0ЋU؋@EЍE*UЉE8 E} } EEPEP1IQVuuf DE؃U90PRuV-EXuXuuu uV } u} 0} 0Ee[^_Ã} ЋEEUUu{EPEPPPuRaǃ  uXEEǀJZfvǂE싊PUEPPPQSuRSye uehP*?UЉEUEEU؃)uJRTRuPVǃ )uhuV#^;EqEк"ARuuVk҉ЋEEUEǀUWVS<} UDžDžDž} ЋЋЋ@ PcOv} } P*t! Pl} 0! u >1IQ67 Vb} 1(} JK} KP@hUhV+\=WS6l9؉WVLb[^)HPD:PWRà !Ph! Pj<8t<tVauHt ڍe[^_ËMt틕Eh P!a몉ЋWЋE<c} *"UWVS,} UEE}w} Ve[^_Ã} uЋEЃ8ЋU܋@EԍEUԉu]3*} Et 3]SU؃EP38tHvE|  uuu PS# tE]EP3uE؅u Ee[^_ÉUB;EQRSW&EXZuԋUE)HPDPuRW u]pЋEvHE5ЋEhhUbtO]ELUE?EԾ" PC)E9UԉUWPA1U B55hAhuhjR 1҅uAЋ}ÐUWVS (AtEe[^_ÃhS#1҅xѾ1I~ Q1҅(AtSP (A눐UWVS, ,AuE ,AjjzXZj`jiB: ]@S URSjCHAULA4DžPPPu,)=Pu5ISjURjKFEF FYU 2FRU rrP#U FF[_jP,A333,AEEEċEEEEjjF,P~HW+EPW)? FLWPFDFL@n S= PSjK#0Au<0Ax4A8A\V ]S EPSjHAtD vt1 thALAPyHAuщFtt PFLPF VXuuTPjEPj/5ue[^_à hA%LA Pe[^_à hA뚃 Pk FHP҃OhXhzhYhX<5UWVSEX HMb  )؋} 1UPPfDžT%8PSjV8tDžLPLPEPE0Xu}t{PWu U2dǃtJuE@$6@ e[^_ËUB $UB$e[^_$UB$B 뼋U2Pj`jXSE @@DEEEE]E`EEjPVǃ,E@ _vUWVST} DžTPEPE0u}tNuPVWE0t)DžEe[^_#UB$B e[^_ËuvURj`jXPz HXUHLDž`Dž\DžX`EEEEE`EUjRSHD)Džd(UVS dAKs< K $S(C SC PAu2PAxTAXA\A`AC PAjjC(uPVXZSVB'ZYC PV6'4$EPCUSS] tldAt'RSp<(PSR áu؋]Ív u1]Ív hACЃ hA/1h3MjvhLYh8Y|vUÍvUÉU1ÐUÐUVS ɋu]u#RSu V`,áu2e[^Ð VRSu V1,átэv Ve[^ÐUVS]u 19sHr e[^ÍvVsDhƒҸt܉SDsHe[1^ÍvUWVS ɋuurF8Pu@~"Svj 69tPCߋE )׉U8fN )~ u Ee[^_Ð V V뀉~EGPPV VD+EURP6u+ }4$8uPSvj 6tSC+ljEWVuTVDUQu6u E)FU :uBFD%~N VE u1e[^_à VFD V1UWVS =] C(EhP EuEUhEPC8tK(hEP8K(Wj MQVCP8"nE8UEt= hnYm<+K(hEP'CQEu21e[^_Ë<+h<-`Et܃RhY v hY跈뼉EtVhYvzK(mE{EhPb8K(Pj EPV)8"!E8E%VhYQ hY:EQjVhYF:PhVh@Z訇!<+C<-;ERhYEtt p{ EhEPWC18tK( hEP/ 8tK( VTCZYhEP8tK( VC$hEPC8tK(@hEPCv8tK(hEPqljC IEtF?uihEPDƃEPjVh Z<tK(PhVhdZ؅wcrtPWLuEt h#Z蕅UpAu lAÐjPMpAlAUWVS,pALhhZpAoǃvPWhV#t/ttF#tЀ/uv#tÄۉu&뷍v RK%@u)#t$t FӁwԡD4%@t׃ 轕ZYP5pA'LPWhFV2S We[^_ÃjP>LUWVS,Z}ءpAdKpA EPED=@1ۍvShZj EPS6 hZEPugEt518tv45pAG>Ku V说C<8t+ u<UЍe[^_ÃjPLK7EuEUWVSpAqJpAhAu hhAEEEPEPEP}WhZ5hA> u\UEu5pAAJE]PEPEPWuShZ5hA$S薳t1҃Be[^_Ãte[^_ÃjP+J vUpAuIhI pAhzhZhZhZj Ht;pAu"pAZÐjPI맃jPI΃j5pADIpAÍvUalAÉUlAttlAÍv/lAU jE jEEPujEPEEp @HÐUWVES1ۋu t%߉CtA9uu1ۋE[^_CU j jurUcwÍvUWVS$EEEEEEEu }Ej`j,C8PjCC=zhhAnt hA 5A*ÃFM;zE uYE@Ep cQuҋE@Eܿ.>uܿgAu E0fËE |A{v.>uMvuFhhAU hAMe[^_鍀 hA茨Au럃 hAq5A}c E0莂U҉EtxA uzu5A{{S5Ah\j~vUWVS}j ƃ1t\t1ۀ?u)Fwb$\vPWt C`\ud\xtFe[^_Ãh\jO~XV茡1e[^_tt Fƒ ՍvUWVS ]1taKt5 3vEUt>EPBwԋCw($\ 3|ɋE@tBwvEe[^_ËMAtJuJuE@ EcQut \uTEpgAKB;E@ EcQut \uEp.>^MA7vUSP]t/tTj.V,Utg @PEj.VU tA @P ] j Et}t}~} VEe[^_Ã}u jjܚtPjjjSl CjgV{Wa1I EɃHX됃 j膚Ex}1E@U؆fBЃQPVjE@UP! jE ǹEUB؆fBPЃPVj薷~AE@UP uƙXu轙E uۉUE Pu1҅tu u‰ÐUUt~tÐJvUE HEPB:At É<uzuB %t.B %=uπyuA %=uAB뱀yuA %uU卅tDžtPxPu1҅xyt Ht#1҉ÍvuvfzЉÀzUVSu] tZt;SV/X1҅u e[^ÐhCPCPVXe[‰^hMjNh^h,]Uh3MjMh^h,]UUVuS] tt,PjSVWe[^h3Mj_h^h<]Uh]j`h^h<]gU빉UVSu] tJtaSV1҅u e[^ÐC PV/W1҅tC tBtQh3Mjph^hJ]Th]jqh^hJ]T넋CE uKe[^CPVS1҅iCE ue[^SvUVSu] SVsVt$t*HtOh2hh^h]]>Te[1^ÍvCPVOStCE ue[^4SCE ue[^Vh3Mhh^h]]SZh]hh^h]]SAUVuS] tUtoSVRu 1e[^ÍvCPVUt{uڃ jh]C PCPVWh3Mhh^hp]3Sh]hh^hp]SpUVSu] CCt e[1^ÃSVQtCPVTt҃CPVQtC PVQtCE ue[^Qvh3Mhh^h}]WRVh@Mhh^h}]6R=UWVS }u Gt2HtGFt\wFu"GFGFe[^_Ð_ue[^_Ívw[$] u܋GFG F븐GFe[^_É_ txF^`vF^Hh]h+h^h]&QhAMh*h^h]Q    h]hh^h]Ph]hh^h]kPUWS0t e[_à 5A膗=u1hhAut*uI0e[_à hA뽋 u ڍe[_à hAʗ hA趗0륃 j薑XZS5Aʘtw S膑뇐UWVSE HUB8Pu@Dž<Dž8Dž4H9AHvh WL%@teUB%D4%@t4MAHCAEvà R뾡D4%@u%u0DžDDž@H:BzHwF$0^MA~^E9u)MZIH49AH vEE;t%EPUREPS0];tEt܊t.Eu'}܍UREPWVm0u܊t EtމUE9Uԅu UE)‰UԊt VuVUԄUt؉E؃ u+gXu"gE؍e[^_à Pr1EЉ4$e1ƃE>u뱊)‰U멐UWVS<} R%@t#7GwڡD4%@u݉<-+EE}Eu10LME"EEEERPjjEȉUtuujjEUCUȋM̃EԉUMčC< wNv;M}Su؅x'E9EwrU9UwUE3U3E u};M~xEGC< vC<wN7;M|}M tU؅ҋEtGU EUe[^_ÐC<wWSEeUUEUċEЋUUЉEÉEEEMUUEGE0u;uBMM1*e[^_QG;uX뵃DQډ#_4MS )ʈѸU!9)uEtGU-UWVSv=EUHM1ۀx0u vCE<0t]u1`u!:UyE0e[^_F`u:M+Et)}P"pU2+EX1F VxƃEu11҃;}v,O:Et `ك ƒ;}wԋEM)ȍX YR4{)ËE 89EuU܋E 9PEE P;U~`+]9EUҍsEMtMSupE @)߉E܃Et U B OHMUM EU܉Ee[^_ËMM10ۊE@ ,'Hj u;}wS1Ҹu9rEutm19sSuFU]9EsuU:t$Ue[^_ÉE1҃8te[^_à E 0EU U‹Ut{먅tVjqÃE ۉtPVjS贓E hc1`UWVS }19] svSuUt ]F9re[^_ÐU0u EEPUÍvUÉUSPM] t2rt1҉Ћ]ÐEEQPQR‰Ћ]ÃUARQ1҅tƋE뽐USRM] t2rt1҉Ћ]ÐEEQPQR‰Ћ]ÃUARQ1҅tƋE뽐USU ] t#rt1[ÉB] UH[B] U[USU ] t#rt1[ÉB] UH[B] U[USQM] t2rt1҉Ћ]ÐEEQPQR‰Ћ]ÃUARQ1҅tƋE뽐USSM] t2rt1҉Ћ]ÐEEQPQR‰Ћ]ÃUARQ1҅tƋE뽐USPM] t6rt1҉Ћ]ÐEEQPQR‰Ћ]ÍvUARQ1҅t‹EfUSPM] t6rt1҉Ћ]ÐEEQPQR‰Ћ]ÍvUARQ1҅t‹EfUSPM] t6rt1҉Ћ]ÐEEQPQR‰Ћ]ÍvUARQ1҅t‹EfUSPM] t6rt1҉Ћ]ÐEEQPQR‰Ћ]ÍvUARQ1҅t‹EfUS ] EEPu,1҅tEЋ]ÐUS ] EEPu\1҅tEЋ]ÐUSPM] t:rt1҉Ћ]Ð1;EEQPQR‰Ћ]ÉUARQ1҅t1}믍vU+vUWVS Uҋ]u t׃u"tUt#1Ƀve[^_É)ӐPCRVSP 1ɅtՅtϋC}E )c]H ,QCRVSP1ɅttC}E C]He[^_UWVSE E]Uu}SV1҅tc9witsqE]E ue[^_ۺt3}u؃SjukUEu h-cq 1ҍve[^_Éte[^_Ãuً]t u>U빐UhE PPu ÍvUWVSEMu }E]MVW#t8Kɋtv9t2KuEtMM }Me[^_e[^1_ËEE }e[^_UWVS E utuۺtGv1IMEPVQ1҅tE;EwHtr$t61Ґe[^_Åɺtt5PuSVAe[^‰_à S0=E 봃QjiÃE ۉt E뮃 hFc 1끐U ju uÍvUVS]u tKrt1ҍe[^ËFEUECRSP1҅tՃESPSRÃUCRS1҅tUCRS1҅tE1ۋM 1 ȉVxUVS]u tKrt1ҍe[^ËFEUECRSP1҅tՃESPSRÃUCRS1҅tUCRS1҅tE1ۋM 1 ȉVxUvU?vUvU'UWVS<u4tu:"u$e[^_ÃhCu6u$e[^_Ã5l1P;ofDŽ)/XZuPqoIDŽ /LC_DŽ COLLDŽ ATE_XhPQJ'jj ]SH޿`c8¾d h 9u h9| P9Gjh SOHjhW2HVj9n cXZuhCmLDL1ɉ=DDȉʋDDȉDA~١H.H~,1ۉHD ȉD HDȉDIu1ɋL1@|uA 9t@1$0ecu0jjPH΅ 胚On 0S7<$7[7YӉ>0 P7 P7\ Po7^0 0SK7<$ٙ 0SzUWVS E uUEHtUU tH8Eu1IWQSVVuыU I C UC"EUDЋUDDUe[^_ÐUWVS 1ۋ0yEǹRˆIQRjF jhPjE} عу IQu jE jhPjE4$Eǹу IQujE jhBjEXusUutÃhjcjG"UWVSu1эAEt>uEe[^_EE EEP(5EEnL<1iF}uEe[^_ÍAMh{cjGUEt DÍv8 DUEDÍvU DVSu]tW Ph~ 5DDt'PuS5D`5DjjhP\l u  PhO5DCDu Vqj5Ztv VЃېUEPuu u8Uuu ZY0uUEPu ZY0uvUDVSu] t\L Ph~ 5D CtPuS5DU5Dj NBDu VpjMX뚉 VЃߐUE Pu ucvUWVS D}] utu Ph~ 5DeBt%PVS5D5DjjhPj WEE ODEe[^_BvjX끉UE PuQ蝔Z0IÍvU u uQ~Z0*UE Pu uÐUVSD]u tP Ph~ 5D|AtPVS5DDE E e[^@jX릉UE Pu~UE %~MEEÐ~*E )ȈUEÍvEUS]؃MU w$cAtI[ËBAAA͋ER3 ‰Q뮉UWVS@fC냐UWVSjh,Ã1tvCt~  ChctR sC1щ $,CtBVP`CC ؍e[^_ÍvCh\j1e[^_à S+1UVSut> tCe[^ÐFuKF u6^ 3.؋[$m+u V]+e[1^à PK+뼃 PUWVS u} ,v9vBx\u te[1^ËV ^t;t߃j:SF$tՃ j*@VuWF؍e[^Ív3Fuh\j v[@uFu빉B먐USP6/ DuYDu51ۅuahhD.à u,ۺ Du 5D.t;ډЋ]Ð hD7/‰ hD.Du넃 j(XZS5D30tt S( D둉뇍vUSj (Ã1t&$D DtCDC؋]Ãhhd8$Du D S`(1]ÐUWVS }t=t= toe[^_GG DH~ DW'1e[^_É5D DDDD" s'Z3'$'tC@vtσ Pz' Wk'X5$Dy1$D\USQ]t 36'Cu]] ']Ív P']]'UWVS Ɖ* 1D1ERPh{VzoUPRh{jyEKd ut}+d u)CPEPh{jyEC-E}t+bt~v~KC뙐KˉPEPh{jyC UPRh{jxCtd}PWh{jxCtDPWh{jxEt'uujCC1ɍve[^_ø4d ut-=du8¹uCCCuo j$CCuj,uESC4C@C^_Ps$Cuu1Be[^_à Pn$냐UWVS } $D?GGDG1=D h#Ã1V5$DhSr4;#tރ j #E jD#Ep@F|@ DuYEDDGD@e[^_Ív1e[^_ÍvG @G@뿡DUPD@D뚃 S"D릃 S"뛃 S"[u"뇃 S"4$U*w $evdødøcødøcøcÉUPuh 58 52ÍvUWVSEo*E"E8 QuXDt4Ɛ^u3$mvu1=Dhhd1E h~!EPuhu2t>8#th{P[1}щ؍Q)9t@u u%! u?sEe[^_à V!1e[^_ÉPRuVmu jD Et@‹E@Euz58 j%jhdX58 jjhEdX 58 j'jh$eX58 jjhYdX 58 j)jhLeX58 jjhqdX 58 j&jhxekX$ s hƃ1 jDEPjDSunY_3V1T_ZUjVY^s pVT_MZA jVY^spVS_ZUBjVZYspVSMAA$,UBtMA1uE%jVlZYpC4VSMQG9yw* uq  2 uEdUWVSL] 0Q@u0e[^_Wj j PhWPS2 u> uZYPPWh`f- 蓀0e[^_ShhPWtB j hPP^B떐UWVS ։J?P@u8e[^_É uQPVh|fWa- e[^_ÍvUOUPÐUOUPÐUVSÉO|uO[^ÉO[D0^ÍvUWVS UEBty1ۃtME [^_ÉF9Au4AuA uAuAtxA}tcvCv#O9X ~Gu009tC1ېN9X ~u009tCۍvAt;FuEE [^_ÉUWVSuUfB O~q hPVuu- xYƍF;EwO V/4$Ã/;] u;EuuRu1e[^_Íe[^_ÐUWVSu UfB;u w E ;Eve[^_ÍvUBUfB19tpe[^_Ív hPVu u, xƍF;E w V.4$.ZuuPSR t2OMUBS,1%ULxBLY0)LwL@kL@_L@ ÍvUWVSEL@ } h mL@h5< jjhfR 5< u uDž)L@u } ~ DžDžDžDž<Džxo|qDžK9P,DžK9H ` b҉tx KXtR1ۍ} JZYRuuWURVP u r_ C) 1ɅtJ@zJ@}J1x8pJ@t,BtPJR9P 8Jx(JRP JVjjQ JZp $Id ;zStQIZ0#R I@SE P +E E DžjPQgIZ0"U 9 ufDžSPVQ0IZ0&ff)ffuÅ u*;EAfff ! u5RPVSHY0D& ff)ffuDž taEHf+EfftDf=vPSVQAHZ0%~ff)ffu‹Uff9 PH@uEHa 5< jjhfM 5< E9Pu賞]GaGxG@ tG@dGRP RGPjjWEG^p P!5GU #G@gG@ mXGx tTFFpu2StQFZ0  F@ju uSFY0&&;E  F~Fؙy DžDžjW?B@EHEfDžfDžDžDžDžQjVjV|i <uDžPPjuuS"EY0J!  DžvUff9,E@u!Ea 5< jjhfJ 5< E9Pu菛D jf8 aD@ u P~zD@ EEPuUE PROGD@ug|EPhJg5< 5< jjh]gAE>5< jjhrg%E 5< E9Pu$b+ooZ0gG o>@Dž(!>@>a >@u>a t;hjh_5<  5< E9PutN>@uz5>@ to=Xv11!j\C)O=ZYRuuu uP u=a5< jjhgWC |Xm=MQPhJg5< ="mmZ0g8 ill^0gll^0glVl[0gl<zlm`l^0g8 IW5l^0g lZ0w UWVShSRj^) 1эA;M Qu Su-^VNvhvAhP1xZ=sSxM4F;E w-]RQRCP`W%ED1ҍe[^_Íe[^_ÐA%t$` AtAHDRS~*'1I<<5M 'P0pMtq81;MVu3u)$OHSu uu81F %E tuuP$ 1 SU1ÐUVSE Ɖt"PjjRƒ1x8 Ru SVhhhPhhghhhEP 1Ht Ѝe[^ÐUvUWVS,uU} EuPBuIZu J 1t|Bu2ztZu"JuB t=t  uVWRhhhYhhghhhEP01Ht>Ѝe[^_ËE1e[^_ÐuEu 1u׋UԉPjR]SQڃېPjR]SQڃ UvUWVSu1[^_ÅCu؀8u؉CCUVSƋBCB RڅtۉuۋBF אe[^ÐUWVS\EEH1}:_<]w,EЍ_;uEE]sGG,t@x\FEE;us,t&]!Ћ]:u'uFEEE;urՐE9E~ ]}ĉ]?uEă\[^_ÉEyEx딋Eč}EEEEFE0vUWVSPu~] t{NE;9t3{t-uuxttfvttt2tA@9B@~&_[^_Ð{:_[^_ÐuxE9E|؅x ;E|ʊ8u9}_[^_Ív9{tЋB@9A@xBD9GD ,AD9BD AD9BDhZBD9GDIUPtEHt\PuP uPuxt t?ÉHtX tt@t޺tٺP Ð@ %=t=@%뵺xl[/ÐUWVS<] u}t UPRVj4tpEPVHuyt<uE؉E1}ffEuMQe[^_Ð8u]S֋EPWډmf*dɉ{WzrDž71;1C$;)Q9u)8)8@ 1Ƀ!v ": u A99p\ A{42uuWt01A uڋNt5Bt`t[e[^_ËE1e[^_ËMe[^0_ËU1؅DžytvuKz) S@ɋً1DžEEE)E&jj Wjj]SB L -jjWPjSA  H;wL jPQRjHW@PCCHGH;v Dž9c1Qh8P`BCǃ9Ѓ9FF?ƃƃ-qDž@9ȉ}:vD8D~"44T5DD5TC9|ɋ9fDž:RjjPP8P8R~8WPSZKd1DžC1҃9 @0  yu:uru zƃƃBBB Mhh&Dž9}7SF9|Ճ 1tO{tG jn @@@ @ug Sa1ۃ\U@e[^_Ã]ShHl%]PShj HlUWVSE‹t‹p@lElhh?DždQhhRtƒUVRPSHup9t}utUȉEȍEdE1t DmFuDdXpP dxBExldDž|d h<dE@e[^_ÃURP US EƒX02蹾t ME@]USEƒp02t E@]UWVS\ME} *~} t1e[^_É} uDžfBֆ fB;DžDDždH h hDV  hDt;} } MDžDDADDž@D@DA@DDžDž ;r<v; +PV x tލF ;wh V{4$d4$Y؍9ЉwAO )vDžUEMt苍UuE1}򮋅)9|uP8U EE#1ӁAUDDED} t*} t$} *U 9uӁD hQV  P; 1ыӁGэˋ+9PU ى hPV  RV;m1ˋ+9UIQ3 ^M1iE9X u#U 1߁dDxPSRV7" +PV  lMU`UWVSe[^_-F&ٍvECe[^_ú먃 W봍vUWVS|EDžmhDžDžDž‹‹@E (x@u 1} EEЉUhһЉ1K hj jR %=y ڍe[^_Ív; cvfэf0G v8fэf(fҍf0GfЍf(эA0G.KGNx0WvURj P򋅌( UЉEԋE؉DžEUe[^_;}3 ȃiG.iGG.KGNuՃ23:#B% /Z"0"UWVSEPu] R11҅x7UtB txt+u1ۃ uwX?8ڍe[^_@9uͅtPjrSŐUWVSE}uE WZWV[u$E9FuU tu v (uɋtLJLJe[^_à WZLJLJe[^_ÍvUSQ2X1҅t@PSu u"1҅uډЋ]UWVS }]g@u @z@ hVjjjSu uj 0W@ @~uuWSV%Gu fGfub@Ge[^_Ív @uuڍe[^_ÉSu uh&i vuhVSY Ã.fGRPGPh@ibG h[i?vE@+ @u:3 hxi負봐UWVS<u] @u @z @ux1҈щ߹ыLSVh>UQ uuuu=e[^_Ð uutEPVhi j1эY.˃x<.t6뉸i|juQSVQkƄ jމ&jމu[H@EH CPd ʈd~@u@ Mv}t*} t} CEt< t< u}e[^_Ã0d_ZPh,jE럃 CP 0@ Y^0h9jd3 C P~~@@ }_ZphHjrPQuShj^MT=@t hUj" pVuuhj HH@EsH E]HEGHE1UWVSDžtDžpDžlDžhg=`@@@ @@$Hc@ofx@{@@f@5@x@ ddǀ`$hh^j|{W|hQ<<;t<#tϿoju< d< \u< < vj u< < ju< |< t< t< VW|hQ"tddh ʃ d|mx`ln\HH1ҍe[^_Ãt< T< T ۋT= $ R%@ F ЁwѡD4ҍh Th\TTT t tT K;BTd# V3%@uMTTt;Vhi gu#;txwD4%@tTۍxWdhhxhifTxBTd RK%@u8TTt&;t!xӁwšD4%@tȃTۉxPdhl\DŽhhhl$Ah\p:< T< T ShTQC`$83ƀ_'`hBP TtDžlp< Ti< aTm dPhTP`$ƀ_`j P8d Ttc`TUTPDpHDžx)< tPxtTDžxTT:`\9 T< uTDžx뺃 hjBTj@@@{fx@kfC@pV1F?`CDCHthS3Gj.SbT+@PV`$ hjATBRhPP`$ƀ_Džp`TuTPDpHDžx4 tdxtTDžxDžlTT:R\9 T  uTDžxXىptx vTT t t vTT t tvTT t tfwPPdjHt xTh "\DŽBBB Bz8TxBTd R-%@TT;ӁwD4#hhvlTt- t( t# TTt < t< t< u⋅T=xۋT&x /t(xdFJx d]yIhDŽh3hDŽl\$Ahى1׹j5h j SDžDž>PPSTA u~xuwxB[tVqqR xMtTQppRe t P)hhShlTt$ t TTt< t< u担TDžl7PVdjHdtT1tShjR vUhtÐU j juUVS] S;t*Cst P Su؉e[^ÐUPtEHt\PuP uPuxt t?ÉHtX tt@t޺tٺP Ð@ %=t=@%뵺x/ÐUWVS\EEH1}:_<]w,EЍ_;uEE]sGG,t@x\FEE;us,t&]!Ћ]:u'uFEEE;urՐE9E~ ]}ĉ]?uEă\[^_ÉEyEx딋Eč}EEEEFE0vUVSƋBCB RڅtۉuۋBF אe[^ÐUWVSPu~] t{NE;.9t3{t-uuxttfvtt$t2tA@9B@~&Y[^_Ð{:Y[^_Ð} 9E|ԅx ;E|ƋP@@8Bu9vY[^_Ív9gtЋB@9A@hBD9GD AD9BDAD9BDhZBD9GDIU1ɉt@l@l 9t u1ÍvUSQu 1҉Ћ]Ív uiCuUWVS8hjUԉE6tEQPRjHUԋB PÃ1t_C MԉCRqjPeMԋASACSCB}St!EP VpuRj؍e[^_ÐQ WEqPߍvEԃ8_~UMЉ%=9=.&E@lUEUWVS 1҉t St te[^_ËShE>ui} twІЋuuC1e[^_Ív z e[^_EPj EPVuUt :VLE3 뗋CfP1kC.>t gAt1҃RV(ƒҸ RvUjÐUWVS<ƋE EU1҅t e[^_ÐF1҅t8t+PEPW3HUE e[^1҉_ÃEPWHuًF;t EPډE jUUtЅv@ujvF;tu[ EPډ-EtA jUIu+uGUЅ @uEu P Uuxtă Uu]륉UWVS1}DžpDžhMUȅɉtEEEEEEEEEMAyqY]QuFt9t/DžpvE}pe[^_}u]tyutr`kDžl`kx_UllxG9u鋽lGt܋Ot9u9t͍vDžp e P^vM% ==YUt tuB}uMuEU E4p}u}u=`kDžl`kllE}u󥋝ltϋU9t Ct…ul]N9tFtvluO9tGttuuEulBtEulAtEU9U Et/1҅ppttCvt@u= YUPMEU ҰtEEEtS]Pjjjc P藽 jjjA Pu]=`kDžl`kll9}u󥋽l9Eu΋]G9tGttuluQ9tAttuutEulCtEU EtDžn1҅tp=tB,t@u"}DžpEu pDžp]t]u0hu&DžPË[PuPu1jDžhDžp@PjjSp/DžpE:1҅@9j%u M u踋`+E`8PuVCu E\dtX{t[틍\{9WG< Pj P\Ɖ 89G[WttCPjjuEh PU E1҅E1҅wE  pEC jU yE1҉$}PWuhlhjhghh mPHv H#1҉PuVu UEƒ `udP) 4V1XQljjj|VjjXSDžDžXDž\Dž`)Džd&  |蟨jjVPjS |GH9ȉLwL jPUXRjHV@PHCFH;Lv W"DžTP9T]X@%[PT@9T@C@Cs@8󥋵@Fdž<t eQhjWDž@DžDDžT HPW(8P$ D@<1RHPPHxPxP@Wڴ@x@3HDžHFn1҃@<u W謵 W XEu PT-1҃8Eu PB%1 \o p[hhPXMȋP~5P1҉TXœTu X袤tE@ jU Q[uB} `-R@9sD2@AuH9r닕HH;D|@@뢋@APh jRDžlo0DžDžDž HPP QhIi W@UWVS$}ȉ1Eȃ} Džt ~} t1e[^_É} ufBxfB fH +PS0 S 腴:} \6} ,} xxDžtDžp;r;pxx; p +PSH x 衳t S$|ش$ʹN: uC1сЋMttdt }  UEE|} t7} t1} t(U 9|tE|?|-} uƒ|t|u̓|t |||tu*1}u󥃽|tE` SEBput@upt UuhuDž\Džd/dvudd PElluDž`5Nh1(lh#B9htGd9rŋ`l4ȉ|\u~ 9|~\`vx\d9\}J\Ox-l4F 9F~^FV VN^ Oy\d9\Dž`du9`#`lʉFAƋd`9|F l |#ZYPu #$ jf#PuhPmj%oy hPS肮  R֮1򮍅+9ȉuVPQGhlj%x FUWVSl EDž@}1EȉhhbhDPh R謫8#tփhuOPythUVpytGDžtt< l< d\hUW"ytGSzth룃 Pr!hhbh;UEe[^@_}󫋕BEEEEPEPh2VuBGB G tڃ t vG| PTUEDže[^@_Ë҉B@uUWVSlӉE}1UEUj u9Et@EhUu w@t?Rt8 t( t#UhUPvt@tuE}PEPjuE*ukEu Lvt"t uEvuދEtU҉BEt @uEtEEEEuEe[^_ÉE$MuUWVSxEPz1tvE@E}ȉUȉUUBtXtSEPUR1IQShju: UEe[^_ÃEPUR1IQSh ku yu}UEEtE䐅Et@u uK0vEUetEp u77UWVS(EEEh•E~gFEF^ E܋FE3@ hujjjSuujj0@ @uuSu7{x;E~YGGƒu fGuAU@u?6= uEe[^_ÊG뮍vE^6ʼnfGRPGPhkC6Suuh&i+vuhuSÃ@u uTe[^_à h[iZ΃}tN]tZ%}ur ]H3vUWVS<ƍӉ@tۉWtzPVh4k ts1҈щ߹ыLwo SVh>UhQu U e[^_øi|1эYwt |1.Yt8QSVQ<Ƅ끍vUWVSE0@p1}]߱}Eȉlh6 httpBtr~+Z WZte[^_ÅuڋtuEE}E]uEEMEuEE}EDžXDžTDžP@u N@Dž`҉tv.@u19v x.`PhxPVUENPUpuut lA W葐Xt腐UEe[^_Ð`@:Dž\d;`H`tkPu`@ @\X\ WӏXtǏe[^_IxyDžL4XD@Du@tHtL@%LGL9 URg8=3~uX놳 MQ1҉K EP1҉+;\DžPuEE PUpuut`lɉAlq@ueXu]T2}"@ ;GLTG>. W覍UEE jjE PujEP 1@t8 t ?UWVS@jjjxtGPju]Sӱ Sh i V褚@t V艜U؍e[^_à Vr EP1҅xՋ]1ts t~t'u ut*e[^_Ívusu~ɐUWVSUEuU P uV< uk6u>t;^t΃3u!tt3uu㐋M tu v uEt!Uǂǂe[^_à P] Uǂǂe[^_ÐUSP1҅t@PSu u1҅uډЋ]UWVS|uEEEEEfEEEEEEE}ȃjjVjjW  unjjVPjW Uč9؉vǍ9wvEEEHE+EU4 EPE{MMMMM1}Uč9؋ufEEǍ9uG TufEGtfW fUEUO`MuPMGAUBQPWhRuMAUADEMEA G`PuuG`EEeUMJVjPGPQEPEP@ƉUU S8 5E}( S蜈jjVjjW e[^_G fEGfG O`EfEMG`MLMMEPAMLM S;uyMU 1e[^_f}~fEf9G f}eGEWOE1MEM F;#EtMEt EEEf}~fMf9O @f}eG[UBMABAGAEEEWU1 FЉ#EtMEt EEE뼋E S脆1 StE u[1yE.MMM1M F#EtEEt EtEEMM뷄uMMEEU1U FlOM#EtUEt EtT tnUU봃uMUJPuuQ8EEҋMIA΋UĉEEFEMARuuPUU뒋EMAU:uQujPMMgRuuuvαUׄUSRËu 蹄ǃ]É P 舄ǃ]ÐUSP]tC][[YY[Uh5hm苉iÐUSP螉 it Ћ]Éh85hiRu iu 1҉Ћ]à 5m uhjS1҅tP5mъt S蓃1룍vUWVS ۉ WXZEPEPPPhm dž uuhhPSue[^_ÐEPEPPPShmS袂tdže[^1҉_Ð P]1҅e[^_ÉUSP] u&hhm<E ]Ð P3E ]ÉUSP])ǃǃǃX[ÍvUWVS<u GqQ6h*ú<+% j蘛bu P"t hehPbdždžPP1IQPhm  hh}%Ê<#huOS^t}hUS^lC< t< thmS^APj PScG9: =UBFz BhUW^tuGtoti< t-< t)9v;hUW]t;G‰hhm"t^1ҍe[^_Ë% PhmhR dždžu PvWP1IQRhm藉 tP|WP1IQRhmK 5 hh$<+WUqtPu.UQt PaÍvUSP21҅t@PSq1҅uډЋ]ÐUWVS(hU WuEPR]ƃ 1x)u;u"CHCx6.Ee[^_ÍvSj.iSWj;C}ŃSj.Uuhu uGÐUWVSu]SEuEPu Nƃ 1x#щJu1;M} f.Ee[^_À|.uvUVShVhu uuà 1tuV蒊؍e[^ÐUWVS ]Sҋu }t vsV[t Sute[^_Åte[^_ÍvUUWptnw(^ptbwdXjtV.jt7wQdpt(vkjvtQRhkphnnÉ sptw\ypΉ \tv'@ptȸ&j@룸p떸p뉸p|p@ovUWVS } uWjjhp袲tit$^t S PhHWu܋uGHGx. e[^_É} E e[^_i뎉} E e[^_vUSPUM ]9 t2 BuPQh h(n赡t(n]ÅtB]U juh`uÐU} tt uRjuPnU juhrWÐUWVS< ։苫`!U}`t EG h l!1ۍPSVW/u|u M P$ PBPuPhpu (C PSVW)/t8_0W Phpu ߇e[^_ÃhPjjRW, u PkYXu j C^'aV/ Phpu NbuWکaEuHU BHBxOU  Z0V Ph qu ׆e[^_Ãu j Rj +vUWVS\u?@u 蔬@)EWPu u,hE‹ l!UUE# EUEUʉEU}ƨ` W4E4 hHrV 萨`FHF;Z`tKaVjjh!qfU#` d#p t#x |#  # ## :# Q# h[`tLatzuPujY Ph*qVzuPuj< Ph3qV] uPuj Ph3qV=uWuj Ph3qV Ħ` $FHF V1jEXZVj E_XVj@EY[VhEUu;Eu4Eu-Eu&kFHFo ve[^_a2M%ץakHVj;J裥`  Vj l[0R PhtFF뮉)9܍vUWVS u9Ér )e[^_hxhh@yhw )e[^_UWVSM uMM} uQM1RPt Et?uct |.tCU;wX.CuM9v?@@UE u؉e[^_Ë<u듉MEUe[^_ÍvUWVS } 9Ӌur%RSP6Ͱ؉<$1e[^_yUWVSÉEE E׋UUu u;9s3D39u u;Ixn+Ee[^_ÐPhxtu uxx)u ux CNsUEE Ue[^_UWVS u} E]ۉEuBB9v;)ʍBvVWy`x8Ky1e[^_ÃVW4xָ͋EEUWVS|:E(M$M U01tuP>@U,E$M4E0QPxDž#Pu4u0u!DžM4 QU0& uGPu PhaxPsU4RM0Q‰ƍx DžU4PRM0QW35Džd}#}$wU4RM0Q‹EDž&E,t },?U|2.t0M4Q}0WWDžFPE4PU0Rj~ǃDžxQPhxxRHXZM4Q}0WxDžfE ;D)ƒfDžx ƅzz~ Dž1;|#] P3PhxW贅Fǃ;|ރx}4)WE0Pډ<z1fDžx; ƅz+v@ Rc%t'3F;}#] 3G€t.ءD4xU4R)ǍM0QxwE E ;}0)lje[^_ÃWM0QxCx VWU0RjC0{Dže[^_ÃE4PU0RyEE<0]}4WE0Pu,] SU EDžAWM0Q|DžWE0Pu,SU EDžWM0Qx=DžU )Ѓ xE U4RM0Q=DžttE YU4E M0RQDž W}0WjDžE4PU0Ry)Dž u !aE ^_M4Q}0WúyDžmQu4u0SDžI E4Pq U4RWjDž}4WE0P 'y\Dž u T`E XZWM0Qy DžPu4u0S6Dž WU0[XWU0RxDžHQW}0WjDžE4PU0R1y mxU4RWmQDžDžFy>Fy>UFy>F}  EEڊUEȈUوE؋E 1EEE vDAB;U rM؈UوÃȈNJEڃ Ӏ?FE=F;us }7l[^_ÊUȈU؊EUEوUq=뽊EȈE؊UEUوEqUȈU؊UEUںE멐UWVS u1EvFӁ Ry%@uЃ=cShyStM t}9}#y(ȋ] };E1Fgv=uEe[^_ÍvD4Q} [MA;M-y] };лy(U D:M] <MA;Msr-y]} лy(UDME tE9Es*йy(] };dFt v t(Ӂvs Rx%@tFu؃=FtVӁv* Rw%@uظǡD4סD4뎋]KU fU M< P]KoUSPEM U]tRQPShy58 Q n RQShy@U w BÍvBUWVS }EG}.+/€D4%tӁ R=1ƊGЁvq RD=wztpڋu E ؈EvGt E9EEe[^_à Ru3v4덡451UWVSQUҋ}] Utr~19}DB H0CB ,0Fu 9}.Bv9|EZ[^_É7ҍv7붺nU널UWVS }EEE1GtqÀ< St%wKtAtCEvGuU~EuvE Ue[^1_ÉMvM SHt%tv< S;ÃCw|$(zD4BD4봐4č)ƍv4v4v4u1EE e[^_UWVSLRPhyEPu }FfÍ@;wEP7wr)1ҍe[^_ÍvUWVS,E <1҉EE񹉈EUv)ƻ1󸫪U1ع%I$EЉ)UE1EE;gEu|E܅teK~RutHÀu8 SOr%tvo S`FuU +Ue[^_Åu}uuEPE PSEdxCaD4끐4됃EPE PWEvEPE PDCECEPE PHECvEPE PMClUVSMɍD x,D ҋst99H}pJu[^É9H}pJ@)[^ÐUWVS uu 1 UB8Pu@UB9u}s1PSE0W觉U$貎)ރuiEX9rQVU2WxE)p0uEe[^_à uтa P脃E1Bdu)uE1u e[^_à uFݐUVSuu^u'e[^É VO^t܍v Ve[^ÐUVSuu^ u)e[^à V^ tؐ V藂e[^ÐUWS U1эAE܉UEBEM E؅ɉEEuF< @8Pu@EP5< rۃ Kue[_à 5< &말 5< ցe[_ÐUu uRPYnÍvUuu uRPUWVS uEӋ} uPRr8t ËRWuP]e[^_Qhzh{jvU1;EsE ÍvUWVS E1v&uSUZYt PU F9wۃ u7e[^_ÉUE E EEvUVS] usv跂uE Ee[^雂ve[^ÐUWVS1ۃ 9}؅uC9| 6$7e[^_É P 7CӐUWVS 1q$j SqPu)t*G9rكj hqEq-qe[^_Ë~uSj uV \e[^_ËVF.UEPUWVS4]S} jCP Chj5qqte[^_Í S‰ jRhxzhS =jS賋hzPSPP҃t;t Phzh,{jDžjhqqpZYhjqq'Vhzh{j}vhjRP^j떃 gDžp$hzhzj& WUS]3O4CtSu;tE]]Ívs s҃CϐUSQuihj qqqXZh,jqqqu]à hq:]Ív hq:녉UWVSh}hɉdt hq9EPhz=11҅q9E+hhzBdhj qqXZqh,jqqqL 5d覄ZYhj qqqEqz҉t˔de[^_Phj 5qqEiPl@`1;`lpE\E t8U t/1ېE 4p~ U uQhj5qqpt Pt&u\phzhT{j DžtG;`-h hq7zde[^_à hq61҅s hq7$q7v\ xU|hjp pxP @ tR$EVPtuҋlD GU DtT뺉lDž`?``Džu hq6t4j hq5U hOo. hq6ƃ븐UWVS<uÉ0DžE4!PP1IQSU4!B: PS*:ƄX.j S thU ËEM ACE@tZre[^_Ð 4!P=r̉DžuoPHu`@ t=uuIDžWujWKHPU B@J r< t< uCvEUM ,,!EAhUS t @1򮋅+9ȉ QPSQ< < E(;hUS0 t @1΋+9|URPS#QJCB赎/e[^1_ipU ktju uRVUWVS<]x{t{j.uVPSKtPuu Se[^_ÍvUWVS tD]p]`GPWU EI]ۉpt1e[^_o1UWVS FtE]pw]`GRPWuU EU]ۉpt1e[^_o1UMȃʃq1ÍvUSMȃʃ˃q13]UVSu]F9}Å~PSu 6x)^e[1^ÍvUVSp=qt e[^ÍvPjhh{]SEjEGN jjuV55@t qquPjhh{S N jjV55@tNq|Qjjj5]RjjP5=9=q0Qjhh{SM jjV5+5@uq 5e8vUMtqɉqttuqÍv tsqÍvUWVS u} u2 uLu\fe[^_ÉSVh{j# tv hq-t[L `Dždjjh`j`R3. DJ \SK VhD37XZPS" Ph{D 7q quqtDP5qqshaW PDžTjjh`jPP=-  t2<%uWm%SP5GuЃSj5$YxƅPuWD]XD,x+d pq =qjSP57@87t/t P05q jjSR5-7 &=qt ԇ87tqVjjh{4j>PQ@h)Ѓ )ÉlDžpQnDžthjPV04$X4 hq*e[^_ 5Pj@PL`YXSRG$3GDjjhP\q'3 Ph{D4@ D]k+dH qjq*Hx)ЉH+H|DžBDžPjxPjQ/KSj%2XZSj%G2 Dvu"UE Pu uÐUWVS }u ]u9 ST5u e[^_ÍvEqe[^_( hq(뵉UuQ 5G2qquÍv hq_(É hq(띉UVSuut5u#e[^É hq'ʐ hq'e[^ÐUÐUu uwÐUWVS u F]Et01эyCt :EuPWVSuKe[^_Íe[^1_ÐUWVSQ]CU t/ MzvU҉tsv9tAuCuZ[^1_Z[^_UWVSLu1ۅ~E;`Mɍ]E ̍v1KUEEuۋMxgK K:Ruh+2u _E uSu Ee[^_PuU4u (E;Er؍e"[^_K-SU hhruu rÉ裂ɸrÐUWVS1}Sƃ1t PSuVne[^_UWVS u} E3v PCEG=v: PyC9Eu8Ftp=wċU싄4EG=wƋU싄49EtӁw<4Wv> R C)Ã؍e[^_Ée[^1_à RBWw¡4)ÉUWVS uE }EU9 PBEUB=UvC PsB9EuIGt:Nt7=wU苄4EUB=UwU苄4뽐1e[^_=w*U苜4UB=v" PA)Ãă PAÃЋU苄4)É뤐UWVS ]ۋ} t*E48VuUt~E<Ku׍e[^1_Íe[^_ÐSD$L$ T$@AJt}tm8ui@AJtnt^8uZ@AJt_tO8uK@AJtPt@8u<@AJtAt18u-@AJt2t"8u@AJt#t8u@AJtt8t )[1[SD$L$ 8t@u1[ÐUS1 A ƒ~[á(zUS~"lvCSlIu$z1Ƀ)vlP@lA9[ÐUWVS#É`tC&C_<:df؉֙t/vUt3t[MIMEE [^_EUu͋uV)ȉEMIMEE [^_ÉME@ O1ɃE~5EE4v|)AE9݋E љ}zKQ։)ƍˍ  )ÍL gfff)ȅۍ…6)@֙MA)Ep~$EEU{S9}A9Ή)EMIMEE [^_ÍvMuV)ȍMM ;ESP 0F UWVSMɉÉUEE1IˁMEU|t U;EE@@EU؉LǂPǂT}G}UҋEtsUD}G =w)Pu]LuS5]}Cu1ҍe[^_E1VuuS5};ωUB 뒋E4+EEv;tU'ú덉؉]+}É}iE-Eut'||<,M<;E#EX11ɃUPpA91Ƀ}9PuA91Ƀ~~UP}9\u E)DLP؅uA9<,<;Uú>vEU؉LǂPǂTE؉`ǂd}G}hBCUȉúC<,U8E@@EU؉LǂP}G}TE؉։Ӊ`ǂdǂhEEvuEPUEuURNjUE9~sC>C1Eu&dEיufEיu`|)EE}hJv>C닋LUSSøh|u]à jڸh|G]ÍvUx!1 zCu É zUu%uÐ hzÉ hzɉUWS h|趍~ShX1I1;ug z$z(zplthh|hl@e[_ve[_Ð ztڀ;:t j zt z1뱍ve[_YShV@6Uu%uÐ hzÉ hzSɉUWVS$M UMU 11IWʐ;LL*Iy躀Q؉љEE)yOvQEQй]Cй<CEљ]SEUxA1Eu)dEәfEә`|;EmEәM}+UKҍ…ۉM܍<"QUԉEЋE))ƋE)؋]KDžۉQUԉEЋE))ƋE)؍)NjU)}UM€QM€Qx`|;EE-lUB ]ȋMZA|9|v]C @)MC]9~EUM@B B J$$[^_ÐutpBC71tfp;HɿD@9LH@9PxIGkD@9LtWvp딍vUVSE $zɋuEto90zg~90zB9vV zh zLLESV ClF(e[^Ðp1҅t (zpB9}tB9|1늉UVSuts hzv xz hz X5  hz7 j SjV$zJ e[^ÐCPhjVe[^Ðhhf i hz 1ʉ j,Ã1tS5PUSS ɋ] u&RSjuu9؋]É hzO RSjutʍv hzO ؃]ÐUVSEEu ]uGtZ upShEXZtC(e[^C(Le[^É hz uv t hz {vUVSҋutN h z= xQ h zT X5 t[PSjVe[^PhjVe[^ÉhhV y h z 1͉ j,Ã1tS5 yUS] Sju_؋]U hu uBÍvUuEj U@u EPuP ÐUS 191[ÉUWVSSE ɉ׋]xșƉ)EY[^_볍v҉Й։)EY[^_뎉U@+Bu'A+BuA +B uA+BuA+Bu+vÉUWVS|ExtU Ep }|u]j<^jEĉYUj EZlEMą%]̋}ȁnO~F1u(dי4fי!`|)MĺE+%Mān~']̋}EEMċ]̋}Dž4u%ؙdu ؙfu Dž4444|9~E)EčG vEȉDž4t444|9EICE̅8U;Džhvl=XhEEPEPtURxUEH;K)Efљu DžDD `|MąɉME]u[}ȋũ~FDžDudљu뉍v`|)MĺEe[^_jtvtJAG?u)[^_ÐUWVS u R%@t#>FwڡD4%@u݉<-U+EJ}}Mu10DEE1"Ewl1ҸuщEC< w4v;E}9Uxw;}wrtlE}NJFC< vύC<w`7;E|ǃ}<M tUҋEtFU e[^_Ív9~EF딉C<wW[0 FwڡD4%@u݉<-Y+EN}}Mu10DEE1"Ewp}-1uщEC< w2;E}9Uxw;}wrtlE}NJFC< vύC<w`7;E|ǃ}.M tUҋEtFU e[^_Ív9~EF딉C<wW[0  Be[^_Ð#PG~t1ҋ #11DžDž)ÁHN%)؋<PSWM E MA Dž19s@u6fGft-Љ)@9!ׅtՋt F9ru7 Pu+z JzhjVpDž1t[{t=Ft=t܋PSR uE t뵃 5@ XZju@ XjUjuÐU\t ‰ÍvjjEPh\jEPEEE @t\UWVS ɋuuVvV >FZv 24$ u2 V}e[^_v F P뙍v ^ S$l V̼}e[^_ZUWVS UEEMEtF}E9v1+uWVU ~]vFAKu+};}wϋEEMue[^_UWVS\}e] 1EEh] ] CPEȋMȃɸnUE} EĉUuuU Mȃuȉʃ3E EEȉEEE9Mĉ΋EȃU9ЉM̉uEEEu+EEċM9uMEЉEtEEE+EEĉE̋E9Es U9jU9UlMM܋ũ9MrM̋U uM9u_Eȋ}ĉEċE EE}ȃU9M9M u芺1e[^_ËU܊BU܈MG9sU܊BU܈MG9rlM9M]U9Uv+m]SuU;EV]؋M9Mw׋u؋UE9UԉE=]vU9UrM܋mMuu9uE9EuuUlUM̉Uԋu܉MEEu4u;u\VuU;EFE}uEEESuU;EeU;]rڋ]+]9ދEU9ЉEvE)1uESuU;E]؋E9ErEEu9uUt3UMЃ9ʉUrM̋U u9uMuFuEG9ZuFuEG9rBM܋EЋuMԉEEE PE )EuEuE2XEZ+EċUȍDuĉEMPMVUUE9UċEȍHME;]EU+EEȃEE~E FAJu+uU9GM벍vUBUG9rM܊AM܈GMIM܊AM܈GMu3SuU;E]UPWU;Eu }E;}rփ}"};}s`W+]SU;Et;U+EEȃEE~ًUFAJu+M9r};}rE~+MUFAJu+M9r;}U+EEȉE1};uEFM$vM މMEtNM܋9MrumuumuuvU܊BU܈G9rMAMGMMAMGMukEW+EPUUE Eu uPVuQbEăECk;D$T$@BtX8 uT@BtL8 uH@Bt@8 u<@Bt48 u0@Bt(8 u$@Bt8 u@Bt8 u @Bt8 t)ÐUVS ju"Ã۸tLu^V$JABKFC FCV$tXV$F$Cu Ce[^Ð F Pv F P|둍vUVSuF$U  9St ue[^ÅtF9Ct\C jRP6WC FFKu:C]e[^?v VotԋC9F|ʋC ;FuCBUVSuF$tv ؋PuF$e[^UWVS M9} ]uUt [^_ vyt(t >1t:AwZ$~t >t~f1 [^_c,  {i UWVS u~V9|YFu1FFtNN uffAft]؋F)@9PFtyuFuȍe[^_ÉuFuFPvv 69ljF~V됍e[^1_ÉUVSҋut* ^ S¶4$2$e[^à Ve[^ÐUWVS ]OEE5tu C PER$tH} uNuYUۉuOE1e[^_É S[tH} tt U ExUWVS `ҋ}EPu Kƃ1tfPjjW1Ã1xPڃt E9ue1t/fr Eu/fzRB$B,B(B Ѝe[^_ÉủfB `W1ȐUuu jujhÐUVSҋ]u&CHCx30@u:e[^Ð SCHCyΐ Sơtǐ Se[^ÐUVSUBrtC~wt\[1^Ívau<+u11ۊ<+tC=C<CCCBCAC@1҉DGDDDFDEDEDFDDDGSVSVB~jjjW!Ѓ@tWRhVWɵtB1=t NF<8t jjsP8Sz t˸e[^_Íe[^1_3O(,ϐUWVS4jP21u-t1ۃ~8u=C9t P謴 V1e[^_Ív PߤC9믃 0H 4誤H@uσ 艤188,8eUWVSjpÉtMKjPEt11K} B9|1e[^_z0Yl0܍vUWVS<} Huhj/Ã1ǃDžt 8Džt:PuWV@Wjj裯Et MAu( PhS謲$'&C%C$CC #C"C!C CCCC C C C C C CCCCCCCCCCCCC CC C CC C C CCC C C!C"C#C$C$C%C&C'C(C(C)C*C+C,C,C-C.C/C0C0C1C2C3C4C4C5C6C7C8C8C9C:C;CC?C@C@CACBCC1ҍDDADDADEADFDGfSfGSSB~Ou-;au%CHwj h4 ;C@t 誮 S81e[^_DžC8CC C CCCC4( RhjCDP1P(PV,1҅҉}tUB hSV+10t t 4ǃ$j$؝X@@h#@ <@ #@"@#@e[^_ÃEPV^A83EP=t7Z1^HQPl/8CH{4@ PW%@DDDHK C$j PAQSdyOD?K0K(C,K@C<{ PR$9S}S1xb1P8 P$C=C K{(ωǃ1[C K DD|C 88UVuStFk V؍e[^ÍvUSQU ҋEu`tX41҅u Ћ]ÉPjjS'u otЋ]Ívǃ01҉Ћ]эvUS u]u #C,9C(}#C0]ÍvUWVS,EUp E@EԋUUjj PRuPu#Etp]]{K}ȉ}EE9E؉E}.UfZfvG);u-EEE9E|ҋEHy]ce[^_Ívffwà uuuuu EFEEEPufjuPu"EPUȉU M܃EE]s E0vjuUPuD"EHMȉM]܃EE}w EE̋M9ɋuЉ}}7}>SuuuE`1ҍe[^_u uuuKuMa1Ӌ}g_UbN]c=E@EȋUfDPfvrEȋ] }؋UzTz)ЉC\MMVuuuIuu uuu虊Ma ju Ruuݘ }gvUVSUEҋu MXtu#t8M u҉[^Bǃ,-[^ǃ,vUSPEXEM UuU MY1[ǃ,Z[USSE}U Xw@tUE Yغ[ǃ,Z[cǃ,UWVS UEҋXtt $xmth1ɋ 2H(f|QtjHǃ(fyuTjPQPS u̺e[^_ǃ$ǃ(ǃ uf9uǃ $f9Uf(f|q qBU fqDq)ЋU B DqBUTqq)ЋUBf99syǃ $ǃ(1ҍe[^_Ë$S(9r7jjVS Hf9uyFǃ(S(9s9h$~1҉(떋C > juu PS 1eEǃ,lS(딺ǃ$XvUWVSu~(GV0!~(UNU9;F9~~jvǿUtLF( @P‹F 9} DDDDV F,9sF0 F,PWuVe[^_Ív PME藒útPuS E +EPM jRXmEFUWVS u1ۅHHuXt[=wtIt.C>t Pz SΑ1e[^_ÐTDžT\u`Dž\u Dž`<d.Džd h$CtRh$jPǃdǃ\`ǃ$$ސƉC1 󫁻t ^F8FSF 0F `0FGFF7EfE NePuu uOPjjМ@5EPԚUE XH  ǃǃ XLXyt!DL9sL‹T:11ҍGTf3fǃQj虶+ Wjj3GQjP35E t @E@t E P觎vHDž\DžLDžHDždDžTDž`<DžX==& e } E1 Ph@h(P80<$ (RWjn( $t (PPj(Rj3Gv E=-DžXXHDžX9 VfX} PjhPĜhb1 h$'h&i%j$kl #l"m!n oppqrsttuvwxxyz{||}~hb1u l]O/XSh4h 2P48 R3Ҷ Q3谶 @@f@fGG tft Rj3f j  h* ǃp=|_rX txUSPEXCu u&]ÉPjs3藱C]ÐUWVS EXCEPEPu Se}ƃt}uQj63 e[^_ÍvRjPujjVSp !@u.Ce[^_ÍvPjs3˰CbPj63谰yUUUUPUPUPPUUPUHQUQUQPUUPUHQUQUQP UUP UH QUQUQPUUPUHQUQUQPUUPHEAEAEAÍvUWVSDE ME EEEAEAEAAEEAEAEAEAAEEAEA EA EA A EEA EA EAEAfAfEEAEAfAfEEAEAQ A'tD[^_ÉAD[^_ft1fDyfEʊEˈDyEʈDyDyEĊELjEƈBEňBEĈBEEÈEˆBEBEBBt;EEEBEBEBEEEBEBEBtAEEEBEBEBEEEBEBEBvGfNf}1ۉfDYfEފE߈DYEވDYDYE؊EۈEڈBEوBE؈BEԊGGBGBEԈBt1`K94;XtE{/E6Et+hV={EPV1҃8IvEPV1҅/&E%=@Uj1jEUu1҉UvUj1jEUu1҉UjjUEtUUu jUEtUÐUWVSjdhP@3 jjhpxPjttPS$诊Dž\dRVd UUW@UdWt:V\G*hGGVdҊDD9D\\yDž`vWrWdL8VӉ$VDdD:$L`yZ e[^_ËU҉u(1D@=~BÐU tÉ*ÉUu1uÍv hCÉ h~뽉UWVSEEE E!Tp1FȢƠ؈E}EEE碡G~ue[^_Ee[^_z~ h=~_UWVS iBҊ󊆢ȊҊ NJȈ ǠȊӈۢЈ ǡu"e[^_à h}v h}e[^_ÐUM1@9rÐUE 1҅SMtXw $v[ÉAAAAAAAKtA닐UWVSE}EESEXtU 9S t1ۋEuEt5CBCCCe[^_ÉfEu^& ju1҅tj w {uF vU V FU4MqFFF0҉ju1}Pu rW0_ E ]MEU OE I!MOꋇUMÃEEu0E|VPVF Vfft fDBfE6ۉ]؃t<_KF O!Ë00Eu  u~EX@]KoE;C bSfft fDBfEރujCBCBCXCKC C{e[^1_H jjs sW_ x1vF jQv vW_ 1҅^ Vr1US]C E HK}R[ÍvUWVS }1҅t[Í9tMK uCtUtCuTE t9Cu6SPS S8r9u1ҍe[^_Ív뜃 Pr뼉 jPs sW^ t뼐UE SP]QP QPBP@@ @[UWVS\ExG }r!}te[^_ÐEE UZpf99w99]PSu W@tEEEVjSPLM A EjEPEP1E؃ME Uu܋Zf9vS]SuW脁@EȉEEQjSP֕MA EjEPEP軕EMEU r]f}TMSQu WbdEEEUfR}fUvuEELUBM A EEfXfHE)9VFf;EEUAfBf+]fZMf\JӋU BMAEPr2CS褔 U MZq1S荔G(tuU9Gcu"MYAH9EPRju7} N e[^1҉_ÍvPjw7ӖGG(   MMQuu W@Sju7xvQuuuuu uWwV EPj7$fGfO UBU B Ss)9r4\Cu fuwPVu W3|LJVjS7譕1ErLʉMMRjP7|R+EPUMQPRP膒EfXfHUJ!f}LJfLJRjw7EKfOfM6fGf;E@fGLJfEfPMAP0W\CFH9wPVu WztKfG @fG f1ELJzotfLJfG 븐UVSƋBu@Cu 1e[^RjP6ŕɸtCAPjQ6趓ȐRjP6蕕ɸtCAPjQ6膓두UWVSǍ@,UE;EXۉQjp7/tWf[f]UDP0CuJFH>DuVWjse[^_ÉC PWg|@uQjV7貒f^Ãf+UfJtfAf;EsEffJuf^CfFPjV7mU:t6UX1ۅt luW躏tSjR7!1@ EF)RSPEP/UfVEfDFfENfUJf!ff;EsEffFfFF )UWVSUB(tMUDQCCUp B)WSPPvMfqEUf|AJMftff9sfJfuUfZÃf+UfJtfAf9sffJuMfYCUfBMA(tu 9A1ҍe[^_Ë؃ Pu5z@ҋM9BB;Eփ} fE  uTEUBH;EMuUBrMAH;EEUMUfMtMNTC Pumy@ CGfQ;EB1fAPjjjFPPEPus tMSQWE@uUfEuNEEfFEHfEPEPWMuMpuNARjPE0ҐhEUPRWufE"uNPjSM1衎^RjPM1{E@HfEPEPWutuCN룋EfEPjjjSSURuMr EQjSU2PjSE0UWVSEȋU䋚;]uMȃ}u#Mȃ}fEE䋘EDF|0;U䋂f@PjV2̉ jWE0謋u9PjWU2I}  Rj0U2k1҃}EPjVU22 juЋE0U;OPjVE0 jU2E0ԊE\AfM֋U䋂U䋂fUfPE䋘jU;tPjVE0} UREPuTU09GE,EċV҉U0WjVE0(EOXۉVjpU2yfCfQjVE0ӇEȋU䋂;EujEDF|0RjVE0衇 jWU2聉@HfE֋U䋂8fUfPE䃀Mȃ}uPjVU2< jűE0U9HfE֋U䋂USD$L$ 8t@u1[ÐUSQӋRuC1]ÃSPjCC]ÍvUWVS׉} EUEt: }tJ}uȃNt ȃNu w7A0NG[^_ÉȃN0u] t<0tN0ӍvEgfffU܉E؋}܉)ׅtU܉E؋}܉ؙ)׍)‰N0}EtE;Eut ~NUUEB<U끉1u0̈WNETvUWVS UUU:?@9~ÃtAPuLtO v@9|E0Ue[^_à Pr\tPj VugWvUWVSLÉU1UȉUEEEvUG~uA}U;}UvwX$Ct%utCECBZ$0UEEP TUG;}~tE9t R~[e[^_ËU܋UR  P@[U9EEEU뚋U MEE;EU9U~EEUEBUE-MElE;E%U9U~EEUEBUMEE;EU9U~EEUEBU}MEE;EU9U~EEUEBU `Dž(( Dž(,UȋEU$UȋEyM$\ȃO u%  PIA((Dž(  P! IA' P IA P PK IA (jj 0(OB X$(CE@EЃ$EQUȋExU$0$<CE@EЃ$E u t1$ BE@EЃ$E Dۅ~n~8$<@$E@EE)ȋ$<YE@]Ѓ$E DL+(;~~-$(qE@uЃ$Ew)Å~4$<BE@E$Ex̋$<X$E@]ЃEUȋEU$UȋExU$UȋETM$gUȋE0M$1EE HPqEEHEEL9(v(u #$ CE@EЃ$EUȋETU$Dž jj VSJ0Ot<t;jj VSσу ÉuPIA \PIA \-eEA0FPSIA \A@ ODžB<VhhXSd SP7IAP(SR PPVRȉƒ EE1ɉP[CLU؉MPLPHPDPQR6( @q @PI[CgEEU @P[CYw 0P&I 1 @;P[C @UPC[C LEE z1(эq@P{IAEE[,$UȋEE$h`Dž(0 Dž(4ƅ3JEEHEEH EEHEEEEHEEfEEEE0F,1HEEPҋv((,ƅWƅWxDžƅ pEE%ƅ9- PIA} PIAEEHC PIA EE HX XPqI PIA"UȋE7E$ PIA! P^I PI닋EEDžzL)Љ$<YE@]Ѓ$E (8UȋEH]$UȋE']$9)Éu4Phh@S7wSj4Pj;ƃ1(jj VS0(ADžjj cwOÉP[CEE1EEP[CaEEOP[CPIA~EE EEEE1Pi[C|EE1EE1  PPPE P1EE)DžTEEEE EE7UȋED]$fEEEEEEAEEEE. B @PIAfUȋET]$UȋE+E$EЅuE1UȋEt vPt4IAMEE$EEΉ(эBf1 (tBЋ(ӍBЃ v$Pth[CPtP PPE H,녋EE뚋PҋtEv((, MfI @UfJ @ PPPE iPuEE념UVSuu'Puu Váu4e[^Ív VjPuu Vát͐ Vcke[^ÐUEPuuu ukEUÐUEt Puju uLà Puju uLUEMU tEU M P@EU M PUE\DX8TPtL0`1ÐUÉUU 1ҋMt}tt1:ÍvUMɋU tw 腃VɸUWVS u]Mt9IE 1tKtBt@IGuM e[^_PSjE 0aƒ҉tߋM +e[^_ËE ÉUWVS u]MtAIU 1t%KtwQFtYIGuߍvU  [^_ËU ۉttwKu [^)_jV븋E 뫐UVS@1ftK4fJu[^ÐUSjR0ItH RjP3G1҉Ћ]ÐUWVS EfӋ}fCfCG 4tmGFfCfCfC4E @ tK@U FC QjC SfCE0Ge[^1_É듍vE 봉UWVS Efփ fFfF0ECF U B< fFf)fFfF0U P7G PCS}CGu,F SjF fFVE0 F1ҍe[^_ËW E9@uvE H fFf)WRfFfF0QSCU C_JvUWVSLEUEEffEҋUffMffEfMfEfE]Cf9EfEEf9E[UB UHMEDA4 ~Ef9EwEDU9EUH9Uf9Ut+MfEfAf)fDQfARSVPAfEDUf9fEr t}tEMfEf9M"]UfCDPfCUBtM]9CEf9EUfEU܋Uf9UfEE֋M|Af]f9]UB HM4 fE֋M fAUf)fDQfARSVP@]fEf9]rU ]fBMf9]ҍHU fBE܍e[^_É MEDA41.toM4Bv]4FX )fEfE]1]EDC4FX U4M MfE֋]f)nUEDB41wfBE܍e[^_fJf;MrAfJf;MsUMAFfM] ]Cf+MfJUWVSǍEUPW?EPW?tmEEFCfCCFfFfCfFUB C F uuSVUU2U e[^_Íe[^1_ÉUWVSEEPu?ƃ1MfFU싂fFGFFG F GuEG9 ECGCfCU싂fCG C Gt2QjP2BEUBQjRE0~@uuVSEE USW=9]tG SE8U 2Ee[^_ÐOfFUfE8U 2e[^_Ív}봃 S1SjVU2?1UWVSLE fEE 8}]SURMQEPU E6ƃvfFf)UfDVfFU 0UBGM Pr2CSy< EXw7Se<U :U,Uu >WMQEPURU EEMA zH1fFUf)fDVfFEDF0PWuS;UCUE 8u-U uu‹E@xPjuċM17> juE0%>U;EXۉMUMĉUVjpM1?fSBfUMA wH"UBЉE̋8 f^V)ʍG9nAfUf9CfFMEA fFf)UfDVfFEDF0EuMȋUMȊAWECuPEȃ PS%:Eȃ@ZP E@HPjuċU2< juM1<WGM Pw7CS9U :]M uuU Ew@/PjuE0A< juU2/<XMqWje[^_Ét zb^fEfDF0UBCfFUf)fDVfFEDFM0ACUWjVE0s;PjuM1`; juE0N;e[^1_ËMAȉEȋ8E tkE@ub^ufvUUBDЋ U܉E؋UȋEԉЃ EЍEPEPщE 9s EuuU EBv)VQPBPR7f^WMQEPURE-\EPT`fEftTDF0EUċCfFUf)fDVfFEDF0EMCIEPTSURMQEPU Euu1+>UWVS ] SRPEUEM1E  E8pPjSM19Epf@fuTG]9tPjWE08PjwU2:U@fBHMfAPQuuuNU9_MfAfmMQ A9t;MQMQ1e[^_Ë9tQjWE088UrՋYRjQU28۸tPjSM19ǃtEf@8|M9t wPjSE07\USS]Cu!U C(SUfSC(]Ív P/C CU C(SUfSC(]UWVSEpF]u_ w"$8vF( w-$`Sqe[^_ÉUfEv1t(؍e[^_ÉPjv66F눍vPEPE0V jPuPu EPV !@JEF늍~GEPEVPX4v@B %B\PjR66PjS67u2@)B 7DB\PjR65PjS67uE t P!oPjv6D7ɸ`t0 fEމMfE@Wju653GfGf}A9uYPjQ64۸PjS66ɸfEovPjR64UBHfEGt)GMfGfEqEPEPU fff}t fMYPjQ64۸,WjS65ɸAHfEUWVSEU,JMQjSE05UBfE@ft8fMf4Efp Ruu P~FfuKfuG fuffEUfpDG\8PjW22QjSE04@1e[^_G tUEM  u#f}u GGU9t"MEfUfP MAe[^_ËGtVjwM1F4EtfEESPu uQjWE02EUMAQ EAPjw13EB@HfEPEPu u(u1PjWE01EURjuU21PjuU2|1UWVS|E ]U %=EE@u#UQju h2+e[^_ÉcEEPEPu ut?U E%EE]E% ?EmE]E} MfE fEEmUmEE@tM}Ew#U@EEuJUE+]O E}EUEUU} vE1ۃ}Ã}~m1ۃ}EE$E'}ut@Sju he%E 3EUVju h%EE UUUU u)}EE~ }tE} ]EEUM ߉@tt EB @EuUEt2Eu'E~ E  tɋEEMUBR $]؋Em@Q%EEEEU EEE]]ME}uU@}fEִ EfE?J]MB0EEA@MLM9MK tE]Em]m֋UR $ɃEUt뗋MɋuEEt,U3EE EEjG5E~E~U9U~uM)M))MEȅ~8Euub6E[_uP 5Yu2] j4U҉E~uP 6E1ۃ}~Et }EE@EEt +EE}mUUU}̅~uu7EM~uu6EUEJEE~Vu6EEۉEEiUEĈMB9MUQjj uS2EE9EePjj u42 Ejj u"2EEuu/&0EY[uu7XZuu97Ë@  S0u}tEu E|"}EUBuz~N}~EtA}~3jub5E^_uPP69Eă}:EMĈ@EvPjj u1EE]Euu%0EĈUBuz~kM9M|}T}t&ju4E[^uP5ME89uU9U%MM99tEE u/Mt+UtM9Mt ui/ u[/ uM/EE@UE tEM Ee[^_ÐSu4ƃ Rjj P/EEk]E荈2 M~^@+M⍈E ‰1RP,$]mm3E}REMMM> +MU몃}+EM)MىME߉}Euu1EVuu3MPjj u.EEEEU Bt/M)MFu EMU:0tBUE6M)M@EEEHɉMMEEEEEE5`]-ً}) cU}48fEeش  t]EfE6EEU9U.]UmUm֋UR$$B0U]EEBEUuك}~]t}EUE@MU:9uM9MME89tEEE]E ODEE4듃}t }Ex9jjuQ,EPuJ1~M1EAM؋U҉U}REE|Et뭃 p*UJlj֍  ^_jP/E E}8fEMش  c t]EfEEEUmUm֋UR$$E@]uEEB0UEB9EUuEEEEtEMU:0tBUutqى @]t^tE@MB]Eދ]g}9uWU9BUE<0EEE1@EEBEċM@AMEU0X}9tEEPjj u)E)UWVS0EpXuEUM؉]܋}E%->@EȋE؉EЋE܉EVSQw $؃&vEuWuu EPEPuhd ?t:e[^_ÉEÍvE뷍vE뫍vE럍ve[^_ÐUSzÍJt @[19t I<u9u[UWVS ƉӋ}t&~t;v [^_Hu<uD uډ{tӋE ˍvtUWVS4U] EUU EUEډEEMSQw$ %EUEU Ee[^_EUEU Ee[^_j%-UMuEEE}E uU܉ÍL@ I9rS99vI99w%U} U<E EtU  UI9se[^_É%ƒ I9wyuЉ]E ]Ћ}ԉ%u-EUEU E2e[^_ E{ ?vME|ME|tuPRUWVS@m}MM]EUu ۉE؉U܋}QRP}mw$h8#؋MPju$hEe[^_؋EWju$hE%-@Uuf} VÍT0@J9rK99v E؉EJ9щE9wE܃ <;u$;tM$ MJ9se[^_ }E%-B-؋MPju$h29rE܃EJ9ډEwZ{iO|;KO|;t>uEPR.VWt$ |$L$)9rу_^ʃON_^ÐUP}E ÐUUuÁuÍvUSM ÁUu% Ѓ[Áu% Ѓ[ÍvUMEMEEU UuE EÍvUUu UÐUWVS E }@DButaCE ;Fv+jPRFP3C P6CGM1҅CU uE!@!C@U;Bv,PRt7UC@BPs؃ PM1CUBM1ҍe[^_ËE!@ GC F FPVGPC Pu uvE PEuPC Pu tUMcv Pk P[CUBC +vUWVS Ef@fuuJuJ toDBBt? ҍ}tC PPGPRV u*EB E}EWu Íe[^_ÐUWVSEM qx9v ]8]]u@AJu[)^_U[^)‰_UWVSVMQUE x;}vU 8uCAFJu9}E[[^_[[^_ÐUWVS} u]jWEPZ jGPEPHUE9s'RP--txEEU;BvE]9vPSFPW jVU2E)؃Et>F߉ERjuE0iue[^_à Rbe[^1҉_ÍvUWVSUE MEUx&UBPjRM1)twMM]MQutqECCC fCfCu9vPVuCPEwU)uQjSE0ve[^1_Íe[^_UVSu] jSEPv jSEPd ju6ƒҸtFB uSPju6t$)]BERVW9]w1e[^Íe[^PjR6ސUWVSUEσ} x 1҃$؄vM 1]9ʉM@;U| PtEHtU 9v) v2J tt BAt)à ] t]}SEEPua PU Pju$h2Je[^_ÉE Sju$h׉] Vju$h뿃EPu!]E% ?EUELM Q $ɍ]5~VȄ $}fEִ fEEmUmu1EE@t$MPSE})E؍DEC}w#]@EEuK]E)ʉNEEuEUEUU} vE}~m0ۃ}Ew(E$EE UUUU uD |EEP J҉Ut:xt +EE}VNEC}9EݕhhlMEt7Eu.~*E ɋU tUEUɺR $]؋Um@G %EEEEE Eua]U҉UE uMUtE9Et u uy؋|U]uEMx }ẺEEuEEtE}uN9u_E)ƋU҉UE EEj EE~E~E]9~؉E)E)E)E}ȅ~K]\~1VuEZYtPXtx]E)( j}E~uPE1ۃ}]uUB҉Ut )ЉEEEEEEM̅~uuEU~uuEEEy}u~uuhEEۉEE S_uEuMu E uEuMv~ }UEMB9MUOPjj u]9]EVjj u Ejj uEEuu 0E^_uujY[uuP ҉ÿPu:ǃEM@?}fEִ EEfEE;E@E tm]m֋UR $MɍB0]EEA@Mu؃ uUE@M E$t]$UE |e[^_EEUUBEEUnEbЄMm]m֋EЃEEEE-Wjj SEEQtBEESjj uEE]Euu0EE9E|ËM}UBME M99u|9]ZME89tEEM9M)MىMEމuEًE؃}EME U:9u|9MM];9tEEuu}MPjj uZEEEEM At$U)(utE}}EQjjuEPu(|E 1EAM}UB@;EEE|+uuu1E]{}Eu,$EWjj u8E[^uPN0EuuAUEBUPjj uM9MuE뗃juE^_uPbERUBHEM];0tC]C~:juqEZYuP_E}:E ]{WEUEBUPuEUE@u $E5}EE9EvR2 p UJlj֍  ZYjP^E}9M9AME+EE])‹K@9})ύGE=@M)щMEE |E1C]9E}:E qE]@E C]E cU}48fEeش  t]EfE0E6E@;EE]mUm֋UR$$B0U]EEBEUuE@:MY1%؋U}8fEMش ]EfE.R$$]B0UEB;EUt$ t@MEUmUm֋UЅuE cEE1EMU:0tBU$E|0p}9EE MA1C]uEkYPjj u EDE@USPM1ۃv BC9v S ]ÍvUVS u]u ƒCBCute[^ÍvUEHPJBU UWVSE逋EHEPRUBtMfQ RWuPM)y9uRVuPE)p0)u[ u 6E9RVuPE0$ RVuPaM1 $ USQM I]wʸ Z1[%Z[ÍvUSPM I]wʸ![1[%[[ÍvUU1@~1ÍvUU1@~1ÍvUSQM Iw˸UZ[&%Z[ÐUVSuu Vt e[^Ét VGe[^ÐUj=`u uUWVS ǡyHۉK~x h;5H  S}HKʋDGD GDG DACu e[^1_à h  䐃 h  h9e[^_Ð h ;5H(CHމH h Wv h o h *Hۉw@ DHUEEEEEEÐUEEE EEEEEÍvUWVS 5Hv~O vOxrD3tUt U9T3uE؋D3 E܋D3ED3ED3uLE؃t\Ht h Oyv6juCe[^_à h E؃u uU܃띃 h  h e[^_UhW|$D$ L$uG_Ð1_ÐUSRd]fS ¨uHK0tC@9t QQfS C0CC]Ct=¨u1ҨuSS1]ÍvC؉C1Ck SfS 뱉CfS _ ]ÐUWVSl]fSfҋu }xaEPP=xJU1 Eȅt:CLte[^_É{(uf̉UVS]C tCCCCe[^ÐEQPEPS1Zu¼tJ`CECE΀u f s e[^à CP tf s fK tUWǍ@VS)PAEU1t\]G4ËExX3vPjXhS s8hhV XƔOy͋Ee[^_ÉUSSuY du1`”XHy`du]à h`]à h`UdVS ^F f{ tLXHy6u 1h 05h ^fC C8CCCCCfCC0C4CDCH@C8VhjP؍e[^à h`b h`Z h` h`r USQn+$ ~J t+P~9u~/Lt"u2h h u]à h`]à h`Uh,[ÐUWVS }G 1Ҩt6wt/)7uWWPSVWS ~)ƅ1҉e[^_fO @UUt+B uz ɸÐ RkÉEl'[vUVS]tt uZC t" S-҉u$e[^Ð Ҿt܃ See[^Ð S똉Ele[^ZUVSuu# Váu0e[^Ív V3 Vwátѐ Ve[^ÐUVSu跾ËF89Xt) PQF8XF8@ e[^Ív@ e[^ÉUvUWVS u[ËF819Xt? P te[^_ÐF8XF8@ e[^_É@ e[^_ÍvUSQ]S89BtX[ÍvB ~HB X[B C8@C8EZ[钼UWVSQE9UÉ}/+uECMDC ‹EfC@9E|ڋUSMfSX[^_UWVSMU EE]u u41ҋ l EEEtMqEUe[^_9vE؉EEȉuEEEE]fEڋEfE܋EMfEދEUUfEEfM̅ҋMfEfUfEfMEuM}-EUfztEM)MEfxEMUfztuփ vMfqNy+EUBUEMfIفfVwGEvE~3UUuEUEuJ_XEf@fVVEpMIEtPPffXfVPf9XfQfqX 1ptȉlj 9%pOwt 9wڋu1ۅ~RM@EHMq))ډӋ@UfB)N؅Pf fXX)؉ËPftDO1ۋu/UM ADU rDӋMfAN͋PfUMfe^_ÍvQVht,vPVht,ۍvU E EEPhvtuÐUE Phwt@uxUÉUE@(ÐUE@$ÐUEU P(1UEU P$1UE UB(B$1ÐUEP `` a_P@ @!USjh{t ]SEE+@t0 EPjjjjjhzt S1҃JЋ]ÐU jh^t uӹÐUE t&~t;ɸÐHuEEPEPhtu胹ÐEvUVS@] uty#K?e[^Ív߃EPVr@t1D(EtPjEPV@te[1҉^ÐPjhnt Vڸe[‰^Pjhot U uuu jujhÐUUҸxp ÉUWVS,}uȅt)?t$}1IMEPE]01IKBC)CPVje[^_ÐUÍvUh21Uh2ÐU2ÉUM tvÉUh21Uh21Uh2t1UE2`UÐU1ÐUÍvUÍvUÐ;vk̀rÐ'vj̀rÐvÒrÐvF̀rÐv̀rÐשv̀rÐév̀rÐ鯩v̀rÐ雩v̀rÐ釩v̀rÐsv̀rÐ_vx̀rÐKvỲrÐ7vK̀rÐ#v+̀rÐv̀rÐv̀rÐv̀rÐUWVS MUA u29r}G;G}(UD@BEe[^_@Ee[^_ËG @P;urUBM +AU9։U>M‹M<%EUfFf>;urEtMA;AtMD@AEe[^_ËA @P E EH} ƍ  $ӺU UB뢐UÍvUWVSDEX$S4CLUE} CXjPK(S,KXS\ΉЃ -@BA‰΁?BS\ɉsXM؋C\ȉE܋K4ɍUCȉEC HȉEEEEPjjREP1 HE؋U܉CLC4SPECDECT[GjWPXuWQ 1҅uWe[^_jjREPM1H{hjge[^1҉_ËC0CHCTrGjWPts@ uWM 1҅e[^_ËUẼE̋WPWR1҅F]ȍUȋGRWP1҅(UB EăEċWPWR1҅E UGRWP1҅OUWVS,E M1҃x Y$t e[^_ËPEЃEԋBjjEEPAP/H7EЍU@E؍sXEԹȉ׉Eu*EC0C4뒃hj%f1|hԒjUWVS}_$Cs4u_GW{hC`Sd1}щMC`WPEPs-xrC`SdV FFe[^_É hPlPs$pC(P sChjTeUh(j=ee[^1_ÍvUVSu^$ 3_XsVC$u0hu>luL S/ue[^ Phtĉ Plt P Sׇue[^ƇUWVS} j(j@shtj$w@@$ǀhǀlǀp@(@,Q7w@hP$ugt VtHQC2C$hl SƆe[^1_Ð1уKAQj%}1эAC XZQj҉C@8E}1QjDz‰C$}1PQuRCC@WPPRC @PusECMrMQVFF 0u2H- P-/801F ^$jVǃpe[^_Ívhhja Pl P v Pτv P軄v P规vEt}MpC hAg hA" FPq'hhГj`UChГvUWVS$uSV t=1щjuuu PVe[^_SVhjJ`e[^1_UWVS ]td1҈߹щM5 ыEL 1ҁv e[^_Ð Su Vh"uKe[^_à EPd1҅u]낉UWVS<uE 1ʋ} щ )ҋL1ҁv e[^_Ð Vu Sh,u蓪e[^_à P詫1҅uXhW} DUSS]菐uQjjS]ÍvRjPSb]ÐUVS] SuVA1҅ttHtH1ҍve[^ÍvPhCPVC1҅tQjCPV~A1҅tRjCPjCPV`A1҃UVSu] PjSV?A1҅u e[^ÐPjCPVA1҅e[^UÐUVS0֍URURURURURMQh5P[ ~C1^T؍ @ ڃ~EE֋EEPjFPE։VFP1ҍe[^ÉUWVS ҉~-1Ӑ 47YYt7OZt7E Ku؍e[^_UWVSLUDžDžDžDžDžDžM EB]tu1e[^_Ë]1%,DžQ1t1ې 0"PhMhP$._+$cQ_+$.>_+FQG t |1 v 2PhMhP$^+$cQ{^+$gAh^+FAG t |]DžDžDž1҉=Džq1I19ωvhgAt3^uh.>t3]uG ;}ttRDž]tЃRQSShVPWhchP1 htX1e[^_ÉjjPjhV表 tDžDžDž@RhujhtjW  DžjP t P螋t GWP jtjǤtA]3tm= ~@9Љ)9vًU Be[^_Ð1 hP5[z GWPXZQPRShhVQUhu]S 1Pjj:h|8j{$c jV莆@.!PjQDž 蓉U|Dž>J)!IDž-1҅n u61҅KDžDžjVjjSPq @ Huʰ PjjSPf$J y T8tDžPPjjRƃ F`[U tÍv=v Ív ÐUWV$fjh$EPj e^$_ÐU,EEEPURjEEE蘄xEt E@E‰ËEUEM t.~tOt91ÉHu  QÉQ  <׍v<ƉUWVSjjjhP jjjZjƅif1jIhhɉMEjEVjjjdZYPPjhEPSw tPFjjVPe[^_à S=58t, j8<e[^_ÉDž`-M\v \QC X \tcQXuCw Sx P+`s cQ8up<a hA{v hA'{`t} `0R8Z\L<”h\jQY u1K hAz14#ˍvUWVS DžE 5@t7 6luSvYKvu1p WjjjhVjN0 t6ut sSU e[^_ËF EvrsERvvP;E̅@Dž tFUЉ]̉B p9ۋ P҉uȋ  urEP]1EEEEEEB tC $PShwI $u؉CECWjjjhVjE؉E. [u$@ P萶/ hAgxe hAx` hA~x3 hAixL1 jh@q UjhhPוMDžtV& 8jp P<$PC1t P Cj pljC tACt:t6tKt%F GP[pGC @}]UM hAwU 0pXrpB _po^p oBuJ tlB B o D&1 Po 1EB@RvvPt hA/vD8@CB@D hAu5@1ƋFu 6nXvnXF pnXv nFu*t4G@C@ Vnm Psnȉ@CҍvUWVS\]ۋ}E1t-WS'Eu! FVP1e[^_ËEEȋE E̋Ef|Ph j ]S%]؋V5 5 EPhyEPhp:jV$FVPXumEe[^_É1v1dUVSP]E1thEE؅ۋE EtaEE䠔{Ph j ]Sg]V5 5 EPhyEPhp:jV$FVPEe[^ÉEࠔ뛍vUWVSCÐ S?HddB tٺ CƉuƋd SD jjjxVغ jjjxÃ1xgƅyPjhhzW謐1I xQVS8xx S{e[^_à Sn{1e[^_UWVS]DžpDžtDžlDžhMEcEp cQ*fEEUr.> hgAH EPڋEvp$Cp1pPBh jRPp PEPj pRUE UEUr.>(EEpPEp0EPhhwEPhHFjp @v tEp C VUE UȉEEؠUEЋBpDžxapDž||VBWj RP]ԅpQBh jRPpBUr2xWh8<uVhp:j p0ox1tHsEpou(s Ur WuCU9B>[ulWh8<$] pBSjRPXZSlqExt'pt pBRPDžpUvpEEԅt=t PXhle[^_ÃWh8<l#pUBEԅuEԠpPBh jRPh||u!D|H|pPBWj RPpBUr2tRh|Vhp:jp0v upPEPpR}w_|H|xlt lBu1pXr^_PpSpp BRPDžpv EPUEpvfEffEPpPEPjpR$ Wh<jS0uM4uHFw EHEw CSPEu e[^_ÃEPh|uutc@M4;w/RPwq_GU4BXw`<$y`| wf`<$Y`U4BRE4@>vUWVS u1t>u u ne[^_Ð hQEϽe j‰6u STu0 Sq1tG5 5 u htjhtjWÍ@ v. GWP1e[^_1)uPGVj WP}uEPGVj WPG5 5 u htjhtjWÃ0|[*UVSEu EtWtD~1t0C5 5 URh|Vh\>jSCSPEe[^11ېUVSEE tq1tKj j谊tcC5 5 Vh\>U Rh|jS u CSPe[^É V]1C1e[^à CSP1!1ܐUWVS 1E EpNXxf{ ~ SU ǃXNyEEuύe[^_ÐUWVS E E졜8 =P~3hzRuH=te5LhzR6,=tI1ۃ~ 5Lu4 =tKC9EThThH8&e[^_uhzhTj@9e[^_MV uuhzhj9e[^_ÉUVSȋ|5l) P[t[|ҍplPR[t#|DXx1ҍe[^Ív''N|5l)һ'IPRw[C P0[dvUWVS |tp l EfE`pUtpx EtpxUv\gll-t!xf;|we[^_Ë ptE`p) C$9l;xrBLl@Љ]lUfPJ BpJH?9@1?5l)Ɖ5lE)E uPuLlEfFJ Bp[1xv?t]x ?@};5xr lBlEfBBB( hFt|x:p;EU@]Pp;xr1u?l@Љ]lUfPJ BO hy  HLPX X hHA멉tNA X]N?0zxpA!X 1pU hAxQldtUWVSQ5 p;5l =EtEf U9t4 @:~֊Uf U9uU ǣF;5lhZ[^_UÉUMh9tBt)tllhPxhP h|ÐUUt0BBB@BBBB$;ht^UWVS u] V1F Xt" u#CP葢~~e[^_ÉS[؍vU PhO58 c$襑UPSÉUWVS u }v|7t e[^1_Ív|7u(tHFC {{CCCCC C$SWe[^_øx;묐UWVS u F}EBt>1B9|D33uS(tCe[^_ø붸<׉UU1:@<uPRgÐUVS(u tVs FCtCuSe[^ÉТJCuSe[^øТ$랉USPh]tS5h]h5dEhS5hj]UWVS tOp du @ d`u < `h,Vlt] p]5 f ] @:~f 9u 5f EfE5p A5xxhPx1ۅu!E܅h@$xM܍xh@hPxD hQxAllEU5v5H t  9MϋEU죌)ЋMt lt*1 9}@9}< u@ 9|w,$h5dh1e[^_ËE+HEUt hA$u!Axdh@$ hQxl9@59؉׉oA )Kp|]pHpl5`j55ue[^_à 5-1E]P P%t = Pq]E1I9ME=wUD4룍e[^_Íe[^_Íe[^_Íe[^_Íe[^_Íe[^_Íe[^_ËM䋄4\ 5)K1҉]FGB;U|hx$]X 0~ ~ hp*1AdPJ҉Pxyd@ 4h@U܈ F9 t 5d4붸x hlp 5d:뀋d@ @1Z"v 5dB5dSj@EPCxBd@ @ZMhj'2x@hXUF j M]lœ9Ⱦt;@:~ 4fЍ9uf  :55؋]lEf 5d  5dBEll5U] 5dlCl]u15@UPIÉUSP]t;htCu![[ΉY[hCtvC[[륐U5u5 hzhj%USP]t( CǃD!P]]Hv]ÍvUhxph NÐUSQ"Nt Ћ]ÉhphNu u 1҉Ћ]à 5 MuhL!jt1҅tP5 TOt SH1룉UWVS,ƉmUzB j.V)J=U ,U ,!t'ʁw u .@uۀx.Pu VWdPhVkE ƀ-E .UE BU RǂBЃUBly@ :1e[^_É=j:V] ,t+ʁw u:t .@uրx.tyPu VWc WhVSjE ƀ-UE BE ǀ@@E BR1:E u uWVh@h hghh`j!01HtЍe[^_øPhPVlʉ/PPulaU菉yvUWVS EE} u]w@t] uE [^_z@u3 [^_UWVS }u ])w@u~z@tKw@ u] ue[^_SvSV?1҅uʍe[^_諈UWVS }}u ]v@t`t{9uuSVuh@hhghhj;0He[^H_y@ue[^_Ãu?t|uOut,WlGaG V=K }6赥r襥/bG%r_KvUS ]u S ]]UuFUSP1҅tPCPSu1҅uډЋ]ÉUSP1҅t@PSu u>1҅uډЋ]USPz1҅t! @PSuu u 1҅uډЋ]ÉU=tPuUt P ÐUSP] ,!u*hhbhQ,!E0!]Ð PGE0!]ÉUSQ],!t 0!t]Ív P[ǃ,!]ÐUWVS<Nj,!P,!hPvQ8#tЃhuOPRthUS:tPSj+^FPSj^iMDž`踄e[^_ÃhhbhP,! w뽍vDžȃIAGG W< t< uFv,,!GhUVtC1򮋅+9ȉ$RPVcރ< < (;hUVetC1򮋅+9ȉ|AWPV^cʉKFO‚e[^1_ÃBZDž*肂vUVSu] p@% E[^USP1҅t@PS1҅uډЋ]ÍvUWVSE‹U‹Ux0Wj jFEu]F;Eutpu6t<^tu3ittu3Ju WB}e[^_no@ tF0F0XF F]UWVS$E‹U‹U‹U@PjEv jU=Eu(CE܋E9EuًC0E9}uŃ}t" ul}e[^_n@ tӃC0C0XC C뮐UWVS ljZn@ue[^_KVW?B:e[^_ÐUWVSMEDž\X} |t4~} te[^_Ã} uDžT DžTfGhUM fG,,!;|xwHzx )PRV|L N T4t;|$} } }EǠtǀUzM8pA8zhhDždDž`;| TލF ;|] VpM4$bM} l V=M؍|9Љ<lƉhh,;| `x )PRV|J `똋1PӁbPEPڋPM+ V9L} t`} tZ} ;} t7 WZYPu $ jþPuhj% <uE(;t hQV|I  WT;<Ftt1Ӂډˋx)9YMWRkUdtpeidtd~ } !EuU1}ˋx)98,uRjU؉h@ z1 hQV|H " WsI;<1ˋx)9WR jډXpvPxPuQ} } S}7qE9X  dM1ʉЃP;xkE;p\\#Dž@d89@DDžH1)fDƋfl#9htGfd9rċHfM@u~M9~@HdD9Hq@9@@;f}f}f9~)f}f}8DTOy@d렃} Xt-uhj%<7܋x )PRV|D x] DEtH;<wdueUCt(1Ӂ``d4xڸxE(;tvttzppPSVRڀ<wډjT UVSutMt8@@ CPSVuU Eu Ѝe[^1@@ u1֐UWVS E‹U‹8@EE WG h0 hPujuY xk=v V0ڸte[^1_uWuu‰É4$0e[^_ÐEV Vv0ڸt/t륉UWVS,Eƒ:‹‹@b@@SvPPh٥VWƃKyShhmhRT h`/{ hPj jPS o=j R‰ V/P P RW}@@tg3se[^_d@sډPGPGPGPhPV `@ tVJBB ^ V.ڸt5O V-<_r'Z V-ڸ벍vUE`@tEuÉ/`HÉc@uÉU ``UWVSEuuo||1Ҹ6EP|07ajjuuE$,E4(x |{ut SUtC P~,CFfCfFCF@QPFPCP79}vbU 4|&{Gs |ntUtujWuaE Ue[^_Ðxu+tME x(Es OE4+u u+X|0ne[^_à VʐUE E EEvUWVSE}]t$Puu u:dd1xU15tM謍衍t V Et d:r1e[^_ÉEGEEEGEEEG ESEPhjw( eXjuo GMЀʀz dŌjjjd~!Ѓ@VE t65v  Gwv  hPda4UE  FFPF dF FFFPjj3S0P ЃtYRjQ3nQtt  e[^_Ë ƃ SjhjjSQ Pj뜉ʀ /vG8E   hdx` @ tuljS@!"USPEXCu!u&]ÉPjs3;PCz]ÐUWVS EX{u/ $v  V  9RjFPSǺ K(s$uu VPS} E !@CUe[^_þq9s  mVSu)NU 0uCe[^_Ée[^_ÐQjs3NCC(Zs$FVC(s$Nt;jS@zPj73TNUUWVS Ep~Mu E uge[^_9s$  u߃SVu͐RjKSVM Ã۸t ujjSV !@u,Fe[^_ÐSjv6MFFPj36hMȐUWVSE9 1RPfbUMEUMMM 9M։:UPJ҉PE@t.NGt UZuÃu҅jEPuu+ECU 9Us;ERMEUMMM 9M+1ҍe[^_à R# MvÃTEjPuur*_e[^_PVMPWqM 9MvE e[^_ÐUWVSEEUM 9ʉUEvUPJ҉PE@t};]txuHM)օf PT"U40OFp UKsÃuM)ƃEuut}jEPuu(u=CtbEM 9M1e[^_ÍvPRR_Ube[^_à MtÃdE 9EsU 듉UWVS}9s<RP^EU싇 E䋷;u sF;]vtCAJ;]ru:jEPVW'uMF;u r1ҍe[^_à R PPRPQojEPVWf'te[^_Á e[^_ÍvUWVSE EE;u s=9sLډ]C9s;Eu)ЉEjEPVu&u4CF;u rËEe[^1_ËE e[^_Íe[^_ÐUWVS M UDQCtCPuX1@U B3)ÃRSPPDM fqEU f|AJJftff9sfJfuE fXÃE )ȃfJtfAf9sffJuU fZCM fAE1ҍe[^_ÐUWVSjRPXt%R@PSVuQjS6F1ҍe[^_ÐPjS6Fe[^_ÐUVSEXCuuOtNtd賀e[^ÐE t9rJDuԁ Pjs3FC똍vC(tɸtS$JuK$믐UWVS<]{G} 0 ('jjj"rփ ƹG$EEEE!juVURSSu3vQvu,;F:jVEPSStЋu@w$tHjjjq!Ѓ@t(PRS|mu 1ɍe[^_Vjw7DG} vjS9e[^_ÐjW@띍vEEujVURSSvEE؋FERjEP'VB9ujVURSSt$UWVS u^CunjV@tE 1ugu"@ `mt V3@t e[^_ÐPjs3CCCv't n R*uUWVS ]ۋu}t'EC1҅U RTPC!@@;v2 Pt3@P3CPj?G1ҍe[^_Éur jtԉ‰džGC뮃 PPGPCPVq) uvjPa닃PRUUWVS E,UE쉂BE1EPjuU26C@ $@1 ;E wADCf9э4uUUEAfBUv}ur}jQjDC PjSE0@PjuU2BIz}8u"FDCPjSE0V@U;EtqptdRjpU2BtK}uFDC 맋EXE f)UfB Ee[^_DCVjSU2-z8e[^1_ÐUWVSf0ƋJf\Gf)Q2PF<fGUBf)à P2FP<֍؍DfWf7fDWf\We[^_ÉUWVSEEU EUErfщUfDFffE}UfDVNjEHf+};EttLFPE)ȍPSR<];]D^vffBfB;]$fJftffB9fB;]~ffDFUf|VfVGfDVEfEH8UJe[^1_Íve[^_|UfB $UWVS}G EtEu$U ffG fBG fBe[^1_ËEuEw<jO t1RPSBj!Ѓ@Vuu S%U fMu~u f>uuffG fFG fF[M G ..., where is one of: %s: %s not compiled in ۊRRRRRRRRRRRRRR5F%6d stdoutstdinusage: cat [-benstuv] [file ...] benstuvbb bb1bb1bXXusage: chmod [-fhv] [-R [-H | -L | -P]] mode file ... HLPRXfghorstuvwxthe -R and -h options may not be specified together.invalid file mode: %sfts_open: 0%o [%s] -> 0%o [%s]fts_readHLPRfinprvthe -R and -r options may not be specified together.the -H, -L, and -P options may not be specified with the -r option.%s: name too longdirectory %s does not exist%s is not a directory%s: directory causes a cycle%s%s: name too long (not copied)chmod: %s%s and %s are identical (not copied).cannot overwrite directory %s with non-directory %s%s is a directory (not copied).%s -> %s %sutimes: %schown: %schflags: %sunlink: %smknod: %smkfifo: %sreadlink: %ssymlink: %s%s not overwritten (y/n [n]) overwrite %s? %s%s -> %s %3d%% cp [-R [-H | -L | -P]] [-f | -i | -n] [-pv] source_file ... target_directoryusage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-pv] source_file target_fileBJPj zgȦ@@ U@@)S-0L # 6JU  ^  h  <BJR [  e  l@rpz` P@0  7-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|_myOС !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwx7-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|ཚmyO_ !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwxjJ    .<(+|&!$*);~-/,%_>?`:#@'="abcdefghijklmnopqr^stuvwxyz[]{ABCDEFGHI}JKLMNOPQR\STUVWXYZ01234567897-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|_myOС !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwx7-./% <=2&?'@O{[lP}M]\Nk`Kaz^L~no|JZ_myjС !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwx    [.<(+!&]$*);^-/|,%_>?`:#@'="abcdefghijklmnopqr~stuvwxyz{ABCDEFGHI}JKLMNOPQR\STUVWXYZ0123456789fillcharibsifiseekoseeklcasenoerrornotruncoldasciioldebcdicoldibmosyncparevenparnoneparoddparsetsparseswabucaseunblockunable to allocate space for the argument "%s"no value specified for %sunknown operand %s%s: illegal argument combination or already setbs supersedes ibs and obsrecord operations require cbscbs cannot be zerocbs meaningless if not doing record operationsseek offsets cannot be larger than %jdneed exactly one fill charunknown conversion %s%s: illegal conversion combination%s: illegal numeric valueobs must be between 1 and %jdibs must be between 1 and %jdfiles must be between 1 and %jdcount cannot be negativecbs must be between 1 and %jd%s: short input record%s: seek error creating sparse file%s: end of device%s: short write on tape device%s: short write on character devicefiles is not supported for non-tape devicesinput bufferoutput buffertruncating %s%ju+%ju records in %ju+%ju records out %ju odd length swab %s %ju truncated %s %ju bytes transferred in %.6f secs (%.0f bytes/sec) iseek/skip%s: illegal offsetskip reached end of inputoseek/seek%s: write failureư>_ %6s SizeAvailUsedFilesystem%-*s %-*s %*s %*s Capacityifree %*s %*s %%iused Mounted on%-*s %*jd %*jd %*jd %5.0f%% %*jd %*jd %4.0f%% total %sufsBLOCKSIZE=512BLOCKSIZE=1gBLOCKSIZE=1k-l and -t are mutually exclusive.vfs.conflistsysctl(vfs.conflist)malloc failedBLOCKSIZE=1monly one -t option may be specifiedusage: df [-b | -g | -H | -h | -k | -m | -P] [-aciln] [-t type] [file | filesystem ...] abcgHhiklmnPt:%s stats possibly stale/tmp/df.XXXXXXstrdup failedmkdtemp("%s") failed-n(:%&)*+%-/*+-/:<=>:%&)*+-)/%&)*+-/<=>%&*)<=>/%&)*+-:/&|)+-<=>&)<=>&)+-|<=>&|)&|)<=>&)&)<=>|<=>|<=><=>|&)%&|*+-/|<=>:<=>||%&|*+|-/:<=>%*+-/||:<=>                       !"   B[aim3O (*6BNZfr~malloc() failed|&=<>+-*/%:()syntax errornon-numeric argumentdivision by zeroyacc stack overflowEXPR_COMPATusage: expr [-e] expression %jd unknown signal %s; valid signals: kill -signal_number pid ... kill -signal_name pid ... kill -l [exit_status]usage: kill [-s signal_name] pid ...-l-soption requires an argument -- sillegal signal number: %s--illegal process id: %s%%%%%%%%% %% link source_file target_file ln [-fhinsv] source_file ... target_dirusage: ln [-fhinsv] source_file [target_file]replace %s? not replaced %s %c> %s fhinsv$.8LV?)B"-I1U<aNgve"=\\""ab f n r t vLS_COLWIDTHS %lu : %ld : %lu : %u : %u : %i : %jd : %lu : %lu fflagstostrMAC label for %s/%sCOLUMNSCLICOLOR1ABCFGHLPRSTWZabcdfghiklmnopqrstuwxCLICOLOR_FORCEcolor support not compiled in%*lu , total %lu %e %b %T %Y %b %e %T %Y %e %b %R %b %e %R %e %b %Y %b %e %Y %s %*u %-*s %-*s %-*s %3d, 0x%08x %3d, %3d %*s%*jd %5s ls: %s: %s -> usage: ls [-ABCFHLPRSTWZabcdfghiklmnopqrstuwx1] [file ...] usage: mkdir [-pv] [-m mode] directory_name ... m:pv mv [-f | -i | -n] [-v] source ... directoryusage: mv [-f | -i | -n] [-v] source target%s: set owner/group (was: %lu/%lu)%s: owner/group changed; clearing suid/sgid (mode was 0%03o)%s: set mode (was: 0%03o)%s: set flags (was: 0%07o)%s: set times-PRpv-PRp/bin/cp-rf/bin/rm%s: waitpid%s: did not terminate normally%s: terminated with %d (non-zero) statusoverride %s%s%s/%s for %s? %scannot resolve %s: %scannot rename a mount pointrename %s to %sfinv%s: destination pathname too long*M+M+*M+G+t*M+M+*"/" may not be removed%s: malloc unlink fileusage: rm [-f | -i] [-dIPRrvW] file ...recursively remove %d dirs and 1 file and %d filesremove %d filesremove %s? %s: -P was specified, but file is not writableoverride %s%s%s/%s %s%sfor %s? %s: is a directory"." and ".." may not be removeddfiIPRrvWPOSIXLY_CORRECTusage: rmdir [-pv] directory ... usage: sleep seconds ReUUU"VunusedVersion 6Version 7System V4.1BSDEighth Edition4.2BSDMSDOS4.4LFSHPFSISO9660vinumraidjfsSMDMSCPold DECSCSIESDIST506HP-IBHP-FLtype 9floppyCCDVinumDOC2KRaid%s is not a valid file or linkcannot get disk geometrydisks with more than 2^32-1 sectors are not supported%s read%s: no valid label foundread mbroffsetverbgeom (to restore label and install boot program) bsdlabel -R -B [-n] [-b boot] [-m machine] disk protofile (to write label and install boot program) bsdlabel -w -B [-n] [-b boot] [-m machine] disk [type] (to install boot program with existing on-disk label) bsdlabel -B [-b boot] [-m machine] disk (to restore label with existing boot program) bsdlabel -R [-n] [-m machine] disk protofile (to edit label) bsdlabel -e [-n] [-m machine] disk (to write label with existing boot program) bsdlabel -w [-n] [-m machine] disk [type] (to read label)usage: bsdlabel disk%s %s %s %s %s %s %s %s %s %s %s %s %s %s # %s: type: %u disk: %.*s label: %.*s removeable ecc badsectbytes/sector: %lu sectors/track: %lu tracks/cylinder: %lu sectors/cylinder: %lu cylinders: %lu sectors/unit: %lu rpm: %u interleave: %u trackskew: %u cylinderskew: %u headswitch: %lu # milliseconds track-to-track seek: %ld # milliseconds drivedata: %u partitions: # size offset fstype [fsize bsize bps/cpg] %c: %8lu %8lu %8.8s%8d %5lu %5lu %5.5s %5lu %5lu %5u %5lu %5lu %5d%20.20s # "raw" part, don't editwrite to disk label supressed - label was as follows:/boot/bootcannot open %sread error %sboot code %s is wrong sizecannot open file %s for writing labelwrite labelwrite bootcodewrite %s%s: unknown disk typesector size 0 sectors/track 0 tracks/cylinder 0 cylinders/unit 0 revolutions/minute 0boot block size 0 boot block size %% sector-size != 0number of partitions (%lu) > MAXPARTITIONS (%d)Too many '*' partitions (%c and %c)unknown multiplier suffix '%c' for partition %c (should be K, M, G or T)partition %c not an integer number of sectorstotal percentage %lu is greater than 100 %ld sectors available to give to '*' and '%%' partitions Offset %ld for partition %c overlaps previous partition which ends at %lu Labels with any *'s for offset must be in ascending order by sector Offset %ld for partition %c doesn't match expected value %ldpartition %c: size 0, but offset %lupartition %c: offset past end of unit partition %c: partition extends past end of unit partition %c is not marked as unused!partition %c doesn't start at 0!partition %c doesn't cover the whole unit!An incorrect partition %c may cause problems for standard system utilitiespartitions %c and %c overlap! unused partition %c: size %d offset %luline %d: syntax error Warning, unknown disk typeline %d:%s %lu line %d: %s: bad flag drivedata%lu partitionsline %d: bad # of partitions bytes/sectorline %d: %s: bad sector size sectors/tracksectors/cylindertracks/cylindersectors/unitrpminterleavetrackskewcylinderskewline %d: %s: bad %s headswitchtrack-to-track seekline %d: %s: Unknown disklabel field line %d: partition name out of range a-%c: %s line %d: %s: bad partition size line %d: %s: bad partition offset line %d: missing file system type line %d: Warning, unknown file system type %s line %d: too few numeric fields i386amd64ia64pc98alphaUnsupported architectureABb:efm:nRrs:wa -m option must be specified/dev/can't create %scan't reopen %s for readingEDITOR/usr/bin/viyou have too many processesre-edit the label? [y]: fopen %susage: clri special_device inode_number ... %s: can't read superblockcannot find file system superblock%s is not a valid inode numberclearing %d usage: dmesg [-a] [-M core [-N system]] aM:N:sysctl kern.msgbufkvm_nlist: %s%s: msgbufp not foundkernel message buffer has different magic numberkvm_read: %sPrimary DOS with 12 bit FATXENIX / file systemXENIX /usr file systemPrimary DOS with 16 bit FAT (< 32MB)Extended DOSPrimary 'big' DOS (>= 32MB)OS/2 HPFS, NTFS, QNX-2 (16 bit) or Advanced UNIXAIX file system or SplitDriveAIX boot partition or CoherentOS/2 Boot Manager, OPUS or Coherent swapDOS or Windows 95 with 32 bit FATDOS or Windows 95 with 32 bit FAT (LBA)Primary 'big' DOS (>= 32MB, LBA)Extended DOS (LBA)OPUSOS/2 BM: hidden DOS with 12-bit FATCompaq diagnosticsOS/2 BM: hidden DOS with 16-bit FAT (< 32MB)OS/2 BM: hidden DOS with 16-bit FAT (>= 32MB)OS/2 BM: hidden IFS (e.g. HPFS)AST Windows swapfileNEC DOSPartitionMagic recoveryplan9VENIX 286Linux/MINIX (sharing disk with DRDOS)SFS or Linux swap (sharing disk with DRDOS)Linux native (sharing disk with DRDOS)QNX 4.2 PrimaryQNX 4.2 SecondaryQNX 4.2 TertiaryDM (disk manager)DM6 Aux1 (or Novell)CP/M or Microport SysV/ATDM6 Aux3DM6EZ-Drive (disk manager)Golden Bow (disk manager)Priam Edisk (disk manager)System V/386 (such as ISC UNIX), GNU HURD or MachNovell Netware/286 2.xxNovell Netware/386 3.xxDiskSecure Multi-BootPCIXQNX4.xQNX4.x 2nd partQNX4.x 3rd partMinix until 1.4aMinix since 1.4b, early Linux partition or Mitac disk managerLinux swap or Solaris x86Linux nativeOS/2 hidden C: driveLinux extendedNTFS volume set??Amoeba file systemAmoeba bad block tableBSD/OSSuspend to DiskFreeBSD/NetBSD/386BSDOpenBSDNeXTSTEPNetBSDIBM JFSBSDI BSD/386 file systemBSDI BSD/386 swapSolaris x86 bootSolaris x86 (new)DRDOS/sec with 12-bit FATDRDOS/sec with 16-bit FAT (< 32MB)DRDOS/sec with 16-bit FAT (>= 32MB)SyrinxCP/M, Concurrent CP/M, Concurrent DOS or CTOSDOS access or SpeedStor with 12-bit FAT extended partitionDOS R/O or SpeedStorSpeedStor with 16-bit FAT extended partition < 1024 cyl.BeOS file systemEFI GPTEFI System PartitionDOS 3.3+ SecondarySpeedStor large partitionSpeedStor >1024 cyl. or LANstepXenix bad blocks tableparameters extracted from in-core disklabel are:cylinders=%d heads=%d sectors/track=%d (%d blks/cyl) Figures below won't work with BIOS for partitions not in cyl 1parameters to be used for BIOS calculations are:sysid %d (%#04x),(%s) (active) start %lu, size %lu (%ju Meg), flag %x%s beg: cyl %d/ head %d/ sector %d; end: cyl %d/ head %d/ sector %d Information from DOS bootblock is:/boot/mbr%s: length must be a multiple of sector size%s: unable to allocate read buffer%s: short readunable to allocate buffer to read fdisk partition tablecan't read fdisk partition tableinvalid fdisk partition table foundwrite MBR%ss%dFailed to write sector zeroSupply a decimal value for "%s" [%d] %s is an invalid decimal number. Try again. %s [n] yesYESThe data for partition %d is: Do you want to change it? The static data for the slice 1 has been reinitialized to:sysid (165=FreeBSD)ERROR: size of partition is zeroWARNING: partition overlaps with partition tableCorrect this automatically?WARNING: partition does not start on a head boundaryWARNING: partition does not end on a cylinder boundaryWARNING: this may confuse the BIOS or some operating systemsERROR: unable to adjust start of partition to fall on a head boundaryERROR: could not adjust partition to start on a head boundary and end on a cylinder boundary.WARNING: adjusting start offset of partition to %uWARNING: adjusting size of partition to %uERROR: failed to adjust; setting sysid to 0Explicitly specify beg/end address ?beginning cylinderbeginning headbeginning sectorending cylinderending headending sectorAre we happy with this entry? fdisk -f configfile [-itv] [disk] usage: fdisk [-BIaistu] [-b bootcode] [-1234] [disk] BIab:f:istuv1234statfs("/")^(/dev/[a-z]+[0-9]+)([sp][0-9]+)?[a-h]?$regcomp() failed (%d)mounted root fs resource doesn't match expectations (regexec returned %d)can't get file status of %sdevice %s is not character specialcan't open device %scan't get disk parameters on %scannot open disk %scannot allocate buffer to determine disk sector sizeread_s0%s: %d cyl %d hd %d sec StartPart %11s %11s Type Flags %4d: %11lu %11lu 0x%02x 0x%02x ******* Working on device %s ******* ERROR line %d: the geometry specification line must occur before all partition specificationsERROR line %d: incorrect number of geometry argsERROR line %d: number of sectors not specifiedERROR line %d: unknown geometry arg type: '%c' (0x%02x)ERROR line %d: number of cylinders not specifiedWARNING line %d: number of cylinders (%d) may be out-of-range (must be within 1-1024 for normal BIOS operation, unless the entire disk is dedicated to FreeBSD)ERROR line %d: number of heads not specifiedERROR line %d: number of heads must be within (1-256)ERROR line %d: number of sectors must be within (1-63)ERROR line %d: incorrect number of partition argsERROR line %d: invalid partition number %dERROR line %d: size of partition %d is zeroERROR line %d: unable to adjust start of partition %d to fall on a head boundaryWARNING: adjusting start offset of partition %d from %u to %u, to fall on a head boundaryWARNING: adjusting size of partition %d from %u to %u to end on a cylinder boundaryERROR line %d: incorrect number of active argsDo you want to change our idea of what BIOS thinks ?BIOS's idea of #cylindersBIOS's idea of #headsBIOS's idea of #sectorsAre you happy with this choiceMedia sector size is %d Warning: BIOS sector numbering starts with sector 1Partition %d is marked active Active partition number must be in range 1-4. Try again.Do you want to change the active partition?active partitionDo you want to change the boot code? We haven't changed the partition table yet. This is your last chance.Should we write new partition table? -t flag specified -- partition table not written.usage: mknod name [b | c] major minor [owner:group] %s: illegal %s namenode must be type 'b' or 'c'%s: non-numeric major number%s: non-numeric minor numbermajor or minor number too largegroup must be specified when the owner isowner must be specified when the group issetting ownership on %sasynchronousNFS exportednoatimenoexecnosuidnosymfollowwith quotasunionnoclusterrnoclusterwsuiddirsoft-updatesmultilabelaclsffsext2fs%s on %s (%s, mounted by , writes: sync %ju async %ju, reads: sync %ju async %ju, fsid %s,%s-oasync%s %s %s %s %u %u 1 1 2 2 0 0forceupdatemsdosexec: mount_%s/sbin:/usr/sbinexec mount_%s not found in %sstatfs %sno mount [-dfpruvw] [-o options] [-t ufs | external_type] special node mount [-dfpruvw] special | nodeusage: mount [-adfpruvw] [-F fstab] [-o options] [-t ufs | external_type]noroadF:fo:prwt:uvgetmntinforqnoautonot currently mounted %s%s: unknown special file or file system%s has unknown file system type/var/run/mountd.pidsignal mountduserquotagroupquotadevrdonlyusage: mount_ufs [-o options] special node %s on %s: mount table full%s on %s: specified device does not match mounted device%s on %s: incorrect super block-o %s: option not supported%s: not a directoryextattgensrripstrictjolietusage: mount_cd9660 [-begjrv] [-C charset] [-o options] [-s startsector] special node cd9660_iconvcannot find or load "cd9660_iconv" kernel moduleUTF-16BEbegjo:rs:vC:could not determine starting sector, using very first sessionusing starting sector %d shortnameslongnamesnowin95 [-W table] special node [-M mask] [-m mask] [-o options] [-u uid]usage: mount_msdosfs [-9ls] [-D DOS_codepage] [-g gid] [-L locale]msdosfs_iconvcannot find or load "msdosfs_iconv" kernel moduleunknown user id: %sunknown group id: %siso22dosiso72doskoi2dosKOI8-Rkoi8u2dosKOI8-Usl9u:g:m:M:o:L:D:W:malloc()stat %sҫҫҫҫҫҫҫҫ«˫vm.stats.vm.v_swappgsinhaltusage: %s [-%slnpq] [-k kernel] dk:lnpqcannot dump (-d) when halting; must reboot instead/boot/nextboot.confnextboot_enable="YES" kernel="???halted by %srebooted by %sshutdownSIGTSTP initSIGTERM processesWARNING: some process(es) wouldn't die (can't restart init): ,qbqqqq o]c>o>c>>W>]>iF~h))#-[-b blocksize] [-f file | -P pipecommand] [-s fileno]restore -x [-dhmNuvy]restore -t [-dhNuvy]restore -r [-dNuvy]restore -R [-dNuvy]restore -i [-dhmNuvy]usage: %s %s %s %s %s %s %s %s %s %s %s %s option requires an argument -- %cillegal blocksize -- %sblock size must be greater than 0-P and -f options are mutually exclusive%c and %c options are mutually exclusiveillegal dump number -- %sdump number must be greater than 0b:df:himNP:Rrs:tuvxynone of i, R, r, t or x options specified/dev/sa0Begin incremental restore ./restoresymtableCalculate node updates. Begin level 0 restore Calculate extraction list. Verify the directory structure command lines cannot be continued missing %c ./canonname: not enough buffer space Warning: undefined file type %d restore > %s: out of memory %s %s: no such file or directory %s: not a directory %s: not on extraction list extract directory is used If no `arg' is supplied, the current help or `?' - print this list (useful with ``ls'') verbose - toggle verbose flag what - list dump header information quit - immediately exit program setmodes - set modes of requested directories extract - extract requested files list of files to be extracted delete [arg] - delete `arg' from add [arg] - add `arg' to list of pwd - print current directory cd arg - change directory ls [arg] - list directory Available commands are: %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%sls: out of memory directory reopen failed %s%s: name exceeds %d char %*d verboseverbose mode off verbose mode on setmodeswhatDebugdebugging mode off debugging mode on %s: unknown command; type ? for help restore interrupted, continuedir %10d %s %s: not on the tape ./%uMark entries to be removed. Delete whiteouts %s: REMOVE |ONTAPE|INOFND|NAMEFND|MODECHGcorrupted symbol table name/inode conflict, mktempname %s deleted hard link %s to directory %s [%s] %s: %s|LINK cannot KEEP and change modesNODE and LEAF links to same inode[%s] %s: %s [%s] %s: Extraneous name %s: (inode %d) not found on tape [%s] %s: inconsistent state [%s] %s: impossible state Find unreferenced names. %s: remove unreferenced name unreferenced with flagsRemove old nodes (directories). cannot remove, non-emptyContinue extraction of new leaves Extract new leaves. %d: bad first %s: not found on tape expected next file %d, got %d unknown file on tape unexpected file on tapeExtract requested files Add whiteouts Add links Check the symbol table. incomplete operationsWarning: missing name %s missing inumber %d type should be LEAFMangled directory: reclen not multiple of 4 reclen less than DIRSIZ (%d < %d) bad seek pointer to rst_seekdir %ld error reading directory corrupted directory: bad reclen %d corrupted directory: bad inum %d Warning: `.' missing from directory %s Warning: `..' missing from directory %s Set directory mode, owner, and times. TMPDIR/tmp/%s/rstmode%dmodefile not defined fopen: %s cannot open mode file %s directory mode, owner, and times not set set owner/mode for '.'cannot find directory inode %d error setting directory modes Cannot find directory inode %d named %s write error extracting inode %d, name %s read: %s Extract directories from tape %s/rstdir%d-XXXXXX%s - cannot create directory temporary fopen%s - cannot create modefile fopenopendirfile: %s Root directory is not on tape no memory directory table addino: out of range %d duplicate inumdeleteino: out of range %d deleteino: %d not found %s is not a directory %s: pathname too long cannot find entry in parent listnot marked REMOVEDfreeing referenced directoryfreeing non-empty directorylookupino failedlink not foundbad name no space for string table cannot move ROOTno memory to extend symbol table bad name to addentry %s link to non-existent name duplicate entry Check pointing the restore cannot create save file %s for symbol table fwrite: %s output error to file %s writing symbol table Initialize symbol table. no memory for entry table cannot open symbol table file %s stat: %s cannot stat symbol table file %s cannot allocate space for symbol table cannot read symbol table file %s Incremental tape too low Incremental tape too high initsymtable called from command %c Cannot allocate space for tape buffer /dev/ttycannot open %s: %s /dev/nullCannot allocate space for magtape buffer Dump date: %sthe epoch Dumped from: %sLevel %ld dump of %s on %s:%s Label: %s End-of-input encountered while extractingWarning: %s %s Cannot have multiple dumps on pipe input ioctl MTFSF: %s write error extracting inode %d, name %s write: %s seek error extracting inode %d, name %s lseek: %s symbolic link name: %s->%s%s; too long %d unallocated block in symbolic link %s hole in map Unknown conversion character: %c Format of dump tape is too old. Must use a version of restore from before 2002. Note: Doing Byte swapping Checksum error %o, inode %d file %s 8l4s1q8l2q17l2l4qgethead: unknown inode type %d Volume header begins with record %qdDumped inodes map headerUsed inodes map headerFile header, ino %dFile continuation header, ino %dEnd of tape header; predicted %ld blocks, got %ld blocksChanging volumes on pipe input? Otherwise, begin with volume 1. have no further files to extract. can quickly skip tapes that and work towards the first; restore start with the last volume If you are extracting just a few files,You have not read any tapes yet. You have read volumes%s%ldSpecify next volume #: Volume numbers are positive numerics Mount tape volume %ld Enter ``none'' if there are no more tapes otherwise enter tape name (default: %s) none RESTORE_VOLUMECannot set $RESTORE_VOLUME: %s Cannot open %s header read failed at %ld blocks tape is not dump tape Wrong volume (%ld) Wrong dump date got: %s wanted: %slast rec %qd, tape starts with %qd Skipping %ld duplicate record%s. active file into volume 1 mid-media short read error. partial block read: %ld should be %ld Tape read error while trying to set up tape trying to resynchronize restoring %s skipping over inode %d continuation failed: %s End-of-tape encountered partial block read: %d should be %d unexpected tape header unknown tape header type %d resync restore, skipped %ld blocks ran off end of tape not at beginning of a file Missing address (header) block for %s at %ld blocks %s: unknown file mode 0%o skipped socket %s unextracted directory %s extract file %s %s: zero length symbolic link (ignored) extract fifo %s %s: cannot create fifo: %s extract special file %s %s: cannot create special file: %s %s: cannot create file: %s Verify tape and initialize maps tape read error: %s is not a multiple of dump block sizeTape block size (%ld) %s (%d) Tape block size is %ld Tape is not a dump tape cannot stat .: %s bad block size %ld Tape is not volume 1 of the dump no header after volume mark! Cannot find file removal list maxino = %d no memory for active inode map Cannot find file dump list no memory for file dump list warning: cannot rename %s to %s: %s rename %s to %s warning: cannot create whiteout %s: %s Create whiteout %s |REMOVED|TMPNAME|EXTRACT|NEW|KEEP|EXISTED%s is not on the tape %s? [yn] abortdump corebad entry: %s parent name %s sibling name: %s next entry name: %s next link name: %s next hashchain name: %s NODEentry type: %s inode number: %lu flags: %s delwhiteout: not a leafwarning: cannot delete whiteout %s: %s Delete whiteout %s removeleaf: not a leafwarning: %s: %s Remove leaf %s removenode: not a noderemovenode: non-empty directoryRemove node %s newnode: not a nodeMake node %s not on ino listRSTTMP%s%ld%lumktempname: called with TMPNAMEwarning: cannot create symbolic link %s->%s: %s warning: cannot create hard link %s->%s: %s linkit: unknown type %d symbolichardCreate %s link %s->%s Lost connection to remote host. on %s: %s%stcpshell/tcp: unknown service who are you? invalid user name %s RMT/etc/rmtlogin to %s as %s failed. Connection to %s established. IP_TOS:IPTOS_THROUGHPUT setsockoptTCP_NODELAY setsockoptW%d Protocol to remote tape server botched. (rmtgets got "%s"). Protocol to remote tape server botched (code "%s"). I%d %d ioctlL%d %d R%d C O%.226s %d %s: device already in use%s: NSWAPDEV limit reachedusage: %s -a | file ... [-AhklsU] [-a file ... | -d file ...] swapoffAadlhksUswremov%s: %sing %s as swap device vm.swap_infosysctlnametomib()%ld-blocksUsed:Device:%-13s %*s %*s xswdev version mismatch/dev/%-8s %*lld %*lld sysctl()Total: %*lld %*lld callocstrdupcan't get net id for hostFSID:%d:%dunmount of %s failedretrying using path instead of file system ID%s: unmount from %s udpRPCPROG_MNTRPCMNT_UMOUNTcannot remove mounttab entry %s:%s%s:%.*s%s: statfs%s/..%s: stat%s: not a file system root directory%s: unknown file systemfstab reading failure umount -a | -A [-F fstab] [-fv] [-h host] [-t type]usage: umount [-fv] special | node | fsidAaF:fh:t:v/var/db/mounttab%ld %s %s bad mounttab %s field '%s'can't open %s can't write to %swrite mounttab entry %s:%scan't remove %s by hostdelete mounttab entry%s %s:%stoggle verbose modesend new user informationshow command usageunset an optionget (set) umask on remote sideset file transfer typetoggle packet tracingset tenex file transfer typeshow remote system typetoggle store unique on remote machineset file transfer structureshow current statusshow size of remote filesend site specific command to remote server Try "rhelp site" or "site help" for more informationset or display optionstoggle use of PORT/LPRT cmd for each data connectiontoggle store unique for local filesshow status of remote machineremove directory on the remote machineget help from remote serverrestart file transfer at bytecountclear queued command repliesrename fileshow or set options for remote commandsget file restarting at end of local fileset socket send/receive buffer sizeset transfer rate limit (in bytes/second)send arbitrary ftp commandprint working directory on remote machinesend one fileissue command on alternate connectionforce interactive prompting on multiple commandstoggle transfer progress metertoggle preservation of modification time of retrieved fileslist contents of remote directory in a machine parsable form through your pagerlist contents of remote path through your pagertoggle use of passive transfer modeset translation table for default file name mappingset templates for default file name mappingget file if remote file is newer than local file get multiple files restarting at end of local filesend multiple filesshow last modification time of remote fileset file transfer modelist remote path in a machine parsable formlist contents of remote directory in a machine parsable formmake directory on the remote machineget multiple fileslist contents of multiple remote directoriesdelete multiple filesdefine a macroprint local working directoryview a local file through your pagerview a remote file through your pagerchange local working directoryget (set) idle timer on remote sideprint local help informationtoggle printing `#' marks; specify number to set sizetoggle metacharacter expansion of local file namesreceive filetoggle gate-ftp; specify host[:port] to change proxyconnect to remote ftp serverset file transfer formatget files using a localfile as a source of namesshow FEATures supported by remote systemtoggle use of EPSV/EPRT on IPv4 ftptoggle command line editinglist contents of remote pathdelete remote filetoggle/set debugging modetoggle carriage return stripping on ascii getsterminate ftp sessionchange file permissions of remote filechange remote working directory to parent directorychange remote working directorytoggle mget upper/lower case id mappingterminate ftp session and exitset binary transfer typebeep when command completedset ascii transfer typeappend to a filesend account command to remote serverexecute macroescape to the shellABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ E EEEEEEEEEE EEEEEEEEEEEEYEE_E}E/EEEEEEEEEE EE ,E;EEEEJ$En KMGTP***************************************************************************************************************************************************************************************************************************************tenex%s %s [anpqy?]? EOF received; %s aborted Prompting off for duration of %s. Interactive mode: off. %s aborted. confirmation options: a answer `yes' for the duration of %s n answer `no' for this file p turn off `prompt' mode q stop the current %s y answer `yes' for this file ? this help list usage: %s [ | Using %s mode to transfer files. %s: unknown mode. TYPE %s %sTYPE %sinternal error: unknown type %d.usage: %s usage: %s mode-name We only support %s mode, sorry. usage: %s format We only support %s format, sorry. usage: %s struct-mode We only support %s structure, sorry. nmap: unbalanced brackets. local-fileremote-fileusage: %s local-file [remote-file] APPESTOUSTORContinue withlocal-filesusage: %s local-files mput%s: not foundusage: %s remote-file [local-file] Restart is not supported by the remote server. local: %sRETRr+remote-filesusage: %s remote-files mregetSkipping non-relative filename `%s' mgetusage: %s localfile Cannot open source file %s and logged inConnected %sto %s. Not connected. Connected for proxy commands to %s. No proxy connection. (none)Gate ftp: %s, server %s, port %s. Passive mode: %s; fallback to active mode: %s. Mode: %s; Type: %s; Form: %s; Structure: %s. Verbose: %s; Bell: %s; Prompting: %s; Globbing: %s. Store unique: %s; Receive unique: %s. Preserve modification times: %s. Case: %s; CR stripping: %s. Ntrans: (in) %s (out) %s Ntrans: off. Nmap: (in) %s (out) %s Nmap: off. Hash mark printing: %s; Mark count: %d; Progress bar: %s. Get transfer rate throttle: %s; maximum: %d; increment %d. Put transfer rate throttle: %s; maximum: %d; increment %d. Socket buffer sizes: send %d, receive %d. Use of PORT cmds: %s. (disabled for this connection)Use of EPSV/EPRT cmds for IPv4: %s%s. Command line editing: %s. Macros: 20050514NetBSD-ftpVersion: %s %s usage: %s [ on | off ] %s %s. Bell modeEditing modePacket tracingusage: %s [ on | off | bytecount ] mark: bad bytecount value `%s'. Hash mark printing %s (%d bytes/hash mark)Verbose modeUse of PORT/LPRT cmdsProgress barInteractive modeusage: %s [ on | off | gateserver [port] ] Disabling gate-ftp mode - no gate-ftp server defined. GlobbingPreserve modification timesusage: %s [ on | off | debuglevel ] %s: bad debugging value. Debugging %s (debug=%d). remote-directoryusage: %s remote-directory CWD command not recognized, trying XCWD. XCWD %susage: %s [local-directory] lcd %sLocal directory now: %s Unable to determine local directory usage: %s remote-file DELE %susage: %s [remote-files] mdeletefrom-nameto-nameusage: %s from-name to-name RNFR %sRNTO %sMLSD is not supported by the remote server. MLSDnlistNLSTLISTusage: %s [remote-path] usage: %s [remote-path [local-file]] pagermoreoutput to local-file:usage: %s remote-files local-file mlsusage: %s [command [args]] SHELL/bin/sh-cTry again laterusernameusage: %s username [password [account]] USER %sPassword: PASS %sAccount: EOF received; login aborted. ACCT %sLogin failed. Unable to determine remote directory Remote directory: %s Local directory: %s directory-nameusage: %s directory-name MKD command not recognized, trying XMKD. XMKD %sRMD command not recognized, trying XRMD. XRMD %sarguments to SITE commandusage: %s line-to-send SITE command line to sendusage: %s mode remote-file SITE CHMOD %s %susage: %s [umask] SITE UMASKSITE UMASK %susage: %s [seconds] SITE IDLESITE IDLE %sHELPHELP %sQUITusage: %s [password] Account:usage: %s command ?Ambiguous command. ?Invalid command. ?Invalid proxy command. Case mappingCarriage Return strippingusage: %s [inchars [outchars]] Ntrans off. Nmap off. mapoutusage: %s [mapin mapout] usage: %s [ on | off | auto ] EPSV/EPRT on IPv4Store uniqueReceive uniqueusage: %s (all|get|put),maximum-bytes[,increment-bytes]] usage: %s (all|get|put) [maximum-bytes [increment-bytes]] CDUPCDUP command not recognized, trying XCUP. XCUPusage: %s [restart-point] restart: Invalid offset `%s' No restart point defined. Restarting at %lld for next get, put or append SYSTLimit of 16 macros have already been defined. macro nameusage: %s macro_name Enter macro line by line, terminating it with a null line. macdef: end of file encountered. Macro not defined - 4K buffer exceeded. %s %lld %s %susage: %s [remote-file] STATSTAT %sLocal file "%s" is newer than remote file "%s". usage: %s local-file usage: %s size sndbufrcvbufxferbuf%s: size must be positive. usage: %s [option value] %-*s %s No such option `%s'. Setting `%s' to `%s'. usage: %s option Unsetting `%s'. FEAT is not supported by the remote server. FEATMLST is not supported by the remote server. MLSTMLST %susage: %s command [options] OPTS is not supported by the remote server. OPTS %sOPTS %s %sanonpassftp_proxyhttp_proxyno_proxyrpromptaccountbyecdupnrdisconnectepsv4featuresfgetglobhashidlelcdlpagelpwdmacdefmlstmodtimemsendnewerntranspassivepdirplspmlsdpreservequoterecvremoptsrhelprstatusruniquesendportsitestructsuniquethrottletraceumaskunset Must be logged in to complete. unknown complete type `%c'usage: %s macro_name [args] '%s' macro not found. parse_url: invoked with NULL argument!http://ftp://file://Invalid %s `%s'Invalid address `%s' in %s `%s'Invalid IPv6 address `%s' in %s `%s'Unknown port `%s' in %s `%s'parse_url: user `%s' pass `%s' host %s port %s(%d) path `%s' HTTP fetch aborted. Invalid URL `%s';type=a;type=i;type=dDirectory listing via a URL is not supportedInvalid suffix `%s' in URL `%s'fetch_ftp: user `%s' pass `%s' host %s port %s path `%s' dir `%s' file `%s' *?[]{}Can't connect or login to host `%s'fetch_ftp: unknown transfer type %ddir `%s', nextpart `%s' ftp: The `CWD ' command (without a directory), which is required by RFC 1738 to support the empty directory in the URL pathname (`//'), conflicts with the server's conformance to RFC 959. Try the same URL without the `//' in the URL pathname. localhostNo support for non local file URL `%s'Invalid URL (no file after host) `%s'no file after directory (you must specify an output file) `%s'savefile `%s' copiedCannot open file `%s'Can't lseek to restart `%s'Copying %s (restarting at %lld)retrievedproxy URLMalformed proxy URL `%s'Scoped address notation `%s' disallowed via web proxyTrying %s... Can't create socketConnect to address `%s'Can't connect to %sRequesting %s (%svia %s:%sGET %s HTTP/1.0 Pragma: no-cache GET %s HTTP/1.1 Host: [%s]Host: %s:%uAccept: */* Connection: close Range: bytes=%lld- restarting at %lldCache-Control: no-cache FTPUSERAGENTUser-Agent: %s User-Agent: %s/%s %swith authorization%swith proxy authorizationProxy-Authorization: %s Writing HTTP requestReceiving HTTP replyreceived `%s' Content-Length:parsed len as: %lld Content-Range:bytesparsed range as: %lld-%lld/%lld Received unexpected Content-Range headerLast-Modified:%a, %d %b %Y %H:%M:%S GMT%a, %d-%b-%y %H:%M:%S GMT%a, %b %d %H:%M:%S %Yparsed date as: %sLocation:parsed location as `%s' Transfer-Encoding:Bogus transfer encoding - `binary' (fetching anyway)chunkedusing chunked encoding Proxy-Authenticate:WWW-Authenticate:Basicskipping unknown auth scheme `%s' parsed auth as `%s' Not expecting partial content headerNo redirection Location provided by serverToo many redirections requestedRedirected via %s Redirected to %s No authentication challenge provided by serverAuthorization failed. Retry (y/n)? auth_url: challenge `%s' realm="Unsupported authentication challenge - `%s'Username for `%s': Error retrieving file - `%s'Unknown error retrieving fileCan't run `%s'already done Size of `%s' differs from save file `%s'Can't open `%s'got chunksize of %lld Reading fileCan't change modification time to %sUnsupported transfer encoding - `%s'Unexpected EOF reading chunksizeUnexpected data following chunksizeWriting `%s'Unexpected data following chunkImproper response from `%s'about:tnftpThis version of ftp has been enhanced by Luke Mewburn for the NetBSD project. Execute `man ftp' for more details. lukemLuke Mewburn is the author of most of the enhancements in this ftp client. Please email feedback to . netbsdNetBSD is a freely available and redistributable UNIX-like operating system. For more information, see http://www.NetBSD.org/ versionVersion: %s %s%s `%s' is an interesting topic. auto_put: target `%s' auto_put: URL `%s' argv[2] `%s' %c%c%c421 Service not available, remote server timed out. Connection closed 421 Service not available, user interrupt. Connection closed. 421 Service not available, remote server has closed connection. %s:---> PASS PASS XXXXACCT ACCT XXXXNo control connection for command.connect to address %sgetsocknameIPTOS_LOWDELAYsetsockopt %s (ignored)fdopen failed.Connected to %s. SO_OOBINLINE receive sendabortxfer called with unknown direction `%s' aborted. Waiting for remote to finish abort. runique: can't find unique file name. use of scoped address can be troublesomeSO_DEBUGEPSVwrong server: return code must be 229 disabling epsv4 for this connection PASVLPSVPassive mode refused. Passive mode AF mismatch. Shouldn't happen! wrong server: return code must be 227 wrong server: return code must be 228 %u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%uPassive mode address scan failure. Shouldn't happen! %c%c%c%d%cparse error! connect for data channelSO_REUSEADDRsetsockopt %slistenEPRT |%d|%s|%s|PORT %d,%d,%d,%d,%d,%dLPRT %d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%dIPTOS_THROUGHPUTpoll waiting before acceptpoll timeout waiting before accept remote abort aborted; closing connection. Lost control connection for abort.%cABOR proxy server does not support third party transfers. No primary connection. PORT %sREST %lldlocal: %s remote: %s sentlocal: %s %s: not a plain file. netoutreceivednetin%s: short writeWARNING! %d bare linefeeds received in ASCII mode. File may not have transferred correctly. Can't change modification time on %s to %susage: %s [-46AadefginpRtvV] [-N netrc] [-o outfile] [-P port] [-q quittime] [-r retry] [-T dir,max[,inc][[user@]host [port]]] [host:path[/]] [file:///file] [ftp://[user[:pass]@]host[:port]/path[/]] [http://[user[:pass]@]host[:port]/path] [...] %s -u URL file [...] no such option `prompt'ftp> no such option `rprompt'Sorry, input line is too long. usage: %s [command [...]] Proxy c%sommands may be abbreviated. Commands are: ?Ambiguous %s command `%s' ?Invalid %s command `%s' getoptionvalue() invoked with NULL namegetoptionvalue() invoked with unknown option `%s'setupoption()FTPSERVERPORThttpftpgateNETRC$NETRC `%s': %scan't create socketunable to get default rcvbuf sizeunable to get default sndbuf sizeFTPMODEactiveunknown $FTPMODE '%s'; using defaultspftpFTPSERVERNeither $FTPSERVER nor GATE_SERVER is defined; disabling gate-ftpTERMdumbbad quit value: %sbad retry value: %s-Tbad throttle value: %s46AadefginN:o:pP:q:r:RtT:u:vVHOMEanonymous/.netrc%s/.netrc: %sFTPANONPASSPAGERFTPPROMPTFTPRPROMPTRetrying in %d seconds... %lld byte%s %s in %d day%s %2d:%02d:%02d (%lld.%02d %cB/s) ETA: %02d:%02d (stalled)xsignal_restart called with signal %d %s: transfer aborted because stalled for %lu sec. %3d%% |%.*s%*s| %5lld %c%c %3lld.%02d %cB/s --:-- ETA - stalled -%02d:%02d ETApasswordpasswdmachineMissing macdef name argument. 4K macro buffer exceeded. Unknown .netrc keyword %sError: .netrc file is readable by others.Remove account or make file unreadable by others.Macro definition missing null line terminator. Remove password or make file unreadable by others.MDTMREST STREAMTVFSRemote system type is %s. 215 UNIX Type: L8215 TOPS20Remember to set tenex mode when transferring binary files from this machine. features[FEAT_FEAT] = %d features[FEAT_MDTM] = %d features[FEAT_MLST] = %d features[FEAT_REST_STREAM] = %d features[FEAT_SIZE] = %d features[FEAT_TVFS] = %d sorry, arguments too long. (%s) PWDgot remotecwd as `%s' ftpXXXXXXXXXXunable to create temporary file %scan't find list of remote files, oops. can't find list of remote files, oops.SIZE is not supported by remote server. SIZE %sMDTM is not supported by remote server. MDTM %s191Y2K warning! Incorrect time-val `%s' received from server. Converted to `%s' %04d%02d%02d%02d%02d%02dCan't parse time `%s'. got localcwd as `%s' Unable to determine real path of `%s'crankrate invoked with unknown signal: %demacsContext sensitive argument completionftp-complete^Iunable to set sndbuf size %dunable to set rcvbuf size %disipv6addr: got %d for %s Unable to allocate %ld bytes of memoryUnable to allocate memory for stringlistUnable to add `%s' to stringlistxstrdup() called with NULL argumentUnable to allocate memory for string copyUnknown port `%s', using port %dftp_login: user `%s' pass `%s' host `%s' Name (%s:%s): Name (%s): Password:Login failed.$initAlready connected to %s, use close first. usage: %s host-name [port] gateserver not defined (shouldn't happen)Connecting via pass-through server %s non-printstream$tI(KR/ 6=D!!ƎƎ Ǝ ڎ%y1iȫܭ=q7ĭĭĭĭĭĭĭ (u|Define an environment variableundefineUndefine an environment variableMark an environment variable for automatic exportunexportDon't mark an environment variable for automatic exportSend an environment variableList the current environment variablesPrint help informationUse local special character definitionsimportUse remote special character definitionscheckVerify remote special character definitionscrmodlogouttoggleslcenvironopieautoflushflushing of output when sending interrupt charactersflush output when sending interrupt charactersautosynchautomatic sending of interrupt characters in urgent modesend interrupt characters in urgent modeskiprcdon't read ~/.telnetrc fileskip reading of ~/.telnetrc filesending and receiving of binary datainbinaryoutbinarysending of binary datacrlfsending carriage returns as telnet mapping of received carriage returnsmap carriage return on outputlocalcharslocal recognition of certain control charactersrecognize certain control charactersturn on socket level debuggingnetdataprinting of hexadecimal network data (debugging)print hexadecimal representation of network trafficprettydumpoutput of "netdata" to user readable format (debugging)print user readable output for "netdata"viewing of options processing (debugging)show option processingtermdata(debugging) toggle printing of hexadecimal terminal dataprint hexadecimal representation of terminal trafficcharacter to toggle local echoing on/offcharacter to escape back to telnet command moderloginrlogin escape charactertracefilefile to write trace information toThe following need 'localchars' to be toggled trueflushoutputcharacter to cause an Abort Outputinterruptcharacter to cause an Interrupt Processcharacter to cause an Abort processcharacter to cause an EOF The following are for local editing in linemodecharacter to use to erase a charactercharacter to use to erase a linelnextcharacter to use for literal nextcharacter to cause a Suspend Processcharacter to use for line reprintworderasecharacter to use to erase a wordcharacter to use for XONcharacter to use for XOFFforw1alternate end of line characterforw2aytalternate AYT characteraoSend Telnet Abort outputSend Telnet 'Are You There'Send Telnet BreakbreakSend Telnet Erase CharacterSend Telnet Erase LineSend current escape characterSend Telnet 'Go Ahead' sequenceSend Telnet Interrupt ProcessintpintrnopSend Telnet 'No operation'eorSend Telnet 'End of Record'Send Telnet 'Abort Process'Send Telnet 'Suspend Process'Send Telnet End of File CharacterPerform Telnet 'Synch operation'getstatusSend request for STATUSDisplay send optionsdontwillwontDisable LINEMODE option(or disable obsolete line-by-line mode)Enable LINEMODE option(or enable obsolete line-by-line mode)These require the LINEMODE option to be enabledEnable signal trapping+isig-isigDisable signal trappingEnable character editing+edit-editDisable character editingEnable tab expansion+softtabs-softtabsEnable literal character echo+litecho-litechoDisable literal character echokludgeline%s sequence challenge /usr/bin/opiekey^?%-15s %s usage: send %s "value" must be from 0 to 255Valid options are: '%s': ambiguous argument ('send %s ?' for help). '%s': unknown argument ('send %s ?' for help). '%s': bad value ('send %s ?' for help). ?Need to be connected first.setsockopt (SO_DEBUG)Will send carriage returns as telnet .Will send carriage returns as telnet .Already operating in binary mode with remote host.Negotiating binary mode with remote host.Already in network ascii mode with remote host.Negotiating network ascii mode with remote host.Already receiving in binary mode.Negotiating binary mode on input.Already receiving in network ascii mode.Negotiating network ascii mode on input.Already transmitting in binary mode.Negotiating binary mode on output.Already transmitting in network ascii mode.Negotiating network ascii mode on output.%-15s toggle %s display help informationenabledisable%-15s %s %s Need an argument to 'toggle' command. 'toggle ?' for help. '%s': ambiguous argument ('toggle ?' for help). '%s': unknown argument ('toggle ?' for help). WillWon'tTelnet rlogin escape character is '%s'. Telnet escape character is '%s'. '%s': unknown argument ('set ?' for help). Format is 'set togglename [on|off]' 'set ?' for help.Format is 'set Name Value' 'set ?' for help.'%s': ambiguous argument ('set ?' for help). %s set to "%s". %s character is '%s'. Need an argument to 'unset' command. 'unset ?' for help. '%s': unknown argument ('unset ?' for help). '%s': ambiguous argument ('unset ?' for help). %s reset to "%s". ?Need to have LINEMODE option enabled first.'mode ?' for help.format is: 'mode Mode', where 'Mode' is one of: 'mode' command requires an argumentUnknown mode '%s' ('mode ?' for help). Ambiguous mode '%s' ('mode ?' for help). won't%-15s [%s] %-15s "%s" ?Ambiguous argument '%s'. ?Unknown argument '%s'. Deprecated usage - please use 'set escape%s%s' in the future. new escape character: Deprecated usage - please use 'toggle crmod' in the future.%s map carriage return on output. Fork failed ExeclConnection closed.fromquitNeed an argument to 'slc' command. 'slc ?' for help. '%s': unknown argument ('slc ?' for help). '%s': ambiguous argument ('slc ?' for help). Need an argument to 'environ' command. 'environ ?' for help. '%s': unknown argument ('environ ?' for help). '%s': ambiguous argument ('environ ?' for help). only Need %s%d argument%s to 'environ %s' command. 'environ ?' for help. DISPLAYunix:USERLOGNAMEPRINTERCannot send '%s': Telnet ENVIRON option not enabled Cannot send '%s': variable not defined %c %-20s %s notmuchOperating with LINEMODE optionLocalNo%s line editing %s catching of signals Operating in obsolete linemodeOperating in single character modeCatching signals locallyRemote%s character echo %s flow control No connection.Escape character is '%s'. need at least one argument for 'send' commandNeed %d argument%s to 'send %s' command. 'send %s ?' for help. 'send ?' for helpThere is not enough room in the buffer TO the networkto process your request. Nothing will be done.('send synch' will throw away most data in the networkbuffer, if this might help.)Unknown send argument '%s' 'send ?' for help. Ambiguous send argument '%s' 'send ?' for help. Telnet 'send' error - argument disappeared! SENT%s> ?Ambiguous command?Invalid commandCommands may be abbreviated. Commands are: ?Ambiguous help command %s ?Invalid help command %s ?Already connected to %s (to) -ausage: %s [-l user] [-a] [-s src_addr] host-name [port] hostname too long for unix domain socket: %sBad source route option: %s setsockopt (source route)telnet: setsockopt (IP_TOS) (ignored)Unable to connect to remote host/.telnetrc?Ambiguous command: %s ?Invalid command: %s ?Need to be connected first for %s. telnet: socketConnection closed by foreign host. [host-name [port]][-r] [-s src_addr] [-u] [-e char] [-l user] [-n tracefile] [-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d]usage: %s %s%s%s%s rlog; will try to use default TOS: Bad TOS argument '%s: Warning: -f ignored, no Kerberos V5 support. %s: Warning: -F ignored, no Kerberos V5 support. %s: Warning: -k ignored, no Kerberos V4 support. %s: Warning: -x ignored, no ENCRYPT support. %s: Warning: -y ignored, no ENCRYPT support. 468EKLNS:X:acde:fFk:l:n:rs:uxySetSockOptsleep(5) from telnet, after select: %s UNKNOWNlm_will: no command!!!lm_will: not enough room in bufferlm_wont: no command!!!lm_do: no command!!!lm_do: not enough room in bufferlm_dont: no command!!!lm_mode: not enough room in bufferslc_import: not enough roomremote defaultremoteSpecial characters are %s values slc_end_reply: not enough roomenv_opt_start: malloc()/realloc() failed!!!SYSTEMTYPEJOBACCTenv_opt_add: realloc() failed!!!%c%c%c%c%s%c%cNo room in buffer for terminal type. %c%c%c%c%ld,%ld%c%cz Remote side does not support STATUS optionIn SUBOPTION processing, RCVDclose SYNCHBRKIPAOAYTEORABORTSUSPRPLNEXTFORW1FORW2MCLMCRMCWLMCWRMCBOLMCEOLINSRTOVERECREWREBOLEEOLBINARYRCPSUPPRESS GO AHEADTIMING MARKRCTENAOLNAOPNAOCRDNAOHTSNAOHTDNAOFFDNAOVTSNAOVTDNAOLFDEXTEND ASCIILOGOUTBYTE MACRODATA ENTRY TERMINALSUPDUPSUPDUP OUTPUTSEND LOCATIONTERMINAL TYPEEND OF RECORDTACACS UIDOUTPUT MARKINGTTYLOC3270 REGIMEX.3 PADNAWSTSPEEDLFLOWLINEMODEXDISPLOCOLD-ENVIRONAUTHENTICATIONENCRYPTNEW-ENVIRONTN3270ECHARSETCOM-PORTKERMITNOPDMARKGASBWILLWONTDONTIACCannot open %s. (standard output)%c 0x%x %c%.2x%s IAC %s%s IAC %d%s %s EXOPL%s %d %dresp DO_DONT %s: %d resp DO_DONT %d: %d want DO %s want DO %d want DONT %s want DONT %d DO %s DO %d resp WILL_WONT %s: %d resp WILL_WONT %d: %d want WILL %s want WILL %d want WONT %s want WONT %d WILL %s WILL %d %s IAC SB (terminated by %d , not IAC SE!) (Empty suboption???)TERMINAL-TYPE TERMINAL-SPEED (empty suboption???) IS SEND %d (unknown) ?%d?TOGGLE-FLOW-CONTROL OFF ON RESTART-ANY RESTART-XON %d %d (%d)LINEMODE WILL WONT DO DONT (no option???)Forward Mask %xSLC NOSUPPORT CANTCHANGE VARIABLE DEFAULT|FLUSHOUT|FLUSHIN|ACK %d;(no mode???)|LIT_ECHO|SOFT_TAB|TRAPSIG|EDIT (0x%x) ?0x%x? IS IS %s %d SEX-DISPLAY-LOCATION IS "%.*s"- unknown qualifier %d (0x%x).NEW-ENVIRON SEND INFO " VALUE " VAR " ESC " USERVAR " %03o %s (unknown) %02x1=cI,CAClCVC +i,C $279E IS IXL^hinVFiAC.)dVCvlC #0123456789abcdef01234567)))(+)M))M))(**+****;+|+f,2,,,,2,,<->>>> ??'2;EFEFEDiAfi k",5k=kHPk[iZj0=k1_eox kKk!kKkkۈKkgfk k @@#k@+ 5;CKlw$Ul [l `!m fN@lkv~|BdS 6 37 ݕ">%&;,s*p02_4:78@6>b=]"Ba</??INIKLMvvvvvvbizLzuYuuuY7i$ )R$ )F>g ] |iqE BN 1(E B>|iP%1[nX$", O" 3nqDIN`}DI`l Ba%B,da !JJ1 H9MJp~ , J  NU,#1l BvD 0=$ *VT BdOjJD   ő1!$ ] ۈi$  4#M 4Tah 5GJW<% q|i "L% BLe' 1Wu= k, B GLbh 6 I<  M@ }E -G G l Bx G#b8w @Mbo Gibw q p 4 N @3:Vcs  B uĔ uBܔ !IN~BJُ H{4 $L $[|J $ $IH< -/k HMrg UF /"D} )3@JSls     ! , ; E Y n        ه          9 A Q Y a v      O  O  z \ j s |   ܧ     "@T    ", [e  }   D D % HD  DAKy Dak   @c   w   "4@T uxI  @   DԪ  ,$  ;J Dhr "@D`خ >^ (C "@D8 "@D HD(*  DS\y HD# "@L  @2 !  D/85  ,[q  ,9 "@    4  D'<Mfp_1  D  FB HE E  -6  V_; Emv EI "@    T & ;  )?P  Fn'  v-  D5  .9 ;>  @DTWP  @D l  DL5 @Dt "BW  4  D  +  ?]I1  Dqz  F  Da   D y D)2  DFO ho "@{  1      ֦  F-@(  wAk-  D4  L6  %7 @ ,  "@DE N   De n 8 "@D  '   +!0!8!@!e i m q u y }     J @ " @ @ @ @                0  0 0  s 0 $    0 5     ( ( ( ( ( ( ( ( &  ,h%~%9 9 9 9 9 9 9 9 9 9 9 9 K K E M K |/-\.'9'D'P'['smcupError: move: l(%u) c(%u) o(%u)xterm]0;%susage: ex [-eFRrSsv] [-c command] [-t tag] [-w size] [file ...] usage: vi [-eFlRrSv] [-c command] [-t tag] [-w size] [file ...] signal-resettcgetattr%s: No terminal database found %s: %s: unknown terminal type lines=%lucolumns=%lurmsotcsetattr016|Vi's standard input and output must be a terminalLINES%s: unknown terminal typekcud1jakcub1hakcuu1kakcuf1lakil1insert linekdch1keldelete to eolkindscroll downkllgo to eolkendkhomego to solkich1insert at cursorkdl1delete lineknppage downkpppage upkriscroll updelete to end of screenkf%d233|This terminal has no %s keyfunction key %dstderr046|messages not turned on: %s045|messages not turned off: %stigetnum: linestigetnum: cols002|Line length overflow/tmp240|%s: remove241|%s: close242|%s: remove243|%s: remove265|File is a temporary; exit will discard modifications264|File modified since last complete write; write or use ! to override244|Read-only file, not written; use ! to override245|Read-only file, not written246|%s exists, not written; use ! to override247|%s exists, not written248|Partial file, not written; use ! to override249|Partial file, not written250|%s: file modified more recently than this copy; use ! to override251|%s: file modified more recently than this copy258|%s expanded into too many file names259|%s: not a regular file260|%s: not owned by you261|%s: accessible by a user other than the owner252|%s: write lock was unavailable254|%s: WARNING: FILE TRUNCATED256|%s: new file: %lu lines, %lu characters315|%s: appended: %lu lines, %lu characters257|%s: %lu lines, %lu characters266|File readonly, modifications not auto-written262|File modified since last complete write; write or use ! to override263|File modified since last complete write; write or use :edit! to override%s/vi.XXXXXXXXXX237|Unable to create temporary file238|Warning: %s is not a regular file239|%s already locked, session is read-only-c option276|Unexpected character event277|Unexpected end-of-file event279|Unexpected interrupt event280|Unexpected quit event281|Unexpected repaint event285|Unexpected string event286|Unexpected timeout event316|Unexpected resize event287|Unexpected write event008|Error: unable to retrieve line %lu007|unable to get last line006|unable to store line %lu005|unable to insert at line %lu004|unable to append to line %lu003|unable to delete line %lu009|Log file015|%s/%d: log put error267|Log restarted013|Logging not being performed, roll-forward not possible014|No changes to re-do/usr/src/usr.bin/vi/../../contrib/nvi/common/log.c012|Logging not being performed, undo not possible010|Logging not being performed, undo not possible011|No changes to undoex/vi: %s%.*snviewc:eFGlRrSst:vw:-s option is only applicable to ex.window=%sonly one -c command may be specified.only one of -r and -t may be specified.only one tag file may be specified.017|Mark %s: not set018|Mark %s: the line was deleted019|Mark %s: cursor position no longer exists268|confirm? [ynq]269|Press any key to continue: 270|Press any key to continue [: to enter more ex commands]: 161|Press Enter to continue: 275| cont?271|Press any key to continue [q to quit]: 317|%d files to edit021|new file022|name changed023|modified024|unmodified025|UNLOCKED026|readonly028|empty file027|line %lu of %lu [%lu%%]029|line %lu293|added294|changed295|deleted296|joined297|moved298|shifted299|yanked300|line301|lines020|Error: , %d: LC_MESSAGESLANGVI_MESSAGE_CATALOG030|The file %s is not a message catalogaltweraseautoindentautoprintautowritebackupbeautifycdpathceditcommentedcompatibleescapetimeerrorbellsfilecflashgtagsmodehardtabsiclowerignorecasekeytimeleftrightlispmagicmatchtimemodelinemsgcatnoprintoctaloptimizeparagraphsrecdirredrawremapreportrulersearchincrsectionssecureshellmetashiftwidthshowmatchshowmodesidescrollslowopensourceanytabstoptaglengthtersetildeoptimeoutttywerasew1200w300w9600warnwindownamewraplenwrapmarginwrapscanwriteanyaibfcolimodelinesnuparaslowsmsmdttytypewawiwlwm033|set: no %s option: 'set all' gives all option values305|No %s edit option specified%s=%ld%s="%s"set %s set no%s set %s=%-3ld set 032|Usage: %s291|set: the %s option may not be turned off313|set: the %s option may never be turned on034|set: [no]%s option doesn't take a value035|set: %s option isn't a boolean036|set: %s option: %s037|set: %s option: %s: value overflow038|set: %s option: %s is an illegal number314|set: the %s option may never be set to 0039|set: %s option isn't a booleanCDPATHcdpath=%sdirectory=%sescapetime=6keytime=6matchtime=7/usr/share/vi/catalog/msgcat=%sreport=5paragraphs=IPLPPPQPP LIpplpipbp/var/tmp/vi.recoverrecdir=%ssections=NHSHH HUnhshshell=%sshellmeta=~{[*?$`'"\shiftwidth=8sidescroll=16tabstop=8tags=%sscroll=%ldwindow=%lu031|Unable to set default %s option040|Screen columns too small, less than %d041|Screen columns too large, greater than %d042|Screen lines too small, less than %d043|Screen lines too large, greater than %d044|The lisp option is not implemented048|The paragraph option must be in two character groups049|The section option must be in two character groups053|The default buffer is empty054|Buffer %s is empty078|Searching...072|File empty; nothing to search073|Reached end-of-file without finding the pattern074|No previous search pattern075|Pattern not found076|Reached top-of-file without finding the pattern077|Search wrappedrecdir: %sX-vi-recover-file: X-vi-recover-path: 066|%s: malformed recovery file%.24s: %s vi: no files to recover.067|%s: malformed recovery file068|No files named %s, readable by you, to recover069|There are older versions of this file for you to recover070|There are other files for you to recover055|Files with newlines in the name are unrecoverable%s/vi.XXXXXX056|Modifications not recoverable if the session fails/usr/sbin/sendmail071|not sending email: %s%s -t < %s062|Information on user id %u not found%s/recover.XXXXXX063|Unable to lock recovery filePrecedence: bulkSubject: Nvi saved the file To: From: root (Nvi recovery program)Reply-To: root%s%s %s%s %s %s %s%s %s%s %s -r : to this file using the -r option to You can recover most, if not all, of the changes , when it was saved for recovery. on the machine was editing a file named , the user On %s%.24s%s%s%s%s%s%s%s%s%s%s%s%s%s%s 064|Recovery file buffer overrun065|Recovery file060|File backup failed: %s061|Copying file for recovery...057|Copying file for recovery...058|Preservation failed: %s059|Modifications not recoverable if the session fails099|Address value overflow100|Address value underflow101|Illegal address combination102|Illegal address: only %lu lines in the file103|Illegal address: the file is empty104|The %s command doesn't permit an address of 0$0123456789'\/?.+-^095|No mark name supplied096|\ not followed by / or ?097|Reference to a line number less than 0094|The second address is smaller than the first!#&*<=>@~080|Unknown command name1bca1098|The %s command is unknown082|%s: command not available in ex mode085|Internal syntax table error (%s: %s)086|Usage: %s088|Flag offset to before line 1089|Flag offset past end-of-file090|@ with range running when the file/screen changed091|Global/v command running when the file/screen changed083|Count may not be zero084|%s: bad line specification092|Ex command failed: pending commands discarded093|Ex command failed: mapped keys discardedscript170|Interrupted105|No abbreviations to display106|Abbreviations must end with a "word" character107|Abbreviations may not contain tabs or spaces108|Abbreviations may not mix word/non-word characters, except at the end109|"%s" is not an abbreviation273|Entering ex input mode.111|No more files to edit112|No previous files to edit113|No previous files to rewind114|No file list to display115|No previous command to replace "!"116|No filename to substitute for %%117|No filename to substitute for #289|Shell expansions not supported when the secure edit option is setfdopenvfork118|Error: execl: %s119|I/O error: %s304|Shell expansion failed!%s 303|File modified since last write.120|File modified since last complete write; write or use ! to override121|Unable to find home directory location122|New current directory: %sscroll lines[line [,line]] ! commandfilter lines through commands or run commands[line [,line]] # [count] [l]display numbered lines[line [,line]] & [cgr] [count] [#lp]repeat the last subsitution* [buffer]execute a buffer[line [,line]] <[<...] [count] [flags]shift lines left[line] = [flags]display line number[line [,line]] >[>...] [count] [flags]shift lines right@ [buffer][line] a[ppend][!]append input to a lineab[brev] [word replace]specify an input abbreviationar[gs]display file argument listbgput a foreground screen into the background!ca[line [,line]] c[hange][!] [count]change lines to input!f1ocd[!] [directory]change the current directorychdirchd[ir][!] [directory][line [,line]] co[py] line [flags]copy lines elsewhere in the filecscope!scs[cope] command [args]create a set of tags using a cscope command[line [,line]] d[elete][flags] [buffer] [count] [flags]delete lines from the filedisplay b[uffers] | c[onnections] | s[creens] | t[ags]display buffers, connections, screens or tags[Ee][dit][!] [+cmd] [file]begin editing another file[Ee]x[!] [+cmd] [file]exusage[exu]sage [command]display ex command usage statementf[ile] [name]display (and optionally set) file namefg[Ff]g [file]bring a backgrounded screen into the foregroundglobal[line [,line]] g[lobal][!] [;/]RE[;/] [commands]execute a global command on lines matching an REhe[lp]display help statement[line] i[nsert][!]insert input before a line!ca1[line [,line]] j[oin][!] [count] [flags]join lines into a single line[line] k keymark a line position[line [,line]] l[ist] [count] [#]display lines in an unambiguous form[line [,line]] m[ove] linemove lines elsewhere in the file[line] ma[rk] key!Wmap[!] [keys replace]map input or commands to one or more keysmkexrc!f1rmkexrc[!] filewrite a .exrc file!fN[Nn][ext][!] [+cmd] [file ...]edit (and optionally specify) the next file[line [,line]] nu[mber] [count] [l]change display to number lines[line] o[pen] [/RE/] [flags]enter "open" mode (not implemented)[line [,line]] p[rint] [count] [#l]display linesperlpe[rl] cmdrun the perl interpreter with the commandperldoperld[o] cmdrun the perl interpreter with the command, on each linepre[serve]preserve an edit session for recovery[Pp]rev[ious][!]edit the previous file in the file argument list[line] pu[t] [buffer]append a cut buffer to the lineq[uit][!]exit ex/vi[line] r[ead] [!cmd | [file]]append input from a command or file to the linerecover[!] filerecover a saved fileresizec+resize [+-]rowsgrow or shrink the current screenrew[ind][!]re-edit all the files in the file argument listrtag!w1o[Rr]ta[g][!] [string]edit the file containing the tag[line [,line]] s [[/;]RE[/;]repl[/;] [cgr] [count] [#lp]]substitute on lines matching an REsc[ript][!] [file]run a shell in a screenwNse[t] [option[=[value]]...] [nooption ...] [option? ...] [all]set options (use ":set all" to see all options)sh[ell]suspend editing and run a shellsourceso[urce] fileread a file of ex commandsst[op][!]suspend the edit sessionsu[spend][!][line [,line]] t line [flags][Tt]a[g][!] [string]tagnexttagn[ext][!]move to the next tagtagpoptagp[op][!] [number | file]return to the previous group of tagstagprevtagpr[ev][!]move to the previous tagtagtoptagt[op][!]discard all tagstcltc[l] cmdrun the tcl interpreter with the commandu[ndo]undo the most recent changeunabbreviateuna[bbrev] worddelete an abbreviation!w1runm[ap][!] worddelete an input or command map[line [,line]] v [;/]RE[;/] [commands]execute a global command on lines NOT matching an REdisplay the program version informationvisual2c11[line] vi[sual] [-|.|+|^] [window_size] [flags]enter visual (vi) mode from ex mode[Vv]i[sual][!] [+cmd] [file]edit another file (from vi mode only)viusage[viu]sage [key]display vi key usage statement[line [,line]] w[rite][!] [ !cmd | [>>] [file]]write the file[line [,line]] wn[!] [>>] [file]write the file and switch to the next filewq[line [,line]] wq[!] [>>] [file]write the file and exit[line [,line]] x[it][!] [file]bca[line [,line]] ya[nk] [buffer] [count]copy lines to a cut buffer3c01[line] z [-|.|+|^|=] [count] [flags]display different screens of the file[line [,line]] ~ [cgr] [count] [#lp]replace previous RE with previous replacement string,Add a new cscope databaseadd file | directoryQuery the databases for a patternfind c|d|e|f|g|i|s|t buffer|pattern c: find callers of name d: find all function calls made from name e: find pattern f: find files with name as substring g: find definition of name i: find files #including name s: find all uses of name t: find assignments to nameShow help for cscope commandshelp [command]Kill a cscope connectionkill numberDiscard all current cscope connectionscd '%s' && exec cscope -dl -f %s312|%d: no such cscope sessionNo cscope connections. %2d %s (process %lu) %s doesn't match any cscope command Command: %s (%s) cscope commands: %*s: %s cscope.outcscope.tpathCSCOPE_DIRS :309|Use "cscope help" for help310|No cscope connections runningsgdct efi311|%s: unknown search type: use one of %s%d%s cscope: %d lines%1[ ]%s: "%s" 278|No matches for query (line mode) (character mode)********** %s%s buffers123|No cut buffers to displaydefault bufferfilterfilter readparent-writer124|The %s command can't be used as part of a global or v command125|%s/%s: not sourced: not owned by you or root126|%s/%s: not sourced: not owned by you127|%s/%s: not sourced: writeable by a user other than the owner128|%s: not sourced: not owned by you or root129|%s: not sourced: not owned by you130|%s: not sourced: writeable by a user other than the owner/etc/vi.exrcNEXINIT.nexrc131|No following lines to join.?!132|No input map entries133|No command map entries134|The %s character may not be remapped135|"%s" isn't currently mapped136|Mark names must be a single character137|%s exists, not written; use ! to overrideabbreviate map map! 138|New exrc file: %s139|Destination line is inside move range140|The open command requires that the open option be set141|The open command is not yet implemented142|Preservation of this file not possible143|File preserved %6lu TOOBIG 147|Reading...148|%s: %lu lines, %lu characters145|Only regular files and named pipes may be read146|%s: read lock was unavailable149|No background screens to display151|No command to executescript-shell150|The script command is only available in vi modepqrs0123456789abcdefemacs:TERMCAPEMACSError: timed outError: shell: EOFAbort trapAlarm clockBus errorChild exitedContinuedEMT trapFloating point exceptionHangupIllegal instructionInformation requestInterruptI/O possibleIOT trapKilledBroken pipeProfiling timer expiredQuitSegmentation faultSuspended (signal)Bad system callTerminatedTrace/BPT trapSuspendedStopped (tty input)Stopped (tty output)Urgent I/O conditionUser defined signal 1User defined signal 2Virtual timer expiredWindow size changesCputime limit exceededFilesize limit exceededUnknown signal: %d; core dumped%.*s%s: received signal: %s%s%.*s%s: exited with status %d%s -i152|shiftwidth option set to 0RE error: %s([ ]|/\*([^*]|\*/)*\*/)*\^.[]$*+?()|{}^.[]$*[[:<:]][[:>:]]153|Count overflow154|Count underflow156|The #, l and p flags may not be combined with the c flag in vi mode169|Confirm change? [n]157|No match found155|Regular expression specified; r flag meaningless164|%s: the tag's line number is past the end of the file165|The tags stack is empty166|%s: search pattern not found159|Less than %s entries on the tags stack; use :display t[ags]160|No file %s on the tags stack to return to; use :display t[ags]292|Display too small.%2d ... %*.*s %*.*s255|Already at the first tag of this group282|Already at the last tag of this group158|No previous tag enteredrxglobal -%s '%s'162|%s: tag not found163|%s: corrupted tag in %smunmapTo see the list of vi commands, enter ":viusage" To see the list of ex commands, enter ":exusage" For an ex command usage statement enter ":exusage [cmd]" For a vi key usage statement enter ":viusage [key]" To exit, enter ":q!" The %.*s command is unknown Command: %s Usage: %s The %s key has no current meaning Key:%s%s Usage: %s 167|%d more files to edit168|Buffer %s is empty144|%s: expanded into too many file names283|The %s command requires the ex terminal interface272|That form of %s requires the ex terminal interface274|Command failed, no file read in yet.173|The %s command requires that a file have already been read in171|No previous buffer to execute172|No previous regular expression230|This screen may not be suspended290|The %s command is not supported when the secure edit option is set284|That form of %s is not supported when the secure edit option is set174|Usage: %sVersion 1.79 (10/23/96) The CSRG, University of California, Berkeley.175|The visual command requires that the open option be set%luz%c%lu%luz%c253|Writing...---------------------------------------- 302|Vi was not loaded with a Tcl interpreter306|Vi was not loaded with a Perl interpreter177|Empty file178|No previous F, f, T or t search179|%s not found[count]^A^A search forward for cursor word[count]^B^B scroll up by screens^C^C interrupt an operation (e.g. read, write, search)[count]^D^D scroll down by half screens (setting count)[count]^E^E scroll down by lines[count]^F^F scroll down by screens^G^G file status[count]^H^H move left by characters[count]^J^J move down by lines^L^L redraw screen[count]^M^M move down by lines (to first non-blank)[count]^N^N move down by lines[count]^P^P move up by lines^R^R redraw screen^T^T tag pop[count]^U^U half page up (set count)^V^V input a literal character^W^W move to next screen[count]^Y^Y page up by lines^Z^Z suspend editor^[ ^[ exit input mode, cancel partial commands^\ ^\ switch to ex mode^]^] tag push cursor word^^^^ switch to previous file[count]' ' move right by columns[count]![count]motion command(s) ! filter through command(s) to motion[count]# +|-|# # number increment/decrement [count]$ $ move to last column % move to match & repeat substitution'['a-z] ' move to mark (to first non-blank)[count]( ( move back sentence[count]) ) move forward sentence[count]+ + move down by lines (to first non-blank)[count], , reverse last F, f, T or t search[count]- - move up by lines (to first non-blank) . repeat the last command/RE[/ offset] / search forward 0 move to first character:command [| command] ... : ex command[count]; ; repeat last F, f, T or t search[count]<[count]motion < shift lines left to motion[count]>[count]motion > shift lines right to motion?RE[? offset] ? search backward@buffer @ execute buffer[count]A A append to the line[count]B B move back bigword[buffer][count]C C change to end-of-line[buffer]D D delete to end-of-line[count]E E move to end of bigword[count]F character F character in line backward search[count]G G move to line[count]H H move to count lines from screen top[count]I I insert before first nonblank[count]J J join lines[count]L L move to screen bottom M move to screen middle N reverse last search[count]O O insert above line[buffer]P P insert before cursor from buffer Q switch to ex mode[count]R R replace characters[buffer][count]S S substitute for the line(s)[count]T character T before character in line backward search U Restore the current line[count]W W move to next bigword[buffer][count]X X delete character before cursor[buffer][count]Y Y copy lineZZZZ save file and exit[[[[ move back section]] move forward section ^ move to first non-blank _ move to first non-blank`[`a-z] ` move to mark[count]a a append after cursor[count]b b move back word[buffer][count]c[count]motion c change to motion[buffer][count]d[count]motion d delete to motion[count]e e move to end of word[count]f character f character in line forward search[count]h h move left by columns[count]i i insert before cursor[count]j j move down by lines[count]k k move up by lines[count]l l move right by columnsm[a-z] m set mark n repeat last search[count]o o append after line[buffer]p p insert after cursor from buffer[count]r character r replace character[buffer][count]s s substitute character[count]t character t before character in line forward search u undo last change[count]w w move to next word[buffer][count]x x delete character[buffer][count]y[count]motion y copy text to motion into a cut buffer[line]z[window_size][-|.|+|^|] z reposition the screen[count]{ { move back paragraph[count]| | move to column[count]} } move forward paragraph[count]~ ~ reverse case207|The Q command requires the ex terminal interface180|No previous file to edit307|No ex command to execute%+ld0X%0*lX0x%0*lx%#0*lo182|Resulting number too large183|Resulting number too smallabcdefABCDEF181|Cursor not in a number184|No match character on this line185|Matching character not found186|No characters to replace308|Enter to execute a command, :q to exit187|No other screen to switch to190|Search wrapped to original position189|No previous search pattern188|Characters after search string, line offset and/or z command194|No more characters to erase193|Already at the beginning of the insert191|Abbreviation exceeded expansion limit: characters discarded192|Illegal character; quote to enterUnmatched %s201|Buffers should be specified before the command209|The file is empty202|Already at end-of-file203|Already at end-of-line204|%s isn't a vi commandWindow resize interrupted text input mode205|Usage: %s195|Movement past the end-of-file196|Movement past the end-of-line197|No cursor movement made198|Already at the beginning of the file199|Movement past the beginning of the file200|Already in the first column206|No characters to delete[count]~[count]motion ~ change case to motion235|Number larger than %lu234|Only one buffer may be specified208|No command to repeat210|%s may not be used as a motion command212|Cursor not in a word211|Already in command mode214|Windows option value is too large, max is %u110|Vi command failed: mapped keys discarded231|Interrupted: mapped keys discarded236|Interrupted%d screens backgrounded; use :display to list them%7lu +=+=+=+=+=+=+=+215|Append216|Change217|Command218|Insert219|Replace%lu,%lu220|Movement past the end-of-screen221|Movement past the beginning-of-screen222|Screen must be larger than %d lines to split225|You may not background your only displayed screen228|The screen cannot grow227|The screen cannot shrink226|The screen can only shrink to %d rows223|There are no background screens224|There's no background screen editing a file named %s_ Ū Ū t Ū Ū  Ū Ū  Ū   you are not a member of group %s chown [-fhv] [-R [-H | -L | -P]] :group file ...usage: chown [-fhv] [-R [-H | -L | -P]] owner[:group] file ...usage: chgrp [-fhv] [-R [-H | -L | -P]] group file ...HLPRfhvthe -R%c and -h options may not be specified together: %ju:%ju -> %ju:%ju: %ju -> %juusage: chroot [-g group] [-G group,group,...] [-u user] newroot [command] G:g:u:no such group `%s'too many supplementary groups providedno such user `%s'setgroupssetgidsetuid(@ (@-G"'H" """"N=< <@X  !$; _`D C@x J@H P@< V@]@d@k@r@x@ @@@@@@@@ @@@@ @@@@@@@@ @@@@ AAhA #A)A/A6A=A@DA@LA TA[AbA iApA{AL#F. A@A-sL rL@ AVA/AAAAAAA BQ pAB!B$Bnq1B ABVBjBIwBPBsB37BBBBBBCLC#C&C8C;CMCPCcCfCvC~C C C~CaCC'C/7CDD1D{*DG4?D[4UDjDmDcDDDDD"H@   !G=@" "" """   !"G""""0""" ""> I"""""TRZeS"""Y98O< AP^"F""VN"X\`b"Jd""" D"7Q;?BK"E "U"M"W[_aCLc""]":""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""2 ' "("   !-.60""("""""""""""""""""""""""""""""$""""""""""""""""""""""""#&"1"""""/"""""5"%""""""""#&"1"""""/""""""5"%""""""DMQDNQDO(RDQDEJXR%EL2EKE:RZE;iEEFREWREXEE[@SE\E F<F3FE=FRF7|SYF8SgF?vFFASFBTFaFF=(TFe`TF@TFHTGGTGZ#G>GYMGdGU UzGVXUGKUGPUG_UG`VGSDVGTVGIGHb&HBH]OHiHduHHcHH>VH9HH^VHCHIDWIR8WI'XW1I&WEI6WMI-WZI.XiI%LXxI*|XI1XI5XI# YI/LYI2II)IJ4Y-J0Y:J3YNJ$`J|J+JJ,ZJ(,ZJJKJK\Z&K:KXK eK|K ZK ZKZK [K<[Kh[K[K[KLL")LELSLkLxLLLLLLL M![ M 4MPM [MkM,ZM[MMM$\MP\Mt\MMN\(N\?NLN]NjN}NN  <4  ,     Ը  l    ,  ľ  < ;   l غ        $    |  ؿ     ; :   @ P   d ( ( P K K xQ H (J  %s 6 6 6 6 6 6 6 6                                          , %                     /.editrc%s %d }                         }    }  }                                     }     }    } [1~[4~OAOBOCODOHOFU    L      =            , !/ , -  / / t- / ?/ ,/ fwdbck: 6 : 6 : 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 : 6 6 9 9 tty_sttyA A A A A A A @ @ A A ~A tA jA `A VA LA BA 8A @ @ @ @ 1A *A C C !C bC rC rC rC rC rC D C C C D D D B E vE YE  %s %-15s-> is undefined %-15s-> %s Out of termcap string space. settc: Bad value `%s'. baud%s: Invalid switch `%c'. Standard key bindings Alternative key bindings Multi-character bindings Arrow key bindings %s %s %s: Invalid command `%s'. %s -> %s Your terminal has the following characteristics: It has %s meta key not It can%suse tabs hasdoes not have It %s automatic margins It %s magic margins (empty) %25s (%s) == %s ^D / ? : *[]?edit: Bad value `%s'. %c%s %s: Invalid argument `%s'. %*sc-- != 0/usr/src/lib/libedit/tty.cc != -1%s: Unknown switch `%c'. ()[]{}/tmp/histedit.XXXXXXXXXXnewline ignored at right marginVi paste previous deletion to the right of the cursorVi paste previous deletion to the left of the cursorVi move to the previous space delimited wordVi move to the next space delimited wordVi change case of character under the cursor and advance one characterVi enter insert mode at the beginning of lineVi replace character under the cursor with the next character typedVi replace character under the cursor and enter insert modeVi enter insert mode after the cursorVi enter insert mode at end of lineVi move to the end of the current space delimited wordVi move to the end of the current wordVi enter command mode (use alternative key bindings)Vi move to the beginning of lineVi move to previous character (backspace)Vi list choices for completion or indicate end of file if empty lineVi cut from beginning of line to cursorVi repeat current search in the same search directionVi repeat current search in the opposite search directionVi move to the character specified nextVi move to the character specified previousVi move up to the character specified nextVi move up to the character specified previousVi repeat current character search in the same search directionVi repeat current character search in the opposite search directionVi comment out current commandVi go to specified history file line.Vi append word from previous input lineVi redo last non-motion commandDelete character under cursor or list completions if at end of lineCut from cursor to end of current wordPaste cut buffer at cursor positionCut the entire line and save in cut bufferCut area between mark and cursor and save in cut bufferCopy area between mark and cursor to cut bufferExchange the two characters before the cursorMove next to end of current wordUppercase the characters from cursor to end of current wordCapitalize the characters from cursor to end of current wordLowercase the characters from cursor to end of current wordUniversal argument (argument times 4)Add 8th bit to next character typedSwitch from insert to overwrite mode or vice versaEmacs incremental reverse searchDelete the character to the left of the cursorDelete from beginning of current word to cursorMove cursor to the end of lineMove cursor to the beginning of lineExchange the character to the left of the cursor with the one under itMove to the right one characterMove to the beginning of the current wordMove to the left one characterAdd the next character typed verbatimAdds to argument or enters a digitTty disallow output charactersClear screen leaving current line at the topErase current line and start from scratchFirst character in a bound sequenceMove to the previous history lineSearch previous in history for a line matching the currentSearch next in history for a line matching the currentkey_add: sequence-lead-in command not allowed key_add: Null extended-key not allowed. key_delete: Null extended-key not allowed. Some extended keys too long for internal print bufferechotc: Warning: Too many required arguments (%d). echotc: Warning: Missing argument. echotc: Termcap parameter `%s' not found. echotc: Warning: unknown termcap %% `%c'. echotc: Bad value `%s' for rows. echotc: Bad value `%s' for cols. echotc: Warning: Extra argument `%s'. %s: Invalid \ or ^ in instring. %s: Invalid \ or ^ in outstring. using dumb terminal settings. No entry for terminal type "%s"; Cannot read termcap database; It has %d columns and %d lines unknown errorfirst event not foundlast event not foundempty listno next eventno previous eventcurrent event is invalidcan't read history from filecan't write historyhistory size negativebad parametersrequired parameter(s) not suppliedfunction not allowed with other history-functions-set the default@_(____ ``_6`S``g``}`_HiStOrY_V2_ +` _ _ _ _ }_ m_ ]_ a a a ` Sb sa b 6_ ^ ] C\ 3\ \ [ [  f f f sf |f h f h xh  f Pg g g sf  f Th Eh f sf  f ih f Eh sf  f h h h ?h ch Dump of gctl request at %p: error: NULL param: "%s" (%d) [%s%s%d] = error: "%s" %d] = "%s"0] = %pDump of gctl request at NULL Could not allocate memoryNULL request pointer/dev/geom.ctlcan't allocate %u bytes: %s/dev/mem/dev/kmemexec file name too longbad flags arginvalid address (%x)kvm_readkvm_writekvm_write not implemented for dead kernelscannot mmap corefilekernbaseCannot read PDPTcannot read PDPTcannot read IdlePDPTcannot allocate vmcannot read IdlePTDbad namelistcannot read PTDvatop called in live kernel!_kvm_vatop_pae: lseekinvalid address (0x%lx)_kvm_vatop: lseek_kvm_vatop: pde not valid_kvm_vatop: pdpe_pa not found_kvm_vatop: pde_pa not found_kvm_vatop: read_kvm_vatop_pae: read_kvm_vatop_pae: pte not valid_kvm_kvatop: pte not valid_kvm_vatop: address not in dump_kvm_kvatop_pae: pde not valid_kvm_vatop_pae: pdpe_pa not found_kvm_vatop: bootstrap data not in dump_kvm_vatop_pae: bootstrap data not in dump_kvm_vatop_pae: pde_pa not found_kvm_vatop_pae: address not in dump%03ds t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t  t t t t t Ȁ t t р t t t "  t t t t t t t t t t  t t t 8 t  t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t t  t t t t  t t t t f t t t y CCCMvshdtimhmkmraei1i3kbkCktkDkLkMkEkSk0k1k;k2k3k4k5k6k7k8k9kIkAkHkNkPkFkRkTl0l3l4l5l6l7l8l9monwSFSRpkpxpfpouciPK1K3K2K4K5pOrPkBSXRXSARAXNXFeALOLF@1@2@3@4@5@6@8@9@0%1%2%3%4%5%6%7%8%9%0&1&2&3&4&5&6&7&8&9&0*1*2*3*4*5*6*7*8*9*0#1#2#3#4%a%b%e%f%g%h%i%j!1!2!3RFF1F2F3F4F5F6F7F8F9FAFBFCFEFGFHFIFJFKFMFNFPFQFUFVFWFXFZFaFbFcFdFeFfFgFhFiFjFkFlFmFnFoFpFqFrcbMCMLMRLfDKCWWGHUQDTOPUfhPAWAu0u2u3u4u5u6u7u8u9IcIpSfSbZAZBZCZDZFZGZHZIZJZKZLZMZNZOZPZQZRZSZTZUZVZWZXZYZaZbZcZdZeZfZgZhZiZjZkZlZmZnZoZpZqZrZsZtZuZvZwZxZyKmMiRQGmdvciXyZzYvYwYxYyYzYZS5S6S7S8XhXlXoXrXtXvsAsLbxNllhlwMWCoNCYaYbYcYdYeYfYgYhYiYjYkYlYmYnBTYoYpbwxbxshcdamihzxoHCNRNPhlYAYBYCYDYEYFYG!B6 nqhkI)hl "hIP%hP(hs+h.h1h~'64h~>37B /7D7h:h-L=h@hChFhIh#CLhOhRhUhXh[h^hahdhghjhmhphshDvhyh8C|hhhMChhhcCz>3hAhhhhhhhhhk15{G4h)[4jDhchhhhE+hb 8o{ah77hhhhhhhhh ݒhhhhhhhhhhhhhiiiD i iiiiiii!i$i'i*i-i0i3i6i9ijAjDjGjJjMjPjSjVjYj\j_jbjejhj@kjnj\qjtjwjzj}jj(jjjjjjjjjjjjjjjjjjjj;jjjjjjjjjjjjjjjjjjjjjjkkk k kkk(<)5kk ~)j pkk"k%k(k+k.k1k,,,,4k7k:k=k@kCkFkIkLkOkRkUk 05DINSX]bglqv{Xk@:[k^kak5dkgkjkmkpkskvkyk|kkkkkkkkkkkk6!&+kkk B.kAa'kgRkP Lk6kZ\kkku?kkkkkkkk p?NCURSES_NO_PADDINGCOLORFGBG[4%p1%dm[4%?%p1%{8}%>%t9%e%p1%d%;m[3%p1%dm[3%?%p1%{8}%>%t9%e%p1%d%;m A u    L x2d2d2dJ2d<2d,2d2d  Out of memory8 8 8 8 8 8 8 8 8 8 8 8 8 %9 9 8 8 8 8 8 8 8 8 8 8 8 9 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 9 8 8 8 8 8 8 8 8 8 8 9 9 8 8 8 8 8 8 8 8 8 8 9 8 8 8 9 8 8 8 8 9 I: : : : : I: e: : : I: I: : I: : I: : : : : : : : : : : : : I: I: I: : : I: : : : : : : : : : : : : : I: Z: : : : : : : : 9 : : : : : I: : : : : 9 9 : : Z: : : : : z: I: : 9 7 : : z: : : : : 9 : : 2: I: : I: q; <; <; q; <; <; <; <; <; <; <; <; <; ; m< <; <; <; <; <; <; <; <; <; <; <; [< <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; <; N< <; <; <; <; <; <; <; <; <; <; N< N< <; <; <; <; <; <; <; <; <; <; N< <; <; <; N< <; <; <; <; N< !E = = = D B B = =  F C = E = \@ = = = = = = = = = = = = D ,D VE = = ,B = = = = = = = = = = = = = C ;C = = = = = = = < = = = = = > = = = = < < > = A = A = = ? B? = < fA = = @  > = = = < = = = U= = != NCURSES_NO_SETBUF'%s': unknown terminal type. terminals database is inaccessible TERM environment must be <= %d characters. '%s': I need something more specific. TERM environment variable not set. Not enough memory to create terminal structure. '%s': I can't handle hardcopy terminals. TERMPATH/usr/share/misc/termcap|:.termcap /usr/share/misc/termcap2Kn,X   `  %Kterminal names must start with letter or digitset_color_pair but no initialize_pairenter_underline_mode but no exit_underline_modeexit_standout_mode but no enter_standout_mode``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~display_clock but no remove_clockenter_alt_charset_mode but no exit_alt_charset_modeexit_alt_charset_mode but no enter_alt_charset_modeenter_bold_mode but no exit_attribute_modeenter_blink_mode but no exit_attribute_modeexit_alt_charset_mode but no acs_charsenter_alt_charset_mode but no acs_charsremove_clock but no display_clockenter_am_mode but no exit_am_modeexit_am_mode but no enter_am_modeenter_xon_mode but no exit_xon_modeexit_xon_mode but no enter_xon_modesave_cursor but no restore_cursorrestore_cursor but no save_cursorfrom_status_line but no to_status_lineto_status_line but no from_status_lineenter_reverse_mode but no exit_attribute_modeenter_protected_mode but no exit_attribute_modeenter_secure_mode but no exit_attribute_modeenter_insert_mode but no exit_insert_modeexit_insert_mode but no enter_insert_modeenter_dim_mode but no exit_attribute_modeenter_delete_mode but no exit_delete_modeexit_delete_mode but no enter_delete_modeexit_ca_mode but no enter_ca_modeenter_ca_mode but no exit_ca_modeexit_underline_mode but no enter_underline_modeenter_standout_mode but no exit_standout_moderesolution of use=%s failedName collision between %slabel_off but no label_onprtr_on but no prtr_offprtr_off but no prtr_onmeta_off but no meta_onmeta_on but no meta_off/usr/share/misc/terminfoTERMINFO%c/%.*sTERMINFO_DIRS nq.  6IPBXh)  8o{  kcbtkclrkrmirkICkentkhtsprimary name%s `%.*s' may be too longnumericunknown capability '%s'%s$<%d>unknown token typeno value for ko capability %sextended capability '%s'wrong type used for %s capability '%s'acsc string synthesized from XENIX capabilitieshardware tabs with a width other than 8: %dunknown capability `%.*s' in ko string%s (%s) already has an explicit value %s, ignoring koacsc string synthesized from AIX capabilitiesko translation table is invalid, I give up%s (%s termcap extension) aliased to %s%s (%s terminfo extension) ignoredEntry does not start with terminal names in column one%s (%s terminfo extension) aliased to %s%s (%s termcap extension) ignoredhardware tabs with a non-^I tab string %s%s/.terminfoVery long string found. Missing separator?Non-octal digit `%c' in \ sequenceIllegal character %s in \ sequenceCan't backspace off beginning of lineIllegal character (expected alphanumeric or %s) - %sMissing separator after `%s', have %swhitespace in name or alias fielddubious character `%c' in name or alias fieldslashes aren't allowed in names or aliasesSeparator inconsistent with syntaxIllegal ^ character - %sAllow ^? as synonym for \177Premature EOFIllegal character - %sempty longname field$[]!*?no value given for `%s'Missing separatorpremature EOF                                  |              t           L                       l  d   \ T   L D      <  <    4 , $ @%&*!#font0s0dsIBMfont1s1dsfont2s2dsfont3s3dskbtabkselksltBOAT&TCICVXSEEXENIXGSCFCOHMLDPNPSG6G7G8GrGuGdGhGvGcGGkqIRISKATekKBKCKDKEKFBCxsbxhpxenlmsgresloknxonmc5ichtsnrrmcnpcndscrcccbcehlsxhpacrxmdaisyxvpasamcpixlpixxmcwslnlabwnumncvbufszspinvspinhmaddrmjumpmcsnpinsorcorlorhiorvicpswidcsbtnsbitwinbitypecsrcmdchcivismrcupcnormcvvisdslsmacsblinksmdcdimsmirinvisprotsmulechrmacssgr0rmdcrmulfslis1is2is3kbsktbckctabkf0kf1kf10kf2kf3kf4kf5kf6kf7kf8kf9rmkxsmkxlf0lf1lf10lf2lf3lf4lf5lf6lf7lf8lf9rmmsmmpadindnrinpfkeypflocpfxmc0mc4mc5rs1rs2rs3tsliprogka1ka3kb2kc1kc3mc5prmpacscplnsmxonrmxonsmamrmamxoncxoffcenacssmlnrmlnkbegkcankclokcmdkcpykcrtkextkfndkhlpkmrkkmsgkmovknxtkopnkprvkprtkrdokrefkrfrkrplkrstkresksavkspdkundkBEGkCANkCMDkCPYkCRTkDCkDLkENDkEOLkEXTkFNDkHLPkHOMkLFTkMSGkMOVkNXTkOPTkPRVkPRTkRDOkRPLkRITkRESkSAVkSPDkUNDrfikf11kf12kf13kf14kf15kf16kf17kf18kf19kf20kf21kf22kf23kf24kf25kf26kf27kf28kf29kf30kf31kf32kf33kf34kf35kf36kf37kf38kf39kf40kf41kf42kf43kf44kf45kf46kf47kf48kf49kf50kf51kf52kf53kf54kf55kf56kf57kf58kf59kf60kf61kf62kf63el1mgcsmglsmgrflnsclkdclkrmclkcwinwingohupqdialpulsewaitinitcinitpscpsetfsetbcpilpichrcvrdefcswidmsdrfqsitmslmsmicmsnlqsnrmqsshmssubmssupmsumrwidmritmrlmrmicmrshmrsubmrsupmrummhpamcud1mcub1mcuf1mvpamcuu1pordermcudmcubmcufmcuuscssmgbsmgbpsmglpsmgrpsmgtsmgtpsbimscsdrbimrcsdsubcssupcsdocrzeromcsnmkmousreqmpgetmsetafsetabpfxldevtcsinsmglrsmgtbbirepbinelbicrcolornmdefbiendbisetcolorslinesdispcsmpchrmpchsmscrmscpctrmscescscesaehhlmelhlmelohlmerhlmethlmevhlmsgr1slengthOTi2OTrsOTugOTbsOTnsOTncOTdCOTdNOTnlOTbcOTMTOTNLOTdBOTdTOTknOTkoOTmaOTptOTxrOTG2OTG3OTG1OTG4OTGROTGLOTGUOTGDOTGHOTGVOTGCmemlmemubox1ŏʏ>Ϗ1hҏ׏IҏڏlҏY+hҏihҏ8hҏݏ.hҏ+hw4hPIlMDDIhhhhDjh- iccC8  i+h$[h'+i'.i'1i'4i'7i':tj'iqj'ܫ̾,TDĽd8x̲0L8$ĺPd8hL8ī̸4TܽзdD$@X@$,PȪЮP,hx ȭ0 \н4@p XԿؾ`԰ȹd| pDpز<Dtкpt,`tԪ0ظ@`<ȿܷPpԹD0$ة ܴ8lt <X@hL@,lȳĴ8(| PDL  P Xܺ\x|l4ȶ Ll̯ĮPصh0ȰHpD(|HدttX l8$8x(Գд4,\X4,,T4\\Ыܱd(p(HLķ<hԶXx(\H \l $ԼhXP4dkkk B.kAa ' k gR k P Lk6kZ\kkku?kkkk k!k"k#k$@:[k^k ak 5 dk gk jkmkpkskvkyk|kkkkkkkkkkkk !B6 nqh k   I )hl "hIP%hP(hs+h.h !1h"~#'$6%4h&~'>(37)B* +/7,D-./7h0f1:h2-345L6=h78@h9Ch:Fh;Ih<#C=Lh>Oh?Rh@UhAXhB[hC^hDahEdhFghGjhHmhIphJshKDLvhMyhN8CO|hPhQhRMCShThUhVcCWzX>3YhZ[\#A]h^h_h`hahbhchdhefxhgkh1i5j{kG4lhm)n[4ojDpohqcrhsthuvhwhxEyz{|}~+hb 8o{ah77hhhhhhhh%h ݒhhuhhhhh~hhhhhhiiiD i iitiiaimii!id$i 'i*iv-i`0i3iW6i9ii?i@oABXDiEiiiwiiiiiiiij^jj jjjjj j j  j #j &j)j,j/j,2j#5j8j;j&>jAjDjGjJjMjPj Sj!Vj"Yj#\j$_j%bj&ej'hj(@)*kj+nj,\-qj.tj/wj0zj1}j2j3(4j50j6j7j8j9j:j;j<j=j>j?j@jAjBjCjDgjEjFhjGjH;IjJjKjLjMjNjOjPjQjRjSjTjUjVjWjXjYjZj[j\j]j^j_k`kakb kc kdkekf(g<)h5ikjkk l~mCno)jpU pqkrks"kt%ku(kv+kw.kx1ky,z,{,|,}e4k~f7kg:kh=ki@kCkFkIkLkOkRkUk6!%&'"#  p()!$&%+&05{*?+DINSX]bglqv{Xk,,`0ph<8\@ dlPPt4LThD L@4XDxpHT0 ,dPp(Tx @ dXdLhxHpp@t@$`X8d8 pPxh`t H|H8\(<XDDtL0`\Dt0|d\Dp$<DtTx4h8Hl$ Ld<T\X@`|8,$t448h@(l8(P|hLD\ (4 k=AE.kAa ' k gR  JLOk6@UZ_djntx| !"#$k[@:^k ak 5   .Őːѐא_ې  D(6)37  I D   &,2%h6<|C\BGKP V!G"#[$`%d&j'(o)*|+t,-.y/}01;2L-3i4 5L6789b:;<=> ?.@ABCDEFG=HIJKXLhM NOEPQRS2T7UiVWQőXʑYϑZӑ[ב\ܑ]^!_`abc^defVghiPjklmnop qrs3tu!v%w)xPy-z1{5|~}~bO=;7K`9h77=CGKOSW\`eiouz6S’ǒF̒ђ֒ے>P !e&+04ʏ8=BGLQ VH[`ejoty~+Óȓ͓ғד ܓ!"#$%&() *+,-."/'0,1263;4@5E6J7O8T9Y:^c<h=m>r?w@|ABCD F G H I OLĔɔϔ%ԔڔyޔPj Sj!Vj"Yj#\j$_j%bj&ej'hj(@)*+,-.E/ 0 12345$6*7/8399:>;D<NI=O>U?Y@_AdBhCnDpsEyFGHIJK5LM/NOPQRSĕTɕUϕVՕWەXYZ[X\]^|_` ab[cde"fW'g-h3i8j=klmnmoBpHqNrTsZt_ugvmwsx|ytz{|}R~ĖʖЖ֖ۖ!%&'"#  ()$$%)&.38*=+BGLQV[`ejo<tyy~I'm confused%'%{%{127}%^string too complex to convert%{96}%^string may not be optimal%Pa%ga$</>%2d%3dsaw %%r twice in %ssaw %%n twice in %ssaw %%m twice in %s%-%c%+%c%\%{2}%*%-%{10}%/%{16}%*%{10}%m%+%?%>%t%+%;%/\%03o%>%%?%%{%d}%%>%%t%%{%d}%%+%%;%%?%%{%d}%%>%%t%%'%c'%%+%%;%%?%%'%c'%%>%%t%%{%d}%%+%%;%%?%%'%c'%%>%%t%%'%c'%%+%%;%%{%d}%%+%%c%%'%c'%%+%%c%n%B%D%.doxX.%runknown %% code %s (%#x) in %s                                                       ~     -            j F    "                                 h h h h h h h h h h                                          ^      T       ,   " ^@^K^O^Q^S^X^[^_`~@~A~B~C~D~E~F~G~H~I~J~K~L~M~N~O~P~Q~R~S~T~U~V~W~X~Y~Z~[~\~]~^~_)bHhu|; `>mx )QP2(-ivii(i@pqN P\o4(s!jiW*I+&eRՏv6#@BDFHJLNPRTVXZ\^`bdfhjlnprtvxz|~(null)(cancelled)\%03lo, line %d, col %d, terminal '%s'back_tabchange_scroll_regionclear_all_tabsclear_screenclr_eoscommand_charactercursor_addresscursor_downcursor_homecursor_invisiblecursor_leftcursor_mem_addresscursor_normalcursor_rightcursor_to_llcursor_upcursor_visibledelete_characterdis_status_linedown_half_lineenter_alt_charset_modeenter_blink_modeenter_bold_modeenter_ca_modeenter_delete_modeenter_dim_modeenter_insert_modeenter_secure_modeenter_protected_modeenter_reverse_modeenter_standout_modeenter_underline_modeerase_charsexit_alt_charset_modeexit_attribute_modeexit_ca_modeexit_delete_modeexit_insert_modeexit_standout_modeexit_underline_modeflash_screenform_feedfrom_status_lineinit_1stringinit_2stringinit_3stringinit_fileinsert_characterinsert_paddingkey_backspacekey_catabkey_clearkey_ctabkey_dckey_dlkey_downkey_eickey_eolkey_eoskey_f0key_f1key_f10key_f2key_f3key_f4key_f5key_f6key_f7key_f8key_f9key_homekey_ickey_ilkey_leftkey_llkey_npagekey_ppagekey_rightkey_sfkey_srkey_stabkey_upkeypad_localkeypad_xmitlab_f0lab_f1lab_f10lab_f2lab_f3lab_f4lab_f5lab_f6lab_f7lab_f8lab_f9parm_dchparm_delete_lineparm_down_cursorparm_ichparm_indexparm_insert_lineparm_left_cursorparm_right_cursorparm_rindexparm_up_cursorpkey_keypkey_localpkey_xmitprint_screenrepeat_charreset_1stringreset_2stringreset_3stringreset_filerestore_cursorsave_cursorscroll_forwardscroll_reverseset_attributesset_tabset_windowto_status_lineunderline_charup_half_lineinit_progkey_a1key_a3key_b2key_c1key_c3prtr_nonchar_paddingacs_charsplab_normkey_btabenter_xon_modeexit_xon_modeenter_am_modeexit_am_modexon_characterxoff_characterena_acslabel_offkey_begkey_cancelkey_closekey_commandkey_copykey_createkey_endkey_enterkey_exitkey_findkey_helpkey_markkey_messagekey_movekey_nextkey_openkey_optionskey_previouskey_printkey_redokey_referencekey_refreshkey_replacekey_restartkey_resumekey_savekey_suspendkey_undokey_sbegkey_scancelkey_scommandkey_scopykey_screatekey_sdckey_sdlkey_selectkey_sendkey_seolkey_sexitkey_sfindkey_shelpkey_shomekey_sickey_sleftkey_smessagekey_smovekey_snextkey_soptionskey_spreviouskey_sprintkey_sredokey_sreplacekey_srightkey_srsumekey_ssavekey_ssuspendkey_sundoreq_for_inputkey_f11key_f12key_f13key_f14key_f15key_f16key_f17key_f18key_f19key_f20key_f21key_f22key_f23key_f24key_f25key_f26key_f27key_f28key_f29key_f30key_f31key_f32key_f33key_f34key_f35key_f36key_f37key_f38key_f39key_f40key_f41key_f42key_f43key_f44key_f45key_f46key_f47key_f48key_f49key_f50key_f51key_f52key_f53key_f54key_f55key_f56key_f57key_f58key_f59key_f60key_f61key_f62key_f63clr_bolclear_marginsset_left_marginset_right_marginlabel_formatset_clockdisplay_clockremove_clockcreate_windowgoto_windowhangupdial_phonequick_dialflash_hookfixed_pausewait_toneuser0user1user2user3user4user5user6user7user8user9orig_pairorig_colorsinitialize_colorinitialize_pairset_color_pairset_foregroundset_backgroundchange_char_pitchchange_line_pitchchange_res_horzchange_res_vertdefine_charenter_doublewide_modeenter_draft_qualityenter_italics_modeenter_leftward_modeenter_micro_modeenter_near_letter_qualityenter_normal_qualityenter_shadow_modeenter_subscript_modeenter_superscript_modeenter_upward_modeexit_doublewide_modeexit_italics_modeexit_leftward_modeexit_micro_modeexit_shadow_modeexit_subscript_modeexit_superscript_modeexit_upward_modemicro_column_addressmicro_downmicro_leftmicro_rightmicro_row_addressmicro_uporder_of_pinsparm_down_microparm_left_microparm_right_microparm_up_microselect_char_setset_bottom_marginset_bottom_margin_parmset_left_margin_parmset_right_margin_parmset_top_marginset_top_margin_parmstart_bit_imagestart_char_set_defstop_bit_imagestop_char_set_defsubscript_characterssuperscript_charactersthese_cause_crzero_motionchar_set_nameskey_mousemouse_inforeq_mouse_posget_mouseset_a_foregroundset_a_backgroundpkey_plabdevice_typecode_set_initset0_des_seqset1_des_seqset2_des_seqset3_des_seqset_lr_marginset_tb_marginbit_image_repeatbit_image_newlinebit_image_carriage_returncolor_namesdefine_bit_image_regionend_bit_image_regionset_color_bandset_page_lengthdisplay_pc_charenter_pc_charset_modeexit_pc_charset_modeenter_scancode_modeexit_scancode_modepc_term_optionsscancode_escapealt_scancode_escenter_horizontal_hl_modeenter_left_hl_modeenter_low_hl_modeenter_right_hl_modeenter_top_hl_modeenter_vertical_hl_modeset_a_attributesset_pglen_inchtermcap_init2termcap_resetlinefeed_if_not_lfbackspace_if_not_bsother_non_function_keysarrow_key_mapacs_ulcorneracs_llcorneracs_urcorneracs_lrcorneracs_lteeacs_rteeacs_bteeacs_tteeacs_hlineacs_vlineacs_plusmemory_lockmemory_unlockbox_chars_1init_tabslines_of_memorymagic_cookie_glitchpadding_baud_ratevirtual_terminalwidth_status_linenum_labelslabel_heightlabel_widthmax_attributesmaximum_windowsmax_colorsmax_pairsno_color_videobuffer_capacitydot_vert_spacingdot_horz_spacingmax_micro_addressmax_micro_jumpmicro_col_sizemicro_line_sizenumber_of_pinsoutput_res_charoutput_res_lineoutput_res_horz_inchoutput_res_vert_inchprint_ratewide_char_sizebuttonsbit_image_entwiningbit_image_typemagic_cookie_glitch_ulcarriage_return_delaynew_line_delaybackspace_delayhorizontal_tab_delaynumber_of_function_keysauto_left_marginno_esc_ctlcceol_standout_glitcheat_newline_glitcherase_overstrikegeneric_typehard_copyhas_status_lineinsert_null_glitchmemory_abovememory_belowmove_insert_modemove_standout_modeover_strikestatus_line_esc_okdest_tabs_magic_smsotilde_glitchtransparent_underlineneeds_xon_xoffprtr_silenthard_cursornon_rev_rmcupno_pad_charnon_dest_scroll_regioncan_changeback_color_erasehue_lightness_saturationcol_addr_glitchcr_cancels_micro_modehas_print_wheelrow_addr_glitchsemi_auto_right_margincpi_changes_reslpi_changes_resbackspaces_with_bscrt_no_scrollingno_correctly_working_crgnu_has_meta_keylinefeed_is_newlinehas_hardware_tabsreturn_does_clr_eol,B&;JQ W _q *9Paq!7KXiz (2<ELS\dlt{%2>ELT[bipw~1SM  #.8EQ_m{C, $+29BOYcl{т"+4=FR[dmy  ,4<GPYcmw(6>FNV^fnv~&.6>FNV^fnv~",:GUahs~!0?Qcs  2G^p&1=OXfv ,<O^p+9FS`m{.DYm,=LZh{ !*6D(6)37D &,2%h6<|C\BGKPVG[`djo|ty}-i L .Xh E2őʑϑӑבܑVP !%)P-15bO=;7K`9h77=CGKOSW\`eiouzS’ǒ̒ђ֒ے> !&+04ʏ8=BGLQV[`ejoty~Óȓ͓ғדܓ "',16;@EJOTY^chmrw|ĔɔϔԔڔyޔPjSjVjYj\j_jbjejhj@  $*/39>DIOUY_dhnsyĕɕϕՕە "'-38=BHNTZ_gms|ĖʖЖ֖ۖ .3BGLQV[`ejoty~AP[Zj~ *;L^m|*AWfvk[@:^kak5Őːѐא_ې $)   3@M^q}  + < U e {          3 E k=AE.kAa'kgRJLOk6@UZ_djntx|8=/var/log/wtmpinvalid hostnamehumanize_numberBkMGTPEBKMGTPEKMGTPEkMGTPE%lld%s%s%s%d%s%d%s%s%sscale >= 0suffix != NULLbuf != NULL/usr/src/lib/libutil/humanize_number.c\\#0123456789%s: illegal option -- %c %s: option requires an argument -- %c %Y-%m-%d%m/%d/%y%H:%M%H:%M:%S3%                                     3%      <%                      U" ;! { ' q' ^'       '  ?'   ( ' ( P$  P$ %" M% !       U" ;!  ! d# d#   ;!  "        i     & & M% REG_NOMATCHregexec() failed to matchREG_BADPATinvalid regular expressionREG_ECOLLATEinvalid collating elementREG_ECTYPEinvalid character classREG_EESCAPEtrailing backslash (\)REG_ESUBREGinvalid backreference numberREG_EBRACKbrackets ([ ]) not balancedREG_EPARENparentheses not balancedREG_EBRACEbraces not balancedREG_BADBRinvalid repetition count(s)REG_ERANGEinvalid character rangeREG_ESPACEREG_BADRPTREG_EMPTYempty (sub)expressionREG_ASSERTREG_INVARGREG_ILLSEQillegal byte sequenceREG_0x%xrepetition-operator operand invalid"can't happen" -- you found a buginvalid argument to regex routine*** unknown regexp error code ***/etc/mac.confMAC_CONFFILEdefault_labelsdefault_ifnet_labelsdefault_file_labelsifnetdefault_process_labelspacket.=security.mac.security.macconnect to address %s: RSHrcmd: socket: %s rcmd: too many files rcmd: getaddrinfo: %s rcmd: %s: %s rcmd: accept: %s .rhosts fstat failed/etc/hosts.equiv.rhosts lstat failed.rhosts not regular filebad .rhosts ownerrcmd: socket: All ports in use rcmd: write (setting up stderr): %s rcmd: select (setting up stderr): %s socket: protocol failure in circuit setup. select: protocol failure in circuit setup .rhosts writeable by other than ownerPOSIXUS-ASCIIQ Q P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P wP wP wP wP wP wP wP wP wP wP wP wP PP PP PP PP PP bP Q Q Q {Q kQ O XQ 0%XU T T T T T T U U U U U U U T T T T T T T T T T T T T T T T T T U zY X X X X YX 1X W Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Z Z Z Z Z Z Z Z Y Y Y Y Y Y Y Y Y Y Y Y Y &Z Y Y Y Y Y Y Y Z Y Y Y Y Y Y Y Y Y Y Y Y Y Y FZ Y X Y Y >Z 6Z Y Y Y .Z Y Y Y Y Y Y Y mZ Y Y Y eZ ]Z UZ Y MZ __libc_allocate_tlstcbsize >= 2*sizeof(Elf_Addr)/usr/src/lib/libc/gen/tls.cnosappndnosappendnoarchnoarchivednoschgnoschangenosimmutablenosunlnknosunlinknosnapshotnouappndnouappendnouchgnouchangenouimmutablenodumpnoopaquenouunlnknouunlink , 'ls, JS) ! n ; @3E Y       'ڔOLLǚN'''''' ('-L''''''((((((Signal 0abrtemtfpebussegvsysurgcontchldttinttouioxcpuxfszvtalrmprofwinchusr1usr2h f f f f f f f f f f f f f f dg f f f f f f f dg f f h ph Hh dg f Xg Lg BLOCKSIZE%ld%s-blocksminimum blocksize is 512%s: unknown blocksizemaximum blocksize is %ldG/boot/kernel/kernelnfs4/etc/fstabfstab: PATH_FSTAB/etc/disktabremovabledtsusimulated#NODEV#%c:%d:0x%xkern.devname_COMPAT_FreeBSD_4/etc/compat-FreeBSD-4-util%04d%4d%e-%b-%Ystrftime format "%s" all localesthe current localeNULL strftime format some locales i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i  i G i i ^ i i i i i i i i i i i i i i i i u    % <  S v i i i  i  i i    )  \   > i i i i o i  s   & i  s i      i  i     ( ? ]   CHECK_STRFTIME_FORMATS_FOR_TWO_DIGIT_YEARSyields only two digits of years in shut up gccNULSOHSTXETXEOTENQBELalertBSHTVTvertical-tabform-feedcarriage-returnSODC1DC2DC3DC4NAKSYNETBEMSUBESCIS4IS3IS2IS1exclamation-markquotation-marknumber-signdollar-signpercent-signampersandapostropheleft-parenthesisright-parenthesisasteriskplus-signcommahyphenhyphen-minusperiodfull-stoptwothreefourfivesixsevenninesemicolonless-than-signequals-signgreater-than-signquestion-markcommercial-atleft-square-bracketbackslashreverse-solidusright-square-bracketcircumflexcircumflex-accentunderscorelow-linegrave-accentleft-braceleft-curly-bracketvertical-lineright-braceright-curly-brackettildeDELUTF-8FFFFFFFFFFhGGFFFFFF0HDHbJHHHIHIIHHIHHHHHHHHHHHHHHHHIHHHHHHHHHHHHHHHHHHHHHHHHHHHIIHeIHHHHHHHHHHHHHHHHHHHHHHHHHHHHHWIrcmdsh: dup2 failed/usr/bin/rshrcmdsh: setuid(%u): %s rcmdsh: socketpairrcmdsh: getaddrinfo: %s rcmdsh: fork failedrcmdsh: unknown user: %s rcmdsh: execlp %s failed: %s rcmdsh: fork to lose parent failedInvalid value for ai_flagsai_family not supportedMemory allocation failureai_socktype not supportedInvalid value for hintsResolved protocol is unknownUnknown errorAddress family for hostname not supportedTemporary failure in name resolutionNon-recoverable failure in name resolutionNo address associated with hostnamehostname nor servname provided, or not knownservname not supported for ai_socktypeSystem error returned in errnoalnumcntrlpunctupperxdigitideogramphonogramruneW3]3K 7ۈc3 C@i3o3v3b 3 3LC_ALLLC_COLLATELC_CTYPELC_MONETARYLC_NUMERICLC_TIMEPATH_LOCALE/usr/share/localeef|fufnfgf&f^[yY]^[nN]44&ssrssrrrrrrrsrrrrrrrrrrrrrrrrrrr&ssrssrrrrrrrsrrrrrr%s.dbexecvP: : path too long /usr/bin:/binN4NNNJanFebMarAprMayJunJulAugSepOctNovDecJanuaryFebruaryMarchAprilJuneJulyAugustSeptemberOctoberNovemberDecemberSunMonTueWedThuFriSatSundayMondayTuesdayWednesdayThursdayFridaySaturday%a %b %e %H:%M:%S %YPM%a %b %e %H:%M:%S %Z %Y%I:%M:%S %p666666666666666666667 777&7*7.72767:7>7B7I7P7X7b7k7r7K<{7177666666667 7777NONEEUCGB18030GB2312GBKBIG5MSKanjiRuneMag1 error: warning: freelist is destroyed modified (chunk-) pointer pointer to wrong page chunk is already free modified (page-) pointer page is already free /etc/malloc.confMALLOC_OPTIONSrecursive call mmap(2) failed, check limits in malloc(): in free(): in realloc():junk pointer, too high to make sense junk pointer, too low to make sense unknown char in MALLOC_OPTIONS malloc() has never been called ƶhhh·hhhhhhhhhhhhhhhhrhbhRhhhhhhBhhhhhh2h"hhhhhhhhhhhҶInternal ypbind errorDomain not boundUnknown ypbind error: #%d /var/yp/binding%s/%s.%dclntudp_createclnttcp_createfcntl: F_SETFDyp_match: clnt_callyp_first: clnt_callyp_next: clnt_callyp_all: clnt_callclnttcp_create failedyp_order: clnt_callyp_master: clnt_callyp_maplist: clnt_callYP unknown error %d Database is busyAccess violationServer data base is badLocal domain name not setCan't communicate with ypservCan't communicate with ypbindYP server errorNo such key in mapRPC failureRequest arguments badSystem resource allocation failureYP: server for domain %s not responding, retrying YP server version mismatch - server can't supply service.Can't communicate with portmapperNo more records in map databaseLocal resource allocation failureNo such map in server's domainCan't bind to server which serves this domainxqjc\UNG@RPC: SuccessRPC: Can't encode argumentsRPC: Can't decode resultRPC: Unable to sendRPC: Unable to receiveRPC: Timed outRPC: Authentication errorRPC: Program unavailableRPC: Program/version mismatchRPC: Procedure unavailableRPC: Remote system errorRPC: Unknown hostRPC: Port mapper failureRPC: Program not registeredRPC: Unknown protocolAuthentication OKInvalid client credentialServer rejected credentialInvalid client verifierServer rejected verifierClient credential too weakInvalid server verifierFailed (unspecified error)RPC: (unknown error code); s1 = %u, s2 = %u; why = ; errno = %srpch != NULL - RPC: Incompatible versions of RPCRPC: Server can't decode argumentsRPC: Failed (unspecified error); low version = %u, high version = %u/usr/src/lib/libc/rpc/clnt_perror.c(unknown authentication error - %d)(?5?Q?j?~??A????A@)@;@T@Ap@@@@@@@A1Aclnt_sperrorTTclnt_perrorclnt_spcreateerrorclnt_pcreateerrorCould not get %s transportloopbacksvc%s_create: could not open connectionout of memoryunsupported transport sizecan't get protocol infocan't find appropriate transport%s: %srpc_reg: %s couldn't register prog %u vers %u for %s%s can't reassign procedure number %u%s cant find suitable transport for %srpc: rpc_reg: never registered prog %u vers %urpc: rpc_reg trouble replying to prog %u vers %unetpathsvc_sendreply failedsvc_tli_create: bad service typesvc_tli_create: could not get transport informationsvc_tli_create: could not bind to requested addresssvc_tli_create: could not bind to anonymous portsvc_tli_create: could not open connection for %ssvc_tli_create: invalid netconfigsvc_tp_create: Could not register prog %u vers %u on %ssvc_tp_create: invalid netconfig structure for prog %u vers %usvc_create: could not register prog %u vers %u on %ssvc_create: no memorysvc_create: unknown protocolcould not allocate cache cache already enabledsvc_enablecache: %s %sout of memory transport does not support data transfercould not get transport informationsvc_dg_create: %scould not allocate new rpc buffervictim alloc failedvictim not foundcache_set: %sfifo<pmap_getportaddress != NULL/usr/src/lib/libc/rpc/pmap_getport.cclntraw_create - Fatal header serialization error./usr/src/lib/libc/rpc/clnt_raw.cclnt_raw_callsunrpcff02::202datagram_nclnt_bcast: cannot sendbroadcast packetclnt_bcast: Cannot send broadcast packetclnt_bcast: Cannot receive reply to broadcastsvc_vc_destroyread_vcwrite_vcsvc_vc_statsvc_vc_recvsvc_vc_getargssvc_vc_freeargssvc_vc_replymakefd_xprtsvc_fd_createrendezvous_requestxprt != NULLfd != -1svc_vc_create: out of memory/usr/src/lib/libc/rpc/svc_vc.csvc_vc: makefd_xprt: out of memorysvc_tcp: makefd_xprt: out of memorysvc_fd_create: no mem for local addrsvc_fd_create: could not retrieve remote addrsvc_fd_create: could not retrieve local addrsvc_vc_create: could not retrieve local addrsvc_vc_create: no mem for local addrxprt_register__xprt_do_unregistersvc_findsvc_registersvc_sendreplysvcerr_noprocsvcerr_decodesvcerr_systemerrsvcerr_authsvcerr_weakauthsvcerr_noprogsvcerr_progverssvc_getreqset/usr/src/lib/libc/rpc/svc.cprev != NULLdispatch != NULLreadfds != NULLxdr_callmsgxdrs != NULLcmsg != NULL/usr/src/lib/libc/rpc/rpc_callmsg.cpmap_rmtcallxdr_rmtcall_argsxdr_rmtcallresport_ptr != NULLaddr != NULLcap != NULLcrp != NULL/usr/src/lib/libc/rpc/pmap_rmt.cxdr_pmapregs != NULL/usr/src/lib/libc/rpc/pmap_prot.c0.0.0.0.%d.%dxdr_reference: out of memorywindow verifier mismatchtimestamp before last seensvcauth_des: %s decryptsessionkeybad nicknamegetpublickeyreplayed credentialtimestamp expiredinvalid usecsdecryption failureencryption failureinvalid nicknameunknown netnamemissed ucred cache/etc/publickey # publickey.bynameBad record in %s -- %sBad record in %s val problem - %s_svcauth_unixrqst != NULL/usr/src/lib/libc/rpc/svc_auth_unix.cbad auth_len gid %ld str %ld auth %u authunix_marshalmarshal_new_authauthunix_validateauthunix_refreshauthunix_destroyauth != NULLverf != NULL/usr/src/lib/libc/rpc/auth_unix.cauth_none.c - Fatal marshalling problemauthunix_create: out of memoryunixnetid.byname/etc/netid ,getnetconfig: %scould not close() fd %d; mem & fd leakinetclnt_dg_create: out of memory,E֎`n$9NcnƎxdr_authunix_parms/usr/src/lib/libc/rpc/authunix_prot.cdnsnissetpwentendpwentgetpwuid_rgetpwnam_rgetpwent_r/etc/spwd.db/etc/pwd.dbVERSIONpasswd_compatmaster.passwd.by%s##passwd.adjunct.bynamepasswd-%ldzRRRDzRHRRDzRHRRDzRH(RRzR8(RRzR8(RRzR8RRRRRDRUnsupported password database version %dgetpwent memory allocation failure, /etc/netgroupnetgroup.byhost*.**.%s%s.%s%s.*netgroup.byusersetgrentendgrentgetgrent_rgetgrnam_rgetgrgid_r/etc/groupgroup_compatgroup.bynamegroup.bygidgroup-%ldzRR\RzRPR\RzRPR\RzRPhR RzRhR RzRhR RzRRR\RRRR getgrent memory allocation failureout of memoryclnt_vc_create%s : %sclnt_vc_createclnt_vc_callclnt_vc_geterrclnt_vc_freeresclnt_vc_control>Qclnt_vc_destroyvc_cv != (cond_t *) NULLvc_cv == (cond_t *) NULLcl != NULLerrp != NULL/usr/src/lib/libc/rpc/clnt_vc.cauthnone_marshal/usr/src/lib/libc/rpc/auth_none.croot uid should be 0no uid for user %scorrupted entry%s uid is incorrect%s gid is incorrectPW_SCAN_BIG_IDS%s > max uid value (%lu)no gid for user %s%s > max gid value (%lu)warning, unknown root shell%s > recommended max uid value (%u)%s > recommended max gid value (%u)/bin/csh/etc/shellsshells-XXXXXshells-%dinitshells_ZR(R,tx  8   l xdrrec_create: out of memory$0pT0pudp6tcp6circuit_vdatagram_vcircuit_ninet6%s.%u.%ugA.>[[,QE[[\I.>gA   Orpc: failed to open /etc/netconfig""xdr_opaque_authxdr_des_blockxdr_accepted_replyxdr_rejected_replyxdr_replymsgxdr_callhdr_seterr_replyacceptedrejected&&&&&~&blkp != NULLar != NULLrr != NULLrmsg != NULLerror != NULL/usr/src/lib/libc/rpc/rpc_prot.cNFINITY)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)q)2)q)q)q)q)-q)q)q)q)q)----------q)q)q)q)q)q)q),q):,q),,,q)q)q)q)-q)q)q)q)q)q)*q)q)q)q))q)q)O,q)q)q)q)q),q)A,$,,,,++-+q)*q)****q)**e*q)q))q))6.Y5261//98O8F<;;:::\:1\:119:::::::]=]=1111111K=K=K=K=K=K=11111111111111111=11111111K=K=K=K=K=K=11111111111111111=/etc/hesiod.conflhsrhsHESIOD_CONFIGHES_DOMAINclassesrhs-extensionstringlist: %mJXZXNXSX/XZXJXؗҜ<3#I9=D2[%Cod(X Y Y Y Y Y Y Y YPZPZPZPZPZ Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y YPZ Y Y Y Y Y Y Y Y Y YX YXAA5?55?5?@?xdr_array: out of memoryxdr_bytes: out of memoryxdr_string: out of memory1.0 1.2 __collate_strdup__collate_substitute҈҈ЌЌ\ЌNETPATHNetconfig database not foundNot enough memoryNot initialized/etc/netconfigtpi_cots_ordtpi_cotstpi_cltstpi_rawin /etc/netconfig. or run mergemaster(8). Continuing in 10 seconds Netconfig database has invalid formatNetid not found in netconfig databaseUnknown network selection errorThe local transport is called "unix" Please change this to "local" manually See UPDATING entry 20021216 for details. This warning will be removed 20030301 cccdd res_send: %s ([%s].%s): %s res_send: %s: %s ;; res_send() ;; old answer (unexpected): ;; old answer: s out-of-bounds;; wrong query name: sendto;; not our server: keventread failedrecvfrom;; response truncated ;; timeout ;; undersized: %d ;; truncated answer server rejected query: read(vc);; got answer: socket(dg)write failedsocket(vc)connect/vckqueueconnect(dg);; Querying server (# %d) address = %s ghbynameghbyaddr/etc/hostsip6.arpaR$RRLRR# 0123456789abcdef;; res_query(%s, %d, %d) ;; rcode = %d, ancount=%d ;; res_query: mkquery failed;; res_query: send errorHOSTALIASES;; res_querydomain(%s, %s, %d, %d) ;; res_mkquery(%d, %s, %d, %d) /&ndots:timeout:attempts:insecure1insecure2no_tld_queryedns0;; ndots=%d ;; timeout=%d ;; retry=%d ;; debug/etc/resolv.confdomainnameserversortlistRES_OPTIONSenvLOCALDOMAIN;; res_setoptions("%s", "%s")... ;; res_setoptions("%s", "%s").. GAIgetaddrinfoipnodes.bynamehosts.byname;; rcode = %u, ancount=%u ;; res_querydomain(%s, %s) gA.>gA.>gA.>llllRgethostby*.getanswer: asked for "%s", got "%s"R&R,"gethostby*.getanswer: asked for "%s %s %s", got type "%s"services.byname/etc/services,/%d/%sservices.byportname servermail destination (deprecated)MFmail forwarder (deprecated)CNAMEcanonical nameSOAstart of authorityMBmailboxMGmail group membermail renameWKSdomain name pointerHINFOhost informationmailbox informationMXmail exchangerTXTtextresponsible personAFSDBDCE or AFS serverX25X25 addressISDNISDN addressrouterNSAPnsap addressNSAP_PTRsignatureKEYPXmapping informationGPOSAAAAIPv6 addressEIDNIMLOCSRVserver selectionATMAATM address (unimplemented)IXFRincremental zone transferAXFRMAILBMAILAmail agent (deprecated)NAPTRURN Naming Authority"any"ZONEPREREQUISITEUPDATEADDITIONALANSWERAUTHORITYCHAOSHESIODdefnamusevcdnsrch?0x%lx?igntcprimry(unimpl)no-tld-querystyopnnoaliasesaaonly(unimpl)recurs;; res options:;; %s, type = %s, class = %s ;; ns_parserr: %s ;; %s SECTION: ;; ns_sprintrr: %s ; flags:; %s: %d, %s: %d;; ns_initparse: %s qr aa tc rd ra ?? ad cd%ld.%.2ldwell-known service (deprecated)geographical position (withdrawn)next valid name (unimplemented)endpoint identifier (unimplemented)NIMROD locator (unimplemented)mailbox-related data (deprecated);; ->>HEADER<<- opcode: %s, status: %s, id: %d ; error: unknown LOC RR version%d %.2d %.2d.%.3d %c %d %.2d %.2d.%.3d %c %d.%.2dm %sm %sm %sm\onpm#mmm nnn#n6n9nAnDn ,jVn X/ bn|q ofn znnVnnnnn@nnnnnno- ooo&ofn/o9o=o@oToqYo^orofqkoq oor!vozo"ooooooo$roo#ooPppp'p.pw9p@p.pjJpPpP8>M^L^L^L^L^L^L^L^L>M^L^L^L^L M^L^L^L M^L^L^L^L^L^L^L^L^L^L^L^L^L>M^L^L^L^L^L^L^L^L>M^L^L^L^L M^L^L^L MLrLrLrLrLrLrLrLrLLrLrLrLrLLrLrLrLLrLrLrLrLrLrLrLrLrLrLrLrLrLLrLrLrLrLrLrLrLrLLrLrLrLrLLrLrLrLLPREREQUISITESNOERRORFORMERRSERVFAILNXDOMAINNOTIMPREFUSEDYXDOMAINYXRRSETNXRRSETNOTAUTHZONEERRNOCHANGEIQUERYCQUERYMCQUERYUNOTIFYZONEINITZONEREFaddlenX[heX[X[e]eeeX[ce^h _cih _b^^ __X[_pb7eX[cifX[X[fX[Bglen <= *buflen "\@ unknown RR type\#( ; %s%02x ( RR format error %s %d %lu 0x%04x %u %u ) %u ( %u %u %u ; serial ; refresh ; retry ; expiry ; minimum /usr/src/lib/libc/net/ns_print.cABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/Assertion failed: (%s), function %s, file %s, line %d. Assertion failed: (%s), file %s, line %d. z8{8{8{{8{8{8{8{{8{8{8{8{8{{8{8{8{znss_%s.so.%dnss_module_registerNSSWITCH(%s): %s, %s/etc/nsswitch.confvector_appendnss_load_modulenss_method_lookupNSSWITCH(%s): memory allocation failureNSSWITCH(%s): %s, registration failedNSSWITCH(%s): %s, %s, %s, not foundhosts.byaddripnodes.byaddr/var/run/logpriv/var/run/log/dev/log%.15s /dev/console[%d]syslog: unknown facility/priority: %xmnUTC/usr/share/zoneinfo/etc/localtimeposixrules,M4.1.0,M10.5.0TZSunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec%.3s %.3s%3d %02d:%02d:%02d %d XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX01234567890123456789abcdef0123456789ABCDEF%u.%u.%u.%u &&&&$&&$$$$$$$$$$$$$$unionfs/usr/bin:/bin:/usr/sbin:/sbin:rrjZjRZbRRRRRRRRb%$sniglet^&%s/bt.XXXXXXXXXX0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz/dev/urandom"CCCBBBBBA^A^Z^A^Z^A^Z^A^]^Z^A^Z^ ...! ..." . ..#group$spwd.db% protocolsk&servicesk# $FreeBSD: src/etc/group,v 1.32 2005/06/06 20:19:56 brooks Exp $ # wheel:*:0:root daemon:*:1: kmem:*:2: sys:*:3: tty:*:4: operator:*:5:root mail:*:6: bin:*:7: news:*:8: man:*:9: games:*:13: staff:*:20: sshd:*:22: smmsp:*:25: mailnull:*:26: guest:*:31: bind:*:53: proxy:*:62: authpf:*:63: _pflogd:*:64: _dhcp:*:65: uucp:*:66: dialer:*:68: network:*:69: www:*:80: nogroup:*:65533: nobody:*:65534: * ...+ . .. share ip 0 IP icmp 1 ICMP igmp 2 IGMP ggp 3 GGP ipencap 4 IP-ENCAP st2 5 ST2 tcp 6 TCP cbt 7 CBT egp 8 EGP igp 9 IGP bbn-rcc 10 BBN-RCC-MON nvp 11 NVP-II pup 12 PUP argus 13 ARGUS emcon 14 EMCON xnet 15 XNET chaos 16 CHAOS udp 17 UDP mux 18 MUX dcn 19 DCN-MEAS hmp 20 HMP prm 21 PRM xns-idp 22 XNS-IDP trunk-1 23 TRUNK-1 trunk-2 24 TRUNK-2 leaf-1 25 LEAF-1 leaf-2 26 LEAF-2 rdp 27 RDP irtp 28 IRTP iso-tp4 29 ISO-TP4 netblt 30 NETBLT mfe-nsp 31 MFE-NSP merit-inp 32 MERIT-INP sep 33 SEP 3pc 34 3PC idpr 35 IDPR xtp 36 XTP ddp 37 DDP idpr-cmtp 38 IDPR-CMTP tp++ 39 TP++ il 40 IL ipv6 41 IPV6 sdrp 42 SDRP ipv6-route 43 IPV6-ROUTE ipv6-frag 44 IPV6-FRAG idrp 45 IDRP rsvp 46 RSVP gre 47 GRE mhrp 48 MHRP bna 49 BNA esp 50 ESP ah 51 AH i-nlsp 52 I-NLSP swipe 53 SWIPE narp 54 NARP mobile 55 MOBILE tlsp 56 TLSP skip 57 SKIP ipv6-icmp 58 IPV6-ICMP icmp6 ipv6-nonxt 59 IPV6-NONXT ipv6-opts 60 IPV6-OPTS cftp 62 CFTP sat-expak 64 SAT-EXPAK kryptolan 65 KRYPTOLAN rvd 66 RVD ippc 67 IPPC sat-mon 69 SAT-MON visa 70 VISA ipcv 71 IPCV cpnx 72 CPNX cphb 73 CPHB wsn 74 WSN pvp 75 PVP br-sat-mon 76 BR-SAT-MON sun-nd 77 SUN-ND wb-mon 78 WB-MON wb-expak 79 WB-EXPAK iso-ip 80 ISO-IP vmtp 81 VMTP secure-vmtp 82 SECURE-VMTP vines 83 VINES ttp 84 TTP nsfnet-igp 85 NSFNET-IGP dgp 86 DGP tcf 87 TCF eigrp 88 EIGRP ospf 89 OSPFIGP sprite-rpc 90 Sprite-RPC larp 91 LARP mtp 92 MTP ax.25 93 AX.25 ipip 94 IPIP micp 95 MICP scc-sp 96 SCC-SP etherip 97 ETHERIP encap 98 ENCAP gmtp 100 GMTP ifmp 101 IFMP pnni 102 PNNI pim 103 PIM aris 104 ARIS scps 105 SCPS qnx 106 QNX a/n 107 A/N ipcomp 108 IPComp snp 109 SNP compaq-peer 110 Compaq-Peer ipx-in-ip 111 IPX-in-IP carp 112 CARP vrrp pgm 113 PGM l2tp 115 L2TP ddx 116 DDX iatp 117 IATP st 118 ST srp 119 SRP uti 120 UTI smp 121 SMP sm 122 SM ptp 123 PTP isis 124 ISIS fire 125 FIRE crtp 126 CRTP crudp 127 CRUDP sscopmce 128 SSCOPMCE iplt 129 IPLT sps 130 SPS pipe 131 PIPE sctp 132 SCTP fc 133 FC pfsync 240 PFSYNC divert 258 DIVERT ' ...( ...) ...# # Network services, Internet style # # Stripped-down version. # # $FreeBSD: src/release/fixit.services,v 1.4 1999/08/28 01:33:10 peter Exp $ # # WELL KNOWN PORT NUMBERS # echo 7/tcp echo 7/udp discard 9/tcp sink null discard 9/udp sink null systat 11/tcp users #Active Users systat 11/udp users #Active Users daytime 13/tcp daytime 13/udp chargen 19/tcp ttytst source #Character Generator chargen 19/udp ttytst source #Character Generator ftp-data 20/tcp #File Transfer [Default Data] ftp-data 20/udp #File Transfer [Default Data] ftp 21/tcp #File Transfer [Control] ftp 21/udp #File Transfer [Control] ssh 22/tcp #Secure Shell Login ssh 22/udp #Secure Shell Login telnet 23/tcp telnet 23/udp # 24/tcp any private mail system # 24/udp any private mail system smtp 25/tcp mail #Simple Mail Transfer smtp 25/udp mail #Simple Mail Transfer time 37/tcp timserver time 37/udp timserver domain 53/tcp #Domain Name Server domain 53/udp #Domain Name Server bootps 67/tcp dhcps #Bootstrap Protocol Server bootps 67/udp dhcps #Bootstrap Protocol Server bootpc 68/tcp dhcpc #Bootstrap Protocol Client bootpc 68/udp dhcpc #Bootstrap Protocol Client tftp 69/tcp #Trivial File Transfer tftp 69/udp #Trivial File Transfer gopher 70/tcp gopher 70/udp finger 79/tcp finger 79/udp http 80/tcp www www-http #World Wide Web HTTP http 80/udp www www-http #World Wide Web HTTP sunrpc 111/tcp rpcbind #SUN Remote Procedure Call sunrpc 111/udp rpcbind #SUN Remote Procedure Call auth 113/tcp ident tap #Authentication Service auth 113/udp ident tap #Authentication Service nntp 119/tcp usenet #Network News Transfer Protocol nntp 119/udp usenet #Network News Transfer Protocol rmt 411/tcp #Remote MT Protocol rmt 411/udp #Remote MT Protocol https 443/tcp https 443/udp # # Berkeley-specific services # exec 512/tcp #remote process execution; # authentication performed using # passwords and UNIX loppgin names biff 512/udp comsat #used by mail system to notify users # of new mail received; currently # receives messages only from # processes on the same machine login 513/tcp #remote login a la telnet; # automatic authentication performed # based on priviledged port numbers # and distributed data bases which # identify "authentication domains" who 513/udp whod #maintains data bases showing who's # logged in to machines on a local # net and the load average of the # machine cmd 514/tcp shell #like exec, but automatic # authentication is performed as for # login server syslog 514/udp printer 515/tcp spooler printer 515/udp spooler talk 517/tcp #like tenex link, but across # machine - unfortunately, doesn't # use link protocol (this is actually # just a rendezvous port from which a # tcp connection is established) talk 517/udp #like tenex link, but across # machine - unfortunately, doesn't # use link protocol (this is actually # just a rendezvous port from which a # tcp connection is established) ntalk 518/tcp ntalk 518/udp utime 519/tcp unixtime utime 519/udp unixtime efs 520/tcp #extended file name server router 520/udp route routed #local routing process (on site); # uses variant of Xerox NS routing # information protocol uucp 540/tcp uucpd uucp 540/udp uucpd uucp-rlogin 541/tcp uucp-rlogin 541/udp klogin 543/tcp # Kerberos (v4/v5) klogin 543/udp # Kerberos (v4/v5) kshell 544/tcp krcmd # Kerberos (v4/v5) kshell 544/udp krcmd # Kerberos (v4/v5) 08@iC@ <   iCs@  [> [>iC@ @@@<@TU iC  S,0iCAiCiCiC  3AiCiCiC %vAiCiCiC *QiCiCiC N~'iCiCiCP X ` h p x Pv5iCiCiC niCiCiC &#IAiCiCiC AiCiCiC 9TAiCiCiC R"AiCiCiC ^Ab,AiCiCiC kA^Z^^]A^A^Z^Z^].aZ^A^]__]___]__]`]_]`_]`````````_________^(________a__a^___^_a^__e^__________^,_____,___i___e^-`w__^ ae^__e^_"a0123456789abcdef0123456789ABCDEFPtDqDqGtDqDqDq_vDqDquvDqunuDq_u'u'u'u'u'u'u'u'u'uDqDqDqDqDqDqDqeqDqmmxsxwDqDqDqDqIsDqDqlDqDqDqjDqjDqDq#wDqDqDqDqDqDqDqDqeqDqmmxsxwwmvwDqwDqvlUsxDqk0tjDqDq|tDqetinfINFnanNAN̪̪̪̪̪JNaNInfinity?@@aCoc?`(?yPD?úút|tܿtttĿtttttttп 6?k9@c9{999B9999999^`}-<2ZGUD?=hh|dmpool_new: page allocation overflow. ?$@Y@@@@j@.AcAחAeA _BvH7BmB@0BļB4&k C7yAC؅W4vCNgmC=`XC@xDPKDMDؗҜ<3#I9=D2[%Cod( 7yACnF?O8M20HwZ?@ACDEFGHJKMOQSS   9876543210/.-,+*)('&%$#"! :::::::::::::::::::::::::::::;<<<<<<<::;<<<<<<<:<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<::;<;53210/-,+*)('&%$#"!  ::::::::::::::::::::::::    DEAE216+-.99+&%/ /E!()*!!# E~j8h8h8hlslflYlLl?l2lkwkVkjjbad buffer in yy_scan_bytes()input in flex scanner failedout of dynamic memory in yy_scan_buffer()out of dynamic memory in yy_scan_bytes()out of dynamic memory in yy_create_buffer()fatal flex scanner internal error--no action foundinput buffer overflow, can't enlarge buffer because scanner uses REJECTfatal flex scanner internal error--end of buffer missedNSSWITCH(nslexer): memory allocation failureNSSWITCH(nslexer): %s line %d: %s at '%s'gethostbynamegethostbyaddrR{R R|RPR$gethostby*.gethostanswer: asked for "%s", got "%s"gethostby*.gethostanswer: asked for "%s %s %s", got type "%s"Impossible condition (type=%d) static buffer is too small (%d) Too many addresses (%d) size (%d) too big res_search failed (%d) %x.%x.%u.%u.%u.%u.in-addr.arpares_query failed (%d) ܒВܒܒܒ$ܒ8HASH: Out of overflow pages. Increase page size az$FreeBSD: src/lib/csu/i386-elf/crtn.S,v 1.6 2005/05/19 07:31:06 dfr Exp $ {lpVF  `L4 .T0 111`dLg\/ ġ3TT' .&[T75JI c  <Ȧ BȦ H O<hhP.| /tmp/EdDk.XXXXXXXXXXPPPP $)/5;BIMSYP unknown _msgbufp#:_l    Ai4T$i<q9@ABCMN"O4PEQWRlSTUV\acde*pBuXw]xdyt0CZaq2V]%-BUo@,,4;@B N> Z@`kv ~Lssq.6v=D@Z b@m @4 :6&ssq.6v=D@Z b@m:ssq.6v=D@Z b@m4 :)3##.xU\ojXj^HT*\gegogzgD_ggQQw] QQgQQf%TQ@ULhW?O@NiAB CD  !"#$%E &'()*+,-./F 0123456789G :;<=>?@ABCH D E F GIJKjkLMKNIOP[lmcnoQRpqRSrZstuvwxSyz{|}~TPUQVTW  :%%p%c%%{10}%%/%%{16}%%*%%p%c%%{10}%%m%%+<Hbm)EP it   WN Hl(%%%%& &&!&*&4& ?&H&R&Y&c&p&w&&&u z L~)PPPP $)/5;BIMSYP                                                         0 v0v v0Hf zHf) ))h,l,p,t,x,|,%,,,, , h SM , , @ ,  , ,!a,,,,,,,,,,,,,,C ,!-"-# -$,-%9-&C-'N-(_-)q-*z-+-,-----.-.=./K./0C1-2-3-4-5-6-78-9-:-;-<-=-> .?.@%.[9.\C.\S.]h.^s.^._._.`.{.{.|.}.}.~.-?<2h2121122318312CCCCCCC44*434?4J4X0: QQQ   kh545@ÿ? d'@Bʚ;PpLw'p.pZwbwjwsw|wwwwwwwr8K[wwwwww'p(i@Qr8Kwwx   @ qWILDABBR0123456789B 00000000000000000t8D@ÿ?RuneMagiNONEBBBBB@(((((((((((((((          (((((((    ((((((    ((((  !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~}, `   ` ` @   h, .@Ȇ( Q<_hashXXXXXX.shstrtab.init.text.fini.rodata.data.eh_frame.ctors.dtors.jcr.bss ttEDDF ``F %'V + }5 }< }C }H } }Ma  }n}{>9xs61 T O v nobody*Unprivileged user/nonexistent/usr/sbin/nologin3nobody*Unprivileged user/nonexistent/usr/sbin/nologinCpop*DPost Office Owner/nonexistent/usr/sbin/nologin1poppop*DPost Office Owner/nonexistent/usr/sbin/nologinApopbind*55Bind Sandbox//usr/sbin/nologin35bind*55Bind Sandbox//usr/sbin/nologin2bind*55Bind Sandbox//usr/sbin/nologinC5bind*55Bind Sandbox//usr/sbin/nologinBkmem*KMem Sandbox//usr/sbin/nologin3kmem*KMem Sandbox//usr/sbin/nologinCtty*Tty Sandbox//usr/sbin/nologin2tty*Tty Sandbox//usr/sbin/nologinB|w*%rl  V Q r proxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologin3>proxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologin2proxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologinC>proxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologinBsmmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologin1smmspsmmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologinAsmmspsshd*Secure Shell Daemon/var/empty/usr/sbin/nologin3sshd*Secure Shell Daemon/var/empty/usr/sbin/nologinCkmem*KMem Sandbox//usr/sbin/nologin2kmem*KMem Sandbox//usr/sbin/nologinB`\!@; I D _pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologin2_pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologinBgames* Games pseudo-user/usr/games/usr/sbin/nologin3games* Games pseudo-user/usr/games/usr/sbin/nologin2games* Games pseudo-user/usr/games/usr/sbin/nologinCgames* Games pseudo-user/usr/games/usr/sbin/nologinBtty*Tty Sandbox//usr/sbin/nologin1ttytty*Tty Sandbox//usr/sbin/nologinAttybin*Binaries Commands and Source//usr/sbin/nologin1binbin*Binaries Commands and Source//usr/sbin/nologinAbin(UPTO  6 1 , ' } 5 0 @ @ www*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologin3Pwww*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologinCP_dhcp*AAdhcp programs/var/empty/usr/sbin/nologin2_dhcp*AAdhcp programs/var/empty/usr/sbin/nologinB_pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologin3@_pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologinC@proxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologin1proxyproxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologinAproxysshd*Secure Shell Daemon/var/empty/usr/sbin/nologin1sshdsshd*Secure Shell Daemon/var/empty/usr/sbin/nologinAsshdnews*News Subsystem//usr/sbin/nologin3news*News Subsystem//usr/sbin/nologin2 news*News Subsystem//usr/sbin/nologinCnews*News Subsystem//usr/sbin/nologinB kmem*KMem Sandbox//usr/sbin/nologin1kmemkmem*KMem Sandbox//usr/sbin/nologinAkmemrootCharlie &/root/bin/csh3rootCharlie &/root/bin/csh2rootCharlie &/root/bin/cshCrootCharlie &/root/bin/cshB$}(#|w*% !  d \  r m  N G nobody*Unprivileged user/nonexistent/usr/sbin/nologin1nobodynobody*Unprivileged user/nonexistent/usr/sbin/nologinAnobodyuucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucico2uucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucicoB_dhcp*AAdhcp programs/var/empty/usr/sbin/nologin3A_dhcp*AAdhcp programs/var/empty/usr/sbin/nologinCA_pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologin1_pflogd_pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologinA_pflogdsmmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologin3smmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologinCman* Mister Man Pages/usr/share/man/usr/sbin/nologin3 man* Mister Man Pages/usr/share/man/usr/sbin/nologin2 man* Mister Man Pages/usr/share/man/usr/sbin/nologinC man* Mister Man Pages/usr/share/man/usr/sbin/nologinB daemon*Owner of many system processes/root/usr/sbin/nologin3daemon*Owner of many system processes/root/usr/sbin/nologinCtoor*Bourne-again Superuser/root2toor*Bourne-again Superuser/rootB.FAQJ U P  : 6 E @  h c   pop*DPost Office Owner/nonexistent/usr/sbin/nologin2pop*DPost Office Owner/nonexistent/usr/sbin/nologinBuucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucico3Buucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucicoCBmailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologin3mailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologinCsshd*Secure Shell Daemon/var/empty/usr/sbin/nologin2 sshd*Secure Shell Daemon/var/empty/usr/sbin/nologinB man* Mister Man Pages/usr/share/man/usr/sbin/nologin1manman* Mister Man Pages/usr/share/man/usr/sbin/nologinAmanoperator*System &//usr/sbin/nologin3operator*System &//usr/sbin/nologin1operatoroperator*System &//usr/sbin/nologinCoperator*System &//usr/sbin/nologinAoperatordaemon*Owner of many system processes/root/usr/sbin/nologin2daemon*Owner of many system processes/root/usr/sbin/nologin1daemondaemon*Owner of many system processes/root/usr/sbin/nologinBdaemon*Owner of many system processes/root/usr/sbin/nologinAdaemontoor*Bourne-again Superuser/root1toortoor*Bourne-again Superuser/rootAtoorrootCharlie &/root/bin/csh1rootrootCharlie &/root/bin/cshArootVERSION$|w+&61 I D ` [ ? : D D www*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologin2www*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologin1wwwwww*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologinBwww*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologinAwwwuucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucico1uucpuucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucicoAuucpbind*55Bind Sandbox//usr/sbin/nologin1bindbind*55Bind Sandbox//usr/sbin/nologinAbindsmmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologin2 smmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologinB news*News Subsystem//usr/sbin/nologin1newsnews*News Subsystem//usr/sbin/nologinAnewsgames* Games pseudo-user/usr/games/usr/sbin/nologin1gamesgames* Games pseudo-user/usr/games/usr/sbin/nologinAgamesbin*Binaries Commands and Source//usr/sbin/nologin3bin*Binaries Commands and Source//usr/sbin/nologinCoperator*System &//usr/sbin/nologin2operator*System &//usr/sbin/nologinB^Y{v Z T  m h   t 6 t nobody*Unprivileged user/nonexistent/usr/sbin/nologin2nobody*Unprivileged user/nonexistent/usr/sbin/nologinBpop*DPost Office Owner/nonexistent/usr/sbin/nologin3Dpop*DPost Office Owner/nonexistent/usr/sbin/nologinCD_dhcp*AAdhcp programs/var/empty/usr/sbin/nologin1_dhcp_dhcp*AAdhcp programs/var/empty/usr/sbin/nologinA_dhcpmailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologin2 mailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologin1mailnullmailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologinB mailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologinAmailnulltty*Tty Sandbox//usr/sbin/nologin3tty*Tty Sandbox//usr/sbin/nologinCbin*Binaries Commands and Source//usr/sbin/nologin2bin*Binaries Commands and Source//usr/sbin/nologinB