ࡱ> Y 0bjbjWW "==K+]\\\\8 D*hh" K*M*M*M*M*M*M*$+v-lq*  q*%\\mh%%% \<K*(JrJ\\\\ K*%^%K*|K*D$ `Dֿ$K*Programming 2 Control Buttons on the Worksheet Open Excel, select File ( SaveAs, and call the new file Prog2a on your floppy disc. Select View ( Toolbars (Visual Basic. This puts the Visual Basic Icons in the Toolbar, namely:  Click on the Control Toolbox, this gives a further menu which may be displayed with the other toolbars or may be free-floating on the workbook. Click on the Command Button Icon and move the mouse cursor (which should look like a fine cross) to the middle of the Cell A2. Next hold down the left mouse button and drag diagonally down to the middle of the Cell C5 and let go. This will create for you a command button within the Excel worksheet. It should be called CommandButton1 Next, in Cell B8 type a and in B9 type 3. Highlight Cells B8 and B9 and select Insert ( Name ( Create, etc, to give B9 the Name a. Notice that entering values into these Cells have greyed out the VBA and Control Toolbox Toolbars they will return as soon as no Cell entries are being made and you will still be in design mode. Now, whilst still in Design Mode, double click on CommandButton1. This takes you to the VBA Editor screen, and you should see something along the lines of the Project and Properties Boxes on one side of your screen as shown on the following page. Our concern is with the Properties that we want the new button to have. See the picture of the Properties Box below for details, but on the top line - the (Name) line - change CommandButton1 to cmdTest. Similarly, on the Accelerator line type in T and on the Caption line type in Test. To enter this last alteration, press Return always do this.   Note that if ever you go into the VBA editor and cannot see on the screen either of the Project or Properties windows shown above, then whilst in the VBA Editor screen select View from the toolbar and the click on both the Project Explorer and the Properties Window options. In the Editor window of the screen you may have the following subroutine definition displayed. Click on the list arrow in the Object Box and select cmdTest from the drop down list. This will automatically open up the cmdTest Subroutine that is associated with a Click of the Button on the Excel worksheet. Therefore, any code that is typed into this Subroutine will be executed each time we click on the Button now called Test, which has been embedded into the worksheet. Type the following code into the Subroutine The Dim Trans1 As Range tells VBA that we are defining Trans1 to be a Range variable type, that is it can accept values from single or multiple worksheet Cells. Dim i As Integer tells VBA that we are defining i to be an Integer variable, which in this instance, is for use later on in the program. The four lines Set Trans1 = Range("B9") Set Trans2 = [B9] Set Trans3 = Range("a") Set Trans4 = [a] are four possible ways in which the program can read the value in the Cell B9 (which also has the name a associated with it) from the Excel worksheet which can then be used and manipulated within the program. The Range function can accept many types of argument, not just single cell ones. For example, other such acceptable arguments could be B9,B12 or A3:E19. In particular see the Subroutine cmdClear on the next page. The lines Cells(13 - i, 4 + i).Value = Trans1 ^ 3 / 4, and Cells(13 + i, "B").Value = Trans1, show two ways in which values from the program (possibly altered) may be passed back to the worksheet. Notice that the first argument in the Cells function is the Row coordinate and the second is the Column coordinate, which may be either a number or letter. Return to the Excel sheet and exit Design mode, we will now see how to clear the worksheet of previous results. Click on the Control Toolbox and click on the Command Button Icon and move the mouse cursor to the middle of the Cell C2. Next hold down the left mouse button and drag diagonally down to the middle of the Cell E5 and let go. This will create for you a second command button within the Excel worksheet. It should be called CommandButton2, double click on this button to open the VBA Editor. Once again, from the Properties Box, on the (Name) line - change CommandButton2 to cmdClear. Similarly, on the Accelerator line type in C and on the Caption line type in Clear. Click on the list arrow in the Object Box and select cmdClear from the drop down list. This will automatically open up the cmdClear Subroutine. In the cmdClear Subroutine type the following code: Private Sub cmdClear_Click() Range("B14:B17,E12,F11,G10,H9").Clear End Sub Return to the Excel sheet, exit Design mode and test your work by altering the value of a in Cell B9 and then save it. Also SaveAs the file Prog2b on your floppy disk. In this next file, Prog2b, we will introduce Random numbers. Initially, resize your Test and Clear buttons by first entering the Design Mode on the Visual Basic Toolbar make each button only one Cell wide and two Cells deep so that the pair of the entirely cover Cells B2 to C3. Create another CommandButton and place it over Cells D2 and D3. It should be called CommandButton3. Click onto Cell B5 and enter the word Upper, click onto Cell B6 and enter the word Lower. Enter 15 into Cell C5 and 7 into C6. Click onto C5 and then click into the Name Box. Type U into the Name Box and press Return. Similarly, click onto C6 and then into the Name Box. Type L into the Name Box and press Return. Next, if you are still in Design Mode, double click on this button to open the VBA Editor, and from the Properties Box, on the (Name) line - change CommandButton3 to cmdRandom. Similarly, on the Accelerator line type in R and on the Caption line type in Random. Click on the list arrow in the Object Box and select cmdRandom from the drop down list. This will automatically open up the cmdRandom Subroutine. In the cmdRandom Subroutine type the following code: Private Sub cmdRand_Click() Dim RandValue As Integer Dim Upper As Range, Lower As Range  Set Upper = [U] Set Lower = [L] Randomize RandValue = Int((Upper - Lower + 1) * Rnd + Lower) Cells(9, B).Value = RandValue End Sub Notice that we must type in the work Randomize before any code as this selects a random seed for the Random Number Generator Function, Rnd. The code RandValue = Int((Upper - Lower + 1) * Rnd + Lower) Returns an integer value in the range given by the values in Cells C5 and C6. Return to the Excel sheet, exit Design mode and test your work by altering the value of a via the Random button. Save your work, and then select File ( SaveAs Prog2c on your floppy disk. In the new file Prog2c, modify the code in the loop, as shown below, from the Subroutine cmdTest what happens? For i = 1 To 4 If i = 1 Then  Cells(12 - i, 4 + i).Value = "a ^ 3 / 4" Cells(13 - i, 4 + i).Value = Trans1 ^ 3 / 4 ElseIf i = 2 Then Cells(12 - i, 4 + i).Value = "a+2" Cells(13 - i, 4 + i).Value = 2 + Trans2 ElseIf i = 3 Then Cells(12 - i, 4 + i).Value = "3*a" Cells(13 - i, 4 + i).Value = 3 * Trans3 Else Cells(12 - i, 4 + i).Value = "a-3" Cells(13 - i, 4 + i).Value = Trans4 - 3 End If Test the file and save your work. Also select File ( SaveAs Prog2d on your floppy disk. For the penultimate exercise in file Prog2d, create two more CommandButtons and place them on top of Cells J2 to K3. In Cell J5 type in 6 and press Return, now click back into the Cell J5 and then click into the Name Box. Give this Cell the name Seed. Highlight the empty Cells J6 to L8 and click into the Name Box again; give this block of Cells the name Block. Double click on the button over the Cells J2 to J3 double click on this button to open the VBA Editor, and from the Properties Box, on the (Name) line - change to cmdFill. Similarly, on the Accelerator line type in F and on the Caption line type in Fill Cells. Type in the following code Private Sub cmdFill_Click() Dim i As Integer, j As Integer, count As Integer Dim StartValue As Range count = 0 Set StartValue = Range("Seed") For i = 10 To 12 For j = 6 To 8 Cells(j, i).Value = StartValue StartValue = StartValue + 1 count = count - 1 Next j Next i Cells(5, "J").Value = StartValue - Abs(count) End Sub Return to the Excel worksheet now and in Design Mode double click on the button over the Cells K2 to K3 to open the VBA Editor, and from the Properties Box, on the (Name) line - change to cmdClearBlock. Similarly, on the Accelerator line type in C and on the Caption line type in Clear. Type in the following code Private Sub cmdClearBlock_Click() Range("Block").Clear End Sub Test the worksheet and save your work. What happens if the line Cells(5, "J").Value = StartValue - Abs(count) is missing from the code in the Subroutine cmdFill ? Test the file and save your work. Also select File ( SaveAs Prog2e on your floppy disk. For the final exercise, using file Prog2e, create two more CommandButtons and place them ontop of Cells I14 to I15 and I18 to I19. Next highlight the two Cells I16 to I17, and with the mouse pointer somewhere in this selected range click on the right mouse button. Next, choose Format Cells ( Alignment Tab from the drop down menu, and check the Merge cells box. Also from the Alignment Tab change both Vertical and Horizontal text boxes to Center. From the Font Tab change the Size to 20 points. Click OK. Double click on the button over the Cells I14 to I15 double click on this button to open the VBA Editor, and from the Properties Box, on the (Name) line - change to cmdUp. Similarly, on the Accelerator line type in U and on the Caption line type in Up. Type in the following code. Private Sub cmdUp_Click() Range("I16").Activate ActiveCell.Value = ActiveCell.Value + 1 End Sub Similarly, double click on the button over the Cells I16 to I17 double click on this button to open the VBA Editor, and from the Properties Box, on the (Name) line - change to cmdDown. Similarly, on the Accelerator line type in D and on the Caption line type in Down. Type in the following code Private Sub cmdDown_Click() Range("I16").Activate ActiveCell.Value = ActiveCell.Value - 1 End Sub Return to the Excel worksheet and, once off Design Mode, click on either button (or hold down the Alt button and press either U or D) to see what happens. How would you modify this code to change the incremental step to any other amount that can be altered from within the Excel worksheet? Your worksheet should resemble the picture shown below:  PAGE  PAGE 10 Opens the VBA Editor. (Same as Alt+F11) Opens the VBA Control Toolbox, where Control Buttons are stored. Puts the Excel Sheet into Design Mode this allows editing of buttons in worksheet Command Button Click on this list arrow in the Object Box and select cmdTest Change to cmdTest Type in T Type in Test Add these extra lines into cmdTest Notice the American spelling 01IJ)*01 GJ^dlr+178ij!!(())H/I/K/L/R/S/T/V/W/]/^/`/a/b/00JmH0J j0JUmH56jCJUmH jCJ 5>*CJ 5>*CJ(F01{| g h  01{| g h   B C D E F G 4M_w<wx? mnopqrst0y5   B C D E F G 4M_w<Gw  9r  <Gwb(Eowx$%d 1  27L`esx}~@S~{23CDx%M.T^Y_`.wb(Eowx$%d 1  27L`esxx}~@Si0 h !5!m! xSi0 h !5!m!|!!!"O#$$$$$$$$%%&%A%m%%%%%% &&&]'^'''''''(~{x]^g%*6Ii2c$()  G z !]  /m!|!!!"O#$$$$$$$$%%&%A%m%%%%%% &&&]'x]'^'''''''((J(K(((.)***+++ ,9,A,B,y-z--- ((J(K(((.)***+++ ,9,A,B,y-z------..//G/H/J/K/^/`/e/{//00yz$Pj '(QR\YZ&----..//G/H/J/K/T/U/V/b/c/d/e/{/////%0&05060$&`#$ 60u0v00000000000000$301hP. A!"#6$% nmVI$lPNG  IHDR(gsRGBQIDATx^ u/LY{24S봰<3>6ބqu]޺NeYFzOoj7=p r1zV*9~8<;Mg+0a=>ؒ3~ҬJ+5xFQõ\3m51 J:<mW;ϦgIk2PViX҆\kǚ+CẊ`dK>f Vava `FNFZzG#}JZ3%3?k⌶Jo: T8j}N[+S`T=E"1w3AQRK?[=@śQ9,볫7)0Ǻ3@`4r0E47jOO6YG79ߗir}a\]11 MS(PPf{iHu hHE[Y]k-*^U&yEZsv(c$"0^:v;<[h!TM$5M`͎2ڄjIckZ$U̚Ad'dٰ T>FZخ7Hya.Lnm`-5fe^nb\ԼF9kj\?x-SJR 8a'w=ܹZkyε:9]yZ3).*~xRt%gi %J -[T |S.1+XF`o"VXxhx-I:5g6EBxH MIS]JqQ\`}7D7^gf,dH'G"yīTҜ+6̵xI&H/&(_pȆ6U*סgO}J^K&%\q ꗆI)DdO^>|Uڣ0{kWP5c+8hFd-*}* }6e@GɋrOXQ09b_&gX'٪OɃ~_jփWۧf qGdD&IENDB`n( @ETDPNG  IHDRyv*sRGBIDATx^] v*9 Œ,9SݕE$b?E-K%,r[c!X, _G?~yyS./g5RWAbB`!0fm.Dz^\5?~O ;,MOj|:\K O]F!嬃b q 3}F7ǞOIM7iqM>}3 !RvJ܄d<]ms*M# ktB-kSBgk"Tqғl4U \I5t\.C].FڅZOL}M0q^.=1PXo5䫠)b#p~r*6^4BKT."Y0Og_ mg$&16D.)1vw$àLAW89f9G9=RgJ#~^ƔgE7,H{LP tAҗ̔9\Ѐcd۷bxٮBg۞)%)+Bα`DjgzkńWwЍ<@p W[gnS# e6Ԥ-^+KĦFSMW!;s"5DZݒ4+v ᴞ a7u )VoS{f36І8ᖒmn`čWdf6-ݤ"Y:t#>O942 K(@STfЦ ~dֵ@[JݭY52"JDb]8SjjI!Q!L6Hd9ـ4ݤ:<BidfaAZ~{$?|m}B¶j aMqfT&sbC0ڌT:Qdr\žt vcmϘmluD@zT"c)=|gqZ?-ajcd*f9U`m! p NUȿXIHwSgR-^*.7[zl0V$K&ݽN!,;I]Wr}<#ȶBU;n|{h 3n|2hg-7IhBX¼Esb-.ePCF/Rlg@,tBX2˔DqɱޤS2 J$_iotSHCs}mgt#c_OD,{í(- kUM|(tSIDCO , 4#ƌ];ea2 6.3/H7)YEmk"NzؐfM`dB{)M/[ `k4owF`D3^g\[c>7 st B[zΒV4xQ+`] 665J_Dq0:nq$Hwk+OD=WK\փd܅YcR+Dq &BuL q#gsֶYKaH'p\;v}Rf$d)G&X,/x=3l\,+נSx>' #-eBΆ`!}WIENDB`nQe0%%KQoPNG  IHDR<sRGBIDATx^]u:w yI%v')%N)Į$JFDΜ9  A]=#񳘽Ǎ5 ӓ|Q v2INtޙG"T{}}}yvD!"-xYOpA8%! vOrE% JLP-07E 0'ooo3'|EZI>?%tHZyFK~B6W^J8qI4o'S rHh5133UI⪉$/ 4mn_9$@3yliEN2Z ך<E@ZŦ+zzI+ŽkUWm̺kFZ 0(o]eFG*V0QrOBXjQŨ8s,·Z M)! g U"0OO(zH  @1:{%@`CA  @ލ %~w Kș +ZŽ?h~o&Y\+NE@` k.P5iec'.r'҂ߜ=G%o})yjƚiPm_yl ԅ@%1q.m4! yiK7yY(GZXU@? AO>QfS?鞢SmAL@y}ێN9oI(Tb3HUe@x |gr%E?9̶TUA@ԭ<6/v_"+H=~Dv@cɅܿ }Z?V~CK>O/Hr 1R@`~RgW85g^{dk%əvS+N+: JUJ; 3 Ɔ}yhP@ -""e|?(O;}x_(0D̀|"99p \\/Q  ׁh<(=ɢO' F"oZEZ:v}wm!w51G!@;q{vc,m$DB*X*\EH-D6P%zV,GGZjj4qc%?*y(.Q4iً#p/ܖFҕ_lfaHV+T5dTUj;FJ)!^-f|0jɪm32CI>{[i%Xq+헔\4ž,2 =dϨ6[\4T PQ?k7xbQvJnv;YilꖕKZxu?t@@nf-OaYG}y*{<3Y-n6V5:5! oasQ 8[UpY$6nEOwJflIҚ% J!q~{I ladOO5XQ[_/ޛj241y]BRs5$i*j*o ~>؏.(ey {ME~=u~= e<a-)6TLT&0;mTffխͪWnHE W+h~JޚW!~ h|[ $}do3 <]-r+PA5nM nho*ڲ0c VZ<.۟-pq<-ji%ʿTG |U͏2+6O;f#9RR5oBgFH6CTw!-Q*SxX p$240P5t28]o/2$scO6KȟcCX~`|[]!ҀmGdٖ1) ދ^ɭ xVF&G3~ZXubF_LCF^wi䅫Tq@ )x=l?m8U QIGjsٓqfCHx:km D3#, O$l#T6/HU\OkU(C쒢2ﴕO3]2$Hքhiɜ;=]vNWioԹV*rMdEЏt3IrB짭-bP =i"?TѴQǢpC %D)̠suZ@Ӯ3z*],;bգmv.ԆwIF1k)-.>@PeexGnª  d*U߲RS 𐍸<#@6g %<=SDZ {БA Ѓ cW8F ̹)S'vr S>UOc}`2Ao(sjδʹKΨ~C6EgJctp&ߓ6!zm9'Қnnoc+hγr=*W3>Qbzs07P3p& `ύ *;.7:!9 #mCR뙗癜j(2*k~ڐkNpOeavR2|hRCi&ה,H>i:o2JWdavG"&7L6R$XZFIO^(* O[kX=런9s(p?W\_ޠ%mO{LܧZ @`]`װE<>>ZL+9Q9 t}Z@LTC4)O8y)=L'H;U2FLf: 3̔9LV FX22,#1g5Eo'O}FZ%JBN]7_oH5`[[֒H)кKdCq Be'^R<Fp"4<_mRh(8tH2'K;=I(:刪[i=a7N56]lYյi>AxƜ8p!CN\O+L,ҝO&  mFL+]8S8Km~Ei3+25̆F3L)_2R?<҇eZ tZlČ)u FwB>#m-Xa_{Dbqߐȭ*j%6S\ҳa4Α'^R<Fjxw'` ,Ϩb}8b38OXXŠ#}Z/xUUgDv=2i0<==9U:rdf"ma j 7 pTK[gr߭p!T1~q6uㅇq̉7^N"ʏ?-ث*\X-kyZO+ZT딉=L\RO1KH[^~qO+NFF!%94Ҿq_h s٦~ZfSH>C֙!)iNJi?Cn <8J0r #2E72-"N|-."mK=ֱˀiHڐEZgM+=¯Tv=jp3b,dmi cNch(PQ :H{>ĩe\% WwG}Tܧ-z>[eUf^#X;ˌEd%zkh60р@c-ͯY2 :UiO\{|$o[ l:.Io=c?퉽#Gs/JV1VF/V\3hCaT@P32l _6Z8t:ex/G`EeTQ1f-ȬzOiZ+nw!DKB?1}|@3Xd߾}_^kՄy.|D \c.?,tB zK~$d# @ QC ƣɂ?| :P5],1"׫?.VLʥ1)C=QCۜXrUlwzT[`r\ez96G ΊuMFeL˳Vf/rKـ']rIj+mS`6K/Ek$+IoBXg8K{ڶ^mQjAx3{VwמBAx_jy鹧ʼzK%C˷&bez\4:ɽn2nzږNnlM|Mƭ+h)ԕ 'L9$_.e[6еԐkX/rO bTcQG/ 0SڜW ܑB _T>  ЛE=?֣2 #|H~z;'BKOP Ѕ F( hc@ ?D>}~AX>嗿۷ot:{~A@1oQf\_^qJ{dž \AJCL L˙=98^_!HDΞzyLQ?:SͰ4_ eg2_AKv= ;/#p^.u%k\=&:iVd34XNV2wEN3vX;rnkͤlL2V)%jZah?s ԃV_dK&*6dTH^<ĖPsem;$s/I=[DWd/l-^$cǫ&h\2#|A;o53T~xy\g@+,ǍH_ͲخZx7-h /%~Ib̴=rbHPA;Ii7n Iɤso, U={2XZB#+9ܴ$$iydO$X`s$k0S׭BW2{-]K26zhܵ@Yଲ1F۸"pcs1F-h mg =  0OL ]P=-B36#i70 ?2o)_u0o29s$jxQ?1-]їq:bA6X5cyCQªA|C2偹.bO:$u)y0q-Uݔ}=M$˴OZv*w'I}UCJ~ _d:w\JS3o3}yk 4fZ f W`gA'Ƀ 4'Czd<}'^e~j[Xr>]W+=FAȿ@6hy.I%s]g2Un-@޵'tTZ?RH(e'#=a9\Jmj1;A@qys1!iJ?ܽj%eH_˼f^w\}`)٠UuZ"*nk)PɾC_ l ;j}A# cTd.+HGdP 宨wV&|Hau𫕽E-Achc7|fh2~'A_ `ۘ7  @ @=\7?y !Aq/&@/O "O>7e mM >n]ޗqc\g"&M<ޘ->9m1<@%h}4AjG#^~s@)hBWr ?秡y&3dxz[^>BOǁAgQ'r(1(@u*Ai$s#e`ΙWՕ-E *_?7̟W+Rj,IUk5F d7[ ~#Bu, W2c$~d͠J; JJ*Sٲy(m56[cmv A/Jhھh $(e9TQym{r$KPO{ni& Ǡ AOiXr գ<6BeSc3P`6L|G WSU VVtۮ L ; 8udԖ\ʕwRĖێ 2XV=qfZ T-(Ձ U>?x fq44N`B=MJw*D=PP$!issձ]*NQO(Z@-,&zSӮ0eaôzZ0]D=-g 9*b>^Vz) ƖzZ T\gzn1L96^M=eM pI _^Af8)Ӷ i[M'mkGKKkǫr p@Ϡm;P(cWv!]Q^x|4i:؜ m=9jUz+?@ly_f40%pu JA`["x $>dB`X%C ˪g'] yyQ[yq.I:#6u -2E^`y]ɼLtGPELvkӦB h 8nؾ}-w{B1WrQۿMu9Qf}uoywhP!P5v?&e >WȾuk(45;aQ$5 ӪS9~,5Z5(r{R!MB #zm6H@@Ϡ)q߇vsS}}6ciIf>Yŧm;B-o g XR򎐥6c^CމQ(e[tV_y2E,ȇ.k4Lz'~ =SiAޛ GXl(O"fxZTG9F ۵g|ҰN Tily\Y6OV媼02Hِ?r$VQo,y5wsw+eA=CÆ#~Ji~:{JQO-nO)V9h\3v$ O4VWw:Gcx5sڏ<ydB^A>*TQGMb ЗpOM~ms<\{ܜn1 eFt=c2ê>-˩]rN;՝Hwݟm7`GGA;-4JA Ӷ`D=m 5D@B L%=Tqf8Y _k(=~$}G0-BU0wFC[?XU*ll$儲b_ү0uMDzZO#%xDZXz*Fb75Z +&r=f\}meI @z DYfyXp@x@*W5S+H5Tc|{~dZ`XvQ  z,PO-ЦӶ6s۵%D`OYXEE&Ds=u(w'~E[mCj!%l0rlH~@؂ym妶/7ulԸ+ɈUeI~ ]܉-;\GjkJ|ۙ<ڵٰ ܭLV&Wrd\o1~|ĮP.3؀.<.m;B=v$e^QTyki(X{M-ˆr-wY|ɐ3RַΉ5AV|{i^E5,| @Ж^wEɴV}>֮naݸ+cox뢪[=-V[LkJC4wSXrOn-Ǯ:x,LA2 @ DA¥QW"m @`ӶE=m 5D@B L%=TF->Z@V*?8.gL !f3N/y믞 x (ᠵن4p wI2AT=0{MzZCjKCkB)XeOMWOm7:/18\O2K0t߱7,Ao'C /O:PU᠕ԪfY _ʗX:OrF^Ϲ2K7&{_0δ#eҨp`Ylpy;l5q(zZ=-߉o.†6нl5sɭMtrMb! 3RelGmRjnVpJ b_۰ h&VC#1NsIg@N?OJփVY)GH^QHh.&C 8[g:!۝N^c}06YJjij[ 2X&Oi\[>5F]IfLԜ1J>lZ6IaNm8n!  hPs>Ӟ?p_m;ӶPCNPO $ԀTNŏA NAc@w1 !J=<^s|Db:ẂTJnUAcNDӎZOvu6!dlZVWl7+Z2זhS%sjG.%vPYaopL.δ y)&7 7x/kMS.n(%"s)/ I{&'ˆzl0+t7@LfelB ,X=@=#x KJʡt"zN j9:tBJܻ:T zOpvlD.LqW? ׎̽=-'UY_R{3zQGIxg j^'̱M:,F$dOxC ܑ@ Ӫ-ӈMLپ;'ĺ-eTWV~w~qo}ڼRRpzvBcMÙ6WA R){|_sflURU9-'}FR(aT9] gډk6#z 澊i[-Цv 5 0Ss(G h!%Z~ŐMڨ{=]\8ol+rQɰefc}痧ڈUMʞQdO^+ v1h e2꭪*S6>M[O믭EO8B2 د1ӾSrw@ƯEv~1ԽP[VuG+S@v3!p+HD>JVOqPs[EK \OK*l"e}dU-lv0[vLAч[@=_B-zjhӉi;J{ک9 WxɆ}4F;WFA 3 EThZUS*mC,3~HtwzW4ix.C zV& xH]}$ S'Y6Γ3η1ȶ,$,<.dZiز=I}"3hdt#LؖalGieEs뎍6$w1Ӗ AmD-//68%sn*kQ4 1'zZzD?Iv\ʐ˽rٗӷbrd䕾A۫4fW1  v%RcIwx1Ni1@iO @m?@>@?~, !}3:~XB@7_|@F#C7f/EHFeIENDB`nl0kWCjKPNG  IHDRf^sRGBIDATx^mq֞ƶßזuFH>.1]-Y#&3'זeKrD^cG9YY@d >d>@H_ۡgWjH :mQ?ۈjpkmЯ]œ^tH^u߰^Q%ɢodE, K9s=Q>gVnK;9~]/ņߜ?Wr[˿cCWTuݿw{NXNo#\ufq;b{{dvKqa[L|LkҜ Ql`tHp?t~ CfхlZ_WB2АKN3L?~ؽg #P!2ӏii/_?j4cQP" 0x|Oe=O~r+c+ׇI?/InaOA.|[ķ\*rG‡ߝQq <}dhHα]r@X@l"( Ǐ+4 @`ia 9 ;  B( ; ʱ8@+$rS0   Bc۷{9G+y4:!4 #vIʄvfo1rw^ g6GA$C.3:wW@@d*<;Ha'KD 댦JfZX؄רyɶzT3Ma3@⻅pBq0NաY{L*l#D p%3?] 0rkt4=|UQcb m  W;/+v[<͖dOJl @`+"+_L٣zao nUV[7|`U=ZW,RXmt(1?cKɺ6\ 4+8[h$ )ңy:?]?%(ќc)ɟ $gʱ԰]@@ s0 @`[WȇFi@>c}@95@'p߾x@NSh @g#εUr ?}4,jV3Zzm>8nF{r~焩qg zLgvwo1k?7|3k%|pモV*}6+PT(|d8IpXy[7lk޼y#SLn,?[%h0|Άitmu b'Mb0~dIzZ٪ͅ5lլCBLj_7GґpdRIIPmQEj٠ku,)W_+^ɵpk˵+yoE4zj?sUPJPC`ype@!x`&-"$8$ʫO?9n.\b.K z}^do%}J@`A++]/qYC5ݍ/"qV>,T6B_޿Xқ5Y:cx8ܟτyhN,w{bF*7r }JܔЩsN˚\"(Bg=DmgιNu`{sauB`W q>s؏9t&⑎]sxUAY'5lx⑍V& VR g]Qe溲Knq9LܦM_6Wȳ cʫ$EW9 4Skж4yf9<QR \C$zٰ"5TxQ=n$(Il%\ަQE/h%)l / +5rbW >+MX$s}M%ee4!COpW֦g[(1aT rX~]"%Ǎ%WJyO?4XMlom=wFiG eCG|my}/dTY+[Ǯ@ي}o}Z0[s.$WшUygOoκ㣫ͶKS:^TΡjв-{1.[sᮜzD pbx#@J,?[wmp @!ofJzJ0[5kw/Fn v}Yr@3`|&RZ#cVSuj p y1}7rdq @̮ >|GsO1_9 |j\';g=9F 09H@uJjtAF2ӰZ@yāUI9L0Cr7*k! -B=[VklUVK@|(VrS["A C1ClrLcN%尵 w%>G \d pmcQ@gx?{nDkp.i:gOɺ?[2'L\|@o_x&}ZC9ʭVqF3 /s*(4bh@:Otave.0ۄp:wy0wW=\DkV\>'T!ʄ?i9 oN@9VD"1nV!q˸+@I~;*kF)AN,E@GdgD;(+g)Jow^(s Xaы_U+((6,HU1 Y}N:nXP9)(>.BSW" %[UX>SGw`!slv3KJ̮#48fk_)c! @9ރ@66qڃ u({!1r-eƼڙ][]l pc86kݻw@@ɯ'-mxͤ4 X#=ٶ>/Z V 0ss p (qCr( lC9ZOSg)yw5BX Y@%rl0BP, @96u@`!(Bif ;C³4UZr1:F>!jVZ8z3gԫD VWUaQ(ǥON<ꁷlm%ZJʍgDGyozcݫYʔ[EIvIpN\_^xya(g(G=>)hNV*-*!>ph8O J78{tID\<(y5j{3ȋogcMsk\#C {̀x"JDS`+PLOivu%.ܜu\$2酗j JSҊk Ja0MDX '{^IccMY!D)-Wppb_֮gaIs(9revK{B}ިYQb. .=1HWhZUaQOppw=Qoي;A.3X>e[ꛒ V\y;C\ pc{0Z7_jscx\W/fg66_*f޿ZdAHN=,CQ;Ls]2QJAxi%kl\!J>f@&ĵ5M- "0rnJa4C/oAi\<8 [(n!$ravKr-q u5CeX~@J`vp`AhJ@`UyH8C:yctB(@94 ̢1> l@䗖otlm>G 9GsHU@(!0rH%?!e}  E9s?<64@Qs)!@U(G=_"rEz!Jp^]f[R2]l 0Btz/䯾.)/b`geARPuvn1K\qrAP (0P !T0kM/Tch:F@9M 'lJU$gf i >O# >- Ȓ%KyTވ#@`PKim~ju [ IwxVқ=dB.a!C`?>> KK%?qS3h9G@9걦%@ml̉[x@` vi @j@=(G=ִ@ (G@9걦%@m@9G PQ5-AhF? zvMx%@$k;uٰDL P*i @H V$~@EEv Bh'@-(G-Ҵ@(G+=j@9j@@9ZI PQ4@hJO ZPZi@+vdu}\n,~@}:OYkQ/ ]+GsCj@9jP @-@9ZM| PQ2m@hRo  Pi@KPz_  rԠLZ"rԛ@eڀ @55( -&@AA6 D`8 8  8RLGzxxgH&G}m Bh9i  vE`z͛7wg!4@`z$$ULq@WlCK G`z ho A 6镃wWrF Lm 0rs0 M`z h{ 镃Q@m+9G# L*@m^991x@`z `TAhA;@+9 @WrG A^99U&0r|WC|@{WatW}=x@y(P9<\ $IX8@B`@0(0^ yml: lGNg0 ̫ԕ dc# !̮&F{ }^Ox @^8@(c@94 ̢Qó!@`iZ>8A+Gn.KnFiQ m8H^bc.@9vKsQ824V͊!&0 hk8OXa! u@9X@`ʱrd"IENDB`nQQYhć$܉&^PNG  IHDRsRGBPIDATx^%rE !;<fSo2 ! hj}ހGzQuc}3sSGddfdر<?ȬxA O?t؈ pjo߾}xxxOOO!@x|| :QcQ @">^y7-߹Lhs2s \!w2T{w_>nFwz1 . @'>8[qTӣ$3XOz̭Dg__zͲ_H+[O÷ޓ̕*Ǫ]=:Ncg+X<8:t9ˋGzp=W,{V.~H差A/:0kv|778?ӏz[L:+:Ə_??_0|/O>>KOį_̿Z}Ooښ~>P<POVOZtnENwgZN&2|$VԹ}m%=^>za_{?bp]͒ BHo)W/ -"=z/f*_m˿B_Ԛ ">tK5oAE~t|'/lZ酮lo_ 2Ӽ @`ebN_}JR-Ɖ~(ߺHO=]𖏮_|xԷޗs w^_oo rx{S_[͟7?_9/O8;}_no36 PL@)ҡyF"RIϊ7ZOϽ.[jr]j}_|߾j1FTGv/_ __~:S_JuUW>oȯ~_ݭ&": ~'n4/@Xг`'R=+y~{ݵcRAE_zrz:%tYi@ֶzz^@#lZ,D1|PROGno&#zӯkyA:t;:W=ۨNֹ++Գqr lws Gtt~:{K1}}:\<,wSbq;Emֽ FMK~=Eͺ<8ھCtN)c:: otU[""-GIO_>DZLud3r:G;o{{߄'r?5ovoџ*-=s⴯uI(,Ygf>R{?2]fx!#q)I?1Jٓ82˨.Ɛ1w}C߆e٫Nr7TzyNl/PzCʲ VBuY๖]zt>.es8nsNQtr4:N;l7?z: dtVK!@X\zq 14s .uo+A;o޼yzz_r΀O`k#u<1ݬN=`n [R-?] [#O=_x3_H9?OX@=/bP|gM+lE cϾ~ >iW0 B`w[./Kaƍ._8Cm΄B =\ߝli'( +ߵT, 6r֣rqt 5`m] j,Te8*/ķں(BP`}K܃!GMpz9.7ۊ|y/x@gV]ol]6שsP;AaVL .wkQE^<:BK+}mze ha ^/x;H%5KuzmTTv!յ wH˩"{a܎puHN/Mfw wz. !͎e'DZ ~R\_H{BX P@ݯmN~1H h5;[scζ@{ J4E  ]r~@K:%A!h@NԔR]". @`:]g^ u8>$pC[:GetV >!Z]߆/D~O` !=Hk9x 7 |dh: @55q;=uZu.4B`{xLG'Kݝuo纽PekP#U!/XYkYelr*zTq츂C`OV;=xVUy8 =u #-u|sh 8=%rWtr+ڏx"99! NbQ." f%fәz[E=zP @ؚK6&~z  rg?V'yt9WE ӛC@}. :}t3X@8t` #\@8tTf p0F p*`!@`%p!@TSBKBӧJ7 @0… SG/]ګ`9mt8# MI)QyYQ8̊c@@-F/"JmZ8kPEV<CjX c~8lѹ]c @(&N-8O/D;u[4{ @ vŻp@:-={.xvu@G!N(voL4b{::--XGI!qB@.wwwOOOagkqsBz"";=.T{c G^-!@K _eҠh@pݻNs~ @OW @@8?lj  -tI@h>:mu#,UۛLG9ZP//q(G}MZKaA#x:lt@"}t:z_}?-嬇k-9+u|ῲENcz]ĕ΋fe# chTF6cK09&Mҩq@A+5I W;n!3SU' =n|F^u#_(vTGC@[SSK1qXĞ]s;r^W!K/:Κٵ'fEoQ@MGzD'K]e>|Zer:GSW}^M&e4ʮGMCҰ5_=%?O$ضIS. ^-kő pd#v@}ֽs,%UK؉:wk O? .AC$N @@vsCd t9@h:nn  N3 @@ Ai @]t!2@: Kn77D@@ v @4s .t @f@%N" @@vsCd >uryO2Z0mDPShK\@! A%뵗w,o+Yi=7 6Tuէևܶj6$6چV  p0;މoHQ97Ct"";Wx'f.ArDMU[FǑwQq`Sb! %XUkx(p[+Nlέ}jp.Jyo5$G4?/œ:Ef cȫԗʶ{Ə [$> 4I5v{.8Gd''7Ɯk/f:#ЧN ɺn$15cI|az[dW]3غz0Ql*չJ%h l/p %.wwwOOOCY`h8Y6onq@`.۩Z9 7tڍ C@͑! @Mv 9tzst@p@ݨ0 lNO7D꿙HsE~&wc7ӞOoz >uOioڵr7*kLY|B8>uڦOݽO+`!Q9Q ;3@c\ EuOwfh@W-YO4ϟ"@`tOϟ"O% ?/r=)} @)?]Jv /#cMOU*q@F2%N˟!@Si @]t!2@: Kn77D@Sy<9 Sy<O" ЧNG*eBhfS+>ZM<{wO{gxiFN$ϟ/l=gq NRuO-/ϟ>7!@xO˸ Ξ?;cxt.1!4EOӲ??>y^+*  A<W7CpnTAOCu?_<|9g""|4 J^/!@Ӌ *tzU8 ,"N/Gc@鎟?-A<C @mS{}tòxt= !ЧNۑ˳tˡ?-tH6yA T\hU`Џ'l M+/*fX[|#)#{^|-g)Z(άqqJl#;BC@m8Nϟmӓŏm~ @JbVNZz= uOL ?]&!ЧNi7>=xt;4" PFOqU׮W6$7MW5@'Jц󧏖1v&N L@ v @4s .t @f@%N" @@vsCd t9@h:nn  N3 @@ Ai @]t!2@: Kn77D@@ v @4s .t @O\{0*\.~?~,- >uz}=(bu^Nt*` @`=}IuZgkѶPI˟6=nű߉";|ppia(۠EWeK@'!пNGzTKy":ltV1=OUCռQ%y(Of NLjUY.^uVܑٓ ~d0 !No:ҕvl͵`t@ iY=v9DxȳgW W ` ۀ |,W;"2d?5 s<]%oھ]ֱ|^zƷ *'V=-!@C43 .t @f@%N" @@vsCd t9@h:nn  N3 @@ Ai @]t!2@: Kn77D@@ v @4s .t @f@%N" @@孼{YuzU?*?kS` &$$Ehmvȏwyx >u:FNvi&_e$ ߛհ8Cy5' +>ufKZhmYn--:a/-Qgub,XiuX8wucl吨8~AΗ - >uZh^m-B%x1w[YI^u= cbS=ˠR2R%x\`i@`3}h{P'Yb*SM<<[FOi" h}{" ?u7@u tchbǶ.>NO APձ[՝ii1ܹהe#N ֥sc˵/u[@{S_c9EבE筭OgE(XLKX=Sm{zz2TƟKxѺtkA.#UN ׅM{^GKV].,E]j;K&>Z>Gm~OAB>;1ޔݳ1%ЧN˔B| :mG Zo-i P@.F@F@  @:]& @@tM @V{}tz3%?$9H# ! 6 ӽ>ZY^7LDGw_7Mۣ A}jOϟcߨ^UA?Wt\&ט %ЧN.վѷ}FϟvtPNeP G[CvOEZ+܎)!@:g865k ` LOuo]_[ 7>uO=~լX} 銀J. +@rtDZ%;ZkB:YB tE* :#NwP@]@J' ӝ%@@Wi?]0O'3]୬+zYdB+@U<lr=g @`9>urUi5dxpT2Mq~^˿0x 1>uODy&]yYs-Ez#Bk/%1?~ =>uU}t$&:,(-L=`$Dnq?QOnzd7!%ЭNa:_VOK+QTfWyHx6 ЧNw ֣(8ssx P@:t\˾"Ncq2m`Ch@`3}tϟ~=xZca]~XbZB}V׀O@SWEs{!  A4cn`%Q_m0 P@.F@F@  @:]& @@tM @V{}̋%7 Yl巜@$ЧNisӌ S-?-_˞5]:s/ !S~?M:u= K@ ӯKoBr="^/f_.=A%ЭNϟn9[TO ӽ>zi1-d Se[1HAlץuc),Jfwy<- 1}tϟ~nI{#@}SsGiAt@Wt---ˣ% s@ϝF@m@A ? m @sC@Ct pn!@mt!:@87tg 6t :}3z@h:v~M>w= Mn;?D@&N;&N s@ϝF@m@A ? m @sC@m^) e%?oز$Я%f 0S޳ kq醹J#]>zZ n!JOlIYiږL,|:N5 JXD wbtl1 %u:] [t6:*߼fW1o8 ӹ+޹~-ey@  Dz07k&jgJ߿_CuCMO֋¢9i}ۋ^{}ɨ]^c}:Pg-1 U e#Svs| zpSJ{V%ЧN  ӛ#@@6t: @@7CMG lt62@6#No @ld4 lF 5A h@،:j: d@ tz3t@&Ng# @`3f MFF@fP @ : ӛ#@@6t: @@7CMG lt62@6#No @ld4 lF.D}ȋ~~\efNѠ信GwZA@1t&CcEUby]WYMPhHqR!M @`:]szD/QU8zmI E 9 /tKc24SG'Z6Nv VSZyGuA=]qx'=) . GJk\MvVEg ' &NgR^z&ˊXbiGv]IKcYc @7ux~~{zz y|||xx?.. CxyyQX$8eC$ !@&aC!ӇHABI 'M<Æ C@& @Ox @ N"M : GM/ BBnn؝RwP _ҍ'y0fSkgW gڃrJ3Y;\2EOې7VD0v*w܃ EBA!XҩsjrY8JL]gy. 2vl6%گzn=_]n׿*[Y{'8_ eTEX~M [4ҠޒJv(@'3; z)p: =wbƖ*>$[v+e;Ε*qڜZylgIkdP256^=s})NÕ+=[q31B}w=>e;׺'*ͳG< )8WV8 ~T.0XmO3kpb\Ϲ3?k@&|0QS}V]UK԰V}Ox0e_Tv]žVɚ?k`\ۂ$fӹ J^oΣtaZ~ҠqY[ ƯD.\xج^1|A^|ڥNeGvauۥl}x  .ܱqI/mzI9kDz/VB[k'ظț7dr;5va|mޞy+=[fm] zGs}%jcNDDcNƸ n[TӾVSȳA (`1=E4;.wuM/ej:0B[`fnIp4Θy)Θ!P:] $n @+@WK@@%t% @^*.!@ӕ@ tz]^.ou)-d:{)kcs8&  H+8^/᧼#閂.sEP:Z鯃Kr 4 :X}luάwmoO+4ia='0 @@cԳqVVbs|0xʉ74( 0G/(!@m#Kua$x\=-Te?83tB(fvDŴgYH.`% 'NYf9^=k[:"={2{YW (tؿ&4xuh=ܺS|N!Yש_'XZ7oq ;SCY<{bfBDEEv:lTnB @Or @"N(Y @#N. D>PNG>]0 :}d* :}ݶ=dRv sKdS-e(q6H=(gb;mdEh"ۃ!/[tl >kl鍁7ݝ=_"c]J-˦%isj":ȳD=(x~0\o>L,XJ6 W]>ߋǵdBvKЗPb(UˎVQٲ,-V uL]!8G嬮t]΃Y~Gt((Ψ)5*%jX\- \W a;Ϛ?9p^d˟, NǼQص8YrX\ß;2_:&r/-g̦qyƎ 7.M.;Z.fK9VV] tl\ҋ'rnc|jr^'OP%(&L7!Gߋ U @wOn [fm] zGǪ. [〉8ǜqܞ.GV~4%ӽعDҍ$_u/!O} v dA'N< ql<<[v 8 "N0a@؅: v: .LAv!NN!@. F ]ӻ`rymhagK_{g!&D  H+8^/᧼#閂.sEP:Z鯘Mr 4 :X}luάwm+4ia='0 @@cԳqVVbs|u辉NmwO@Wa <_QC'N3۪G&%`iH#isֽ'0sbmnLn:~3ʢ:*m%(eJ!Ej_8 P@.uY#ԟڱJ@b(K׽pjOudO˼sO+=Mb3f\!&@w绻0LJx˯) N&2tS %@i& @]t!2@: Kn77D@@ v @y瀽۶؝Lp2xtc<u28G$`3~1m:0kc3)G0J@VNr*׿͗U'N~% + 7"뫱pZ#͏E>VD+e-J, @#Ճ >KGN{Sn[͋I|ݱ>`\3@CK 0nٵ/۲lZ¡J6in't3AFhFk)I*ǸE"w\KmE>VV_L"E}-Xك{QiRtdi,|-a5K';k5tz 8#ɪ{g{o%j/Rry*d͟m%MJn|/ FMc`z1Wa-?eX>.k{tӭ\KlWnl[#N-8v[d=Y[Ԫcۉt'UٳgTEX~M [44#kٸ-&>tz}/B\i_}YVFJ6inm.< =/:ԃx"{=Щ;os< Mc`JPbeW"Ӥ qVinmٗUBr"xDnxfՠ8YH<+w@ 58Ů^xlq-0*Ȭv 5VG)ƾ$'"N(YBug-y`"y^X NA>ROj`uᎍKzDnҺAKYS0'{?BSui;9e=Dtzpޮ yEڞ:=Vz\q[>VU)eJ-+qNDDcNƸ n[TӾVSȳA (`1}?k!g,; NwD 5vǫS@ktmxp`ibg3 :t  :}3v@h:zL>s; Nn=C@g&Ndry^t phtI7Y),N{vD81 Ӌ Ji\{Eã1 M.@*"Z嬨kTd;K&Ng`L&q-'NK@#N/9!@`:=GyRvsL @gtIvEkKt|?C٭z{KҸ$[ pd绻0LJxD< !@3///*C NEz)p @+tWd0 t2@:U:  tF, "NwN@@;K(Á ]@@gp @+tWd0 t2@:U:  tF, "NwN@@;K(Á ]@@gp @+tWd0 t2@:U:  tF, "NwN@@;K(Á $MS˱>\E4FO6dyS%u1hzG*W qg# ؞@:P/'`>h9V6Ȭ]jq[4@u.f'ڮ4جtQJeN ZmLP$M >uZ+"{ D)) _N}XEγ͇>j,q-N_6b  uS&r/;~`"Q}6GQV'ڲ5^VI|xwO(Ibc~/D1e[|# qA]d"fz\Տ- Pt:*9faŽD SѪ%%]vS̚iz.6x5gx~~{zz CYtTj hll6)YcH0_x8NVizXg,Ѩ=K(hZ(w[O%Dk-->..?d쳰by.vB<_OCXH K g4o\ o~32) zX  0GzzC#@={z # POǞ!@s9 @`?g@9B|@؏~ 0GzzC#@={z # POǞ!@s9 @`?g@9B|@؏~ 0GzzC#@={z # POǞ!@s].o-ECZR^ @w[FUM^fc @]MkA~ZV䡒WAA@,\5V, W{OgPOOeyE3L8@Yp݌m=$g 5v:mK]SPl!@+5T]Nv:mmOq5YW_5@z|wwϢ`n﹊ !@?YR'DQD @Y"ӰFRI !OwT@& :$@=aR tCzT2@tIeH nR@ @C&!A@7I%  POwT@& :$@=aR tCzT2@tIeH nR@ @C&!A@7I%  POwT@& :$@=aR tCzT2@tIeH ӗO4WrpG @0SYyU糢q! !pzZ'"JmZ8+PEV<Cy VjUuut.3) 8v==<\uoYN~0 (cvśB#pzZw=pGfLbD "a]>՟|Þ6{ݮ~Z655&+>!z|ww|g1Zܜ dI'|G`8 vdtX$O#G&@@oV{x @E,~yyֽ4秋RI#@@7 $%Ҝn3D@Z^\G`` ;S@ QL@@ A v PO" PO3 @n77D@f@%@=nn  @= Kz @z9@ht!2@4s .vsCd i @]///|}:AO/NJN 0@h@8K=:vnM>w= Mn;?D@&N;".N_ӳ0 T yIݠ !`#':  @gHu 'itOK@X:]Bi'( @;@wN po߾ 'g_@׫xxvW.9~㺖"`' @@ diMJ|STAW%N DR2[LAN{Z[[Wѥ&( @R:;tRO{4p:Ԅ  []gY]iYg/i NK,W԰m>z~׭tA< ;A,"7:?=cڷ\@X98-Gr9vNϮcWҚN~Z#0ӑT;i :y:={P44 pui+J=-9?} JNNH׽si=?Rںwk-@uw*ӻOrUs2(힟^W]p?S$WDӃ }N>!@:=!ޞjv>C׽V~a\]  %T)KiM^^w_HB@rUIgEz%===`@@-VCNg @exu @N ,r_B Pm/? "WU!~ @I7boIENDB`n2+'Q{m_H:uPNG  IHDRsRGB2WIDATx^侒+ *wٛ#Ȅl( yoBH ~6 H_J,Ru\}T,S Qjg34L* # 3dA}6jJ  &K yZOV7t{ovsZgo=޾>S_L%ʯ;{:ӹjP穠2{;qzK~o/n:CȟX!RޟZR{1eZ2kbY})g׾K7F{z%k)/OYRϥ4JigٷeRxݥ}=}ћ=UWCLU~<0*O'o/㟭 /^%_YrC6VH]_}gנOSc%;U op sq{t9iT<_N~~^mӟ%yw}iNq2}C7 dsiOytG*ǧ+9M1eig=iצ+~NO\f)9M`:iﺋuhs=%Ϝ./u/ZK߯$6U&U8U?Icʧ7GM[l*R"OM^~5}.' %$$e*gs:$"0j JdRzNDTDTDu*L>O"O%=`iI'wi2"%W&*I"Oz M%Rz1VMCTI&9)k6M|SꪓMKHJ&$}١ѓMMG}7r8$MoId$'4}]c'3ճt.{em_&i|Ѧi6^1,_3ǐiS mqmO} l ߧ3@gIkzR& p-_I _ׂDk! ~^(B~+l%Ц֎!M@뫞Oi:-hw}G &2u@ɳhSz^M{Z?oGW$6]@5 M-V|Zؼm^;)zjmFC[qش:o7[ިPuC]Yչ.Wm'؎j\]ہ^K&1*?KJZJXUo~OEPoVݜu|onQ4uL:/mj)յ,-f/JC:+U^؏+:l')~m¡ۆMT>T]Yen 5qE׳}zĚgJ%nxIW5ӂ4ُzuP/LW^ u1+8۝qea%k)mdVEY] Zomu\x|:oo{6Op+ 6Y|asvDхN07 x+8KM^QhП;=ن׬7%S6O!12˅f~bkK>\^⚯mT),'ºۭCк& X{yNxK(mm㫼Єszl2#w};w]%F 2v3MA{W(4 ²4lSUm>a:Hf}>*OM8ei>GqX@@õ z~be( dK"{IeEUvkX"~8k墸7>W_9j0L@Ik`߀9+v.k&K"LZ s:NaTI"%/d!յ{U@ |Iqs 77 _zAGkӷo?)iq k0Gkܺut7ZU\ǭay﯉[N=TT ]@I/W6 =PڬiMXMV]K,ɜ<4z}G&ow弤'vq)Qۋ~v KTsGvwy-)_z22Y" m vxeoK4}!mң BQ׏H-a6 d/';~hQn)'Xjx󥏇D~TCN,=P\ѷGtI_nre|ܤ O]^!A`v;]]e/.-2XXu<ɵld_}!Ob#(r&E-#fyʪjmk%"-t:ɿzݴv5MTfz38vyRMsT2$“ S 1yxjғfPMN ]1>$I bXҚ(/MwM%M*Y˶tlIpddHϕj>WyʎtYhӾ S 5̎I/}VjQ!kO5jyastNdHT|C+:hit(O:)[jg}lҸޑ/AM~XM¤"yX Ư1ZoJ nͣ!ґc<;+$M1Ҕ|4bd?| MAf3Gz;^>`aXuE|,Oe OJMVyHǦ|Ĵ*֊E`iVD)״V]э3}>P("͗b /Ym940tZMd]9{M ]h+MMjY)r=/&7ܡJ(x4M &n||P"Re[EKWnieC`'ryZE@J")$]J[տJGłe:ޥl!Tjğ\ZZUg\,Rq) UZjZIң{Om*t@dhS ۜզۻԴBm:̊SG5 M7ږ.^OA &.tH;c{/mZja'-& ,SY'1_kUӁYSgnwǏdEYޤ LVe&+a-H?iqŴY*L%5k&xMه;Ju)2q{)3;7m[ͤQƸ-KkdLSڝ=fЦ'Ym H={rliO~ qׂ>g7,`4V(צ݅I}1*=]1tŽ ?Y^i^l:cilvSQnWYTt *f9*s1)`\:H k+Yf?QR\}ޜg4mj{vQU%ЦJ禹Ĝn;xV0m$Mt@GhS^NDz$6M@GhS^N7qwnD³Ir:;ϳg,׳Կ!Hmi3'6#j+@u MBЦ+z6ChS>"^T#Ð&Ȗi@/9W~1# $d "]-xM!{Q=R"R%ou{w)y_]"6\I1q7Wubu3 ~Eצ㗿v/ '&6HSޒF)ckq idALa L4C)'~h)>։g!tn) >pР u=O[?@BRIq9,[H1"ҹ4TV9&,fbi ଵxg4\%@9RUaRbE"(Ц"OaSaDUlM|ir>”9piѹTB|q<(+Q`aٳMmaS Ȳ^bkՁ'1VT:X*Kg'}/{Cr?Hƒrn!]׋Π-9W\Ѽ>M.[t͘ Djbif/Kݱ#ӵdO/M-fijn=kAXĞgի6<M#Sn"-,mt]h,9nUb=y{eMx)d0%vwSsZA`Ȟ/m 0MvTV w XP  k獔oWW-ű'ož}4ӜQͬWhv*dɹYJER|Y͠Y#VM5YJq[ȴّ)ǾYJ&@忺x<~Y]ظЦ}˜}ak[uO~{h:5@!#6> p M9BAm::eB9hSCg7΀Lgx,c@myY5-\Y^(,w@m*l9ɮLԿ!Hmi3'6#j+@u MrX%EFӦIn ˋ8 n M?T 5R1D&.aU MVn_nMw8*~1hySsjBMz|0<#V%-j ~2h/rnJcjPIϬ->]X+>RoӂZbQj 06Y䃠 nZpYio7fTJ CٌVcO_J)eLmIyvo7OV.uZLDRge͖4(Yİڤy~ 7(0 MX7 *Y;6f~h>Ufv%LL(0kS L8%s?mA_eK} ,UoAK+P> lq9vdc{XhD@:{6b&"#oZ"7´Wf 7r, no 7j@@ЦB >Hm+ @@|`*{uL,P}<'߿kѦ86Nm: ޔED@h )@H@m::EBYhS  Mum PN*@kCj}yrhڤ_X]x!W}ɯtR qD?59WPth$!lWHl[`i@T,>/4RR-iGR+~ge#=h4CGT45k!75^D\aTBI3!IGT4~1k[qb?mޣ55 '*+VYPa*/Ro6gyK]lЍՊie,?5{;KEZ/E)ڴOT87e@5ubxj.qS>~@1a)Owg׶w6nN#pPazp?Gno[b_ h{ʧQ:taؓԉԦiZс>"=8%Xdޜg9ݹ޾ӹ'%6=6'6 `'%6=6'06ݖ]tD N`Tm:s{ ̓!FզN!@tr叧WtҦ+CN`dm&%'W/iAFK{ %06i$_MnO'v#?wHPz'F֦߿*Ps \KZxlZv.]mTVv%QXu:aIH~P%tRaKmH߇$ށW輯d^Ls_1v=}xP MPr uPxa, p$ICID蔠GFG p)iCdv=+dozm쥆hڤXu=V+~sUnH썫5%J+bZDbtK`}/m&Nu;{& .)J5U-jL!DFӦ`*|gTఖRZPZ`& p0`@08B} Ђ$+uSM:9T0j(ŧCM*F&wjZۥJf;@j{PgĈQ`,ڤNܩn6S 4_:#>i,Cbf>$L$E)ޝ0 ĚkQ[]B>|M CfP4~ 4+qpms#2bu,[ |3}[7 Pt'_哻Y]Xi%F|};K Ux+nvȁ*m$06yyQ], 4BR5,>㬑%^|tȞ`8xk ~=yǨ4n TD h,ƹ,o6e.6)ζ*_t{Kc>˱YldHSȮ5\͵fI?KmcMATҿ3~ttkk6%v|aכs>%vE`pm5 MH Gm:5%AЦrV#6ǚ r>C{;k ScŠDᇨUm=Ta -=BC%Sd<}(ԤU&L 93#[e\h/% Uz4Wviֲ_ZүDqMtln O?Ƨg N2Pȥ&7hʥ,i{yaf5*Oin#?9ICJ>[k%>,1¹.37:nVd'VѴ>oo"FA!W\BG@7hш;ƀ/ nhڤ5L$Xu|5M/ڤD`nh4R2~L/9hy*g5RʑTo,O"),S]_ZGm,%@`_k SDOXMM/=h&Z~M @F~UE>f] :SPSjoNYܤWHlYw^}npJK)ڤO˓^a,JU(JLl\Ѣ3)gflaU=YuO,y^cjcKryR9ӡl?4"Nej bJǴp0U]j*k$~vcjSX,)SMQ8%Y4K [\Ī.Y#~^A/R{ݙ("0n ֘*B<&SJaFGAOM 7BYhS M'@H@ Km"" p d MYD$N 03;>ZyC(%Vļ۷opmB?tjx:td+zS M'@H@ Km"" p d \BnF@5)xIu5VC M~|y5#F$6*j"FpHŲ_9U$#6e\9} ib_LUׄڔ-t`]յ|S \(N2 Fm8kIw lW~7b&:"́@@`}/yiO^ pfE*0`a|r'o}mʯ7)ʧiC>s/TJ !ЦE7ψ؛ڴ7QA{@ @`ohDAmڃ"6 M{ oJ 1l<1{6GwjhMg,׳Կ!Hmi3'6#j+@u MBЦ+z6ChS>"^ڴջJL@/~x^iѦ/nKvr>ڔwER4oeS%;:TƩThS+oa_kR'I=6u\6mO-@ZP#]rvl[[FZgsl۱=2ڔ-HY2rׯP^fg !5ԎCw%+AFJhӗ`Bm:;Bh]ԣW 6  M=z:Ah}^@p:k<{هCRP}?wjx ߿kh)W:6j?Im7#j+@u MBЦ+z6ChS>"^hڔa^~I !F&i~E:&063u79o//S"Lzoڢq\ھe5M!:oo&%a l1Vjk yK0ԦYy@)+L gY~}Xb!LGzԦyyxi9b2WɘiI `g-8c峲RBf5"މ?HhD  MNVh-/m&P5S܊-͠Jq566.l[S~ZWW &06=B֘D`V (N'f[wdLS+0tH*kLmi;cϏ~?f[lh'1@(I M_IEOr%M%.ˎ]IDV Ki-5$SMd@>Vq{MzxTl: |KV(c3MJRֶ.}u`頬zz{DEOE깖tu&HߘhڔslH/0ڜ.Kܯ LY\$Y.Mg\@`i.C@M1*r$ܧM u[=zNM=n@֛긑 hKmj@ Ц|@긑 hKmj@ Ц|@긑 hKmj@ Ц|@긑 hKmj@ Ц|@긑 hKmj@ Ц|@긑 hKmj@ Ц|@긑 hKmj@ Ц|@긑 hKmj@ Ц|@긑 hKmj@ Ц|@긑 hKmj@ Ц|@긑 hKmj@ Ц|@긑 hKmj@ ?LmIENDB`nEV!#˘<}3PNG  IHDR6sRGBUIDATx^ᙫ(Щ}#ġJg2ݑ0 0Hf|BZ0 __???_Yvk}\oW @ UZ @Ͻ] @UC" @$0?-,'b&ahEy-(orQVp_PͲE{ @Ni[H37z @XS >~O{ 55smj^ k6>O`؅,j<-?Ua^< ^yyC=OW4%a— Cpk~5|Gw}Y1WC?\ծSoO`(AsCOk\@x0J꿄>dg׸F/ZG]~qm;"ZP6 {OE}aêSҭW?왾}p?jpt͡ gt4PUX4IWn 97{lW{ @C4d/Z\w]h.>FӘhh}fm8ճlQ| Pw?z  aKwL l%d  XU!jh?Llxw^NCü=[Įjx<8vuP&CZF[F[ACUoOn(sDe#xÃaM:aOpsV[?x4twv!=>FCo[i#xʏ84w}uxT~p  @@ {0Rb @ Ti/A @ |u͆L]'Obz\ WX,N K IP/X-DBM"Tb &Vg>7xXbqR @<  @l&0#FI @^O5  @/X @ mFւ @oJ ~ @@s);49 @ T@ @ # [W  @H @v$ `* @ :\ @.0#h'@ @@ @ #?[NXUN[O W7SncFs2 8gĜ[U8;ES@'p82a!(H+;ϡoz^.h55*sPßV!MQwM;n2Οuvכ @ƴ;T ?qFAO]: Bƅ/9.l:¸9}?s˻O^Ϲ-# R @@I @o U @ Y{; ~ @8| ;H>BM2 '@M4\ǒ T(O* ZH @@Md)EI' x^ M\[7|Qos"  @@\k&.0#phhں,e* Gk&3zJ!.GȰwk>T؅\vm֑0BLZ#֐د'&2 0-OSn̈́P!eǼ~C+q7"@`s9yxNb.NoP Gx0<ͺݺ@Ə)Oʝ3RA ('OʵB~;;g~;Y[(WCGoЩ \` yn)'.ӛ8/t5؏`~_vߨcۡu=z |5ѵѾoمF'hy)FO+|#X] #?[FuNIVu:?хȤhPg̟CWv!=G.GhxcdB: 0%Siw~UU5?xW'r @`@cͯ~(wcw x`֝ sh^43 rtk"rs5Ac涫<'u3xś@="PTw nxCSĥg6 otW5+mGaWF޵.G|Z}q\SU[~=?hb̺`e߰R6Bm孶ȟ{0]grZ9o]'y(Kz4LTھD4NGjljD`,IS_+K Y @@kι( P 5=ZaODr 4qmDkDC@F3UE 4qmDR@ >R}5Sk&}?zMr @$<@k& O K'@O>*,ӎ !`bu  0训 @ xНzv!@ 2~\.M]FC#S:N[=/\oy .s!ۻ;MkG\ճ~PCpr>Ca +ʧWm%'m#Z?;c=7SU @^ 7FrO$u$Wr?{-^sIWr?{,߇Cm/ @VHz qh @%&0$ @ PN`F0 @:3u  @Rp?baf @&R @|@R. @I ) @>C t/ ?|F @ @xGwx2 @骎 @ 0/pC @iy @]< @ @ |}2v{_ @xrI,\aw:* ,1$'B*ƿlb _6ZP/Xw PP˵%b @/͵H @`3[6 ֆF=S(pKE9IysOT )7*#4 ύ[fJ™sxNOp'N@ @u*CE @H]w|D:- @c෇3ݝnK?U@J <dx/|GWW/ ?\@}a-N>O=q="@f`E¯}qb\  O켺:H@=F鍢ZOoΜ$=~%  @v(OvUWg+y @#O é٧|˾t+} @'a !`3wt; ˉj;†z#Pm#*xztdtA` Y,(X_JXC=p)Cx:lϏw$P@RP7DH @@ EI @"g! gT @WxC \z\T[ NjË&(QF+%*ZQhDE /|}n;(ڢ# @[ x`+y @@ )A7 @aY_ɦאGj'|kb:#[HV[iߺMOYgZG^CuD p%#' ؕ{. ݈i(ԉ3z?}*0;.0'3)y5F)Y- @ |mB @@8>᷄) *ydž @ ]3W =5jʇc: $%<;*ngpr; @`{Cso0j1oPnq҅cHJ_g뼣SgT댈V Gva}[`t|tvʫd\A^}(,-QE:*#@p^F7Z#6 @3\tϓ~ӧ967-\hV`0y4hM<CK'gخ^t~8u+t|7:=XaHI|өu}:?jy> d @|3Q/ @$ |}ْV@R @ xݢY9M2N^%At6h`-(orQV?JT&SZ-:B  @ g. @  p $؟GԼpP[y~Eg"(xW[U&d|0_7Z i7ςO's"@ |PB@W"0#d؄A;n7PO=[D+ HVLs @@?E=C'JR+0a @~36tOPo#|Lu"s+#%Nm $%n5%@hzCCK#CO  @j^xH[)IkQ}t;zZ[ )ϺQt N6 < iSUT5$%5* @ H @@3_!eMU @<8vE}¬ &'^t:U^40G_7Z9(QF+%*ZQh{s)@A-! @J3[k @I @oĨI-0||՗M02v8.5K]v  @O |?!v'.\bwStO6qM?Q $@&2~F3j]:p1v)aӣ+39LǙ0g @9+m Ю@  kw\ވ|ȅM7voڅx\Gt.I H9SݒznU1knouk@<(*F\ l(0:8l8o7Ƚ] ح`޶YU- KN:G76V Hίb=xS YMM^`ݠЌ@<pn.R J`A&d;A\  ?9A*)F#t&>l wSͨ @$5 @$g`X: cm"@ @p8-fP78z^.h|ө𢁉?JTG_7Z9(QF+߳~N j)@ @VJ^ @6HJœ~ mB<: 2b}!#' > @ @,ˈ,*!PB y߳W.yZS''kF-l.E25a v( `л4ItïNZBc:56`%@y ?v"_zCÙB&M|@<O?= 5M ]~9KJ @6x"-&$&H_~zޑ`/%եڢ#_'R[!@ Q`8(qv cݩl_;"'@@'y+A-yoّjs'-ZG4D 8tؕ@LJG}1wux,>@ NzHh(NYF_ֽs8@v[髕' @# VG @\ϖza1UE @p8-JfP78z^.h|ө𢁉?JTG_7Z9(QF+߳~N j)@ @VJ^ @6' ?mx5Ig ߸Y=?-^$WaMw^l+o%um- @TU>>d^ g|@V%9:뼆j#@S j#~~. P@" '|꬞ʇ@x @`B@ @ {~?8U&sXUV^W9"@$;l]%%~kas']O^vhi H#0BaSu@+CH*a@y^!KhS`^н߼&A5x7 _vVgsj'@9`t?\lNC #nLK0a|$a?ȡ)|@<N @@ @`G_ dMU @<8vE}L &^%At6h`-(orQV?JT&SZ-:B  @ g. @  fo0VܽGKn4ޖhzO DW x&_wj%)v/HJZOҒ2. '_;Vg|iA+]'(0<^2c@"[~Z%KK)`.zM`e =].9 1Ji[񂾿g>>0Lvm'@ $ h 0%p(Wt @7B p {w s>:A @$ @;e @xC CrFPmw: /DE /hEy-(o= k @l%K @`x06W%0ZG{}ei' ж@$xO}|F*WkGG  @p}?Z`[ L.u%;Z/أTrG>R"@,*ZGF\ @ |ݼn @>W5 @L\70Bܫ@ʭ}zt7wW5 kRl @VW[ v  @,t/rw5Pom8&@ @u? xC`t?\B+O  @ H @v$gQ @ExnV &^%At6h`-(orQV?JT&SZ-:B  @ g. @  hBE6%M @$IKx7( @JS @-e寕E3 @L%.˘ @fgC!l6n&@ ; @g2 @I6 V @,,7 @%45%@ 0Å<"@ Ж@<x\  @x @|P @-^6g$@Nv;vO,p8v"|>rI,\ag=_"~ߗl_F / ?fGJ߀І;?m+ߵ|?ys\hN:B^F#B @ WMdTüJ" @@C @6 \g|6 @WWJp?*0 @ ğ(ڼ  @XS`v3і 0 @m N'E:/ @+ KVwͅ4d{>0 0K`^ ЌwͲXO|mUE@ P[yA#0/n @} Wq @ xD7I{BEC$IUHG<PPY|-c73bN?,xLg\&$8vEg &_/|U^40G_7Z9(Q'n߮8M~Qϵm˧u @&< @}sߛSݰ F j,^PZ FKOףՖz +HqW']UYW 0(0SFXU @J2`7Hfr2'P1LL%Y)AUSMUuM0 @mlP- @f'oc-j 5MhW`^`#m4M к6m]GV @5%96m@xq @~y ҌwU @Ѽvи_ۈ Pl U].<v;NJV]/^ kj+ 7_x> g KV.GOF+%*Zu_H (zxG+otس @qT<+SU @^ 78<|k І3 o; /p,[/KjDoK!jm9 @($ PUK @`4?gZΘ @)Ixw͡zږ͇@ @p}?>@R- @FjMwVxV Fn)tY<6,*!@Ӊf?F @mrC|M @췮i9:C>R`v`^VA Vhk tu?k$ 'u ~u{]JNX[(Z xiس}Q4 @@y @7L2*!@ @<][-J M @H'u)IV^-M @$7zD @-#2b NіJ~d81 fP78z^.}[XmJSʕ_6] e6]ga|= k{{H&^'@~<S4,: "ϕugt6|\]#@`}H0-`!lԢ͇@p_ZXM`*W.v@/p_pJ&5 \z$ \; PB @VI)WCxC7vR @ N 06! @ @ݲ7BA`vVEAR? L @ N:+Qk]#@T @ eVm¿ @yrD#@k3LZ/h }K wGVCmΏp}3x#T%o hCZwo> s<O. \f'U!Y\ /# @T! @z hB~["#@ @@$xߓ}T @J}gr- @J\ @ uBJ0|@CG  @Zt<H @@ #@ @i @'x @$&@6D%*@sZt&.Q/<~{$M <^6*"@.7`!a {$F`S {R- @\M% MS L%\gj/ @ ğx? @x'#Vs烫P",u @f ]kV$ \`vPyGV+zW-V`^0A=ht @]y gi @] Y`2PUX_k!2?Tu\"zN࿕|. ڽ(tgCyx SGh?̸(Sr @i[?Y"y?w>=a1UE @pxSmx. 7 oZێK?K/[!ࠖk[>j @ @@-@V- @ L%a*=qk @7^&B=oj @6xd\`i @G8* @H@U @I @7 @ W  @տc @' D0[_ @LtF~|` @@[S l%@ @ 0# @>F@1C# @_x9  @ p8->C'Obz\ WX,N K IP/X-DBM"Tb &Vg>7rm @ x`}s- @L XQfo6b&@ @`j!+Wە @S =+\[x6 @p@ۮ @6l  @X @خ @*'+. @X&I\/7 @"x䷮  @eS  @T!0p!WbA @`@!*N @@zFd @ |}2V큁"@ Jp8% ss(DI,p^/Kb Ta`!?P1`UBO*T!j&SZ-q#@ @`}oE @ D2fca @=}T@ @JS =`E3 @xZ  @T) rXE @@RMeT+ @y ¿ Otr$X;N _6ZP/X-DBMv}n;(I1 @ Z$@ @d!]E7 \ @ZlZۃ @S m  @( 3  *  @x3(  @(#_f,J @@<p_|4@ @`-Hx/XkhC @ @dO'W# @Q W.H- @ G`j_W @["*m @ PD@PU @e/<96U @ Tp8 3s(DI,p^/Kb Ta`!?P1`UBO*T!j&SZ-q#@ @`}oE @ D2fca @=}T@ @JS f @XK3kIk @@0g @  @Rn3 @R WU/( @fDW3,%@ P@dA @!0@f엇g*J @>uk~_ Y_wDD @@!`~ @|cRG @l%“e$@ @Mp<o[t0|>¿ Otr$X;N _6ZP/X-DBMv}n;(I1 @ Z$@ @d!~>a @ L-6|\o @L-MDZ%@ @gѪ @@}'^_h @@D )¿Col @4$OWC uR @t`tO @" x @S`j 2Z3¿ Otr$X;N _6ZP/X-DBMv}n;(I1 @ Z$@ @d!~>a @ L-6\{[<; @Zl˸M @@@U% @Z" @??L "@ @ U  @LjaH @  j @ 0# @3^:\{8)J @SSk~A>]8 @HR @H>`u @@-ur9R @ Hp8%?ϡo'z\.+,NS%$DBM"Tb &V?P1`ݳ~N jqR @<  @l&0 _? ,FL @L<|p @R`j%qnU` @ ~sc,` @@$p!@  l] @ 0{ 2 @;v"'@ 0[`5+ @u LtG @H4\lT| IW! @ x @&@ P-c` Ȉ* @xnQ0|>¿ Otr$X;N _6ZP/X-DBMv}n;(I1 @ Z$@ T0\/7 _ @Z x@\osS @-V~_[  @, bB @hG 3ogLEJ @@$g?= @ޜ꿡1* @^տ @@S}%W  @׀ " @ LMui熺*T @y @ H8a @xG/y\4 c"@ @8vEA &???} \Xbt:UXbHO*T!j'B*ƿlb _6= kK' @X_3k @fS p>,|  @ 0G`j%[%99e  @R`j%ǸXi @b,&T @v" @?x/H  @W 3k{=~  @@;3V"%@ X@P @z c/H  @z pͯ!/Y @ Њ_}ފ @<@  @% x- @l!<+SU @^ xݢDa&|>rI,\aw:* ,1$'B*ƿlb _6ZP/Xw PP˵%b @/͵H @`3`Ml4L @]]~ @Z x˸M @@w×Q% @e" @+v @o ;k\D @ ~a]L  @/ }'u? @VAN7<( {0 ϸ @[Wd$Å\5"v"@ PP 'D=F-%(8&@ !@ @`Klm @ xugo( @9p8\xuh-TM^&mǎ?%%zpI -ߗr%5,O_q.&d/v%@ @`gf`)J @u?upfKs[?bO д@opM  @@C9WC/T @} `>q @@m9>Px @A 7tWW  @T%QjC sM]lpO @Qc_EF a @|@x  @3|޷Lk @>L`j aG @J3n%@ػ`G @|pc׾lYጘ"@ J 4(<]_~>ϡoz^.\_OjQ$߫{nKzk/$߫{nڳX` s^};(ڠR= @jG%U @@{XcnOY5 @#2Ww<%L @ZZ 8ڇ/+@ @X\s @r pgo:9;4YWC  @m+_U>f% J w]oxzB98 'w f/HwW3BHQ`T~5)NeJgOS*PC"nI=V ߅æ] k(ܽA6- hWDOG]ם˷K$r;3~0$'o\5u Wax͚65E ,{>I/f]E G LH^]w\iTeEǹ]Ne6h @)'5+ dҧB`鎉&ڝUxje-#%|0ZQ!щ:ߦ6,D*!@@.OP Ifj!tY!-<%xEoS?5GKs'٧1rJ @ }uܩy0Yw<}'ߔ_vu%ik;Ow{ 銽a{ݱ = @o޸fNx:*?b$mVI$l5Nb$ @ETD0Rb$e0%%KQoYZb$MiryӐq"-nob$0kWCjKtRb$Yhć$܉&^YQƺb$+'Q{m_H:u2 b$|;c=<ٙTZ[b$!#˘<}3MV>@.>0 (  l` \ $k  C"  C A..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\03.bmp %ZB  S DdwZB  S D4dvZB  S DwlGN   \  N   dk N   l+$ `  ; # $C"   C A..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\04.bmp ; 4ZB   S DH >N     q #Z 0" ,0*+ # î `& ! EE$IIe\\d$hh!P ""@T/T@T`TC" * # :. `@TT@T`T0*+#"    c A.@..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\05.bmpS`TS`T }  c A.@..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\06.bmp5T`T5T`T *tZB  S D X GGZB  S DhTQZB  S DnSN   ,  J N   , wU N   ,cO <  f.|)8 23 `N `   GG?  S`TS`T S" ! A. `..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\07.bmpS`TS`Tf.|)8/fB " s *D_"[2 #5/f # S #5(w87 `B % c $D H1d3 & C A..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\08.bmp"b * 7 #" `B (B c $D<(#`B )B c $D ># `B *B c $Dx(#x`B +B c $D(#Z , 3  ,D%*n  ZB . S D(#D%ZB / S D(#D%ZB 0 S D(#D%zZB 1 S DL#D%N@ H0|)4 5T 3 # pC 0|)2  ZB 4B S DH1 4 : C A ..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\36.bmp6 8-)= ># ZN `  "F'i , T`TT`T #"  < c A. `..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\44.bmpT`TT`T -)=QZB = S D84p7:B S  ? 7iH+, T4$0<48T<Q'4B>$uB2($^ B&h$%45\ $t7)~9& t:%4| ! ) U V \ ] 4B>Girx{)0HI^_ KLRStz{|$%PQWX% !!W!X!b!l!{!!!!!!!!""j#}##$@$G$$$%%j&p&Y'^'''(!($(4((())))))K+e+l,s,,,,,,A G l r J P w z =CIO#z @FEK !!N!T!!!!!x#~#####$$''''))))K+e+++,Pre-installed User$A:\Conference 2000\Programming 2.docPre-installed User$A:\Conference 2000\Programming 2.docPre-installed User$A:\Conference 2000\Programming 2.docPre-installed User$A:\Conference 2000\Programming 2.docPre-installed User$A:\Conference 2000\Programming 2.doc Mark DabbsQC:\WINDOWS\Application Data\Microsoft\Word\AutoRecovery save of Programming 2.asd Mark DabbsQC:\WINDOWS\Application Data\Microsoft\Word\AutoRecovery save of Programming 2.asd Mark DabbsA:\Programming 2.doc Mark DabbsA:\Programming 2.docWGHSA:\Programming 2.doc@$?,p@GTimes New Roman5Symbol3& ArialEMonotype Sorts"qhKFKtFf]EfC#L"620+ Programming 2 Mark Dabbs Mark DabbsOh+'0 $ @ L X dpxProgramming 2orog Mark Dabbs arkark Normal.dot  Mark Dabbs 3rkMicrosoft Word 8.0@G@N(@ҿ@@!ֿC#՜.+,D՜.+,< hp   none.L+j Programming 2 Title`(RZ _PID_GUID _PID_HLINKSAN{DA2CC35C-4215-11D4-AD27-00C0F0446558}A0I?@..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\03.bmpN? @..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\04.bmpO? @..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\05.bmpL?@..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\06.bmpM?!@..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\07.bmpB?&@..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\08.bmpL<:@..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\36.bmpN;<@..\..\..\Program Files\CaptureEze Pro\Conference\Paper 2\44.bmp  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Root Entry F-KտcFֿ1Table-WordDocument"SummaryInformation(DocumentSummaryInformation8CompObjjObjectPoolcFֿcFֿ  FMicrosoft Word Document MSWordDocWord.Document.89q