O`8ck~{Op  A"y$I0<2S@jA CNA rA #rNuNV?. zNTHAJPg y0|`8g^CX000220<0S@f?<?" |place to save volume label _begin files=0 | count of files found `storeb 0 address volume |clear volume name (keep storage) printd dev "~Enter search spec: " IF dev=0 cnt=-60 ELSE cnt=60 ENDIF search=inputd dev cnt 60 | input a dev:\pathspec IF strcomp "" search | ~null means done Printd dev "~Done!~" QUIT ENDIF printd dev "~" close 1 error=open 1 search 4 | open for directory search printd dev "~Directory " IF error=127 | normal, ok printd dev "of " printd dev search printd dev "~~" ELSE printd dev "not found!~~" | disk error GOTO begin ENDIF _loop error=read 1 buffer 20 | get a directory entry... IF error>=0 type=`getb buffer+18 | file attributes help in 18th byte `storeb 32 buffer | clear special character IF type=8 strcopy filename volume | save volume name and continue GOTO loop ENDIF files=files+1 | count files x=printd dev filename | print filename IF x<=7 printd dev "^I" | add extra tab if needed ENDIF printd dev "^I" | add one tab in any case IF type=16 | is it a folder? printd dev "" ELSE printd dev error |read is filesize normally printd dev "^I" |tab over date=`getw buffer+16| date stored at 16th byte (word) x=date&31 |day-of-week is bottom 5 bits z = x < 10 | extra space if 1 digit day IF z printd dev ' ' ENDIF printd dev x x=date>>5 | month is next 4 bits printd dev month[x&15] | look up month text x=date>>9 printd dev x+1980 | year is offset from 1980 in upper bits ENDIF printd dev "~" IF devstat dev2 k=devin dev2 IF k = 3 printd dev "aborted!~" quit ELSEIF k = 19 Print "More?" k=devin dev2 Print "^H^H^H^H^H" IF k='n' quit ELSEIF k='N' quit ENDIF ENDIF ENDIF GOTO loop | keep getting file/folder extries ENDIF printd dev "~" | done... x=`getb address volume | was there a volume label? IF not x Printd dev "No volume Name, " |nope ELSE printd dev "Volume name: " |yup... printd dev volume printd dev ", " ENDIF printd dev files | show # of files found printd dev " " printd dev "Files.~~" close 1 goto begin | ask again for filespec. clear | | this is a sample autopilot program for logging on to Genie |_ trace off | | show what's happening Print "Logging on to Genie..." | IF connect | see if connected Print " at " | Print gettime | show time Print "~~" | couple of returns Flush 60 | clear junk for a second Printm "HHH" | wake up Genie ok=Wait 15 "U#=" | wait for initial prompt IF not ok | GOTO nologin | ENDIF | Printm "^Rxxx12345,password,475,1~" | send the account number, goto messages Flush 60 | Print "Connected to Genie!~" ELSE | tried too many times _nologin | Print "~Could not connect to Genie!" QUIT | quit the program ENDIF | | | continue with other things here QUIT t| | ST-Talk Pro AutoPilot script for Genie Downloading mod 3/2/88 jsd |_M Clear | Erase variables Trace off | Trace mode off | dlfiles="" | Init String type variable to hold file names Array dlfiles 10 | Declare storage for upto 10 file names Array dlnums 10 | Declare storage for upto 10 file numbers | dlmax=1 | Set this for the number of files to DL | Fill in the file names and numbers. |_|_1 dlfiles[1]= "f:test" dlnums[1] = 390 dlfiles[2]="" dlnums[2] =0 dlfiles[3]="" dlnums[3] =0 dlfiles[4]="" dlnums[4] =0 dlfiles[5]="" dlnums[5] =0 dlfiles[6]="" dlnums[6] =0 dlfiles[7]="" dlnums[7] =0 dlfiles[8]="" dlnums[8] =0 dlfiles[9]="" dlnums[9] =0 dlfiles[10]="" dlnums[10] =0 |Log on and get to Atari ST RT download area. Run from dialer after dial. |_L IF connect | Double check carrier detect Capture 2 | turn capture on to buffer 2 Print "~Logging on to Genie...~~" | Show what we're doing IF not Wait 30 "U#=" | Wait for logon prompt GOTO logerror | error, abort! ENDIF | Put your account/password here... Printm "^Rxxx1,password,476;6~" | Send user id and go to ST RT & DL ELSE $| GOTO logerror | no carrier detect, abort. ENDIF #| continue with DL after function def |=L |Define User-function DLone | |_| @DLone | Create a user function to download one file | Inputs fileanem from dlfile and number from dlnum error=true | Assume there was an error IF not Wait 90 "file?" | Wait for file? prompt GOTO DLerror | nope, error! ENDIF | Printm dlnum | Send the file number Printm "~" | Send a return IF not Wait 90 "uit" | Wait for Quit etc prompt GOTO DLerror | nope, error! ENDIF | Printm "D~" | Send D for Download and a return IF not Wait 90 "receive"| Wait for receive prompt GOTO DLerror | nope, error! ENDIF | Flush 30 | Print "~~Downloading #" | Display status... Print dlnum | Print ", " | Print dlfile | Print "... " | Download 2 dlfile | Do the download of the filename in dlfile IF not Wait 90 ">?" | Wait for ? prompt GOTO DLerror | nope, error! ENDIF | Print "Done.~" | Display status Printm "~" | Send a return IF not Wait 90 ")?" | Wait for ? prompt GOTO DLerror | nope, error! ENDIF | Printm "Y~" | Send Y and a return, ready for next file error=false | No error if we made it this far _DLerror | Exit here for errors @endsub |End of DLone |_|_1 | | Main loop to download the array of files |_M count=1 | Start at first file _DLloop | Start downloading file list... IF count<=dlmax | Are there more files? dlnum = dlnums[count] | Yes, get the file's number dlfile = dlfiles[count] | and get its name DLone | download the file IF error=true | Was there an error? GOTO bigerror | Yes, end! ENDIF | No... count = count + 1 | Increment the file count GOTO DLloop | Do another file. ENDIF | | End of main Loop Wait 90 "file?" | Wait for file? prompt Printm "~" | No more files. Print "Done Downloading!~" | Hey, we're done! Capture 0 | turn capture off IF not Wait 90 "elp?" | Wait for prompt GOTO bigerror | nope, error! ENDIF | QUIT | and quit (or do some more smart stuff) |_| _bigerror | Go here upon Control errors! Print "Error!~" | Say this was bad. Capture off QUIT _logerror | Go here upon bad log on! Pri Gnt "Error logging on!~" | Show status for this. Capture off QUIT clear trace off |-=| | Sample AutoPilot for doing simple text menus in ST-Talk Pro | | by John DeMar 2/7/88 &| |-=| | Text menus use the Menu function for branching to one of | | several places in an Autopilot program. | | 1) Build arrays to hold the characters associated with each | | menu selection, the menu text for each selection and the | | labels to go to upon selecting the character. | | 2) Enter the labels and commands for each menu selection. | | 3) Fill the arrays with their associated data. | | 4) Do the Menu funtion. %| |-=| keys='a' | force keys to be a character data type. msgs="a" | force msgs to be a string data type. _labels | force labels to be a label type. array keys 5 | make the array for the menu keys. array msgs 5 | make the array for the menu messages. array labels 5 | make the array for the menu labels. @defer | Enclose labels for menus in a "do nothing" function. | This keeps autopilot from doing this lines the first time through. _labela print "~Doing label a.~" GOTO menu1 _labelb print "~Doing label b.~" GOTO menu1 _labelc print "~Doing label c.~" GOTO menu1 _labeld print "~Doing label d.~" GOTO menu1 _labele print "~Doing label e.~" GOTO more @endsub | End of the "do nothing" function. | Fill the keys array with menu selections' keys. keys[1]='a'  keys[2]='b' keys[3]='c' keys[4]='d' keys[5]='e' | Fill the messages array with the menu text for each key. | Add some special text at the begining and end for esthestics. msgs[1]="~a) Do things at label a " msgs[2]= "b) Do things at label b" msgs[3]="~c) Do things at label c " msgs[4]= "d) Do things at label d" msgs[5]="~e) Do things at label e and exit~~ Select a,b,c,d or e >" | Fill the label array with the location to goto for each key value. labels[1]=labela labels[2]=labelb labels[3]=labelc labels[4]=labeld labels[5]=labele | A place to come back to when re-running the menu. _menu1 | Run the menu and branch to the selected label! menu 0 keys labels msgs | Menu function should never get here unless there was a data type error! | or was pressed. Print "~Undo!~" QUIT |-; _more | a place to go to when continuing with the program. Print "~Done!~" | Just say Done and QUIT | quit for now. L| | Sample AutoPilot script: Waiting for multiple phrases from the modem |_L clear trace off |_L st="" | make a string variable array st 5 | dimension it to hold 5 strings | st[1]="this" | fill them with the phrases to wait for st[2]="that" | st[3]="anything" | st[4]="mail waiting" | st[5]="goodbye" | | goodbye=5 | just for the heck of it | _begin | place to loop back to | choice = Wait 30 st | wait for 1 of the phrases for 30 seconds | Print "choice=" | put the results to the screen, 0 if timed-out Print choice | choice matches the string array index if found Print "~" | a carriage return | IF choice | print the phrase to the screen if found Print st[choice] | note: see how arrays can be used anywhere Print "~" | ENDIF | | IF the choice is goodbye| checking for choice 5 (add other ELSEIF's as needed) QUIT | ENDIF | | GOTO begin | keep on going | remember, the key may be used to end autopilot QMI  457-7216  2 0  1 0 0 0 0 XQMI 457-7216 20 QMI BACKSPACE Merges and reformat's paragraph if at column position 1. DELETE Merges and reformats if at last position in line. DELETE Deletes to End of line. Removes line if at beginning. CLR/HOME Erase current line. UNDO Restores current line if changes were made. INSERT Toggle between Insert and Replace modes. RETURN Move to next line, insert blank line if in Insert mode. ** Cursor Movement functions ** RtArrow Cursor right, to next line if at end of a line. LtArrow Cursor left, to next line if at beginning of a line. UpArrow Cursor up to previous line. DnArrow Cursor down to next line. RtArrow Cursor to end of current line. LtArrow Cursor to beginning of current line. UpArrow Cursor up to previous page (screen height - 2). DnArrow Cursor down to next page (screen height - 2). CLR/HOME To Top of current buffer. CLR/HOME To Bottom of current buffer. ** Block Select functions ** ESC Mark the start of an area to select (highlight) then again to mark the end of the area. Top and Bottom marks allowed in either order. ESC Clear all selected areas (un-highlight selected text). ESC Reverse selected (highlighted and normal are reversed). C Copy selected areas to the current line position. M Move selected areas to the current line position. P Print selected areas. K Kill (erase permanently!) the selected areas. S Save selected areas to disk. INSERT Port (like Copy) selected areas to another buffer.  Select buffer number 'n' (1 through 10).  Load buffer number 'n' (1 through 10).  Macros 21 through 30.  Macros 31 through 40. ** Miscellaneous functions ** A Allow control codes on/off E Exit Editor back to Terminal mode. F Find (search) for text string (from cursor to end). G Go to a line number. L Load text from disk into current buffer. P Print buffer (all or selected). R Search/Replace text with new text (from cursor to end). S Save current buffer to disk. W Word wrap on/off X EXIT ST-Talk Pro. ESC Insert an ASCII 'Escape' character.  The 'More Help' Selector HELP AutoPilot syntax checker on/off. Mouse Functions: - Left button One click inside of screen area positions cursor. Click and hold to select lines of text. Select buffer if clicked on buffer icon. Scroll one line if clicked on up/down arrows. Scroll one page if clicked on shaded area of slider bar. Scroll to location in buffer if dragging slider bar. Right button Go to Terminal mode if clicked in screen area. Load file into buffer if clicked on buffer icon.  The PRINT Menu - The Print functions use the formatting options set in the Printer Options. You can change these from the terminal mode's Select menu. Print File Prints a text from disk to your printer. Print Buffer Prints the text from the current Editor buffer. Print Selected Prints the selected areas of text (highlighted) in the current buffer. R The Select Menu - Begin/End Selected Chooses the top and bottom of 'Selected' (highlighted) area of text. The selected areas of each buffer are independent from each other. Any number of selected areas are allowed for the following operations. Clear Selected 'De-selects' (clears the highlighting from) text in the current buffer. Reverse Selected Reverses the selected state of all text in the current buffer. Reverse highlighted text to normal and normal text to highlighted. Save Selected Saves all selected areas in the current buffer to a disk file. Use this to make another text file from individual areas of a buffer. Erase Selected Permanantly removes the selected text lines from the current buffer. This is useful for removing unwanted lines from your capture buffer. Move Selected Moves all selected lines in the buffer to the current cursor position. Copy Selected Copies all selected lines in the buffer to the current cursor position. The original lines remain in the buffer and the new lines stay selected. Port Selected Copies the selected lines from one buffer to another buffer. Works like the Copy function but you are asked to select the buffer number for the new lines. The text is copied to the current cursor position in the destination buffer and the new lines stay selected. Upload Selected Sends all selected lines to the modem port. Uses the same parameters as the Upload Text option from the Text menu. This is useful when capturing information from one system and forwarding portions of the text to another system. The FILE Menu - List & View... 6ALT-Q Browse the directory of any drive or folder, CANCEL when done. To view a text file, select it then click on OK. Send File... 8ALT-S Send a file by clicking on its name and the protocol to use. If the computer you are sending to is ready, click on START. Use the HOLD button to select the file before starting the send. Receive File... 5ALT-R Receive a file by selecting the drive and folder, then enter the name of the new file. Select the protocol then click on START. Use the HOLD button to select the file before starting the send. Archive The Archive utility is an external program used to save time while transfering files. Use "Set Paths" to locate the ARC program. Use Archive to build an ARC file before sending. Choose the drive and enter the name of the Archive to create. Then, select up to 20 files to compress and include into the ARC file. Un-Archive Use Un-Archive to extract the compressed programs from an ARC file after receiving. Select the ARC file then select the drive and folder to place the extracted files after un-archiving. View Archive Use View Archive to inspect the information about the files which are compressed and contained within an ARC file. Set Paths The Set Paths screen lets you choose where ST-Talk finds the files or folders it needs while performing various functions. The following default paths are selectable for these functions: Send . Send File, Archive Receive . Receive Files, Un-Archive, View Archive Capture . Capturing and Editing Autodia l . Dial Directory, Autopilot, Options, Function Keys Activity . Activity Accounting Files Help . Help Files Fonts . Screen Fonts, Translations, Emulation driver. Archiver . Archive Utility external program. Command Shell ... Command Shell external program Kermit . Kermit file transfer external program. Other Transfer .. Other file transfer external program. To select a path, click on its title and use the file selector. Click on OK to make the changes permanent. Utilities ;ALT-U Click on the name of the function to to the following: Copy . Select the file(s) to Copy and where to put them. Delete . Select the file(s) to Delete permanently. Format . Select either disk A or B to initialize and erase. Rename . Select the file to Rename and choose its new name. Make Folder . Select the name of a new folder and where to put it. Delete Folder .. Select a folder (and all of its files) to delete. Click on EXIT when you are finished using the Utilities. Command Shell 7ALT-C The Command Shell will run as an external program then return. Use this to run a DOS command shell or your favorite program. Specify the program's name through "Set Paths" above. Run a Program Select the name of the program to run. It may be a GEM program with the extender ".PRG" or a non-GEM program with ".TOS" or ".TTP". The TTP type will ask for the command line to pass to the program. Make sure you have enough free system memory to run the program. Use the Re-initialize command the Editor's Options menu to set the size of the editor memory and the free system memory. Quit ST-Talk! 0UNDO or ALT-X This will exit from ST-Talk back to the Desktop or where it was run. You will be prompted to save any modified editor/capture buffers.  Keyboard commands in Terminal Mode =Shift, =Control, =Alt -"  A Answer Now  B Baud rates toggle  C Command shell  D Duplex toggle (half/full)  E Go To Editor  F Select font size  G Go Run Autopilot in current editor buffer  H Hangup (disconnect)  J Jump/Smooth scroll  K Keyboard Dial  L Line feeds on/off  M Terminal Emulation Mode  O Load Options  P Printer on/off  Q Quick List & View  R Receive File  S Send File  T Talk mode on/off (typeahead window)  U Utilities  V Vidtex functions  W Wrap end of line on/off  X EXIT ST-Talk Pro  The 'More Help' Selector  Exit ST-Talk Pro Definable AutoPilot Function Keys:  Macro 1 thru 10  Macro 11 thru 20  Macro 21 thru 30  Macro 31 thru 40 + The Options Menu - Tab Size Sets the number of spaces used by the TAB key. When you press the TAB key, the cursor will move to the next multiple of the Tab Size. If in Insert mode, spaces will be inserted. Line Length Sets the maximum length for a line of text in the current buffer. Your text will wrap at this point when you are typing. If you have word wrap mode on, the text will be reformatted to this line length when you load it into the buffer. Reformat Takes the paragraph starting at the current cursor position and reformats the lines to the current line length. Reformatting ends at the first line that begins with a space or at a control character if Control Codes mode is on. Word Wrap With word wrap mode on, whole words will be moved to the next line as you are typing if they will not fit at the maximum line length. With word wrap mode off, words will be broken at the end of lines. Insert/Replace Mode In Insert mode, the text on the current line will move to the right as you type new characters. When you press Backspace or Delete, the line will move from the right to left as characted are removed. In Replace mode, new characters will type over the old characters on the current line as you type. When you press Backspace or Delete, the line will remain in the same position. Control Codes With this mode on, all keys types while pressing the control key will be ignored. This effects the text being captured, too. With this mode off, you may enter control codes into a text buffer and all incoming control characters will go into the capture buffer. EOL is ??? Selects the characters placed at the end of lines when saving the buffer to disk. Normally, you should use CR/LF mode. Some wordpocessors will require different line ending to merge text into them successfully. Re-Initialize Selects the total amount of memory used for editing and capturing. Use this function to choose the enough system memory for running external program from within ST-Talk. Warning: You must save your buffers to disk before Re-Initializing or all the text in your buffers will be lost! $ The PRINT Menu - Printer Echo The check mark in front of this title shows if Printer echo is on. With this mode on, anything coming across the screen will be sent to the printer. The Printer Options are set under the Select menu. Print File Select a file to send to the printer. Print Buffer Select a buffer to send to the printer.  Print Screen You may print the contents of the current screen or previous screen. This function works independently of the capture buffer. Show Graphics Show the last picture received or loaded into the picture buffer. Print Graphics Print the contents of the picture buffer. Load Graphics Load a Vidtex picture from disk into the picture buffer. Save Graphics Save a Vidtex picure to from from the picture buffer. \ The SELECT Menu - Text Options These options modify the characters coming into your computer before they reach the screen and capture buffer. The Upload modes are used when you send a file or buffer using the Upload Text function (in the Text Menu). The Translation modes let you select a file which describes how to modify incoming and outgoing characters. Dial Options Selects the options used for dialing and redialing through the Dial Menu or the AutoDial Directory. You may need to change these to match your brand of modem. Answer Options Select the options used for AutoAnswering from the Answer Menu. Choose the name of the AutoPilot file to run for AutoAnswer. Printer Options Selects the margins and line formatting used when printing text. RS-232 Options Sets the parameters for the computer's serial port. Changes the ba;ud rate, parity, duplex, xon/xoff, data and stop bit, internal receive buffer size and the port number. The "Options" Icon in the terminal mode chooses this menu, too. Screen Options Changes the screen modes for long lines, scrolling, rows/columns, type-ahead and loadable screen fonts. Terminal Mode The Terminal type changes how ST-Talk interprets special commands it receives from and sends to other computers. TTY uses very few commands for standard ASCII communications. VT-52 is popular for many on-line services and bulletin boards. ANSI-PC uses IBM-PC character graphics for PC bulletin boards. VT-100 is used by many larger computer systems and services. VT-200 is an extended version of VT-100 used by newer systems. OTHER allows loading future terminal types from disk. Vidtex Graphics The check mark in front of the title shows the current mode. Vidtex graphics is used by CompuServe and many bulletin boards. The pictures may be saved to disk or printed on your printer through the Print Menu in the terminal mode. Use Alternate-V for more Vidtex options. Function Keys The 10 functions across the top of the keyboard may be used alone or in combination with either Alternate, Control or Shift. Each of the 40 keys may be defined by clicking on its name button. A function key contains up to 10 lines of AutoPilot commands. The function keys may be saved and loaded at any time. The function key file named ST-TALK.FNK will load automatically when you run ST-Talk. Clock & Timer The system clock may be set here if you do not have a clock cartridge or an internal battery-backed system clock. The Alarm Timer, if on, will count down and warn you when it reaches zero while you are on-line. The Money Limit will warn you when you've spent more than this amount while on-line. Event Sounds Selects the type of sound used for different events in ST-Talk. Choose the sound you would like for each of the events shown. Load & Save Options All of the options throughout ST-Talk may be saved to a disk file and loaded in at any time. The Options file name ST-TALK.OPT will load automatically when you run ST-Talk. Each entry in your Dial Directory may have its own Options file.  The TEXT Menu - Capture Text The check mark in front of this title shows if Capture is on. Clicking on this will turn it on if it was off, or off if it was on. Capturing will save the text coming in to your screen into a buffer. The buffer where text is capture is selected in Select Buffer, below. Capturing uses some of the Text Options from the Select Menu. Upload Text Uploading text will send either a buffer or a file to the modem port. Select either Buffer, File or Cancel. If you Upload a Buffer, select the buffer number to upload. If you Upload a File, select the file name to upload. Text Uploading uses some the Text Options in the Select Menu. Depending on the system you are sending to, you may need to select some delay or use the prompted mode. Set these in Text Options. Select Buffer The buffer used for Capturing is selected though this menu. You may change the buffer number at any time in order to seperate un-related incoming messages and information. This buffer is selected independently of the Editor buffer but may be the same if you would like to edit what you are capturing. Load Buffer Use this function to load a text file into the current capture buffer. Save Buffer Use this function to save the current capture buffer to a text file. You may append the text to the end of an existing file or overwrite it. Erase Buffer Use this function to permantly erare the current capture buffer. Go To Editor Click on this to enter into the editor mode from terminal mode. The right mouse button may be used to switch between modes. .  2 t:..  2 tARC TTP 3t ;`y@c^N6NWNNUNWNVNW4NV$NUNsl*O*m - ЭЭм!"ҍ¼.A// Bg?<JNA m"m -So Q m -SBQ(m)M*mN0 lHhN]X/,?,N\?<NPD?<A?<NAXNuNVB. nl:HlNkvXHl8NklXHlPNkbXHlrNkXXHlNkNXHlNkDXHlNk:XHlNk0XHl4Nk&XHlHNkXHlzNkXHlNkXHlNjXHlNjXHlNjXHl*NjXHlbNjXHlvNjXHlNjXHlNjXHlNjXHl.NjXHlFNjXHlrNjXHlNjXHlNj|XHlNjrXHlNjhXHl8Nj^XHl`NjTXHlNjJXHlNj@XHlNj6XHlNj,XHlDNj"XHlVNjXHl|NjXHlNjXHlNiXHl NiXHl:NiXHllNiXHlNiXHlNiXHlNiXHl(NiX nf\ n -h`H nH|Hg nH|hf(HlXNizXHlNNX?<NbTHlrNi\XR nfBgNMTHltNLX)@fHl|N0. n /NbXJ@g"0,g0. n /HlvN^PRlRn0.nm0.N^NuNVBnHl/.NLBP-@f0,g/.HlN]PRl` /. HnNaPBBnHnHn/.N F ,gP/,NNX-@`HnHnNaPJ@fP=|0.f0.g>0.ne0.nf*0.nb Bg/./,NN, /.NBX`zHnHnN`P @m`D/,HnNDP/./,/,N /,NNX-@/,HnN PJ@fF0.g*0,g/. HlN\P?</./,NM `N0.g"Bg/./,NM| /.NAVX``&0,g/. HlN\PPBg/./,NMF `*0.g/.NAX``0,g/. HlN\P/,NMPX-@|/,HnNBPHn/,/.N& Bg/./,NL /,HnNP?</./,NL /.N@XN^NuNV/BX/././,N7 BgB/.NI /,NJX-@|/,/.NP/./,/.N# Bg/./,NI /,/.N P?< n/(/,NIz /.N=TXHlN]XJ@g0,gHlHl dNXFPRlN^NuNV0.f Hl vNdXBn`0.ABPRn0.nm/. ?.N"f\?<N4~T`BnBn`80. n /HnN PJ@g=|0.A0`Rn0.nm0.g*?</./,NH 0,gHnHl NWrP`"/,HnN P/./,/,N. /,HnN PJ@fPB,/,HnN zP?<N4T0,g@Bn`00.A0f0. n /Hl NVPRlRn0.nmN^NuNV g@Hlx?<NPN\?. /.?<NNP A HH?N2TA HA HH|YgA HH|Nf`0<fA HH|Nf*Hn4Hl 8NNvP?< n/(/,N?f `Hl LHn4N9|²9|°N^NuNV0,°g,Bl°/.NX9@®0,® lh(H9@¬`0,f/.NzX=@=@ @f0<`0. lhA-H nf"=l®0. lhA-H?,¬NT`. n(H?NT n=h0. lhA-H n hf n(H9@¬?NT0,²g?,¬?,®NpXSl²9n®NN^NuNV/.NlX/. NbX` n n HHAgb n H|?gT n H|*g 0<` `:`R ng nH|.f`R n g n H|.f`:`RR ng nH|.fl n g n H|.fT ng nH|.fR n g n H|.fR `H n n HHAg, n H|?g n H|*g0<`&`0<``RR nf n f0<N^NuNVBn`v?<\0. n /N9\-@f:?</0. n /N9\-@f?<:0. n /N9\-@ .g .R2. n Rn0.nmN^NuNVB?<N+T)@h ,h)@d ,h)@`0,f0,g Hl dN4XHlNX ,gHn/,Hl rN` `HnHlxHl ~NJ Hl HnN"P-@fHnHl NPBlp <-@)@¨BlvN4/./.NPNP`R?.NT/.?.NT\/.NX=@ @fN-@/.NX-@`&B¨ <-@-@-@0,g Hl N3XBgB/.N$ n1lv n!l¨BlpN؆ ,¨n ,¨n ,¨n0,g .¨/Hl N3jP0,g Hl N3ZXHlNX|0<9@vH)@¨`/. ?.Nf\/.N&X=@ @f n1lv ,¨ n!@ n!@` .lv .ll0,g ./Hl N2P0,g Hl N2XHlNX| n!n`/. ?.N\/.NX=@ @f` .lT0,g ./Hl N2RP0,g Hl N2BXHlNvX|/. /.NpP n!@`0,g ./Hl N1P0,g Hl N1XHlN"X| n!n .g6BgB/.N" `/. ?.N\/.NDX=@ @f`<=G=G`.0A첚02.nAcRn0A첚0nRG Gm0.R@=@B.BG`80A첚=P0.2.Ad ng0A첚0|RG Gm.fh no$BG`0A첚00RG GmLN^NuNV?>. UGHǏ`0. S@??/.NPSG Gl>N^NuNVH>< RG<. n<0nn|0nl&0 n?(0 n?N`XJ@gRG0 n??NFXJ@g60 n02. n00 n0?.?/.N`PLN^NuNV0.A첚02. A첚Pc0<`F0.A첚02. A첚Pf$0.A천02. A천Po0<`0<N^NuNVH><` n=PSn 0. n0 n00. S@?Bg/.NP n=P0A첚A&H0RG n07n7n0.A첚02.A첚P60.A천?0.A천?N>X"0<A7@0. S@?Bg/.NP n n8 n9PLN^NuNV0.n o0.`0. N^NuNV?BG`0A찖BPRG Gm>N^NuNVH>. A첞><. A철< GfX FfR0. A찖00<2<nh=@0,n2. A쮔0 no0.A첞><.A철< Gl0R@D@`0,G> Fl0R@D@`0,F</.?N@\/.?N4\Rn0.Sn0.0.nm0<2.AHLN^NuNVBn=|0,nmD nf0.`0,2<n`n0,6.h9@0.l0.|` lo0,2<n`n0,n llfBl nf0<`0.|`>/.NX9@l @f9|l0,lA쮔9P0,lA찖9P`0N^NuNV/. N:X-@`/. ?.N\R/.NX=@ @f .N^NuNVHlHlxNP)@f$0.gHlxHlN#JP`HlxHlNtP0.g"HlHlNP)@fHlHlNLPN^NuNV ,g /,NX0.g/,NXHlHlN>P)@g?,?,/,NаP/,NX ,gb0,g@HlN'LXHlHlxN%PJ@gHlHlxHlNٸ HlHlN"nP`HlxN' XJ@gHlxHl*NيPHlxHlN%HPJ@gHlxHlHlJNf N^NuNV0.@|2.. HA|A쨊6@N^NuNVBgNzT?<B/,N /,NX-@BgB/,N `h/,NXЮoHnHlbN!PRl`R`>HnHlN!PHlNXHnB/,Nf J@gRl` HlN!RX/,HnNӎPJ@f ll HlN!.X`" lf HlN!X`?,HlN! \N^NuNV?<NT)@h ,h)@d ,h)@`Blv n)hrBlpNŬ,H|g|g`*`/. ?.N\/.NX=@ @f``|g`*`/. ?.N\/.NlX=@ @f`X`|g`4/.NX`/. ?.N\/.NX=@ @f``|g`2BgNT`/. ?.N>\/.NX=@ @f``|g`2BgNT`/. ?.N4\/.NX=@ @f``|g`2?<NbT`/. ?.N\/.N|X=@ @f`l`|g``/. /.NdP`R0,g nA/HlNDPHlN:XRl?< n/(/.N& /,hNlX0<`B``/,hNXX0,v nhg"0,g nA/Hl&NPRl0<`0<N^NuNV. H??,vNX9@v/. . H?Nզ\N^NuNV0,p|g`2. H| @f9|p`/. . H9@?N\`N`|g`B. g`/. ?,Nt\S. f`/. ?<N^\Blp`?,pHlHNH\``N^NuNV ,rf0<`Sr/.NX?NTN^NuNV/.NX//.NX" AAN^NuNV9|c/.NX9@ lm lm HlfNԾX9|9|Bn`6/.NX2.A줄0/.NxX2.A줄1@Rn0.lmN^NuNVBn`zRl0, @o@/.N X9@l @f0<`Bl0<ll2.A줄A=P`,0,l@9@l=@0<n2.A줄A=P nl~0.R@D@=@ nf0<`0.=@0.N^NuNV?.NT nn0<`?.?<>NX9@2g0<`0<N^NuNV nam nzn 0.| ``0.N^NuNVHl/.NPJ@g`Hl/.NPJ@gNHl/.N~PJ@g\=@0.N^NuNV?.?<LNXN^NuNV/ A&H`0+ |g/ N*X A"Ҽm?.NT&_N^NuNV/ &n/ NDXJ@g0<`00+ |g /+NXBk ?+ NhTJ@g0<`0<&_N^NuNVH&n0+ |f0<`.0+ |gV0+ |f0<`v0+ |g?<B?+ NP?/+?+ NP @f0<`@k 0Hѫ`$ k o?<0+D@H/?+ NXP'@&Bk0<LN^NuNV/ &n0+ |fk@ 0+ |`g0<`&Bk`R0+ |g A̐A잀A &'@`*0+H/NzX&'@ fk `k g-K?<?+ B?<BN n!@& k f HlN~X0+ |g0<`0+?/?+ NP7@Sk0+ @l kfk `k@ Bk0<` SRH|&_N^NuNV/ &n Bk0+ |fk@ 0+ |@g0<` `R0+ |g A̐A잀A &'@`*0+H/NNX&'@ fk `k g0+ |g SR k `<0+ |g2k SR . H| g kl . H|`T/ N,XJ@g k@ 0<`<0+ |gBk. H|`"` 0+S@7@k . SRH|&_N^NuNV/ &n 0+ |f f0<`Rk. S SH&_N^NuNV nSh0( @m n R @H|` /.N*XN^NuNV n Sh0( @m. n "R AH|`/. . H?N\N^NuNV fBC`&SCdTC0|g0|gԼdRC`|CHBC0|@HB LN^NuNVNVH n " n $&JjFFJjFFLN^@hNuNVH n"n $0(H@6C|g.0)H@:E|gE|BB0<まef bRAQ$0P`HNVH n$0(H@6C|gd"n .0)H@:E|gD|E(HD*HE20HGHBBB8:BGBBЇӄЂӅJg$0P`B`NVH"n 0<9@fQ`NVH"n Blf n,0(H@8D|fB.0)H@:E|fB2$60Enfl8,:.6$0Jg0Eg|n0@gDԇ0,fQ fBB`HSCdTC0|g0|gԼdRC`|"|CHB|C0|@HB AHABA LN^NuNVH0.|=@n n f n0H-@HnNXA-H`> n(g nf. n-P n(f HnNX` HnN>XA-H/./. 0.AB PNPLN^/W DhNuN^NuNVH nB fB`м8 LN^NuNVH n$fBCB`nD6< f႖|NzN^NuNVH0&n$n Bn-J @)P^)hb-l^-lbBEG>O|g|JGn|m` REHlx/ NRPO`SEHlx/ NPO`&0+H@JGgDG0<0dR@0.BAQ,>QQֆG|0QB`Rn0.g$nB`0R 2.HmB`b .6.HЃR$@ nH|0fRZ"` R"H|9n nH|0f$n R&@fSE .6.HЃ @B n0L N^NuNVH0&n BnH|bf=| RH|rgH|wgH|ag <`F ,>$@ f*A$H`0* |f` A"Ҽm A"Ҽm <`B>Bj Bn+H|+f =|j H|wf?./.N\>j `hH|afB0<n?/.N \\> @f?./.N|\>?<B?NPj `0.n?/.N \>j Gf Bj <`05G Bj <$%@?<B?* NTP%@5l L N^NuNV)n>/.NX/. /.NLPN^NuNVH&n>. <`N nSh0( @m n R @H|` /.NX=@ @f 0FH ` 0.SF Fn no0.`0<LN^NuNVH>. <`,/. nRH?N \ @f 0FH `SF Fn no0.`0<LN^NuNV/ &n/ N*XJ@g0<` k ?./. ?+ NP'@0<&_N^NuNV/ &n +"Ё"+&_N^NuNVH0&n$K`0.H| f`HSn 0. @o: nSh0( @m n R @H|` /.N:X=@ @fB nf f <` L N^NuNV`H0BnBnBB9| nRH|=@ .&@$@BG`TH| g(H| gH| gH| g H| f0.f0.gBnB` `H|"f< nfBn`*0.f 0.f=|0,RlA` `"`H|'f: nfBn`*0.f 0.f=|0,RlA` `'`r0.fj0.fd=|H|f. R @H|>f T-@=|` R-@Bn`0,RlA`  R0RG0nmB .g,A H1| A H1|HlHl/.N@ .g2A H1| Hl0.gA `A //.N 0,R@H/?<HN\)@><`0A` 2 l RG0lm l 0, lBL N^NuNVH$.f BB`J". BnJlVnDJlRnDvd`Bbd nmDdD-@-A LN^NuNV/BnJlRnDJ lRnD 0. -@0.n0. nngD -n N^.JNuN^NuNV nl <`?.?./. ?<BN8 -@ m .`?<?.B?<BN -@?<?.B?<BN -@ nf .Ю -@ `$ nf .Ю -@ `0.g <`b . oHn . /?.?<@N Bg?./. ?<BNx ]|9@2g <` `Bl2 . N^NuNVH0><2.|SA¼0?N T&@f <` $@5G \/NX ,4L N^NuNVH0><2.\ASA¼A ,4$@ fA8 $@)@4)@8Bl<&R0+Ge*0+Gf$`0k0+7G)J4 \`, 4f?NT&@ f <` $@ &@`L N^NuNVH0 .]&@$l4` m n l`$R o l 2+Ёf R0(k R&`& 2*Ёf 0+j$`$)J4L N^NuNV/.?<HN\N^NuNV/.?<IN\N^NuNVBn`60.A0f"0.A00.A0 ` Rn nLmN^NuNVBn`&0.A0nf0.ABPRn nLmN^NuNV?>.=|0A"HPgXHf0(>N^NuNVHl/.N PJ@f =|`Hl/.N PJ@f =|`Hl/.N PJ@f=|`f0. |g0/.N XJ@g0<``Bg/.?<NLX0. |?/.?<=N4P=@9@2 @l0<`0. | ??.N~X0.N^Nu)I)J)_NA"l$l/,NuNVH&n Bn0.|dg`>< `.`|ug`>< ``|og`><``|xg`>< l* ndf SR- .D-@`0. f Gf .`& Gf .` ./0H/NX 2.RnA0 Gf .`( Gf .` ./0H/N X-@ .fp`FSn0.A P m0.A0| |A`0.A0|0 SR0.fLN^NuNVH&n n f=| )n^)nbHlHl^?<N]|@0. R@?HnHnHnN.g SR-.H|0f.f SR`J nff>.n RG0ljo0,j`0> Gl0<`0?HnHnHnN BF`0RFA SRSGSn0g nl` SR0Sn nl0. g SR.` SR0RnSn 0. g nm`" Go0RFAH`0<0 SRSG0. Sn J@f`` SR0. g SR.><`0RGA SR0. Sn J@f SRE?.Hl/N: /NXHѓLN^NuNVBn`"0. n PHC|0=@ nR n PH|0m n PH|9o0.N^NuNVH0&n -n @$PX`R` nRg H|%fH|%f,RBn=|Bn| H|-f=|RH|0f|0R-JHnN$X=@$nH|.fR-JHnNX=@$nH|lf=|RgH-n Gdg Gog Gxg GufB0.g @ ` @0H/Hn?.?NV 0.g0<`0<H` Gcf R @ nRT` Gsf4 @-PX<.` nR nRSF0g nf`J Geg Gfg Ggf, @)P^)hb/,b/,^Hn?.?NP` 0 nR .nl0.g$<.".A` nRSF0f`b .2.SAHЁ-@-@,.` .2SAHЁ @ nSSF0f` nR .o .R-@f nB .L N^NuNV/. HnNhP=@/.HnN8P0.N^NuNVHnHlNPN^NuNVHn /.N&PN^NuNV`/. nRH?N\ nfN^NuNV nf:0,lf0<9@9@`?<NT=@ nf*0,g Sl?<?<NX?<D?<NX` n f00,RlA윦 ?< ?<NX?< ?<NX`v nf ?<NT nf20.2,RlA윦?< ?<NfX?< ?<NXX`*0.2,RlA윦?.?<N4X0<fA윦윢H|f0<`0,RlA윦H`` nf?<NT``0. `Rg HGfg ` <`LN^NuNVH0&n>. $|`HGf$KRf `L N^NuNV/.?<AN\9@2g0<``0<N^NuNV`4 nH| f?< ?<NX nRH??<NX0. Sn J@fN^NuNV` nRH??<N`X0. Sn J@fN^NuNV` nRH??<N2X0. Sn J@fN^NuNVH0&n $KA-H nf?./ N4\=n`L nf?./ N`\=n`. nf?./ Np\=n`-KBn?.NTJ@f`H| f |o@ H-@/./.?.?<@N\ 9@2Hg0<`0,2n/./<?.?<@N& 9@2 @g0<`tRnR -@`R ned` 6.ƼЃ$@ H-@/./.?.?<@N 9@2Hg0<`0,2nBl20.L N^Nu9|9|9|9|9|9|9|9|9|CA r"A v"A z"A ~"A "A "A "A "A "A "Aj "A "9|C222222222C2222222?22A`)H\9|9|¾C쨊2222@2222A2222A222ā2@22 2 2A222΁2@2 22ˁ2 @22 22A2222A222ځ2@222߁2@2222A222Ձ2@2222A2222A222Ё2@220212A232222@262227@225242A2<222=@22?2>2A22:2;2A292228@2(222)@22+2*2A22.2/2A2-222,@22$2%2A2'222&@2"222#@22!2 2A22`2a2A2c222b@2f222g@22e2d2A2l222m@22o2n2A22j2k2A2i222h@2x222y@22{2z2A22~22A2}222|@22t2u2A2w222v@2r222s@22q2p2A2P222Q@22S2R2A22V2W2A2U222T@22\2]2A2_222^@2Z222[@22Y2X2A22H2I2A2K222J@2N222O@22M2L2A2D222E@22G2F2A22B2C2A2A222@@C"2"2 2"2"2"22"2"2"22"2x9|)lx)l|)lt)ll)lp9|jCBA"A"A"A$"A*"A"A ")|>)|49|9|Nu(C) COPYRIGHT 1985,86 by System Enhancement Associates; ALL RIGHTS RESERVED Please refer all inquiries to: System Enhancement Associates 21 New Street, Wayne NJ 07470 You may copy and distribute this program freely, provided that: 1) No fee is charged for such copying and distribution, and 2) It is distributed ONLY in its original, unmodified state. If you like this program, and find it of use, then your contribution will be appreciated. You may not use this product in a commercial environment or a governmental organization without paying a license fee of $35. Site licenses and commercial distribution licenses are available. A program disk and printed documentation are available for $50. If you fail to abide by the terms of this license, then your conscience will haunt you for the rest of your life. ARC - Archive utility, 5.12 - Atari ST Usage: ARC {amufdxerplvtc}[bswnh][g] [ . . .] Where: a = add files to archive m = move files to archive u = update files in archive f = freshen files in archive d = delete files from archive x,e = extract files from archive r = run one file with arguments from archive p = copy files from archive to standard output l = list files in archive v = verbose listing of files in archive t = test archive integrity c = convert entry to new packing method b = retain backup copy of archive s = suppress compression (store only) w = suppress warning messages n = suppress notes and comments h = hold screen before returning to Desktop g = Encrypt/decrypt archive entry Atari ST version developed by Harvey Johnson press any key to continue ARCTEMPTEMP.ARC.$$$.BAKAMUFDXEPLVTCRCannot mix %c and %c %c is an unknown command I have nothing to do! I don't know how to do %c yet! press any key to continue =*.*No files match: %s No files were added. Duplicate filenames: %s %sCannot unsave %s brCannot read file: %s Updating file: %-12s Adding file: %-12s Adding file: %-12s %s\ARCTEMP.CVTARCTEMP.CVTFile not found: %s bw+Unable to create temporary file %s Converting file: %-12s reading,Cannot unsave %s You must tell me which files to delete! Deleting file: %s File not found: %s \\File not found: %s Extracting file: %s brWARNING: File %s already exists! Overwrite it (y/n)? %s not extracted. bwCannot create %s brAn entry in %s has a bad header. %s is not an archive %d bytes skipped. Invalid header in archive %sI don't know how to handle file %s in archive %s I think you need a newer version of ARC. Write fail (disk full?) press any key to continue Name Length Storage SF Size now Date Time CRC = = = = = = = = = = = = Total %6ld %8ld %3d%% %8ld File not found: %s JanFebMarAprMayJunJulAugSepOctNovDec%-12s %8ld -- Packed SqueezedcrunchedCrunchedUnknown! %3d%% %8ld %2d %3s %02d %2d:%02d%c %04x File packed with %d bits, I can only handle %d Stack overflow analyzing, ARCTEMP.CRNARCTEMP.CRNbw+Unable to create temporary file %s (%ld) storing, (%ld) packing, (%ld) squeezing, (%ld) crunching, Cannot delete temporary file %s done. Bug - bad ncr state .RSCbrTemporary file %s already exists bw+Unable to create temporary file %s Extracting file: %s .*File not found: %s I have nothing to do! Cannot delete temporary file %s .TTP.PRG.TOSbrTemporary file %s already exists bw+Unable to create temporary file %s Invoking file: %s%s Cannot delete temporary file %s brCreating new archive: %s Cannot read archive: %s bwCannot create archive copy: %s brCannot rename %s to %s Keeping backup archive: %s Cannot delete old archive: %s Cannot rename %s to %s Archive truncated in file %s Testing file: %-12s okay No errors detected One error detected %d errors detected I don't know how to unpack file %s I think you need a newer version of ARC WARNING: File %s fails CRC check Bad NCR unpacking state (%d) File has an invalid decode tree CON:AUX:PRT:@$??rawCON:AUX:PRT: %d A#a0 #b0 #c7770007000600070055200505552220770557075055507703103 #d - #E 1B 02 #W 00 00 04 03 4A 09 09 A:\*.*@ #W 00 00 0D 08 2A 0B 00 @ #W 00 00 0E 09 2A 0B 00 @ #W 00 00 0F 0A 2A 0B 00 @ #M 00 00 00 FF A FLOPPY DISK@ @ #M 00 01 00 FF B FLOPPY DISK@ @ #T 00 06 02 FF TRASH@ @ #F FF 04 @ *.*@ #D FF 01 @ *.*@ #G 03 FF *.APP@ @ #G 03 FF *.PRG@ @ #F 03 04 *.TOS@ @ #P 03 04 *.TTP@ @ #A:\STT_MISC\ARC.TTPmA:\STT_HELP\tA:\}A:\}A:\}A:\STT_AUTO\tA:\}A:\STT_MISC\TRANSFER.TTPhA:\STT_MISC\KERMIT.TTPjA:\STT_MISC\ST-TALK.STFiA:\STT_MISC\DO-IT!.PRGj`۞1ZNNdPN N""NjNiNj4NnN_NZ*N FNtN_NYNvNhNnNh6NNgNk,NnNgNh NhNNNqNqNNN_NNNcNfNmN 2N_N ,NfJNe,NLN @NNdNeDNjNq NnNKN]NV(N>Nd4NYNpNgNnNiN bNNHN $Ng8N N NHjN N NgZN NNhNGNI:NiNLNKN"NhbN N vNdN NHXN,N N vNgNDN ~No8NaNoNDN N N TN lNaNdNn:NjdNqN`NsJN`N0NRNFNN4N|NNNNdNǰNNBNNNNNNNxNLNNN҈NNDNNNnN$NVNNnNBNeNDNNgNdNb`NCNMNXNGvNhNcZNnN^NRNSNFjNDNBNEPNWNPN^NXtNeHNgNTNINdfNVNMNcNbNNFNNxNNNNNNNhNBNNNnNNŨN"NNN NNˌNrNNNN&NzNNjNNNN NZN)N)|N9zNbNDNdNgdNNRN`NN\LN`NVNixNNNHNhNQNgNNNNN N$NѐNؒNJNN@*O*m - ЭЭмQ"ҍ¼.A// Bg?<JNA m"m -So Q m -SBQ(m)M*mNv lHhNJ"X/,?,NG\?<NY?<A?<NAXNuNVJBTBP-|LBnJ`\/0,NufA9oN AjC!IC!IC!IC!I C!IC!IANANtA)oNbANV0<NANB o 1l o1l o1l o1lNu0<NAN o1l o1l o1l o1lNu0<NAN0<NA )X9X9XAN o(1l o,1l o01l o41l o81l o<1lNu4A)oN6)oAN@ o1l o 1l o1l o1lNu3 0< NAN2A9oNI0<NANF0<NAN o 1l o1lNuJ0<NnANL0<NtANNAN$MANr o1l o1l o 1l o1lNuOAN#AN/0<NAN*0<NAN+0<NAN,0<NAN o 1l o1lNup0<NA1|AN o NunAN,oANd0<NFANvl0<N2ANb o1l o1l o1l o1lNue0<NAN$h0<NAN o1l o 1l o1l o1lNui0<NANgANkAN0<NvANA9oN*!A9o9o N A9o9o NN^NuNV?<NNTN^NuS@// / "o ol4g f0` QJlpgB`0,jS@4gBBBBBBBBBBBBBBBBBBgB`BX QJlfP "_NuS@// / "o oli4g f0`iQJlpgB`0,jS@B(gBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBgB`BXB(QJlf "_Nu/ Jlfn lFgf0,h@@ lJlϲg l2,ϲl"H2,lHJlϲg0,ϰlϲlHS@0Qp0,lHHSBBQJlFg"_Nu l"",dj0ϲ"H0,ϰlϲjJlpg",d0,ϰlϲ@j@9|Jlpg9lj$l\N4g"< Qf0`ّQ0,jS@4gB"<BQgB`BXQNui4g"< Qf0`i**Q0,jS@B(gB"<BBQgB`BXB(*QNu/ / Jlf` lFgX l0,ϰlhlHU"H0,lH0,ϰlϲgflHS@H0UUQp0,lHHSBPUQJlFf8 l"",djH ϰd"H0,ϰlϲg2,j@$lXN"_$_Nu2gBBBBBBBBBBBBBBBBBBgB`BX QNu(B(2gBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBgB`BXB(QNu/ Jog^ lFg4A0,@00 lH0/lHHS@BXQJlFg"_Nu l&S0,jJ@gS@"lTNBl"_Nu,og l"Sp0,hj",dB`NV n lBn 0. llm 0,lS@=@ nlBn0.lto=lt0.lo=l0.lvl=lv0.ltmBl 9n )l"&0.9@j",dѬ&N^NuNVSl0, @lBl`n0,gSl0, @lBl`T0,=@??,N*X lf8=lLBlL?< NrT0,g ?< NbT9nL?.?,NXN^NutgtH2,jSA lnf(dQNu$lB02H,g(,g(dQNu@"lB21H"l>B412,jSA lnf@@HdQNu0fF,gB@(@@H,gB(@(@@H@dQNu,gB@(@@H,gB(@(@@H@dQNuJlJfNu/ p" l&0,"lPN"_Nu"<$<g2<4<@$lB02H l f CJlg@?, g0BgDgFD3`0BgDgD30AJlf6JlgJlgDJCfJl gDJlggDU`D,g((Jl g((,g((Jl g((Jl g CCjNu"<$<g2<4<H l f lhg C`Jlg>?, g0BDgDgD3`0BDgDgD30AJlf6JlgJlgDJCfJl gDJlggDU`DJl g (P(PCPCjTNu@$lBr$(22$l:22$l>42FB l f lhg C`@BxJlf8Jlg Jlg DJCf Jl g DJlggDU`DJlgj, g2?0BDgDgD0gD gD0`0?0BDgDgD`gDgD0dDJl g@PCHJl g @PPPCj Nu@$lBr$(22"<$l:22$l>B42F/ l f CB0f0@((E(ʂxJlgj, g2/ BgDgD0gD gD `0/ BgDgD`gDgD Jlf8Jlg Jlg DJCf Jl g DJlggDU`Dl,gD,gD@EJl g @ECHMEJl g@ECj*Nu@((E(ʂxJlgj, g2/ BgDgD0gD gD `0/ BgDgD`gDgD Jlf8Jlg Jlg DJCf Jl g DJlggDU`Dl,gD,gDE@Jl g E@CHMEJl g@ECj*NuB/H`JlHgdJlg ?NVT`N @ jL_@kB @n: @g @f Bl Blg @fBlBl Bl` @fN` lFg\Ar2,A20l lJlFg:Rl0,llf&JlLfl`Bl0,ϰlfN.`RlLNu l&"l60,H6,jSC$l`NRl lf0,llg(9|B&/` lf9|0,llf)@?<?<NNX @)@)P 9h ,x1@"1@ 1A BN^NuNV l 1lBN^NuNVBlBlBlpBlBlBlBlBl9|N9|H9|J9|L9|9lŔn=|`A(|Pn nmAҀ)HFA")HBlzN)@ ,м )@&9|Pl9|h0<PnH)@dNH lnfT ,)@6)@29|jA$ )@BA )@`A )@\A8 )@XA )@TAp )@PR&`V ,)@6)@29|jA )@BA )@`A )@\AJ )@XA )@TA )@P&A )@:A )@>)l&")l6. ,6м)@*N?<NTN^NuNVHA )@P lnfA )@`A )@B`A )@`A$ )@B9|Pl lng0,g ,)@6)@2` ,)@6)@2)l6. ,6м)@* ,&@BG`BRG GmBgBgNXLN^NuNVH0<9@ 9@A )@P lnfA )@`Ad )@B` A )@`9|l lng0,g ,)@6)@2` ,)@6)@2)l6. ,6м)@* ,&@BG`BRG G mBgBgNXLN^NuNJ@fNuN$N4N?NxTNJ@g&/<,`NJ@gN/?NRT,Q,NNu @g, @g" @JgpNupNuNVH>.0,vg0|g?N76T0<``:|BF`V02 lPfB0 l hg&0 l/(0 l?(N\0<`RF0 l hn0|g0 loG20,@NGN`0N0<`l0|f^ G;mB GDn<0@>|; l0|g|` l0|g|?NT0<` GTm& G]n 0@>0|T| ?NT0<`0|/g` Nb``|ag|-g`?<%NhT``|bg`?<yNhT``|g`?<HNhT``|0g`p0,\|gRl`Sl l oBl0,f9| `. lf9|` lf9|` lf9|?,NxTN~``|.g```| g` lf9|`9|N~``|g`NtN~``|!g```|"g`?<HNhT``|#g` N``|g` Nz`|`|$g`0,pgBlp`9|p`\`|%g` Nz`J`|&g`0,ϮgBlϮ`9|Ϯ`*`|2g`?<WNhT``|1g```|g```|g`?<aNhT``|g`?<NhT``|g`?<NhT``|g`?<NhT``|g`0,vW|?N2bT`v`|g``j`|/g`Nb`Z`|g`0,LgBlL`9|L`<`|-g`?<%NhT`*`$`|g`0,2gBl2`9|2``|,0<LN^Nu?aTNuNV9|9|9| 9|3 9|9|(9|N^NuNVH&n>. BFBnBn`02 KPf0<9@\9@Z0 K hH|~f@0.fBlXBE`ApH0f` D;fH0.Rn l6~02.Rn l6RlXAqH|f =|`Bn`r D0m D9o02.Rn l6Bn`N0.g.0,XAZ0 02|00,XAZ0A0`=|0|02,XAZ0RE0lno$0.gRlX0.Rn l6~ l6B=|?< 0 K/(/,6N: 8` ?< 0 K/(HlpN: 80f.0 K0(: @m0 K/(?N\`<8 K8(RF Dl@`"0 Kh0 K hnLN^NuNV` nRH?Bg?<N9*\ nfN^NuNV=| =n lPf6 nfHlNX`` n d?<^Bg?<N8\n@ lPf n d n g n g` n fH lJf&?< Bg?<N8\?< Bg?<N8|\`` lJf=| ` lJf`f n fF lLf$?< Bg?<N8<\?< Bg?<N8,\`4` lLf=| ` lLf` nc?.Bg?<N7\N^NuNVH>.BE0,Rg0,zg0,Pg0|?N|T lo|0,g?NT lzf Gf0,g?<NhT`@0 lFhl20 lF0(: @m0 lF/(?Nb\`00|?NT lo0,U@9@f)l.6`)l*6` lzfpBF`R02 lBPf>0 lB0(: @m0 lB/(?N\`` El`r`RF0 lB hnBlz`T lzfH G0m G?o?/,>N \Blz`(02,nRlnApApnB l noBlz`BlzLN^NuNVAϴ)H|Aϴ)HxAҀ)HtN^NuNV ,$)@FBlzN^NuNV ,$)@B9|zN^NuNV0<9@n@p ,$)@>9|zN^NuNVN^NuNVN^NuNVN^NuNVB`N @l`R m m`hN|| 9@B`N @l`R m m` Nt|| 9@?,?,NXN^NuNV`R l$R$@H|^f$ l$R$H|@@H @f`".H??<?<N4\ l$fN^NuNV`J l$R$@H|^f$ l$R$H|@@H @f`.H?N>T l$fN^NuNVN^NuNVN^NuNV=l=l0<9@9@ =l9|BlFBg?,vNX0,tlvR@?NT?.?.NdX9nN^NuNVNBgBgNHXN^NuNVBgBgN6XN^NuNV=l9|9l=lLBlL9l`?< NbTRl0,llo?,?,NX9nL9nN^NuNV=l9|BlF=l=lN|Bg0.R@?NX0.ltl0,tn?NT?.?.NrX9nN^NuNV=l9|=l?<NT?.?,N:X9nN^NuNV=l9|9lBl=lLBlLBl`?< N^TRl0,lo?,?,NX9nL9nN^NuNV=l9|BlF=l=lNzBg?,vNX0.lvo0.lv?NT?.?.NrX9nN^NuNVN^NuNV=l9|=lϲ=l=l=lpBlp lZf9|Z9lϲBg?,ϲNXBn`0,ϲlϰf N`NLRn0.lZm9nϲ?.?.NX9np9nN^NuNV=l9|?<NT9nN^NuNVN^NuNV=l=l lZf9|Z0<9@9@ 0,2,ϰRAAf N`0=lϲ9lϲBn` NBRn0.lZm9nϲ?.?.NXN^NuNVN^NuNV0,ϲlϰf N`NDN^NuNV0,ϲlϰf Nl`NN^NuNVN^NuNVN^NuNV lZf9|Z0,lZ=@0<9@9@ 0.lϲl=lϲ?,?.NjXN^NuNV lZf9|Z0<9@9@ 0,lZ=@0.lϰo=lϰ?,?.NXN^NuNV lZg lzf9|Z0,lZ??,NXN^NuNV lZf9|Z0,lZ??,N޸XN^NuNVN9| N^NuNVN=lL9|LN9nLNN^NuNVN9| N^NuNV0, g N`H0,lϲf0,ϲlϰf N`N>`Sl?,?,NX0<9@9@ N^NuNV0,lϰf0,ϰlϲf N`N>`Rl?,?,NX0<9@9@ N^NuNVN^NuNVN^NuNV lZn9|Z l\n9|\0,Ϭg 0,ϲlZ0,\S@?0,ZS@?NdX0<9@9@ N^NuNV lZf9|Z l\f9|\0,Ϭg 0,ϲlZ0,l\?0,lZ?NX0<9@9@ N^NuNV9lV9lTN^NuNV?,V?,TNX0<9@9@ N^NuNV lB(0,R@?HlN6\//,NPHl/,NP0,R@?HlN6\//,NPHl/,NP)l$NN^NuNV0,R@=@`A(H||f`Rn nm?.?,NXN^NuNV0,f`D0,S@=@`A(H||f`Sn nl?.?,N۲XN^NuNVA( N^NuNVBn`A( Rn nmN^NuNVA(|N^NuNV lZn9|Z l\n 0,R@9@\0,Zlo 0,R@9@Z0,\lo 0,R@9@\0,ZS@9@ϲ0,\S@9@ϰ0<9@\9@ZN8N^NuNVN^NuNVN^NuNV)l.6TlN^NuNV)l.6N^NuNV)l.6TlN^NuNV)l.6N^NuNV)l*6TlN^NuNV)l*6N^NuNVN^NuNVN^NuNV9|BlBlBl Bl9|N^NuNVBl9|N^NuNVBl9| N^NuNVBl lnf 9|`9|N^NuNVBl9|N^NuNV lnfBl9|`9|N^NuNV lnf9|N^NuNV9|9|N^NuNVBlN^NuNVBn`0.RnAZ0`|g`N``|g`N`j`|g`NBl`N`|g`NLBl`2`| g`N Bl``|!g`NBl``|"g`NBl``|#g`NBl``|$g`NBl``|%g`9|9|Bl``|(g`9|Bl`d`|)g`9|9|Bl`@`|*g`9|9|Bl``|+g`9|9|Bl``|,g`9|9|Bl``|-g`9|9|Bl``|.g`9|9|Bl``|/g`9|9|Bl`h`|g`N`P`|g`N`8`|g`N` `|g`9|``0,XSlXJ@fJBlXN^NuNV l$H|09@ 9lr9|NDN^NuNV9lr9|Bl N(N^NuNVBl 9lrBlNN^NuNV?<?<?<N&\N^NuNV0,Ϯf?< NތT0<9@9@ N^NuNV?< NnT0,Ϯg?< N\T0<9@9@ N^NuNV?< N>T?< N4T0<9@9@ N^NuNVN^NuNVN^NuNVN^NuNVN^NuNVN^NuNVN^NuNVN^NuNVN^NuNVN^NuNVN^NuNVN^NuNVN^NuNV9|ϮN^NuNVBlϮN^NuNV9lϲv9lϰt9|ϬN^NuNVBlv9ltBlϬN^NuNV9|pN^NuNVBlpN^NuNVN^NuNVN^NuNV9|LN^NuNVBlLN^NuNVN^NuNVN^NuNVN^NuNVN^NuNVN^NuNVN^NuNVNDN^NuNVNN^NuNVA)H$NN^NuNVA)H$NN^NuNVA )H$NN^NuNV0, f` NP9|N^NuNV0, f` BlN>N^NuNVN0<9@ϲ9@v0,9@ϰ9@tBg?,vNXN*N^NuNV)l2.0,f)l26N^NuNV)l2.0,f)l26N^NuNV ,2м)@.0,f ,2м)@6N^NuNV ,2м)@.0,f ,2м)@6N^NuNV)l2* lf)l26N^NuNV)l2* lf)l26N^NuNV ,2м)@* lf ,2м)@6N^NuNV ,2м)@* lf ,2м)@6N^NuNV lg lfA")H` lfA)H` A)HN^NuNV lg lfA)H` Aߚ)HN^NuNVNԂ9lZ0,gf lnf\ l0hgN0<9@ 9@0</9@t9@9@ϰ9|0h ,)@6)@29|jN?,0,|?NX`h lnf^ lhgT0<9@t9@9@ϰ9|h ,)@6)@29|jN lo l`Bl?,?,NbXNӦN^NuNNNNNNN NNNhNlNpNXNXNNNNNRNrNNrNNNN.N2N6NNNNrNNNNNtNNNNjNNNN8NHNNNNNNNNNN NNN4NBNPNrNNNNNNNNNN$NPNtNxN|NNNNNNNNNNNNNNNNNNNN NNNNNN"N*N2NBNRNbN|N&NNNNNDN^NxNNNN:NN0NNN)o$B0/HANNV` nRH??<?<N\ nf?< ?<?<N\?< ?<?<N\N^NuNVBl=l=lR=lFBlR9|NnNN9|FBlJNA-H9|/.NXBl lng 0,gA&-H` AR-H/.NX lng 0,g2A-H/.NvXA-H/.NdXA-H`.A0-H/.NFXAj-H/.N4XA-H/.N"XA-H/.NXA-H/.NXAb-H/.NXA-H/.NXAP-H/.NXA-H/.NXA*-H/.NXA-H/.NXA-H/.NXA`-H/.NnXA-H/.N\XA<-H/.NJXA-H/.N8XA-H/.N&XAt-H/.NXA-H/.NXA,-H/.NXA.-H/.NX9|A0-H/.NX0<9@9@AL-H9|/.NXNT9|6N\Bl6BlR`DHl Hl HlR?,ʒN"?<?<NX l?<?<NX` 0,RgBlRA-H/.N(X9nF9|JN69n9nRNnN^NuNV/ &nN`9|FH?NNTf0,f"9|F?< N0T9|F?< N T&_N^NuA`)H0<ABQ9lJ9|0, @9@9|9|AN9lZ9lX9l9l^NuNV l0f N^NuNV l0g l0 N^NuNVBn`0.RnA0 n m9|09lʔʒHlŪHlʒHlN z lŪlBlŔ` lŬo9|Ŕ9|Œ` 9|ŔBlŒN^NuNV=n=n 0.n =@0. n=@Hn?<?,ʒN PN^NuNV?,ʄ?,ʂ?,ʆ?,ʈNP0,6fZBgBg ,Ō? ,Ō/ </N X??<BgN ?,ʄ?,ʂ?,ʆ?,ʈ?<Bg/,ŌN€`XBgBg ,ň? ,ň/ </N X??<BgN~ ?,ʄ?,ʂ?,ʆ?,ʈ?<Bg/,ňN& lŔf,0,ʈV@=@0,ʆT@=@0,ʂ|8=@0,ʄ]@=@`&=lʈ0,ʆS@=@0,ʂ|0=@0,ʄR@=@?.?.?.?.?< NB 9@ʐ0,6fBgBg/,H?<?,ʐN `NB?,ʄ?,ʂ?,ʆ?,ʈ?,ʖ?,ʘ0,ʆ2,ʄHA?0,ʈ2,ʂHA?Np?.?.?.?.?,ʐN Hl|HlzHl~Hlʀ?<?,ʐNBgBgBg?<?<?,ʐN$ BgBgBg?<?<?,ʐN BgBgBg?<?< ?,ʐN N^NuNVNHnHnHnHn?< BgN`HnHnHnHn?< BgNh0.g0.fNN^NuNVNN^NuNVBgNTNzBnHnHnHnHnNRn nf nBlNB?<Nf\BgHl ?<GNP?<NT|A@|: HlʖHlʘHlʜHlʚN49@ʔHlʄHlʂHlʆHlʈ?<BgNlN lŔf Hl!?<N\?,ʒNTN`ZBgNT lŔf$Hl!NX=@0.fHl!NX=@`Hl!NX=@0.f8 lŔfHl!?<N\`Hl!?<N\?,ʒNFTNd`HlŌ?<BgNP lŌ1lʈ lŌ1lʆ lŌ1lʄ lŌ1lʂHlň?<BgNP lň1lʈ lň1lʆ lň1lʄ lň1lʂHlńBgBgNPBlŀN?<uNTN NNN?<NT?</,ńN\Bl6NNTNNN"NvHl" BgN|\Hl"ZNpXHl"dNXB?<N|\N?f`D loG20,@N~GN:`0N2 lf?N̢TRn nmBn`0.RnA츂B nm0<9@z9@|N>N^NuNVNzN^NuNVNzN^NuNVNzN^NuNVNzN^NuNV?.NT nn0<`?.?<>N.X9@Pg0<`0<N^NuNV?.?<LNXN^NuNV/ A짞&H`0+ |g/ N*X A짞"Ҽm?.NT&_N^NuNV/ &n/ NDXJ@g0<`00+ |g /+NXBk ?+ N,TJ@g0<`0<&_N^NuNVH&n0+ |f0<`.0+ |gV0+ |f0<`v0+ |g?<B?+ NFP?/+?+ N P @f0<`@k 0Hѫ`$ k o?<0+D@H/?+ NP'@&Bk0<LN^NuNVH$.f BB`J". BnJlVnDJlRnDvd`Bbd nmDdD-@-A LN^NuNV/BnJlRnDJ lRnD 0. -@0.n0. nngD -n N^.JNuN^NuNV nl <`?.?./. ?<BN -@ m .`?<?.B?<BN| -@?<?.B?<BNb -@ nf .Ю -@ `$ nf .Ю -@ `0.g <`b . oHn . /?.?<@N Bg?./. ?<BN ]|9@Pg <` `BlP . N^NuNV/.?<IN\N^NuNVBn`&0.A 0nf0.A BPRn nLmN^NuNV?>.=|0A "HPgXHf0(>N^Nu)I)J)_NM"l$l/,Nu)I)J)_NN"l$l/,Nu)I)J)_NA"l$l/,NuNVH0&n$n >.-K`fS`0SGJ@g fB .`L N^NuNVH0&n$n `RRgHHAgHHC`L N^NuNVH0&n$n >.`RRSG0ggHHAgHHC`L N^NuNV n "n fN^NuNVH0&n$K`Rf `L N^NuNV n R @H=@` n R @H=@ n g n g n g0.N^NuNV=| nxg nXf n f0<`f n0m n9n0.|0=@`2 nam0.|a| =@` nAm0.|A| =@0.n o0<``0.N^NuNVBnBHnNX=@ n-f0<=@ nRH=@`0 ./0.H/Nd 6.HЃ-@ nRH=@?.?.NX=@ @f g n 0.g .D` .N^NuNV?< /</.N@ HN^NuNV .9@@ .9@BN^NuNV .9@D .9@FN^Nu)I)JHl2)_Hl" <sNB"l$lNuNV9n 29| 2Bl49|89n>N0,2N^NuNV9n 29|2Bl49|89n>N0,2N^NuNV9n 2Bl49|29|4Bl89n>NZ0,2N^NuNV9n 29|2Bl49|89n>N.0,2N^NuNV9n 29|2Bl49|89n>N0,2N^NuNV9n 29|j2Bl49|89n>N0,2N^NuNV9n 29|2Bl49|89n>N0,2N^NuNV9n 29|2Bl49|89n>N~0,2N^NuNV9n 29|2Bl49|89n>NR0,2N^NuNV9n 29|h2Bl49|89n>N&0,2N^NuNV)n)n .мZ)@9|d2Bl49| 8 n 9P>N n 0>A2)HA2)H A2)HA2)HN^NuNV9|e2Bl4Bl89n>NN^NuNV)n 9n 29|29|49|89n>NlA2)HN^NuNV9||2Bl4Bl89n>ND n 02 n02 n04N^NuNV)n 9|29n 4Bl89n>NA2)HN^NuNV9n 29n 4Bn nR2.RnA2|0f9|29|4Sn0.9@89n>NN^NuNV)n 9| 29|4Bl89|<9n>NrA2)HN^NuNV)n 9| 29|4Bl89| <9n>NNA2)HN^NuNV`4 nH| f?< ?<NX nRH??<NX0. Sn J@fN^NuNV` nRH??<NXX0. Sn J@fN^NuNV` nRH??<N*X0. Sn J@fN^NuNVH0&n $KA1-H nf?./ N4\=n`L nf?./ N`\=n`. nf?./ Np\=n`-KBn?.N2TJ@f`H| f |o@ H-@/./.?.?<@NT 9@PHg0<`0,Pn/./<?.?<@N 9@P @g0<`tRnR -@`R ned` 6.ƼЃ$@ H-@/./.?.?<@N 9@PHg0<`0,PnBlP0.L N^NuNVH0&n>. -K Gf0B .`b Gl-0>$K`0H H@H|00H >0f KSB`  KS n .`L N^NuNV nlBn?.Hn?<6NAP ./ ./N / ./N -@ .N^NuNV/.?<9NA\N^NuNV/.?<:NA\N^NuNV/.?<ANA\N^NuNV?.?./. ?<BNATN^NuNV0.A o"Bg/. 0.A ?NP-@`-|0.A쥀 .N^NuNV0.A o"?<B0.A ?NZP-@`-|0.A쥀 .N^NuNV0.A o0.A쥀 <` nfN0.A HlT?<NA\?</. ?<NNAP-@0.A쥀 <``t nf=|`=n?./. ?<=NAP-@ o nf?<B .?N\P f nf?</. ?<NAX0.AB0.A쥀B <N^NuNqNqNqNqNV0.A =@ no@ o0A A /. /.?.?<@NAA.PA,P-@`B`-|0.A쥀 .N^NuNV0.A =@0.Hf60.A쥀-P m .-@ o-|`$S0<".AAT". n @ nAn  @-P o .м/ </N2 X". Ҽ A0 n ll n lm n li n B( n (H|g n | n (H|g n  ` n !?<ONAT-@0.A쥀 .`X` .`P`: no* o/. /.?.?<?NAX-@`B`-|0.A쥀 .N^Nu9|9|h)|9|9|X9|P9|9|9|9|X9|9|9|LA)HHA.)HA)HA)HA )H A*)HAv)H9|9|X)|x9|v9|t9|p9|Pl9|j9|h)|Pd9||9|9|CRThis is a prototype of ST-Talk Professional 2.0 from QMI.C22P222@2220222 2p222`222P222@2220222 2p22 2 `2 2 2 P2 2 2 @2 2 2 02 2 2 2 p2 22`22Cd222222 2 2222222222 2#2$2'2(2+2,2/20232427282;2<2?2@2C2D2G2H2K2L2O2P2S2T2W2X2[2\2_2`2c2d2g2h2k2l2o2p2s2t2w2x2{2|2222222C2222222 2 222222222222 2#2$2'2(2+2+2,2/2023242728282;2<2?2@2C2D2G2G2H2K2L2O2P2S2T2T2W2X2[2\2_2`2c2c2d2g2h2k2l2o2p2p2s2t2w2x2{2|22222222C$222222222222 2 2 2 2 2222222222222222222222 2!2"2#2#2$2%2&2'2(2)2*2*2+2,2-2.2/2021212223242526272828292:2;2<2=2>2?2?2@2A2B2C2D2EC2222222?22222222?22222222?22222222?22222222?22222222?22222222?22222222?22222222?22222222?2C222222222222222222222222222222222222222222222222222222222222222222222222222222229|9|9|LC2w22G2A)HA)H9|(9|e9|9|9|)|9|AL)HA2)H~)|fC&"""UUUU"3333""""1111""wwww"uuuu""""ssss"9|$9|"9| 9|9|9|XC2PA J"222HA N"222KA R"222MA V"222GA Z"222wA b"222A f"22Cߚ2PA h"222HA l"222KA p"222MA t"222cA x"222dA |"222eA "222fA "222rA "222qA "222pA "222mA "222nA "222oA "222jA "222kA "222lA "222NA "222gA "222hA "222iA "222JA "222GA "222wA "222A "22C"2PA "222HA "222KA "222MA "222cA "222dA "222eA "222fA "222RA "222GA "222wA "222A $"22C2PA &"222HA ,"222KA 2"222MA 8"222cA >"222dA D"222eA J"222fA P"222rA V"222qA \"222pA b"222mA h"222nA n"222oA t"222jA z"222kA "222lA "222NA "222gA "222hA "222iA "222JA "222RA "222GA "222wA "222A "22C2A "229|X9|9|9|&)|@9|X9|X)||9|z9|XA)H6A)H29|XA )H.A)H*A)H&A)H"A)HA)HCn2h ,"222hA"2Q22hA"222hA "2U22hA$"222hA("2f22hA,"2Y22hA0"2[22hA4"2W22hA8"2]22hA<"222hA@"222hAD"2_22hAH"2a22l ,"222lAL"2R22lAN"222lAR"2V22lAV"222lAZ"222lA^"2e22lAb"2Z22lAf"2\22lAj"2X22lAn"2^22lAr"222lAv"222lAz"2`22lA~"2b22m ,.".292 2m ,"""2922m ,"2:22m ,"2?22mA"2>22mA"2;22mA"2<22mA"2=22m ,*"*2l22m ,&"&2l22mA"2l22mA"2l22mA"2l22K ,.".222K ,"""222K ,"222K ,"222J ,.".2 22J ,"""2 22J ,"2 22J ,"2 22g ,.".2*22g ,"""2*22gA"2+22nA"2h22nA"2'22nA"2g22c ,.".2i22c ,"""2i22x ,"""222x ,"222i ,.".222i ,"""222iA"222iA"222iA"222iA"222iA"222q ,.".222q ,"""222q ,*"*222A ,.".222A ,*"*222B ,.".222B ,*"*222C ,.".222C ,*"*222D ,.".222D ,*"*222H ,.".2#22H ,*"*2#22H ,&"&2#22f ,.".2#22f ,*"*2#22f ,&"&2#22r ,.".2-22r ,*"*2-22r ,&"&2-22P ,.".222P ,*"*222L ,.".222L ,*"*222M ,.".222M ,*"*222 ,.".22C<23 ,"2B224 ,"2B225 ,.".2D226 ,.".2C22 ,.".22C2A ,.".2m22B ,.".2n220 ,.".2o221 ,.".2p222 ,.".222 ,.".22C2A ,.".2q22B ,.".2r220 ,.".2s221 ,.".2t222 ,.".222 ,.".22CԦ2H ,.".2j22N ,.".2k22 ,.".22C2[An"222#A<"222(A"222)A"222O ,.".222> ,.".2u22= ,.".2v22< ,.".222N ,.".2522O ,.".2322D ,.".2 22M ,.".222E ,.".2H227 ,.".2%228 ,.".2&22H ,.".2,22I ,.".2|22Z ,.".2i22c ,.".2022GAԦ"222IA"222 ,.".22CҀ2 ,.".22 2 ,.".222 ,.".222 ,.".222 ,.".222 ,.".2z22 ,.".222 ,.".2E22 ,.".222 ,.".2(22 ,.".2F22 ,.".2F22 ,.".2 22 ,.".2G22 ,.".2622 ,.".2422 ,.".2{22 ,.".222 ,.".222 ,.".222 ,.".222 ,.".222A"222 ,.".222 ,.".222 ,.".222 ,.".222A"222 ,.".222 ,.".222 ,.".222 ,.".222 ,.".229|XA)HpC21 ,.".2@22A ,.".2@22a ,.".2@22 ,.".2@222 ,.".2?22B ,.".2?22b ,.".2?22 ,.".2?223 ,.".2>22C ,.".2>22c ,.".2>22 ,.".2>22 ,.".22C2 ,.".222A ,.".222B ,.".222C ,.".222D ,.".222E ,.".2x22F ,.".2622GAԦ"222H ,.".2y22I ,.".222J ,.".2 22K ,.".222V ,.".2N22W ,.".2K22X ,.".2L22Y ,.".222ZA"222- ,.".2J22^ ,.".2I22] ,.".2M22bA"222 ,.".22Cϴ2 ,.".22 2 ,.".222 ,.".222 ,.".222 ,.".222 ,.".2z22 ,.".222 ,.".2E22 ,.".222 ,.".2(22 ,.".2F22 ,.".2F22 ,.".2 22 ,.".2G22 ,.".222 ,.".222 ,.".2{22 ,.".222 ,.".222 ,.".222 ,.".222 ,.".222A"222 ,.".222 ,.".222 ,.".222 ,.".222A"222 ,.".222 ,.".222 ,.".222 ,.".222 ,.".229|X9|ϲ9|ϰ9|Ϯ9|"9|O 9|9|9|9|9|A)HC2 222 2222 2 2 2222.22229|ͨA2)HͤA~)H`A)H\A)HXA)HT9|A)HAD)HA)HCA"A"A"A"A"A"A"A"CʢA"A"A"A"A "A "A "A "A )Hʞ9|9|X9|A()HÀA()H|A()Hx9|vCNA))HJA))H 9|9|9|9|9|9|CdA+"2"A+"'2"fA+"'2"gA+"'2"hA+"'2"iA+"'2"jA+"'2"kA+"'2">A+"'2"?A+" '2"@A+"'2"AA+"'2"BA+"'2"CA+"72"DA+"2"A+"2"A+"2"A+"2"A+"2"A+"2"A+"2"A+"2" A+"2" A+"2" A,"2" A,"2" A,"2"A, "2"A,"2"A,"2"A,"'2"A,"'2"A,"2"A,"2"A,""2"A,&"2"A,."2"A,2"2"A,:"g2"1A,>"g2"2A,F"'2"3A,L"'2"4A,R"2"aA,T"72"`A,V"'2"A,\"'2"A,d"'2"A,j"'2"A,r"'2"A,z"'2"A,"'2"A,"'2"A,"'2"A,"'2"A,"'2" A,"'2"A,"'2"!A,"'2""A,"'2"#A,"'2"$A,"'2"%A,"'2"&A,"'2"'A,"'2"+A,"'2",A,"'2"-A,"'2"5A,"'2"6A,"'2"7A-"'2"8A-"'2"9A-"'2":A-" '2";A-*"'2""'2"oA.D"'2"pA.J"'2"qA.P"'2"rA.V"'2"uA.`"'2"(A.f"'2")A.j"'2"*A.p"'2"*A.v"72"bA.|"72"cA."'2"A." 2"A." 2"A." 2"A." 2"A." 2"A." 2"A."  2"A." 2"A."  2"A."'2"A."'2"A."'2"A."'2"A."'2"A."'2"A."'2"A."'2"A."'2"dA."'2"eA."2"9|9|9|9|A1")HA18)H~9||9|Cl"22222"22222"22222"22222C222222?22222222222222222222222222222222?2222222222222222?222222222222222222CL222222222222?222222222222222222222?22222?2222222222222222222222222222222222C쵼22222222222222222@2_222/222222 222222%+22z2%+22:"2%22"2% 222= 222 222222/22@2_222222222222222C,222222222222@22$2@22'222$2@22$2@222@22222222r'29222(2E222E222}222E222E2222222222222222222229|C짞"2"2 2"2"2"22"2"2"22"2x9|NuNVH>. Bn Gl=|0<G>0.A&Pg.`$0.g f`&k` f` &S0SGJ@f LN^NuNVH0.. Bn l0.Ad$P`0.A$P l=| <.g$`0.g&j`&Rf` $K SJf L N^NuNV f`d-l\ f* .)@`)@\)| < n!@ n `* n  n!n n )n\RBlN^NuNVH0>.&l` f?<?<?<N\ <` Go?.?/. HlNC > GnBG o`+ |<Gm Fm02|Al `f* )@` g l`!|` )|\B`R \f* +)@\ g l\ ` )|`B` g k g S!kS м $@Bl` &Sf:fL0,fFRG ,$@&@0< GH m9| <`)J gR0HSGoX0@ Go?Hl/ N `BG JB&'|0,g|`B+0.AN0`&| L N^NuNVH0>.?/. ?. NP&@g0A g0A f8 2A 2A 2Ad 0A `T0A&0A P$h0A P!K'Jf0A `$0AR L N^NuNVH0>.?/. ?. NP&@g0A g0A f8 2A 2A 2Ad 0A `R0A'P0A P$P0A P &f0Ad `%K0AR L N^NuNV0.A-P0.Ad 2.A /. ?. ?.NP g0.A 0.Ad N^NuNV/ 0.A&Pg -S-k 2.Af 0.A g S!| 2.Adf&0.Ad  g k ` g k g S!k f0.A `0.A / N~X0.A&P0.A o0.AS0.AN0 &_N^NuNV0.A-P g n-P?.NT f$/. ?. ?.NP0.Ad-P`/. ?. ?.N6P-@ .2.A N^NuNV0. D@??.NX2.A N^NuNV?. ?.N|X2.A N^NuNV0.A 2.A N^NuNV0.Ad 2.A N^NuNVHB0,f ,`<&l``+ |Hހ&Sf ,",ހ / </NR XLN^NuNVHB0,f <`(0.A&P`+ |Hހ&Sf LN^NuNV0,g0<`/\)@ l>NHl?<N\ @f ?<TNT`/\ )@ lNHll?<N\0<`/,NX)@Bn`0<2.A202.At02.AN0 <2.A 2.AH 0.A00.A00.AB <2.A 2.Ad 2.A 2.A 2.A0 0.AA HB n l ?.N^TRn n mB <)@\)@` n"BlHl?<N\0,RgBlR0<`8 ,Ь)@ lm l oBlBl9|0,6gN_0<N^NuNV0,g ,/?<IN>\Bl0<N^NuNV/ Jng0.@ n"n @f"_N^NuQ"_N^NuNVH0BEBn ?<NJTBg/. ?<N.PHl0<`6 n -|`-|N  nA-H=| ` -l=|N nn?.NT0.ANBPBF$n0. EH/ HЅ/?<Nj =@ nl`>0.2. EAl=| 0n nB-JBG`0RFnm 0g?/./.N :``H| f0.A0fB``jH| f0.A0gBR`\`Hf`>H|f0.A0f `H|f0.A0fB`RRG02,RAAo:0n l0lo n l=G-JSGBn` nH| g<H|)g2H|,g(H|;gH|-gH|?g H|"f2RGRH| g" n(H| f02,SAAlRGR`SSG Gl`Rn nmh Go Gm$n>.Bl0.f/.??.NfP`,/.??.NtP&@ g0.A `` 0nm0,f0. g`0<f?<NJT0.A f0.A 2.A nl0.` nn0.ANBP0<L N^NuNVH0=| Bn0,hf=| ` lhl=|  no?.NFT n0<`?<NJTBg/. ?<N.PHo^0,Lg=|` Hl?<N\=@ @f0<`tSn?<NJT0.f/. N~XHl .`D?<NJT0<2.A?/. ?<N.PH-@ l .` n -|`-|N  nA-H<<` -l< @cn Gc><0GT@Fe`? м // N Gc:0S@H| gfSG GcSH| gfSG`RG0T@Fe`$R Gb f`dg60.A0g& Gc lho S @H| f RE`&?<A // N RRE lhoRREf Ec@0|gREB0//.?<N -@2¼l -|` f?<NJT m-| nn0.ANBP .L N^NuNVH>.0A&P`*0A &S?NT0A n`f0<2A202At0 <2A 2AH <2Ad 2A 2A 0AB0,Lf0AA HB G l?NUT0ANBP0,6g G lNW0<LN^NuNVH>.0A&P`*+H|f0A &S?NT`+H|o\+HS@=@ nlBn?. м /HnN 0A &S?N`THn?.?N P`+H|lx2<+HC+ |A=@ nlBn?.2<+HC м HЁ/HnN. 0A &S?NTHn?.?NP`&S0A f` f0AH 2Am`0A S2AH 0A 6,hHÐ2A l <2AH 2A 0,6gNU0<LN^NuNV?.NT0,6gNU0<N^NuNV/ 0.A&P`B+&Sf <2.A 2.A0 0.AdBP0<&_N^NuNV/ B0.A&P`+g .`&SRf <&_N^NuNV/ 0.A&P`"+f|`0<+HSAA@&Sf <2.A 2.A0 0.AdBP0,6gNT0<&_N^NuNV?<?.NXN^NuNVH0.Ad0g<0.A 2.A0 0.At02.A0`0.A 2.A 0.A&P`* 2.Af` 2.A0f` &Sf 2.Afd0.A02.A00.At02.A00.A&P0.A0 2.A `0.At02.A0f0.A&P0.ABP>.A>RG<.A< Go>< Fo<<`D+g0<+HSAA@` 0@>< 2.Af 0<F@` &Sf0. g 0,6gNR0<LN^NuNVH0?.NT f0<`0.A&P0.A-PNN><`Bl+H|o. м +HSAHЁ/+ |??.NP$@`6+H|l& м /0<+HC??.NP$@`&S`&0.A fBG` GfSG-J&Sf^NN0. g?.NT Gf0.AtBP0.A 0.Ad0Bg?.NX0.AdBP0.A g* 2.At|0Bg?.NjX0.A 0.AH 2.AmX0.A S2.AH 0.A 6,hHÐ2.A l0.AHB0. g 0,6gNPV0L N^NuNV?<?.NXN^NuNVBg?.NXJ@g ?.N`TN^NuNVH0.A&P0.A-P0. A-P f"Hl Bg?. NP2. A -@NN><`Bl+H|o0 м +HSAHЁ/+ |??. NrP-@`8+H|l( м /0<+HC??. N>P-@`&S`(0. A fBG` GfSG-n&SfXNN?.N,T?. N"T Gf0. AtBP0. A 0. Ad0Bg?. NX0. AdBP0. A g n( 2. At|0Bg?. NX g0.A g0. A 0. AH 2. AmX0. A S2. AH 0. A 6,hHÐ2. A l0. AHB0,n f 0,6gNM0LN^NuNVH0-n0.HѮ0.no0<`><` .R&@Sn0. @l`x$n ><<.`LSF0 @l><`@0.f H| H| Af` `><``HHAf``><`f Gf ..` nfp0L N^NuNV/ n f0<`jnn-n =|` nRf` Rn ndm0.AH-P0.A&P0.At0R@=@` м -@+ |nm?.?.+ |R@?/. /.Nx=@ @m0.AH [2.A l0.AB nn0.AtBP`0.S@2.At00.A 0.g|0<`2Bn&S0.AHRf0.AH 0<&_N^NuNVH0.A-PA&H n( |=@Bn` n f`Rn0.nmBn` nf` Rn nm0.nn=@ 0. 2,SAAo0. 2,SAA=@ 0,S@=@ `Bn g0.AN00.At? .м // N& 0.At0H?././ N& 0.H0.n? .м 2.At6HЃ6.HЃ// N& A&H n oBn0. S@=@0. R@=@`z KH|Al\H| g<H|)g2H|,g(H|;gH|-gH|?g H|"f0.R@=@ 0.S@=@ `SnRnRn nm~0.|9@/ ?. ?.N|P0. H n o"/ ?. ?.NP0.At0 `0.At0n0Bl0<`0<LN^NuNV?<?.NXN^NuNVBg?.NXN^NuNVH0Bn`~A$H0.A &@ f`d+ |=@2,Ae 0. g`Z -@ f =|Bn`r .м -@ nH| o nH|m0. f Bn=| n( |=@ @b"Bn0.2,Ad 0. f``=|0.2,SAAg 0.2,Af( g0. g`0.A ` nc=| nc?. м // N `Bn0. JB ncd0.2,SAAdV0.S@H|g0. fH| g Rn`R`Sn0. fSH| g Rn`6 nc. nd&0.S@H| g0. f Rn0,At00.fb nc=| nc?././ N `Bn0. JB0.n nc0. n(H|fSn0.AN0A$H0.2,Aeb0,S@=@Bn` JH| g<H|)g2H|,g(H|;gH|-gH|?g H|"f&RnH| g J(H| fRn`"Sn nl=|`Rn nml no nm=l/ ?.?.NP&@2.A f`0.n0.H0. f0.S@2,At0 ndBnH| f ncRSn`Lf`N0.A 0,S@=@Bn` JH| g<H|)g2H|,g(H|;gH|-gH|?g H|"f&RnH| g J(H| fRn`"Sn nl=|`Rn nml no nm=l/ ?.?.NݼP2.A &@0. f0.S@2,At00.n0.H ncH| g H|fRSn`Bn0.2,Adf`\-K&Sf`J0.A nc\H| fRRn nc=|/ ?.?.NfP f`0. f0,At00.g``:0.f?.NT0.A `0. f0,AtBP``f ndBn/ ?.?.NP&@ f`r 2.A f`X0.g0. g ?.NvT0.A 0. f0.At00,g`0. f0.g`0<f~0,6g0.lfNAL N^NuNVBBnBn0. fB lLW|=@ lJW|n lLW|=@ lJW|n`@ lNW|=@ lϮW|n lNW|=@ lϮW|n0.g-| 0.g-| `0.g-| N0.A-P`?<?<NX l?<?<NX af0<`0. g n(f n-P` n( ||o"?. .м /Nt\ @f0<``?. A /NV\ @f0<`B0,g$ ,R @gN/<X/,NPN n-P f"NN^NuNV=l=lL=lR9|LBlRBl0,6f NN`NB` n fBNpJ@g:N8=@0.| @f NJ@g`0,6f lf ?.NT?<?<NX l?<?<NX af`?. ?<NX l^B nRH=@ n f*0,6f$ lf?.NT n f ?< NTB?.?. ?<N\`8 .R u0o(9n9nL9nR0,6fNN0<` n fT o /,N:XNpJ@g8N8=@0.| @f NJ@g`0,6f lf ?.NT nfv n fN/<N:XNpJ@g:N8=@0.| @f NJJ@g`60,6f lf ?.NT0,6fNN9n9nL9nR0<N^NuNV/<bNRXHм,-@`rNpJ@g6N8@.H| @f`f0,6f lf.H?NT?<?<NX l?<?<NX af0<``/<bNRXHmz0<N^NuNVHl?<N\N^NuNVH0,At9P0,A&P0<=@9@9@9@=@g+ |=@+H9@0.2,At2Ad0,At00,At0llm&0,At02,lSAA2,A20`0,A2BP0,A2 Po$Bg м 2,A26HЃ/N\0,A0g"gBg м /NL\?NTNNT` N4> lf0<`0,g0,f 9|N`Bl0|f.0|Hg|Pg` =|` `&|Gg |g|pg|qg|-g|g` =|` N`|g`.N*N?NT`z```B0| @f0,\|g`0,\|` 0| @f0,\|g`0,\|0|g0|?NdT0,At9P``>``0.g& loHlN??,N>P&@`.0,g0.2,At09@`0,At0 l fD0,A0g4g,Bg м /NL\<?NT Fl FgBl0,A2 Po$g+H9@Bg м /N\Bl0|LN^NuNV loHlN??,NXP9|BlN^NuNV0,A gz0,A P-PBl?,NT f$0,AHS0,S@2,At0`0,AtBP0,AH l" <2,AH 2,A 0,AH 2,Al$0,AH 2,A N+`N-0,A 2,hHSЁ-@ .2,A"Sll0,AH  .??,N>X-@ g<0,AH Ю Bg .м /N \0,AH  N^NuNV`0,At0AH|g*0,AtRP0lm0,S@2,At00,At02,A2P2,lSAAm0,At02,lSAA2,A200,A2 Pl0,A2BPBgA 2,A26HЃ/N \0,At0Af0,lS@??< NXN(0.SnJ@fN^NuNV`0,At Pov0,A2 PoR0,At02,A2P @n00,A2SPBgA 2,A26HЃ/N 8\0,AtSPN0.SnJ@flN^NuNVH<,At<HƍRF2,AtPBG`(0,A0g ?< NT` ?<NTRG0FmLN^NuNVH0<>A &@`f`RG Gm0LN^NuNVN2,At00,At02,lSAAmX0,At02,lSAA2,A200,lS@??< N XBgA 2,A26HЃ/N \NPN^NuNV0,A2 Po BgHlN \0<2,A202,At0NN^NuNVNl0,At02,A2P?0,AH 2,A?NTXN^NuNV0,At0N^NuNVHN=@2,QAAf8?<?<?<NM\O0,A0f0,At0nl`9|<,At<:,A2:A&H0,A0gB><` K K@SG0Fl0E2,lSAAl0R@E? HІR/Nr\0E?. H?N .X0RF K 0lm <,9|`ZBl0,At00Ellm>0R@2,A20Bg HЅR/N\ Kf0,lS@??< N XN@LN^NuNV0,At0n @l0,At=P?.NT?.NTN^NuNVH:,At:8,A28A&HN<` El9|0,A0g^>` K( KH|f`RG0Fm0Fl0S@Dlll0S@D??< N X0D? HЅ/N\`& KH|g K 0D??< N X0.SnJ@fRN LN^NuNV?9|BG` 0RGAB GmBG`0RG??< N >X0llm0<2,A202,At0N>N^NuNVH0$n&n >.0.A=P=GBD` De`[.f`0.f|.|| g`2:ʼREDBF` RD De`^RF0Em`:`|g` DcSDS`$`| g``&.|| mRD``` .gRD0SG @bP Dc8<B0L N^NuNVBl` BgNTN9@p?<NT l9PR l9P\HlPHlPHlPHlʎ?< ?,ʐNt0,ʎlʐf80,Rg0,g9l^N0<``Bl0,p|gN0,f 0<``0,^|Hg|Pg`H?<?<NX l.`?<?<NX?<?<NX m0<`&`L`8|H8g2|P2g,|Gg&|G7g | g|g|Sg|Sg|R0g``Bl0<```0,gF`?<?<NX?<?<NX m` ?<N>T?< N>T @mSl0,p|gxNN0,`| g`p=lf=lhNNN?,hNT9@?<?,f/,NP0,fNNNBl^0<``0,g N0<```|g`00,ʎlʐf NrN!| lŔfBgNTNN``|g|g`BgBgBgBg?< ?,ʐNb ``|g`9|q^N0<`~`n`|g`V lhf9|P2^`2 lhf9|H8^`" lhf9|H^` lhf9|P^``"9l^N0<``|g`9|`0,lZf 0,lXgN9lZ9lX0,ʎlʐfNJ@g0<`0,RgNpJ@g9|F9|HBlJ=l=l?,?,~NTXBn`4NpJ@g&N8|@H?N"T.H?NlT`` Rn n m9l~9l?.?.NTX9|J9|FBlH0,A0fNf lg0,^0|Hg` lo9|`9|``|Pg` 0,2,hSAAl9|`9|`b`|H8g|P2g` 9|`J`|Gg|G7g` 9|`2` | g|Sg|R0g|g|Sg`9|`Bl``N @]|=@g lf9|-^` lf9|^9l^NN0,>N^NuNVH0&n>. <,AH,2,A Gn0,A20fBG??NTX?<NT??NTX0,g lo :,SE8,l` ll BE8<l`|0Em0Dl Bl9|` 9|9|.H| l.@9|` .H|g9|` 0<9@9@.H?NlT0RG2,lSAAm`[f~9|9|``.H| l*.@9|Bl.H?NlTBl9|`P.H|g$Bl9|.H?NlT9|Bl` .H| g.H?NlT`Rl0RG2,lSAAm`[fd`0,g( lo :,SE8,l` ll BE8<l`:<8<??NTX`0Em0Dl Bl9|` 9|9|.H| l.@9|Bl`*.H|g 9|Bl`9|0<9@9@.H?NlT0RG2,lSAAm`[fp9|9|` ?< NlTRG0llmL N^NuNV?>.?. 0,AH 2,A?NTX0g0,gn9|Bl G l 0,A0f`|@9|`0|g9|` 0<9@9@?NlT9|9|0<9@9@`h G l40,A0f`P|@Bl9|?NlTBl9|`.0|gBl9|?NlT9|Bl`?NlT>N^NuNVN|0,AdBP?<>NT l=P l=P0,g0.l~H=@`0.l~2<HŔH=@ lPlf 0.lʀHS@=@ @lBn`& llf0.lʀHS@=@ @lBnHnHn?<?<?.?.NL0,g0.nl~H=@`0.nl~2<HŔH=@ lPlf$0.nlʀHS@=@ @lBn`* llf"0.nlʀHS@=@ @lBn0.no0.n??,N*X`0.nl0.n??,NX0,A 2.HЁ2,AH 0,AH 2,A"So0,A S2,AH 0,At0?<>NTNNNN^NuNV0,Xl~m l9PR l9P\ l9PZ l9PX0,Z2,ʀlz|AoF0,Rg n f0D@> Glb *'@-@ f0.A ` n %K $-@ f0.Ad ` n!J&R`$K&Rfb n00<2.At02.A20 <2.AH 2.A 0.A 2.A NL N^NuNVAh-H n m=|  n|1 n|0`, nm0<1n n@ n| `0<`0Bg ,T/?<GN>P?<N>T|A l0.AA Hg0.AA/ lA/NP-l`R nH|n` nH|\f` nH|:f` .SlR?< /./,N& nB` lB-l`R nH|n` nH|\f` nH|:f` .SlR nBN?<Hl/./,/,N =@ lg/,/,NP`=| nn0<`N?. /,?.NP=@ @l*NNHl?<N\ @f`LN0.`nNN0,gNժ0. fH?</,0.AA/N& ?.NZT0.A 2.A 9|NZ0<N^NuNV n o?.NT f0<` n m=|  l |1 l |0`, nm0<1n l @ l | `0<`4Bg ,T/?<GN>P?<N>T|A l0.AA Hg0.AA/ lA/NP-l`R nH|n` nH|\f` nH|:f` .SlR?< /./,N& nB` lB-l`R nH|n` nH|\f` nH|:f` .SlR nB n l lf"?<Hl/, /,/,N =@`=| lg/,/,NP`=| nn0<`N n W|? lA/?.NhP=@ @l>N nfHl?<N\ @f`&`Hl?<N\ @f` N n n,?</,0.AA/N& ?.N T0<N^NuNVH=l0,6g=l` =l9n0.lg&9n0.A00.A20<.A,R/,</N(,2,hH/,/NR,X-F,<]/,./NR,X Fl<< Fo<<02.APg0??<?,ʐNb\8.A(2,hH n(<0,6g:.A* o*`*.</./N(././NR.X Go0,6f><`><02.A2Pg??< ?,ʐNb\0.A200.A09nLN^NuNV^H=lϲ`=lϰ^Blϲ9lϰ9l9l~9|FBlH=lLBgNT)l.69|9|N @l` N BlNNN Bl><BF9|0,gN0,gN`9|Nj0,g0,AN09|F<, lf` 0| g`.0,f"0<2,A202,At0`Bl` |Pg`0,A 2,Adg0,AHR?<?,NX0,AH 2,Alhm0,AR?<N T0,A gR0,A P(H9@Bg0,A м /N\?<?<NX lBl`Bl`Bl><` D`|g |Hg`0,AH o?<?,NX0,AHS 2,Al0,AS 2,AH ?<`` |P2g`00,A 2,Adg2,hUAH0,AH Ё 2,A"Smv0,A S2,AH 0,A 2,hHH2,A 0,A l0,AB?,NT`0,hU@??,N&X2,hUAH0,A Ё 2,AHm0,AH 2,A NN ><`` |H8g`0,AH o2,hUAH0,AH  lX0,A W|=@b <2,AH 2,A ?,NhT0.bfAN `l0,A W|=@b0,hU@??,NX2,hUAH0,A  l0,AB0.bfNN><``|Gg`^ <2,A 2,AH 0<2,A202,At0?,NTNNH><`n` |G7g`0<2,A202,At00,A S2,AH 0,AH 2,hSAH2,A l0,AB?,NTN0,At0N><``|.g`?,N4T9|``|!g`?<9NT``|"g`?<<9|`` lf 0,\|g ?,NT` ?,NT0f9n`ϲ9n^ϰ9nLBlF9|H?,~?,NXNBgBg/,H?<?,ʐNb l-f0<`N0<LN^NuNV=|`6?,6?./,ňNP0.2.RAAf?,6?./,ňN`PRn n o n l0. lň ($ @-h0.AA-H nf A-H?</./.N& ` nRf`" nH|\g nH|:fR`S .2.AAаnBn`> nH|.f`6 nH|`o n nR nRRn nm nBN^NuNV0,6gHlHlNP0,AA Hg$?<<0,AA/HlN `HlHlNPHl&HlNPBgBgHl?<?,ʐNb 0,A0 l1@0,A0 l1@0,A0 l1@0,A0 l1@?,NTN^NuNV/ N0,A/?,N\&@0,AH-P0,A 2,AH Bn`Bf`B -@ +H9@Bg/.N\0,AHR&SRn0.lhmBl`BgHl(N\0,AHR0.Rnlhm0,AH 0,AH/?,N \2,A NN8N&_N^NuNVBn nl=|0.D@=@N2BgBgNTX`0.gNr`NV0.SnJ@fNN^NuNV9l|9lzN^NuNV?,|?,zNTXN^NuNV?.?. NTXN^NuNVBlZ?<NTN^NuNVBlZ?<NTN^NuNV0.g ?<]NT` ?<^NTN^NuNVA|-H0,Pf^. . ||o0,Rl n `2. ||g. ||fSl0, @lBl``0,P|g. g0,Rl n `|. ||o0,Rl n~. . || l&. || g0,Rl n^.@ . g. ||2,Rl n. || g lm nB0,f/.?,?,NP0,gt0,fHl*?<N\=@`=| nfB9|L? 0l0880 p8 00p0 00x0 d0000`````f0l0880 p8 00p0 00xTD08888888p~2080000p x 00880 0x0`Hxx|x`|p0x|x00df080000p x 00880 0x0`H880>>88800l0p0008xx00p0 0xx00` |p0808P`0l0p0008xx00p0 0xx00`|TP>>8p(08:0l0p00088x|00 x00x000 000xp0" ``p xp0l0p00088x|00 x00x000p 8888888(|r0|`00000p 0 p00 0̴x0`00|`00000p0">>>  ""80|`00000p 0 p00 0̴x0`00|T<08888888p(| l00`0 0 008800 0xx0`0`00|0x00808"" 6  l00`0 0 008800 0xx0`08> 0>888888(`08l88000`0`00p00x00`00 0xx`00" "  * l88000`0`00p00x00T88888888pH@00l000x`x000|0000 `|xx<0|00"* $"0l000x`x000|0000  88888880†0xv `00xxxxx`xpp08xxxxlx0x00< x|x||` xxx|xx0 00$< >" 0xv `00xxxxx`xpp08xxxxlx0x00< xT 8888888~0``<x 00  0``<x 8888888&0@:p  0`&0@4T 8888888x xx0lH080plx0x8xxxxx0x|x xx|xx 80p00p80||0p x xx"0lH080plx0x8xxxxx0x|x xx|xxHx8@H8888888`8 0l|l08880 px 0px0 0`8xx x`|0x||0D(x x>(0l|l08880 px 0px0 0`88TH@@@8hD888888800|l 0lH800000x|00| 0 x0xx0``l` |000x0DNx 00lH800000x|00| 0 x0xx0``l|xp@@D|X(>>8`(|`8 xxxx xx0Hx0p08|000 0 ` 0 0x0``0D0|`00x00000 |xxxxxxx0 (0Hx0p08|000 0 ` 0 0x0``0DTHN<|8H>>800(8 0 f88l000`0``00|00 0x0``|00 0x|x|`0(DNؚp~ 0 f88l000`0``00|00 0x0`|>>8888888`(|` Hp000xxxxx`xp0px|xxxl0|00x x|x||` 0xx||0(0(p2 x0<<\Hp000xxxxx`xp0px|xxxl0|00x x8T|8888888( `x | xx xx00|`00|&p 0p80| |8px | xx xx<.Tr00|`00|8888888NVHA )@A )@A )@A )@ ,&@BG` H@RRG GmLN^NuNVNpBg/,N\N^NuNV?,ʄ?,ʂ?,ʆ?,ʈNnP lŔf0<l6??,ʒNfX lŔf?<?,ʒNX/.0,~l|2<HŔA lŔW|A?0,ʀ2. AT@??,ʒNd lŔf?<?,ʒNfX lŔf Bg?,ʒNXN^NuNVH0A&H ,м$@0,At0R@?/ N\`f` ",Ҽm lB(?< ,м/N\ l||L N^NuNVH0A&H ,м$@>,AH.R 'm / <d/N( .// N.P` ?/ N\`f` ",Ҽ"m lB("?< ,м/N$\ l||"L N^NuNVH ,P&@ l l0,|1 `10N:?<NTBg/,N\LN^NuNV? nf><0`0RG l GFm><0 nm?<Hlh ,мA/N& l0|g l|CE0,A0g l|WD0,A0g l|IC0,A0g l|VB><A`, nl$?<?.NT/ ,м0/N& ? ,HЇ/N\ nl?<?<?<N\>N^NuNVH0,6f ,м &@` ,м)&@BG` 0RG K Gm0,f0/\/ </NR X?HnN\`N?HnN\BG` 0RG @o` Af0RGAK0RGABBG`A KRGAf0,6f( lB(?< ,м /N\ l||LN^NuNV0,vg NNNN l f An-H` l f At-H`t lf Az-H`b lf A-H`P lf A-H`> lf A-H`, lf A-H` lf A-H`A-H?</. ,м$/N& lf A-H`A-H l fA-H?</. ,м)/N& =|0,AA-H`R nf` nH|\g nH|:f`S .2,AAаnR` nR2.Rn l nH| n` l Rn n#m l l l| 0,|1 l@` l|0 l|10,^gBg/,N\`9|^N^NuNVHl?<BgNP0.g=l?< ?</,NP9@ lf9| `d lf9| `T lf9|`D lf9|`4 lf9|`$ l f9|` l f9|`Bl0,ng ?,NT?<?</,NP9@?<?</,NP9@?<?</,NP9@ ?<4?<3/,NP9@ ?<?</,NP9@?<(?<'/,NP9@?<$?<!/,NP=@ n!f -|`4 n"f -|`" n#f -|@` n$f-| .xg )nxNBg?< ?</,NP?/,NPBg?<?</,NP?/,NPBg?<?</,NP?/,NPBg?<?</,NP?/,NPBg?<4?<3/,NP?/,NnPBg?<?</,NxP?/,NNPBg?<$?<!/,NXP?/,N.PBg?<(?<'/,N8P?/,NP l f=|`f l f=|`V lf=|`F lf=|`6 lf=|`& lf=| ` lf=| `=| Bg?./,N"PBg?,/,NPBg?,/,NPBg?, /,NPBg?, /,NPBg?,/,NP lo9|'Bg?,/,NP=|! xf=|"`" @xf=|#` @xo=|$Bg?./,NjPN^NuNVHl?<BgNP0.N^NuNVBnHl?<BgNP0,6fA  l"($ A =l`A  l"($ A =l nm n oBn=nN @f``Hl?<BgNPBg?<?< /,N.P=@?/,NPBg0< n?/,NPN? l (<м/N\Hl l/(\/ </NR X? l (Tм/N\Hl l/(TNPBn`0.AA 2<4.B l!@ ?.NT/ </NR X?0. AA/N\Hl0. AA/NP0. AA 2<4.B l!@ Rn n mF?<?PBg0< lJ?/,NPBg0<lL?/,NPHlHlpNP?,HllN\?,HldN\?,HlhN\?,Hl`N\N^NuNVHl?<BgNP0.g?<?</,NP"0<A9@?< ?< /,NP| 9@Ϯ?<?</,NPY@9@N?<?</,NhP"0<A9@P?<?</,NJP|9@ l ( @/N(X)@ 'oB l ( @/ ,R/NP ,R/NX lNN^NuNVHl?<BgNPBg?<?</,NP?/,NPBg?< ?< /,NP?/,NvPBg?<?</,NP?/,NVPBg?<?</,N`P?/,N6PBg?<?</,N@P?/,NPBg0<l?/,NPBg0< lϮ?/,NPBg0<lN?/,NnPBg0<lP?/,NXPBg0<l?/,NBP ,R/ l ( @/NPBg/, l ( @/N" N^NuNVHl?< BgNP lŔf l1|z0.gr?< ?< /,NNP| 9@p?<?</,N4P|=@=@0,ng0.9@Z9@?<wNT?<?</,NP|=@0,ngN`N?<?</,NP"0<A9@L?<?< /,NP"0<A=@0.lgr9n=l lŔf09l9n?,Bg?<N\?,?<?<N\`.9l9n?,Bg?<N\?,?<?<N\?<?</,NP"0<A=@0.lvg ?.N6TNN^NuNVHl?< BgNP lŔf l1|zBg?< ?< /,N P?/,NPBg?<?</,N P?/,NdPBg?<?</,N nP?/,NDPBg?<?</,N NP?/,N$PBg?<?< /,N .P?/,NPBg?<?</,N P?/,N PBg0,p| ?/,N hPBg0,|?/,N RPBg0,|?/,N ,x2,tHA| <,v2,rHA| n. f`@0. gnBg?./.NP o lo6 loSl?,r?,t?,v?,x?<?<???<N`0N0<@ l"n"QBl/,?<IN>\BN0.f.?,r?,t?,v?,x?< ?< ??0<n ?N0. fn0,gRl```/<}NX)@ n(?,r?,t?,v?,x?<?<??BgN` 9|N0<@ l"n QNLN^NuNVHn?. BgNPBgBg/.N P?,r?,t?,v?,x?<Bg/.N?./.N<\=@?.?</.NP0.|N^NuNVNN/. ?.N\N^NuNV=l=lR=lL=lF=lH9|HBlBlR9|L9|FN-n n gX nRH|f`: nH|\g nH|:fR nB/. /.NP`S .l?< NJTBg/.?< N.PHod=l=lBgBgNTX9|F0,R@?NTBn=lv`Bg/. N\/<@/, ?< Nj H-@-@ oLBn-l 0.fBn` nRP.H|n(.H| g.H| g.H| gRn0.".H Ao*=|NHlP?<N(\ @f`*`N`Rn0.".Amt-l `9|F0,vgZ-|`@ lvfh?<?<NX l?<?<NX@0,6f lf.H?NT nP0,6f lf.H?NT0,vS@??<NX l&B nRH?0,vS@??<N\` .R u0o`(``v lvfn?<?<NX l?<?<NX0,g0.H| f$ ,R @gN/<X/,NPN o /,N:X n` nRH?NT0.f0,lmBg/. N\0,vf`2HlXHlZHlR?,ʒN\0,R|g`<0,R|g`:?<?<NX g?<?<NX=@ nf`BgBgNTX0,R@?NT?<?<NX lF?<?<NX-@ af` .@.H|f`.H|f`S . ll``0<fx?</. N\BlR0,vfJ`>HlXHlZHlR?,ʒN\?<?<NX l?<?<NX`0,RgBlR?< NJT9n9nR9nL9nF9nH?.?.NTXNN-n nRH|f`, nH|\g nH|:f R nB`S .lBlR0,6g NNZ`NN^NuNVJ0. fB.J`HlHnJNP0,vfHlHnJNP`& lvfHlHnJNP`HlHnJNP/.HnJNP0,vf$0. fHlHnJNP`HlHnJNPHlHnJNPBn`AJf` Rn nFm`AJ Rn nFmB.NBgHnJNr\N^NuNVBn0.| g`?<?|g8|g2|g,|g&|g | g|!g|#g|'g|(g`N6?.NhT=@` `|%g`N6=|` `|*g`"N60,gNN@Bl^=|` `|,g` N @oN69|&^=|` x`|-g`*N @oN6Bg?,NX?,N0T` F` |/g`N @o|N6Hl"?<N\ @fdN?,N$T <2,A 2,AH 0,AtBP0,AA HB?,N0TNBN` `| g` N` `|1g`N69|^=|` `|3g`9|H8^=|` f`|4g`9|P2^=|` L`|6g`9|G^=|` 2`|7g`9|G7^=|` ` |g`dN6N0,Ad P0,Ad0gA$  l!@?,NT`A$  l!@?,NTN`D`|?g`&N6N?,NTA$  l!@``|@g`N6N?,NT``|Bg`"N6N @o?<?,NX``|Dg`N6N?,NT``|Gg`&0,gN`N6N?,NT`~`|Fg`N6N?,NT`^`|Hg`\0,gN`FN6?,NT m2=lNָ @oN?,?.NXNBN`9n``|Jg`N6?<?<?,N \``|Vg`N6N8``|Xg`N6BgBg?,N \``|Yg`N6?<Bg?,N \`~`|Ng`"0,gN`fN6?,NT`T`|Qg`:0,A P0,A0 l1@?<N^T``|Rg`:0,A P0,A0 l1@?<NT``|Lg`x?,HljN\Hl?<BgNPAj  l"($ A ?<?<NX @f.Aj Hg$HljNX=@ nn nm9n`P`|Mg`|N6?,HldN\Hl?<BgNPAd  l"($ A ?<?<NX @f.Ad Hg$HldNX=@ nn n m9n``|Pg`60,A P0,A0 l1@?<NT`` |Tg`0,fBHl?<BgNP ,/ </NR X=@? l/(N\Hl$. l/(NP?. l (, @/N\Nn0,fBn?. l/(N\Hl$0 l/(NPN=@0,fBn?. l/(N\Hl$2 l/(NP/\/ </NR X? l/(TN\Hl$4 l/(TNP?<?< NX=@ n f`HHl$6?<N*\=@ nf`* l (, @/NX=@ nonN/\-@ .2.H/"</N("lHl$?<N\`D .2.H/"</N(")@N`Hl$?<N\` 9|^BlNB0,f=|`n`|[g`60,A P0,A0 l1@?<N|T`0`|]g`Hl$HlJNP```|^g`Hl%HlJNP```|_g`Hl% HlJNP```|`g`Hl%HlJNP```|ag`Hl% HlJNP```|bg`Hl%,HlJNP`f`r`|dg`Hl%8HlJNP`J`V`|fg`Hl%BHlJNP`.`:`|hg`0?<Hl%bHl%LHlJHlTN  @oHlJHlTNP0.N^NuNVH0&n$n >.`0SGJ@fL N^NuNV?. .2.HЁ/ .2. HЁ/N N^NuNV0. @=@nn0.R@nn"0.S@??./. nNP @oRn0. S@?0.S@?/. nNP @o?.Bg0.S@?/.N /.?.0.S@??</.NSn nnN^NuNVBHnHnHl?.?,ʒNxN^NuNVHnHn?,/,ZNF0.9@9@0.9@9@0.2, lZ2(SAA9@9@0.2, lZ2(SAA9@9@Hl?<?,ʒNP0, lZ=h0.g0.l0.l`0.l0.l?<N THnHn0,2. A=@?/,ZNF0.9@9@0.9@9@0.2, lZhS@9@9@0.nS@9@9@BgNT?.NTTN^NuNV .R @: nH|AR@? .T/?<GN>PN^NuNVBg?./././. /.N2N^NuNV?<?./././. /.N N^NuNVBn)lV Vn0<`0.fHlZ?<BgNPJ@f0<`9|9|9|9|9|9|9|$9|9|9|9|9|9|'9|&9|%9|9|9|`HlZ?< BgNPJ@f0<`9|9|9|9| 9|9|*9|39|)9| 9|9|9|9|:9|89|79|9|9|/./,~NPA 2, lZ"( A A8 2, lZ"( A!@AP 2, lZ"( A!@0, lZ ( @ 9|0<=@9@9@ nn?</. HlNZ `?< . @/HlN@ nH|Am n(H|:f nH|PoHl\/.NP?<N>T9@ nA HHlNX nH|A??<N>X-@/.?<;N>\ l~H|fHl`/,~NP nH|fAb-H0<n lZ!n BgBg/,ZNNPHlHlHlHl/,ZNl0,X@ lZ1@PlNBn`v0,n lZ ( @B .6.g0,n lZBh `0,n lZ1| 0,n lZBh Rn n m?<N>TH|A n nHl lZ1|/.NXHlp/.NP0.g(HlNX?,NTHlNX?,NT-lV?< NJT?</.?< N.PBn`B/</.?< Nj l`* n(H|fSn`Rn nm?< NJT/.NXHlv/.NP/,~/.NPHlN X?.N THlNX=l?</.?< N.P`B/</.?< Nj l`* n(H|gSn`Rn nm?< NJT0.=@=@ nn=|?.N$T0, lZ0(U@dH=@H T@=@0.2, lZ2(=AAo=n0, lZ1n=|0<=@=@=@` N0.g0=|Bn`B0,n lZ-h nB nB( ,V2.nHЁ-@0,n lZh 0.nnl?<Hlz/.N Bn`& n( n@H| l` Rn nmVn` n Rn nm nB n(H|f n|  .м @=P nfHl~/.N hP`?. .м/N\Hl/.N BP=|` nH| l` Rn nm` n Rn nm n(2.l lZ|1@ nn0,n lZh .м @=P</ n@ n@ nB(0.|H |0 n@0.|2.|H A|0 n@0.@=@0.|H |0 n@0.|2.|H A|0 n@0.@|P=@ ncond0.|H |0 n@0.|2.|H A|0 n@`` n(H|.fB n| nB( n(H|.fHl/.N dP`Hl/.N TP`Hl/.N DPRn n m0.Hd=@0.2, lZh2, lZhm(0, lZ0(2, lZh=@0, lZ1n0, lZ1n?,NT0.|g`?,NT`(`|g`?<NT``|g`BgNTNHlN X?,/,ZN<\=@HlN HXBn0.|=@n n#g n"f0.g?<:?</,ZNNP`0.lf` n9f``0.lfA HH|.f$?<A R//,~Nb l~B(`>A HH|*f.,H|.f"?<A T//,~N" l~B( nH|A??<N>X``0.lmV0.lnL0. lZ0( |f00.lH|A n nH|A??<N>X`v`0.lmV0.lnJ0.2.lA=@ ,V6.HЃ-@0. lZ-h n(H|f n(H| fj0. lZ0( 6<@=@ no>Bn n(H6<@@H=@0.g n(H|@H=@`Bn0.|f0.gb0.nlXRn?< .R/HlN 0.g` no"0. lZ0( |??.NX=n`b0.|g6 no. n(H6<@@H=@?<?<?<N\`"0.|fBnA HB noSn?.?.NXHlN`X?,NNTHlNX`j n(H|f .R/?<;N>\`n`B n(H|f2 n(H|efHl?<;N>\`Hl?<;N>\`*`?<?<?<N\`00.g=n`=| =|0.lfrHl0,R@?N\S@9@0,ΰ|g`Bl9|`,`|g`9|Bl``|g` 9|9|BnN?.NT`0.lf$Hl/,~NPHl?<;N>\`R`l0.lf( nfBn`Sn nlBn=|`:0.lf:0.2.| AoBn` Rn0.nm 0.| =@=|`0.lf& nfBn`0.n nlBn`0.lf80.2.| AoBn`0.n0.nm 0.| =@`0.lfx?<?,?,/,ZN@ =@0.R@H2.| H/ /N( / </NR X=@0.2.| Am 0.| =@ nlBn0.lf?.?</,ZNNPBn/.NXHl/.NPBn`z nfBn`v n l~HHAgBn`T nf:Bn`*AH|.gAH|f` Rn nm`Rn no~0.gzAH|.ghA Hg^ nH|*gP n(H|*g@ n(H|*g00.RnA.AB?</.HlN n#g n"f0.g =|`0.lfBn` nn?<Hl/. Nz =|`-lVBnBn`` .м @H|g> . 2.HЁ @-PRn0.no`.?< .R//.N Rn0.nm nf.A HH|g=|?< Hl . @/N no A HfHl?<;N>\?,?<N>X n9fBn0.N^NuNV?,?,?,?,?<?./,ZNN^NuNV?<?. ?,?,?,?,Bg?./,ZN N^NuNV n"n 0<"QN^NuNVH0&n$n >.BF` J KH|f`RF0Gm L N^NuNVH0&n$n BG` KH|f`RG GPm?<P/ HЇ/N L N^NuNVH0&n$n >.0g2BF`&HHAl0<`DHHAo0<`2RF0Gm`$, F<* E:0El0<`0Eo0<`0<L N^NuNV?, .2.HЁ6,HЃ/ .2. HЁ6,HЃ/NH N^NuNVH?<?,NTXHz?<?./,VN Bg?,N0XLN^NuNV0<=@ .-@`2 nH|.g nf`" nR2.RnA nf nRH|.f\`0.RnA nm?</.HnN ?<Hn/.N ?<Hn .P/N N^NuNV-n`R nfS` nSB nH| g/.NX=@ no=n` n n@Sn nl n|./.NX=@Bn` nH| f` Rn nm nH| f2Bn` n(2.n nRn0.P@noN^NuNV o`4/<NX)@)l nHl?<N\0<`9|)|f0<N^NuNVNJ@f`?<Hl4HlHlHlN =@ nf0<`?<NJT)lBgHl?<N.P-@ oR/</,?<Nj -@?<NJT o ,Ю)@0<`.`Hl8?<N\`HlP?<N\?<NJT0<N^NuNVNJ@gNNBlJ)l&9l9l BlBlBl0,9@)|fBl$Bl")@9|Bl-lN ,H-@ lŔf|`|Bn` nRH?NlTNBJ@Rn0.".Am9|JNBl9|NN^NuNVNNJ@f`Hlh?<N\=@ nf"Hl?<N\=@ nfN=@ nf,N ,fHl?<N\` Bg?< NX` nfN =@ ngxBlNNN^NuNV-|GH-|GNN$J@f`?<Hl HlHlHlN =@ nf0<`N nf`?<Hl?<N.P-@ o ,H-@/<Hn?<N /./,?<N -@/<Hn?<N ?<NJT .f0<`.`Hl ?<N\`Hl 2?<N\?<NJT0<N^NuNVNJ@f`h)l)|fBl$Bl"NNBlJ)l&9l9l Bl lŔf|`|BlBl0,9@)@N^NuNV n`L0,g ,H l0. lR0,$gR l"f0.|A&)PfBl$Bl"`( nkf9|"` nGf9|"`Bl$Bl"` n l nf 9|$Bl"`, lH1@, lH1@n 0.l @oJ,g?,?<?,N\0<lnBlRlRl loN0,gN_l0.g ,g?,0,nS@??,ND\0.l ,N^NuNVN4J@f`)l&9l9l 9|JN*N^NuNV0.| =@0. |!=@ n lŔf 0. =@ l1n& l1n * l1n ( l1n , ,f2. |RA l1@" lBh$ lŔf* lRh( lRh, ,f2. RA| l1@"N^NuNVN,tH|fHlHltNP?<Hl)Hl(HlfHltN  @o9|vHlfHltNPBlvN^NuNVBnBn lLW|=@ lJW|n lLW|=@ lJW|nNNHl)?<N\=@ nl nf-l`-l0,hl=@=ll`-|`vBg?<NX l B nRH?Bg?<N\` .R u0o`?<?<NX l?<?<NX af`T nSn0.f20.g?< Bg?<N\0.g?< Bg?<N\=ll0.SnJ@f.NN^NuNVHl)J?<N\=@ nnN?,ʐNT?,ʐN TBgBN\N?<?<?<N\?<E?<?<N\N nf>N8NHT9@H|A@|:0,R@?Hl?<GN>PHl .6.HЃ/NPJ@gHl  .6.HЃ/NPJ@f`0,Nf9|NB?<N\?<?<?<N\?<E?<?<N\?<?<?<N\?<e?<?<N\/.HnNPA-H`R nf`( nH|\f`$ nH|:fR`S .An nR\ nB.H|:f(.H|am. .H|A??<N>XHn?<;N>\?<NTBgNTAXH/</. /.?<?<KNAAL=@~?<NTBgNT?<?<?<N\?<f?<?<N\0,NgBlNB?<N\B?<N\?,?<N>XHl?<;N>\ n~l`Hl HnNP/.HnNPHl HnNP?.~Hl 8N\/HnNPHl DHnNPHn?<N\0,6g?</,N\`?</,ńN\NN&N^NuNV:BnN0.| g`?<?N~Hl?<BgNP?<?<?,ʄ?,ʂ?,ʆ?,ʈBg?</,N ,tH|fHlTHltNPHn?< BgNPBg?<#/.NPBg?<"/.N`PBg?<&/.N`PBg?<'/.NP?<Hl Hl HlfHltN @oHltHnJNPHlfHnJNP0,6fN~Hn?< BgNP0<9@(9@.9@29@0B?<N\N n0(j|g 9|(`B n0(|g9|09|.`$ n0(|g9|29|.` n0(|gBl29|.` n0(|g Bl2Bl.` n0(|gHl ?<N\ @f` n0(|gBgHltNH\`` n0(|g?<HltNH\``dAf HgXAJ-H` nRH??<?<N\ nf?< ?<?<N\0,Ϯg?< ?<?<N\`X n0(|g HnJNX`>0,(g9|vHlfHltNPBlv` n0(R|g`D` HnJNXB?<N\Bl*Hl?<BgNP0,6f(?<Bg?,ʄ?,ʂ?,ʆ?,ʈBg?</,N `9|*Hl?<BgNP0,6f.N~?<?<?,ʄ?,ʂ?,ʆ?,ʈBg?</,N 0,0f60,2f0Bg?< ?</.NP?/.NPBg?</.N`P,tH|fHlHltNPHn?< BgNP n0(|g9|0`9|29|.B?<N\HlfNXB?<N\Bl*Hl?<BgNP0,6f(?<Bg?,ʄ?,ʂ?,ʆ?,ʈBg?</,N `` |g`Bl*Hl?<BgNP0,6f*?<?<?,ʄ?,ʂ?,ʆ?,ʈBg?</,N Hn?< BgNPBg?<#/.NPBg?<"/.N`PBg?<&/.N`PBg?<'/.NP`,tH|fHlHltNP?<Hl Hl HlfHltN @o\HltHnJNPHlfHnJNP0,6fN~Hn?< BgNP0<9@(9@.9@29@0B?<N\N n0(j|g 9|(`D n0(|g9|29|.`& n0(|g9|09|.` n0(|gBl29|.` n0(|g Bl2Bl.` n0(|gHl ?<N\ @f`B n0(|gBgHltN0\`$` n0(|g?<HltN0\``fAf HgXAJ-H` nRH??<?<N\ nf?< ?<?<N\0,Ϯg?< ?<?<N\`BgHlf?<N.PHo.NHl H?<N\ @f`t?<NJTHlfN~X n0(|g HnJNX`40,(g?|8g8|9g2|:g,|;g&|g|?g|@g|Ag`0.|8?NT``|Lg|Cg```|Eg|Ng` N``|Gg```|Hg |4g`9lNHl/,HNP0,AA//,HNPHl/,HNP0,6fBgBg/,H?<?,ʐNb NBgBg0,R@?NX\=@Hl/,HNP/,ʞ/,HNPHl/,HNP0,6fBgBg/,H?<?,ʐNb NN ng nl ?.N(TBl``|Pg`*N?<?<NZX @*W|?NT`\`|Sg`.BgNT?< ?<NZX @W|?NT`&`|Qg`.BgNT?< ?\-@ nP/.?< N>\.HN^NuNV` nR n R  .SJfN^NuNVBn`Rn n m` ?<?<NXBn`Rn n m?<?<NX mN^NuNV n' cBn n c=| Bn`*AٜH||gAٜH|f` Rn nEmRn0.AٜBHlzHlٜNP?. HlN\/HlٜNPHlHlٜNP?.HlN\/HlٜNPHlHlٜNP/.HlٜNPBn`AٜH|f` Rn nEm`Aٜ Rn nEmB,Hlٜ0,~l|2<HŔA lŔW|A?0,ʀR@??,ʒNd N^NuNV9|$0,0gHlHlٜNP`:0,2gHlHlٜNP`$0,.gHlHlٜNP`HlHlٜNP0,*g0,2l0gHlHlٜNP0. gHlHlٜNP`HlHlٜNP/.HlٜNPHlHlٜNP?<?<HlNPN^NuNVBn`?<?<NX?<?<NX m0,&gvB`4 .R o$0.Rn @o`*?<?<?<N\`?<?<NX g`?<?<NX?<?<NX mN^NuNV n0<`)l Bl0Bl2Bl.Bl*Bl40<N^NuNVB.Bn0,,g0<`0<=@0,0l,g=|Bn`B`dR . n/<NX|g0<`F?<?<NX l$?<?<NX f0<` ?<?<NX g?<?<NX@.. nR0..|A@=@Bn`*0.|g0.@6<!@=@` 0.@=@Rn nmRn0.nmB`dR . n/<NX|g0<`D?<?<NX l$?<?<NX f0<` ?<?<NX g0,.f0?<?<NXH=@.Hng0<`0<`?<?<NX@=@B``R . n/<N&X|g0<`z?<?<NX l"?<?<NX f0<`B?<?<NX g?<?<NXn0.ng0<`0<N^NuNVBnBnB ,-@=l*BnB0.fD=|?</.?<N.PHl"0,&gNHl?<N\ <` Bg/.N \=|0,0f$0,.g0<C`0<H??<?<N\`?<F?<?<N\?.?.HlNvPB`|?<?<NX l`?<?<NX l ?<?<NX f`/<NdX|g?.?.Hl$NP`vR `mz?.?.Hl0NP?<?<NX lNhRn n o`* nf0.|f l. nn0,.g?<C?<?<N\`?<?<?<N\`?<?<NX=@?<?<NX l"?<?<NX f=|9|,9|00.|g` Bl,Bn`|g` Bl0Bn` |Fg`Bn=|=|B`|?<?<NX l?<?<NX=@`X/<NX|g`D?<?<NX l?<?<NX f`R 'mz nl`PB`|?<?<NX l?<?<NX=@`X/<N2X|g`D?<?<NX l?<?<NX f`R 'mz nl`0.6<@ng?.?.Hl8NhPN` nf nf0,*fN`n`^0.2.|=AAgJ nf nf`0.f nfN`0.nlN`0.no``?.?.HlFNPHnNX=@0.f` .갮f`?<?<?<N\=|?.?.HlTNP/./, ?<N Hg?.?.Hl^NVP`B nfBn?<?<?<N\.H| n`R?<Hn/.N& nB( A-H` nRH|f` .A"Ҽm .A"Ҽm )|`nB`T ng nH|0m nH|9o`B ,/ < /N( )@ nRH|0HѬ .A"ҼmA-H` nRH|f` .A"Ҽm .A"ҼlN^NuNV nl Aͮ-H`0.g A-H`A-HBn`P0. n-P no nR*` nRBBn` nRBRn nmRn n mN^NuNV9n(0.|g`A)H ,)@0 n0<`Bn`0.Rn l00 n2m ,0мd)@0T?0<`?<NJTN*?N^NuNVHl?0. l00. l1|0.2, l1@9@` nf40. l00. l00. l1n`D0. l1n0. l00.2. l1@2. l02.H l0(H/"/N(" ,Ё-@Bn`@0. lA0=@?0.A//.N 0.HѮRn0. lhm0<N^NuNV nl0.`T lf9|0<9@49@0<`20.lf&0. l9P0, l1|`0. l Pl<0. l0(=@ @m0. l0`?N\J@f ?N^NuNVHl?<N\=@ @f` nf/. BgN|\`r0.g =|9l,`X/. ?.NX\ @l`H nf=|?<?<NX l?<?<NX f`0<fN^NuNV??.NT @l0<`N @f0<`BG`0 n -P`d nH|^fR nH|0=@ nm n o=GS l(f nf|0.A T-@?</. .R/NF n:V?</. .R/N" n:V?</. .R/N n 0.A-P` nRH?NT @l` nfR`Z nH||f.R?< NdT @l`?< NPT @l`` nRH?N0T @l` nfRG0 lPmv0<>N^NuNV. H?Bg?<N\ fHl?<N\ @f``0<`0<N^NuNV nfHlL?<N\` nfHlj?<N\N^NuNVHl/,ͪNP nf A-H`r nf A-H`` nf A-H`N nf A-H`< nf A-H`* nf A-H` nf A-H`0.`././,ͪNPHl/,ͪNP/,ͪ?<N\0.N^NuNVHn?<BgNPAΆ-H`R nf` nSH|\fR` .AΆlRHnHnHnHn/.N n!n?,HlN\ n!@0,ڐl?Hl"N\ n!@?,Hl*N\ n!@?.?.?.?.BgBgBgBg?<N?.?.?.?.?< Bg/.NBg/.N<\=@0. n1| N^NuNV0.f A-H`Aʢ-HBn`(0. n 2<'n lh!@ Rn nmN^NuNVBn`Rn nmHnHnHnHnBg?<?<NN^NuNV lh=hF l o"0.H=@0.H=@`=n lh1n^ lh0(FHH=@0.2.nAo 0.n=@ lh1nZ0.n lh1@r0.2.nA lh1@v?<"NT?<%NTN^NuNVH>.&l:,0ll Gl <`JBF` Ef <`80 K:RF0Gm0H l2(H/ /N( -@ ,ЮLN^NuNVH>.&l:,BF` Ef`0Gf0`0 K:RF0lm0<` A 2A 2A, RG G mA)H < l2(H/ /N( /NX-@ nBG`0A| RG G m``BG`VHl /.NP G l0<1G n@ ` n|1 n|0 0A| l0(HѮRG G mA)HdHl/,dNPHl /,dNP?<NrT lh ( @ lh ( @  lh ( @ lh (L @  lh (4 @  lh ( @  lh)hP lh!lLN^NuNVH0:,rA$H?NzT&@ ojREBG EdlRGR E lRGR<. 2<lŔA0.^@|=@?/ N\/ ?0.2AA??,ʒNd +HB+/ ?0.| ??,ʒNd 0@+.HB+. м)/?0.|??,ʒNd 0@.+(HB+( м/?0.|??,ʒNd 0@(0|1g` A &H`R`|2g` A &H`@`|3g` A &H`.`|4g` A &H``|5g`A &H` A &H``/ ?0.|p??,ʒNd `0<`0<L N^NuNV=n0. R@=@0.=@0. 2<HŔA=@Hn?<?,ʒN$PN^NuNV0,=@^@|9@0,=@^@|9@0,=@^@|9@0,=@^@|9@BHnHnHl?.?,ʒNx9n9n9n9nN^NuNVHHnHn?</,hNF0<HŔn0.T@=@9@9@0.9@9@0. lh2(YAA9@9@ lh0(S@2<HŔA>=@0.n9@9@Hl?<?,ʒNP><HǏŔ nm60.g0l0l<< `0l0lBF?<NTNp`` nfP0,xnl9nx<,xnHƍ F o<< 0lll0l9@rAnr ```<,rl=n0=@0.Rn9@9@0.n9@9@0,Sl9@0.GS@n9@9@ nf ?< NT`R=lr nm 0l9@rBgNT?,?.NXAnrg ?< NT nm9nrLN^NuNV=lr9lrN9lr`?0.2<HŔA=@0,xnm0.2<HŔA=@0,xno`0,vf0.g0,lf?.?</,hNNP0,6f?<?</,ŌNP0.N^NuNV0,lf?<NTBgBg/,hNNP=|0,lf ?<NT lrm l'rl?,rN4T-@=|'0,lf"?,r?,t?,v?,x?<Bg/,hN o\?</./,N& ,м-@ nSB` .l` nSB nH| gBgBgNBgN΄T/./,NP n o9|N r`9|'r9|lNN0<N^NuNVnHlHnpNPHl! HnpNP?<NJT?<Hnp?<N.P @oFBnn`60<8nn lń ( T-@/< /.?<N Rnn n nm`Hl!?<N\ @f`?<NJTN^NuNVnHlHnpNPHl!VHnpNP?<NJTBgHnp?<N.P @oDBnn`60<8nn lń ( T-@/< /.?<Nj Rnn n nm?<NJTN^NuNVNFN^NuNVN:N^NuNV/.NpXN^NuNV, nf0<` 0,6fNN4NJ@g/.HntNPHl!bHntNPBgHnt?< NP @o?<E/,HHn.N& Hl!f/,HNP/./,HNPHl!t/,HNP0,6fBgBg/,H?<?,ʐNb NNBgBg?< NX\=@,Hn./,HNP0,6fBgBg/,H?<?,ʐNb ?< N$T0,6fNNX0.,N^NuNV/,ͤ?<N\N^NuNV` nRH??<?<N\ nfN^NuNV?<?<?<N\?<Y?<?<N\?<7?<?<N\0< n??<?<N\?. Hl!vN\/NnXHl!NdXN^NuNVHlHlNPB, ,мp-@Bn`"0.AÄ nBRn nmN^NuNV?<?\-@x N xo/.x?<HN>\-@p pn-lp-|N x?<Hl&N\ @n`JHlHnNP?<Hl&N\ @n`$HlHlNP.,HHAf8H|Cl./.d?<N\=@ nf`` nf=|?<NJT?<NJTBgHn?<N.PHl/.`?<N\`Bn`( nfBBgN\/.\?<N\B?<N\/.x/.p?<Nj -@|xlBn |l` nfBBgN\/.X?<N\0.fh=|BgHl?<N.PHm /.T?<N\ @f`vHlN~X?<NJT?<Hl?<N.PHl`DB?<N\ |o/.|/.p?<N H-@| |l`0.fBBgN\ |l>-nPt .|?Hl&N\?/.tN\/.L/.tNP/.t?<N\?<NJT?<NJT .pg/.p?<IN>\LN^NuNV?<Hl&ND\ @n`,HlHlNPHlN~X @lHl&?<N\N^NuNV?<Hl'N\ @n`HlHlNPHlHnNP?<Hl'4N\ @n`nHlHlNPHlHnBg?<VN> =@ nfHl'P?<N\`. nfHl'z?<N\` nlHl'?<N\N^NuNV?<Hl'N:\ @n`4HlHlNPNHlN`X @lHl'?<N\NN^NuNV?<Hl'N\ @n`,H|AR@?Hn?<GN>Pl|:?<N>T=@HlNXS@=@ nl`AH|\f ABHl(HnNPHlHnNPHl(8HnNPHn?<N\ @f&NHlNTX @nHl(X?<N\NHn?<;N>\?.?<N>XN^NuNVN^NuNVBn0.N^NuNV/.Hn|NPHl(zHn|NP?<NJT?<Hn|?<N.P @n0<` `/<Hn?<Nj -@ m.H|gZ.H|.f`/.HnNPHl(HnNPHnHnNPHnNBX @o`V`0<``@/.HnNPHl(HnNPHnHnNPHnN~X @l0<`<` o0<`*``0<f/.NX @o /.NVX0<N^NuNV?Bn-lHn?< BgNP nBh n (< @-P nBBgBg/.NNP?,r?,t?,v?,x?<Bg/.N?</.N<\ @f`^ n0(|g=|`=| n0(|gBn`=| n0(B|g=|P=| `( n0(Z|g=|P=| ` =|(=| /,À?<N\ @f`Bg?<./.NNP?,r?,t?,v?,x?<Bg/.NNBG` n0(dH2RAHd n1@?,r?,t?,v?,x?<?</.N nf2?0.=@0. n@0.H n@0.| n@?<BgBg?<?.B/.?< N nH|oN?<N>T=@?.?<N>X?</.?<P=@?.?<>N>X?.?<N>X/,x?<N\N?<?</.NNP>N^NuNV0.H/ <N /N( -@`NpJ@gN8`N4J@g0<` .SJf0.2Qp:Yxʡ -No0 P@%pF`g=^"2B5RbwrV˕nO, 4$tfdGT$D۷_~<&6fWvvFV4Lm/ȉ鹊XDHexh'8(}\?ثJuZTj7z *:.lM|&l\dLE<, >]|ٟn~6NU^t.>NVA )@ n-|./.NX)@r`)lr rn0<` ,rм )@nRr0<N^NuNV0.9@N^NuNV0,H6.@| l02,A@9@0,N^NuNV0,&g0,$g?.NT9@F`B0,F@9@F lFo0,F|R@9@F0,Fn9@F lFo0,F|R@9@FN^NuNV/ BlBlBl9|&ln|F0.@?<N TJ@gN Z&_N^NuNVNJ@f`DBlH9|"Bl&Bl$Bl9| ?<N T?<+NT?<NT?<0NTN^NuNV?NXJ@f`=l$Bl$BlFBG`& l H?NT l H?NTRG l f0,F@| lJH?NxT0,F| lJH?N^T?< NTT9n$>N^NuNV0.|=@ n l:ANH|g?<NT0.|@?NT` ?.NT` ?.NT0,BR@H@9@BN^NuNV?<NT0,H|0?NTN^NuNV?<NTN^NuNV?<NTN^NuNVBl>?<dN*T9@< l l0=l=|`?.NT?.NT=@Rn0.lo=|Bn0<fN^NuNV0,l fNJ@f0<`Z?,HN>T9@H0, ln0H0, ln1n?,NNT?,N.T9@0,R@9@0<N^NuNV`N2J@f0<` ln0<N^NuNV/ ?<NJTBg/.?<N.P=@ nl0Hl)NhX/.NhXHl)NhX?<ENT0<`Hl)NhX0, lnA&H|N0,"H/A/?<Nj -@ o$Hl)NhX .?NT @f0<` .2,"Hg?<NJT l?<ENVTHl)NhX0<`R0, lnA&H|T|C?<N8T @f0<``Hl*NhXNJ@f0<`0<&_N^NuNV/ lrh6 lrh4 lrh2 lrh00, lnA&H|+||||| ?<NTJ@f`NJ@g,6H|l,6H`0<@,,4H|l,4H`0<@.,2H|l,2H`0<@*,0H|l,0H`0<@(,*H|f|*,*H9@"9|&,(H|f9|$,.H|g 9|9| &_N^NuNV/ 0, lnA&H|?|?<NTJ@gN&_N^NuNV?<NJT?</.?<N.P=@ nl0Hl*4NhX/.NhXHl*LNhX?<ENT0<`JHl*ZNhXN`0BgBgNXJ@g lrH|Ng`v0,DS@=@ noP nlH0.H/ ,rR/?<N ng&Hl*\NhX?<NJT?<ENT0<`Hl*NhXN``|Tg`N lr(H|Cf?<NJTN0<`t`$Hl*NhX?<NJT?<NNT0<`N`(`|Fg`NHl*NhX?<NJT0<`$`Hl*NhX?<NJT0<`0<fN^NuNV?< NT @Bg`NJ@f`Hl*HnNPBlBlBlBl=|Bl@BlB0,&g:Hl*NhX0,$g Hl+NhX,.H|g Hl+NhXHl+$NhXBg?<NXJ@g@ lrH|Tg` lr(H|Dg```|Ug``?<NNT``` lr(H|Ag```|Bg``?<NNT```=|Hl+*Hl NP`Rn lrPHnHl NP lrH|g0.2,DSAAm lr(H|UfHl NXJ@g Hl+,NhX`Hl NXJ@g Hl+FNhX`0`|+g`N` `|?g`NP`?<NNT```N^NuNVBn n B l o0.lo0<`| l0| @ f0<`d0.l=@ nl 0.D@=@ l o nm0.nm nf&0.H/?,N\-@2,A `&0.l??,NX-@2,A 9n gJ n( |? .м //. N& n( | n B/. NX=@`=|`l nm^ n lV0.A @m@0.A/NX=@?.0.A//. N& n B`=|0.N^NuNV nf0<`j=l`THn?.N6\=@ @l0<`D no*.H|_f?. Hn/.NX J@f0.`Rn0.lo0 nl0. AdA-H`0. l`A-H n(Ab n(H|g0.AB n (-@ .-@V o n =@0.f n0(dH2.A `P0. nhnB n f nHH2.A `0. n 2.A ` n (2.A 0.A0=|=| nm8 nl0. AdA-H`0. l`A-H n(Ab n(H|g0.AB n (-@ .-@V o n =@0.f n0(dH2.A `P0. nhnB n f nHH2.A `0. n 2.A ` n (2.A 0.RnA0` ng=n0.A0` n0 n ( @`f=|`& n ( @af0.f0< ``0<`` n0U n0X nT0=@ @f0.f0<``f nl0. AdA-H`0. l`A-H n(H=@0.| @f n=P nl0<` nf` nl0. AdA-H`0. l`A-H n(H| @f n ( @`fU`l n0( n0=@T nl`V nl0. AdA-H`0. l`A-H n ( @af n0` n Pl nm n Pl0< ` nT0=@ @f0.N^NuNV8Bn8-n`R nH| n nH|f=|@g RP=|H`=|H` RP=|H=|J`"` nPH|fTSP .Pm0 nPH|g RP=|H`=|H` RP=|H=|J``=|J=|H``d nJf nPH|"g`J nJfP nPH|%gB nPH|:fBn:`* nPH|/f=|:` nPH|-f=|:` nJf nPH|'g` nPH|"f nJg=|J` nPH|'f nJg=|J` nPH|%f nJg=|J`v nPH|$f=|J`` nPH|@f=|J`J nPH|-f 0.JfRnH`0 nPH|.f0.Jg RnH=|J`HSPRnH`6`RP`6`$ nJl=|J nPH|_f=|J`RnHSP0<fr0.Bg nJm nJg nJl=|J nJo" nJg?.H .PR/HnTN& `?.H/.PHnTN& ATHB nPHo=|PH nJm" nJg nJg0<A2. @lBHnTN P=@>``|g` HnTNzX/HnN fP=@>``|g`HnTHnN P=@>``|g` HnTN2X/HnN vP=@>``|g`B0.:gHnTN$X/HnN *P=@>`HnTNpX/HnN P=@>`F`|g`.TH?HnN &\=@>`"`|g`HnTNFX=@>``|g`jHnTN*X=@> n>m n>o2 .Pf0.@f?,HnTN |\=@>` 0<8=@J=@>` n>m 0<7=@J=@>`` |g`HnTNX=@> @l2 .Pf0.@f?,HnTN \=@>` 0<=@J=@>`.0. g n>l0<=@J=@>`?,HnTN \=@>`0.J|=@>``0.@Rn@A0> n(@o=|J0.@A0 nJl`& n>0.Bg`SP .P-@L .Ll* n@f0<`T nJf lo=|J`=|J`& n@f nJf=|J`HnNX=@J nJf9|`Bl nJl0.J` nJl0,gv0. gp llh0,f lfZ=lD=lF9|Bl0,S@?Hl+`N\/NhXHl+jNhX/.NhXHl+nNhX9nF9nD0,f?. HnNR\=@J`D nJf<0,gHl+pHnTNPJ@g=|6JBl`Hl+xHnTNPJ@g9|0.JN^NuNVBnNfHn?,N\=@g0 nl0.`*Rl?<HnN\=@ @lBl`Rl0.N^NuNV0<=@9@9n 9n 9n l o 0, S@9@N @f0<`N0,f l o0<` n n0,A 9@ n nBl0<9@9@9@9@9@9@ l o ?,NT`N=@ nl0,vgNDN,`?<?<NX?<?<NX m0.N^NuNV0,g0<`x/< NX)@` ,` n0<`V/< NX)@X ,X n0<`4A.  l` l`B(BlV lXBBlAd)H\9|0<N^NuNVS .Xml .",X6,VH҃lXBn`0.A  f`Rn0.lm ndl$0.lfRl0.A 0<`0<N^NuNVBn0,glBn`\0.A -@ n`< nHn m. n2. | HAlR0.AB=|`Rn0.lm0.fX0,Vn @ o <`d ,X6,VHЃ-@0. n0. T@lV0,V|g0. R@ nRlVR?. /./.N< n B .N^NuNVHBF-n`* nH|Am nH|Zn n RRF nf0f0<`-nBGAd-H`> n(HFf?/. n/NX J@f0`|RG0 AdA-H n(f l`A-HBG`B n(HFf ?/. n/NX J@f0|`"RG0 l`A-H n(f0=@ Go Gn0<` Ggf0<=@=@-n`: nH|Am$ nH|Zn nH|Am n RRn nf0.f0<`-n l`A-HBG`F n(Hnf"?./. n/NX J@f=|`RG0 l`A-H n(f Gm0<`.0.f4?./.N\ n l n `0. n@`R n PH|!g n PH|_f2 n (-@ n(H|f . o /.NX`>=|-l\ n (-@ n(H|f . o /.NX0. n@ n1n n!n0.f(0 l`A -HA.  n nB(0.f0<`0|>N^NuNV/. BgBg/.N N^NuNV/. Bg?</.N N^NuNV/. Bg?</.Nt N^NuNV/. Bg?</.NV N^NuNV0. |H/ <d/N( /Bg?</.N N^NuNVBn=|-n `Rn0. @o` nRf/.NX=@ nm nl0. AdA-H`0. l`A-H nH|!g& nH|_g n(H|g0<` n (-@ n(H|f . o/.NX nB0.R@?Hl/N\-@ l0<`R?./. .R/N< 0. n/.Bg?</.N =@ nl /.N&X0.N^NuNV0. H/Bg?</.N N^NuNV0. H/Bg?</.Nt N^NuNV0.H-@0. | @g ./ </N( -@X .gR/.N X=@ @mP0. l`A-H n(H|g0< `$ n(Hn g0<` n-h/.NX-@ n0<` nA -@X ./?.0. |?/.Nv =@ nl/.?<IN>\` nX  nmF0. | @g nX `& ./ <d/NR X nRSn`$0. | @g nXB` nRB0.Sn @n0.N^NuNVBnB nH|-f =|R`2 ./ < /N( -@ nH|0ѮR nH|0m nH|9o ./ <d/N( -@ nH|.fpR nH|0m^ nH|9nP nH|0 ѮR nH|0m$ nH|9n nH|0Ѯ0.g .D` .N^NuNVBBn0<=@=@=@` no`` nH|/g nH|-f RnR`h`X nH|0mB nH|9n40.A0 0 nH|00.A0A0` nB`R nft nfZ nf =n=| nn=| nn=| nnBn ndlnl0.H-@ ./ <d/N( -@0.HѮ ./ <d/N( -@0.HѮ .N^NuNVBBn0<=@=@=@` no``v nH|:f RnR`f`X nH|0mB nH|9n40.A0 0 nH|00.A0A0` nB` R nf nfl noBn n;oBn n;oBn0.H-@ ./ <\ nB n( nBhRn0. l`A-H n(fN^NuNV0. l`A-H n(H|g@ n o n/(?<IN>\ nB n( nBh0.`0\-@ nP/.?< N>\A\(PAZ*P.`N^NuNVB?< N>\-@ n P n  /.?< N>\A(PA*P.`N^NuNVB?< N>\-@ n=P/.?< N>\A(PA*P0.`N^NuNVB?< N>\-@ n =P n 0/.?< N>\A(PA*P0.`N^NuNVB?< N>\-@ n-P/.?< N>\AD(PAB*P .`N^NuNVB?< N>\-@ n -P n /.?< N>\A(PA*P .`N^NuNV l`h/<bNXX"./"< l(H|g n (-@ .-@V or n =@ no^0. nhnN n(H| f( l / <d/NR X n` l 2. n ` l  n!@ lH|g l Pl 0<` l Pl l0 AdA-H` l0 l`A-H n (-@ o, n =@ nm0. nho lB` lH|f l Pl 0<` l Pl l0 AdA-H` l0 l`A-H n PH|!f nB` n PH|_fBl nB lH| l\@ l\(H|f l\B l\B(Bl` l(H|fl l (-@ . oN l\B( lH? l/HnN>< H l\!@ nH?Hn .R/N& ` l\B l\B(` lH| @fR l(H| @f< l (/ l /NPJ@f l\!|` l\B`, l  lf l\!|` l\B0<`N^NuNV lH| @fR l(H| @f< l (/ l /NPJ@g l\!|` l\B`, l  lg l\!|` l\B0<`N^NuNV lH| @fT l(H| @f> l (/ l /NP @o l\!|` l\B`, l  ll l\!|` l\B0<`N^NuNV lH| @fT l(H| @f> l (/ l /NP @l l\!|` l\B`, l  lo l\!|` l\B0<`N^NuNV lH| @fT l(H| @f> l (/ l /NP @m l\!|` l\B`, l  ln l\!|` l\B0<`N^NuNV lH| @fT l(H| @f> l (/ l /NP @n l\!|` l\B`, l  lm l\!|` l\B0<`N^NuNV l(H| l\@ l ( l\!@ lH| @ld l(H| @lN l (/ <d/NR X l"/"<d/NR"X/ <d/N(  l\!@0<`N^NuNV l(H| l\@ l ( l\!@ lH| @ld l(H| @lN l (/ <d/NR X l"/"<d/NR"X/ <d/N(  l\!@0<`N^NuNV lH| l\@ l  l\!@ lH| @g lH| @f< l / <d/NR XJW|H/ <d/N(  l\!@0<`N^NuNV l(H| l\@ l ( l\!@ lH| @ld l(H| @lN l (/ <d/NR X l"/"<d/NR"X/ <d/N(  l\!@0<`N^NuNV l(H| l\@ l ( l\!@ lH| @ld l(H| @lN l (/ <d/NR X l"/"<d/NR"X/ <d/N(  l\!@0<`N^NuNV l(H| l\@ l ( l\!@ lH| @ld l(H| @lN l (/ <d/NR X l"/"<d/NR"X/ <d/N(  l\!@0<`N^NuNV HBn lH|? l/HnN6( =@ noh nfN<.A-H`2 nR0. g&H|^gH|@m<@Bn `H|^f =| `H|~f< nf(H?N@TH| f ?< N*T`?.?<NXJfX/<bNXм-@`*/<bNxXo l\!|0<`z?.?<NXJgH??.?<N\H| f0,Ϯg?< ?.?<N\0SFJ@f nfN0.dH l\!@LN^NuNV?<N l / <d/NR X| ?NJT/ <d/N(  l\!@0<`N^NuNV l(H|=@ l (H/ <d/NR X=@ l / <d/NR X-@ l\!| l (-@ l(H|g l hl 0<` l hl l0( AdA-H` l0( l`A-H n0(H-@ n (-@ l(H| g ./ </N( -@X nf nRHH-@`P nf, l (/ <d/NR X-@-|}` l(H|f 0<` .n o lH| @f l(H| @f no| nlr0.g8/./.0.| ?N / <d/N(  l\!@`4/./.0.| ?Nj / <d/N(  l\!@0<`N^NuNV?<NT`N^NuNVBgNT`N^NuNV l H/ <d/NR X=@?.N"T/ <d/N(  l\!@0<`N^NuNV l (H/ <d/NR X=@ l / <d/NR X-@/.?.N \/ <d/N(  l\!@0<`N^NuNV l\!| lH|ft l(H|fb l R-@ l (R-@ o< o0/./.Bg?<VN> / <d/N(  l\!@0<`N^NuNV l\!| lH|f> l R-@ o&/.N~XH/ <d/N(  l\!@0<`N^NuNV l\!| lH|f> l R-@ o&/.N`XH/ <d/N(  l\!@0<`N^NuNV l\B lH|f^ l R/ l (/ <d/NR X? l (/ <d/NR X?NP @o l\!|0<`N^NuNV l\B l(H|fB lH|f2 l R/ l (R/NP @o l\!|0<`N^NuNVN.A0  l` l`B( l`B(BlV lXB0<9@9@9@9@9@9@9@0<`N^NuNV lH|f l(H|f l -@ l (R-@ ng o o`R nfW?<Hl0/.NX @g?<Hl0/.NX @f, nB l (R-@/.NX0<`8`, l (R-@/./.NPdH l\!@0<`N^NuNV0<`N^NuNV0<`N^NuNV0<`N^NuNV0<`N^NuNVRl0,g Rl`( l f9|Bl` Bl9|0<`N^NuNV lf40,f( l f9|Bl` Bl9|` lf0<9@9@0<`N^NuNV lf 0,fBl9|`Bl` lf0<9@9@0<`N^NuNVSl0, @lBl0<` loSl0<`N^NuNV l\B lH| @f l(H| @f l -@ l (-@ nH=@ nH=@ oh o\0.nl0. nH=@RR no?././.N& /.NXdH l\!@0<`N^NuNV l\B lH|fj l(H|fX l oH l o:?< l (/ l /NX H=@0.f l\!|0<`N^NuNV l\B lH|f. l o l /NXS@dH l\!@0<`N^NuNV l\B lH|f l(H|f l (-@ l -@ oV nRH=@ no=| no?./.HnN& `BnAB`B. oL nRHn no=| no/.HnNP`BnAB l\|HnHl1NP @l 0.` 0<`N^NuNV l\B lH|f l(H|f l -@ l (-@ .R/NX=@ .R/NX=@ noSn0.no 0<`| oh o\ noRBn`T.AD(PAB*P -@ ?-@ -@ ./ </N( "./"<T.AҞ(PAҜ*P -@ -@ -@ ./ <'/N( "./"<d/N("ЁЮ`.N^NuNV l\|Nh l\!@0<`N^NuNV0<`N^NuNV0<`N^NuNV l\!|0<`N^NuNV l / <d/NR X?N^T/ <d/N(  l\!@0<`N^NuNVrB.r l / <d/NR X=@ nl Bn` nAmnA?.Hnr?<GN>P l\|HnrHl1N¨P0<`N^NuNV l\B lH|f@ l R-@ m(/.?<;N>\/ <d/N(  l\!@0<`N^NuNV?<N>T|AH/ <d/N(  l\!@0<`N^NuNV l / <d/NR X=@ nl Bn` nAmnA?.?<N>X/ <d/N(  l\!@0<`N^NuNV/ nl0,Rf ?<'NhT` nf0,Rg ?<'NhT0<`N^NuNV l f0,g ?<aNhT`0,f ?<aNhT0<`N^NuNV lH| @f29|vHl1 l R/NPJ@g l\!|BlvN^NuNV?<N(T0<`N^NuNVBgNT0<`N^NuNV0<9@(9@.9@29@0 lH|f l(H|f l (/ <d/NR X=@ l R-@ ng0.`|g`|g` ``|g`9|.``|g`9|29|.``|g`9|09|.`h`|g`0N?< ?<?<N\ l\!|0<``|g` ``|g` ``Bg/.?<N.P o"?<NJT0.f /.N~X`0.g`pNNBl&0.f"/.NXJ@g l\!|`/.NXJ@g l\!|0,6f N~`N9|&NN^NuNV l / <d/NR X? l (R/ l (/ <d/NR XS@?NPJ@g l\!|0<`N^NuNV l / <d/NR X? l (R/ l (/ <d/NR XS@?NPJ@g l\!|0<`N^NuNV l / <d/NR XS@?N$TJ@g l\!|0<`N^NuNVBgBg l / <d/NR XS@?N \J@g l\!|0<`N^NuNV lH| @f,BlvHl1 l R/NPJ@g l\!|0<`N^NuNV l (/ <d/NR XS@=@ l / <d/NR X=@?.?<?.N \J@g l\!|0<`N^NuNV0<`N^NuNV0<`N^NuNV0<`N^NuNV/<NHX/<bN2X2, n (-@ l 0< ` n l0(` 0< `N^NuNV l hl 0<` lH|g 0<` l n 0<` l 18o 0<`z l0( l`A-H l / <d/NR X? l(H? n/NP=@ nl 0.` l  l\!@0<`N^NuNV l Pl 0<`6 l?N.T @l l\B` l\!|0<`N^NuNV0<`N^NuNV/<NĨXH|g B` -| l\!n0<`N^NuNV/<NhXH|@g B` -| l\!n0<`N^NuNV l / <d/NR X/N6X l\H!@0<`N^NuNVA)HA)H . l l!n  l n l!| l lB(Ad)H\N l\ (`N^NuNV.BnBBn0 lH| @g 0<`~ l(H| @g 0<``Bn lH|g l Pl l0 AdA-H4` l0 l`A-H4 n4 (-@D n4=h2`XD nD -@<-@8R8 B.`Sn`2.H| f 0,|fB.. nH|f```Rn nmt nB .N^NuNV nf0<`4?<NJT/.N~X?</.?<N.P o/,NdXHlTNZXHlNPXHlNFXHlNXHlTN4XHlTN*XHlTN XHlNXHnN X @m HnN(X/ <d/NR X)@HnNX @mHnNX9@HnNX @mHnNX9@HnNX @m&HnNX=@0.lRgN?<'NhTHnNjX @mHnNX9@HnNLX @mHnNX9@HnN.X @mHnNX9@LBn`|HnN X @mHnNX2.A0HnNX @mHnNX2.A0HnNX @mHnNX2.A0Rn n m|HnNX @mHnNX9@HnNfX @mHnNX9@HnNHX @mHnNX9@HnN*X @mHnNX9@HnN X @mHn l~A/NPHnNX @mHnNX9@HnNX @mHnNX9@ϮHnNX @mHnNX9@NHnNX @mHnNX9@PHnNrX @mHnNX9@HnNTX @m HnN(X/ <d/NR X)@HnN$X @m"Hn ,R/NPHnNX lHnNX @mHnNX9@9||HnNX @mHn l`A/NPHnNX @mHn l\A/NPHnNX @mHn lXA/NPHnNhX @mHn lTA/NPBl|HlNBX @oHlNX9@HnN$X @oHnNX9@HnNX @oHnNX9@HnNX @oHnNX9@HnNX @oHnNX9@ HnNX @oHnNX9@ HnNX @oHnNX9@HnNpX @oHnNX9@BgNTN?<NJT0<`?<NJT0<N^NuNqNqNqNqNVA A Hlp?<BgNP lp1|Ah  lp!@ A )Hh0,ʒH)@lA)HlAL)HzA쵼)HA,)HN^NuNV)n vNpNxNRNNL ,pм @h ,pм @h ,pм @h ng ,pм2.SAЁ @ h/,pNXN^NuNV ,pм @Bh lf ,pм @1|`"0,A^A ",pҼ A!@ Bn`60. A췦A/ ,pм02.Ё @/( NPRn nmBn`60. AFA/ ,pм2.Ё @/( NPRn nmN^NuNV ,pм @h ,pм @h ,pм @h0<=@0<=@`P ,p2.Ё @/( NX=@ nf ,p2.Ё @ h0.no=nRn n o=|`$0.|",p4.҂ A1@Rn n o ,pм @1| ,pм @0(",pҼ Ah|",pҼ A1@ ,pм @0(",pҼ Ah|",pҼ A1@N^NuNV ,pм @ hgf ,pм @ ( -@ ,pм @0( n2(A|=@=|` ,p2.Ё @1nRn no`*=|` ,p2.Ё @1|Rn noN^NuNV0<=@0<=@`2 ,p2.Ё @/( NX=@0.no=nRn no0.| =@ ,pм @ hg: ,pм @ ( -@0.",pҼ Ah n2(A=@=|Blt=|`n ,p2.Ё @0(| @g`VRlt ,p2.Ё @0(",p4.҂ Ah=@0.no0.|=@BnRn n o lp1n ltff=|`T ,p2.Ё @/( NX @g. ,p2.Ё @0(",p4.҂ Ah=@`` Rn no`$ ,pм @0(",pҼ Ah=@ ,pм @ hg@ ,pм @ ( -@ ,pм @0( nh=@0.no=n0.",pҼ0 Ah lp1@ nf$ ltfN ltfNP ltfN=n?<?<?,r?,t?,v?,xBg?./.N Bg?<NX`Rn0.2<ltSAAo0.2<ltSAAn` ltg n1mb0.2<1ltSAAnP0<2.|1A=@?<?<?,r?,t?,v?,xBg?./.N Bg?<NX``0.gBn`j0.| 2. AFH| AfD0<n=@?<?<?,r?,t?,v?,xBg?./.N Bg?<NX`Rn0.ltm0.ltl`?.?.?<Bg/.N =@ nm>0.2<ltSAAn*?<?<?,r?,t?,v?,xBg?./.N ?.?.?<Bg/.N =@0.ngH .2.Ё @0( | @g(?<Bg?,r?,t?,v?,xBg?./.N `H .2.Ё @0( | @f*?<?<?,r?,t?,v?,xBg?./.N HnHnHnHnN nf( .2.Ё @0( | @f=| ng ng n fr?.?</.NNP0._@R@N^NuNVA,(PA**P n (=@ n0(W@=@ n0(W@=@ n0( nhV@=@ n0( nhV@=@Hn?<?.NP?<?.NPX?<?.NX?<?.NrX?<?.NXBg?.NZXBg?.NX?<?.NX?<?.NX n0( W@=@ n0( W@=@ n0( nhV@=@ n0( nhV@=@Hn?.N\ n0( R@=@ n=h n0( nhS@=@ n0( nh=@Hn?.N\ n0( T@=@ n0( nhU@=@Hn?.N\ n0( R@=@ n0( R@=@ n0( nhS@=@ n0( nhS@=@Hn?.N\HnBg?.NPN^NuNV6BlBn6`0.6 A췦BRn6 n6mBn6`0.6 AFBRn6 n6m lvH|gHn8NXHn8NLX lvH|gHn8NXHn8NX lvH|gHn8NXHn8N@XN^NuNVBnR` nR2.RnA nH|]fABHnNX=@ nlBn no=|9nN^NuNVRBn`Bn`& nR2.Rn4. A췦Ԉ B nH|]g nH||g nm0. A췦Ј @B nm"`R nH|]g nH||f nH|]f`RRn nmPN^NuNV nH|]g nf`8R nH|]g nf`Bn`Bn`< nn nH| o" n2.Rn4. AFԈ BR ng$ nH|]g nH||g n m no0`Sn0. @f`0. AFЈ @H| g0. AFЈ @B n m"`R nH|]g nH||f nH|]g nf`RRn nmN^NuNV lv nR lvf` lvRvH|]f nBN^NuNVN0.fN)n vNjNrNLNNFBg?</,pNNP?,r?,t?,v?,x?<Bg/,pN`Bg?</,pNNPN^NuNV0,f/<@NX)@ , n 0<9@`~BlBlBn`0.RnARB n2m , м-@Hl?<BgNPBn`80.A 0<n l ( @ 0Rn n mHl?<BgNPBn` n l0<n=@`R nl0<2.| A=@`6 nl0<2.|A=@` n(l0<(2.|A=@ .2.Ad 2. l!@ Hl1v/.NPRn n(mRBn`0.A$BRn nm0<9@N^NuNV f <`$/.NX@B loBn`p0.AR-P oR n.HHAm@R.H?/./.N& .H nB0.ARB .=`Rn0.lm , 6,HЃ-@ ..HHЃT", Ҽo <`P nR.H?/./.N& .H nB.HT@l0,|gRl .N^NuNV f0<`xBlg .S)@R9|`\Bn`0.AR f`Rn0.lm n2l$ .S2.AR 0.lfRl`0<`0<N^NuNVBn`P0. nA$-P o/.0.A/NP`0.A PBRn n mN^NuNV0,f0<`jBn`X0. nA$/NX0.A/NX2. nA$ f0<`Rn n m0.N^NuNVNJ@fHl1?<N\`*?.NTHl?<BgNPA  l"(< A 0.Ad Pg0.Ad/HnNP`Hl1HnNP l ($ @-PHl1/.NP0.R@=@ n m$ nlHl1/.NP0.| =@`f nm$ nlHl1/.NP0.|=@`: nm$ n(lHl1/.NP0.|=@`Hl1/.NPHl1/.NP?.Hl1N\//.NPBgBg/,NNP?,r?,t?,v?,x?<Bg/,N=|`?./,N<\=@ nfH.gHn0.Ad/NP?.NT @l?.?</,NNP``6` nf`*Rn n o=|` nf=|0<fl?.?</,NNPN^NuNVNJJ@f0<`<0,f0<`0 nm n'o0<`?.NTN4BgBgBgNX\N^NuNV=| =|>>0,g nf0<`?<NJT?</.?<N.P-@ l .``Bn`@/<Hn?<N -@ l`$0.Ad/NX=@0.g40.H/0.Ad/?<N -@2.Hl`/<Hn?<N -@ l`?.N~TBn`x0.A/NX=@0.g20.H/0.A/?<N -@2.Hl`0/<Hn?<N -@ l` Rn n m l`Rn n(m?<NJT .N^NuNVvN@J@g nf0<`6?<NJTBg/.?<N.P=@Hl0.`Bn`?.NnTBn`HnxNdX=@ nn`0.f8.xH|>f*.yH|>f?< Hnz0.Ad/N& `T.xH|>f0.yH|>f$?.NRTRn0. @(lBn```J`Hnx0.A/NPRn n oH nn`?.NTRn n(m?<NJT0.N^Nu[1][Reserve memory size|is too large!|Select the reserve size or|use all available memory?][RESIZE|USE ALL][1][Not enough memory|for Editor or Capture!][ OK ][1][Error allocating memory|for Editor/Capture!][ OK ][1][Replace existing file?][REPLACE|APPEND|CANCEL][1][Editor memory is full!|Erase unused buffers to|make more room.][ OK ][1][Erase current buffer?][ YES | NO |CANCEL][1][Re-Order all lines in|alphabetical order?][Forward|Backward|CANCEL][1][Set End-of-Line Mode...][ LF | CR |CR/LF] ST-Talk Pro "[1][Edit Buffer # | was not saved!][SAVE|ERASE!|CANCEL] Load Buffer #x from File... A:\ A  *[1][Error loading file!][CANCEL|RETRY] Save Buffer #x to File... A:\ A  *[1][Disk is Full!][CANCEL|RETRY][1][Error saving buffer!][CANCEL|RETRY][2][Print current buffer...][ ALL |SELECTED|CANCEL]no name! Editing: [3][Capture/Editor Buffer is full!][SAVE|CANCEL][3][Error Saving Buffer!][RETRY|CANCEL][1][Disk is Full!|Capture has stopped!][ OK ]Bfr: 0|Mem:0K|File: a.bbb|1200 full|00:00:00|$00.00|_ _ _ _ Buffer: 0 | Col: 00 | Line: 0 | Mem: 0K | | I | R 110 300 600 1200 2400 4800 9600 19200 fullhalfeplxSelect CAPTURE BufferSelect EDITOR BufferKKK[2][Erase this buffer?][ERASE!| KEEP ][1][Erase this buffer?][ERASE!|CANCEL]\st-talk.pthST-TALK.PTH\ST2_MISC\ARC.TTP\\\\ST2_AUTO\\ST2_HELP\\\ST2_MISC\TRANSFER.TTP\ST2_MISC\KERMIT.TTP\ST2_MISC\ST-TALK.STF\ST2_MISC\DO-IT!.PRG[3][Insert ST-Talk Disk to|save default paths...][ OK |CANCEL] - Disconnected . File Name:_.___F A:\*File Selector\*.*\*.  <1K(exit this folder)(to top directory) <>..\[2][Sort the list using...][ NAME | SIZE | DATE ]*..\[3][Not enough memory!][ OK ]Select Vidtex picture to LoadVTX[3][Read error!][ OK ][3][Open error!][ OK ][1][VIDTEX Picture... ][ View | File | Erase ][1][VIDTEX File... ][ Load | Save | CANCEL ][1][Vidtex buffer is empty!][ OK ]Enter filename for Vidtex SaveVTX[3][Write error!][ OK ][3][Open error!][ OK ]^[B^[A^[D^[C^[H^[J^[H^[B^[A^[D^[C^[P^[Q^[R^[S^[?M^[?n^[?p^[?q^[?r^[?s^[?t^[?u^[?v^[?l^[?w^[?x^[?y^[?m^[H^[J^[H^[[B^[[A^[[D^[[C^[P^[Q^[R^[S^[[2~^[[6~^[[5~^[OB^[OA^[OD^[OC^[OP^[OQ^[OR^[OS^[OM^[On^[Op^[Oq^[Or^[Os^[Ot^[Ou^[Ov^[Ol^[Ow^[Ox^[Oy^[Om^[[2~^[[6~^[[5~[4][Under Construction!][ DARN! ][1][Could not find| ][ OK ].TOS.TTP[1][The program,| ,|reported an error:| # ][ OK ]Select a File to View...*Select upto 20 files for Batch Send*Select a file to Send...*[1][No Background sending|for this protocol!][ START |CANCEL]Enter file name for Receive...*[1][No Background receive|for this protocol!][ START |CANCEL][3][File already exists!|Delete this file?][ NO | YES ]Select the ARC file for Add/CreateARCSelect upto 20 files to Archive...*xah Select the ARC file to UN-ArchiveARCxxh Select where to UN-Arc the Files* *.*Select the ARC file to ViewARC vh Select the Drive & Path*Select the Program to Run...*.TTP[2][|Save Capture buffer now?][ NO | YES ]Enter Capture file name...*[3][|File already exists!][CANCEL|DELETE|APPEND][2][Erase current buffer?][ERASE!| KEEP ][1][Erase current buffer?][ERASE!|CANCEL][2][Print current buffer?][ YES | NO ]0 AutoPilot: Select an Emulation File...EMUSave Function Key DefinitionsFNK[1][Error Saving Function Keys!][ OK ]Load Function Key DefinitionsFNK[1][Error Loading Function Keys!][ OK ]Select Options File to Load...OPTSelect File for Save Options...OPTFILE.HLPTEXT.HLPPRINT.HLPDIAL.HLPANSWER.HLPSELECT.HLPKEYS.HLPAUTO.HLPSelect a Help File...HLPTTYVT52VT100VT220OTHER[4][AutoPilot ended with an error:|| Line # , Error #][ OK ] Block #  Try #  | FMODEM YMODEM XMODEM CRC XMODEM Batch Send: Receive: |Waiting...[1][Error opening file!][ ABORT ]Waiting...No Carrier!TimeoutBad block #!Receiving...Saving...Disk Error!Done!Disk error!Aborted![1][No files found!][ ABORT ]No more files.End of Batch transfer.Bad end of Batch!Starting...00 [1][Error opening file!][ ABORT ]Loading...Waiting...Done!Sending...Aborted![1][ This file is not a |standard text file!][CONTINUE|CANCEL]Done Viewing Printing Sending , ESC to Quit or any key for More, Press any key to continue...~ ~~;~01241220?1?3?4?5?6?7?8?9?18?1941220?1?2?3?4?5?6?7?8?9?18?193457~;~;~~;~;~;~~;~;~;~;~356?1545?1?4?5#STT02,CC,GH^M^J^F^F^[/Z^F^F^[[ ; R^[[?10n^[[0n^[[?6c#3 ST-Talk Professional 2.0 #3 ST-Talk Professional 2.0 #4 ST-Talk Professional 2.0 #6 Atari ST DeskTop Telecommunications qI#4 ST-Talk Professional 2.0  #6Atari ST DeskTop Telecommunications lqKk x ` VT-220/100/52 Emulation modes with ANSI graphics and VIDTEX graphics x x ` Editor with 10 buffers, word wrap, formating and selecting x x ` Full GEM controls in both the Terminal mode and Editor mode x x ` Fast custom screen Fonts for 80x24 and 140x24 plus 48 lines monochrome x x ` File Transfer with XMODEM YMODEM/FMODEM batch and external protocols x x ` Background file transfering while running other programs x x ` Dialing database with list redialing and cash/time accounting x x ` Capture and Dial while working in the Editor x x ` AutoPilot script language for auto-logon and unattended control x x ` AutoRecord mode builds script files and lets you edit them x x ` AutoChecker in Editor finds AutoPilot errors while you edit them x x ` Disk Utilities include copy, delete, rename, format and make folder x x ` Help menus and user-defined help files for on-line references x x ` Complete manual and tutorial. *x mqKj #6 ST-Talk Pro  Only  $29.95  or $10 with original ST-Talk disk!.CDF.DBF.IDX[2][ : Not found.|Insert proper disk or create?][OK|CREATE|CANCEL]**[0][Print Directory Entries...][CURRENT| ALL |CANCEL][1][Printer not responding ...][CANCEL|RETRY][1][End of Search.][CONTINUE][1][Top of Search.][CONTINUE][1][Not enough memoryDuplicate recordYou can't add|a blank recordFile seek errorDatabase if fullFile link errorDisk error!][CANCEL]   [1][ ST-Talk Professional DEMO:| This feature is disabled!][ DEMO ONLY ]ATDT ATDT ATDT ATDT [3][Cannot create database|Check Diskette ...][ABORT][2][Print detailed list|or quick list?][DETAIL|QUICK|CANCEL][2][Select the type of Dialing...][PULSE|TONE]ADDSAVE LISTSORTDIALEDITREAD LISTDE-SELECTQUITADDUPDATEFINDDIALDELETEPRINTBLANKQUITST-Talk Pro  ^1 ^2 ^8| ^4 ^3| ^9| ^1 ^2 ^3 ^8| DIAL.DBF30012002400960019.2K Dialing... Connected to - No response .OPTINSTALLST-TALK.MNU[2][Insert ST-Talk disk to|save the Dial Menu...][ OK |CANCEL]ST-TALK.MNU.AP AutoPilot: [1][Use Medium Resolution!][ SORRY ]ST-TALKM.RSCST-TALK.RSCST-TALKC.RSC[1][Could not find ST-TALK.RSC][ OK ][1][Could not find ST-TALKC.RSC][ OK ][0][Loading...| Options| and| Function Keys...][]stt2.optstt2.fnkstt2[2][Upload text File or Buffer?][BUFFER| FILE |CANCEL]Select a File to Upload...*[1][Erase current buffer?][ERASE!|CANCEL]Search for Text...Selected matching lines[1][Text was not found!][ OK ][2][Continue searching?][ YES | NO ]Replace Text...Continuous replace[1][Text was not found!][ OK ][0][Replaced  occurances of| ][ DONE ][2][Replace here?][ YES | NO |QUIT] End Select Begin Select Begin SelectKKKK[1][Initializing the Editor|will erase all buffers!|What do you want to do?][ERASE!|CANCEL][1][Buffer memory size|is too large!][TRY AGAIN][1][Buffer memory size|is too small!][TRY AGAIN]FILE.HLPTEXT.HLPEDIT.HLPESELECT.HLPEPRINT.HLPOPTIONS.HLPEKEYS.HLPEAUTO.HLPSelect a Help File...HLP**Select file to Copy...Select the new path and filename...[2][Select number of disks...][ONE|TWO|CANCEL][1][File not found][Cancel][3][Insert SOURCE Disk...][ OK ][3][Insert DESTINATION Disk...][ OK ][1][Filename already exists!][Cancel|Replace][1][Disk Error # !][ QUIT ]Select a File to Copy...Select the new File Name... Select a File to Delete...[1][Error Deleting File!][CANCEL]Select a File to Rename...Enter the new File Name...[1][New filename already exists!][CANCEL][1][File not found!][CANCEL][1][Error Renaming File!][CANCEL]Select a new Folder name...[1][Error creating Folder!][ OK ]Select Folder to Delete...[1][Erase all Files and Folders|in |are you sure?][CANCEL|ERASE!][1][Error deleting Folder!][ OK ]\*.*\\[1][Format Disk, are you sure?][FORMAT!|CANCEL][3][Error while formatting!][ ABORT ][1][Disk is now Formatted!][ OK ]Select a File to Print...*[2][Print text screen?][CURRENT|PREVIOUS|CANCEL][3][Print Vidtex Picture?][DISK|PRINTER|CANCEL]PI3PI2Select a New Picture File...0123456789ABCDEF#VCO,PB,DT,+overflow~*CIS: Could not find ! Aborting!~~.~*CIS: Error reading file, aborting!~~*CIS: Waiting for host...~~*CIS: Could not open ! Aborting!~~~*CIS: Error writing file, aborting!~.~*CIS: Bad final packet, aborting!~~*CIS: Transfer failed, aborting!~~*CIS: Transfer failed, aborting!~ *CIS: Using Quick B Protocol CRC & Send-Ahead...~~*CIS: Transfer is done!~~*CIS: Transfer is done!~ : ~endsubendsub_`getb`storeb`getw`storew`getl`storelkeystatkeyinmodemstatmodemindevstatdevinvtdo+-*/=equalsis#><>=<=&and:or~not?exor<<lshift>>rshiftifelseifelseendif[]printprintmreplyprintpprintdinputinputminputdopenclosereadwritenotepointrenamedeletemakedirformatfcopygotogosubendsubstrcopystrcompstrsizestraddstrfindaddressselectfileselectalertgettimegetdatesettimesetdategetrevdiskstatgetpathsetpathgetdrivesetdrivememstatcaptureprintersendfilesendbufuploaddownloadsavebufloadbuferasebufprintbufviewfilearcunarcviewarcdialdialoganswerhangupconnectringingtraceflushwaitmenubaudtermtypeclearrunquitabortarrayunarray;truefalseonoff{read}{write}{readwrite}{append}{directory}()toinforthewithseconds`push`pop Missing double quote!Missing single quote!Missing percent sign!Period misplaced!Missing function!Not enough inputs!Bad IF statement!Extra ENDIF!Bad assignment!Already defined!Function isn't done!Bad end of function!Function not found!Bad label usage!Label already used!Too many inputs!No more symbol space!Name error!Name storage is full!Reserved name!Wrong data type!Calls are too nested!Missing end bracket!Not an array type!Done!okUnknown error!__.AP.ap____..ST-TALK OPTIONS 2.0bDATABASE.DBF[3][Invalid Options File!][OOPS!][1][Out of Macro space!][ OK ]Define Shift- Control- Alternate- F CON:AUX:PRT: ] aM_M M $7M0! Desk File Text Dial Answer Select Print Help About ST-Talk Pro- (c)1988, QMI All rights Reserved  Desk Accessory 5 Desk Accessory 6 List & View...- Send File... Receive File...- Archive Un-Archive View Archive- Set Paths Utilities... Command Shell- Run a Program- Quit ST-Talk! Capture Text Upload Text...- Select Buffer...- Load Buffer... Save Buffer...- Erase Buffer!- Go To Editor Keyboard AutoPilot...- Directory...- - Activity Log- Disconnect! Answer Now AutoPilot...- Database...- Activity Log- Disconnect! Text Options Dial Options Answer Options Print Options RS-232 Options Screen Options- Terminal Mode Vidtex Graphics- Function Keys Clock & Timer Event Sounds- Load Options... Save Options... Printer Echo- Print File... Print Buffer Print Screen- Show Graphics Print Graphics Save Graphics... Load Graphics... AutoRecord- File Text Print Dial Answer Select- Keyboard- AutoPilot- More... BY JOHN DeMAR QUANTUM MICROSYSTEMS,INC. PO BOX 179, LIVERPOOL, NY 13088315-451-7747 USACopyright (C)1988, QMIThis is ALPHA release version 2.0ARegister this copy for free updates!DEMOOK RS-232 PORT OPTIONS Baud Rate:110300600120024004800960019200Parity:NONEEVENODDMARKSPACEDuplex:FULLHALFSend Echo:YESNOXon/Xoff:YESNOBuffer Size:1K4K16K32KData Bits:78Port ID:12345MIDIStop Bits:12CANCELOKDIALSENDRECEIVEOFFOFFVT52OPTIONS SET CLOCK AND TIMER 0800a Time: __:__ _mX021987 Date: __/__/__X0 Alarm Timer: __:__:__XONOFF000.00 Money Limit: $ _XONOFFCANCELOK DISK UTILITIES COPYDELETEFORMATRENAMEMAKE FOLDERDELETE FOLDEREXITSET DEFAULT PATHS\FILES Click on Name to SelectSend:A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1Receive:Capture:AutoDial:Activity:Help:Fonts:Archiver:Cmd Shell:Kermit:Other Xfr:CANCELOK QUIT ST-TALK? YESNOSelect a file..._ File Name: _.___X A:\*.*  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  SORTED BY NAME 999 FILES99 SELECTEDDisk:ABCDEFGHIJSORT...CANCELOKProtocol_ASCIIXMODEMXMODEM CRCYMODEMFMODEMCIS-QBKERMITOther_ Select or Enter File: _.___X A:\*.*  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME. -EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86 Batch ModeOFFONBackgroundNOYESDisk:ABCDEFGHIJ SORTED BY NAME 999 FILES99 SELECTEDSORT...CANCELHOLDSTART SCREEN OPTIONS Long lines:WRAPFOLDCUTScrolling:JUMPSMOOTHReverse Colors:YESNO"Talk" Mode:YESNOColumns:80140Rows:2448Text Font:STANDARDOTHER  SELECTCANCELOK ANSWER OPTIONS Ring Detection:RS232SMARTSmart ring result:RING _ _XSmart modem answer:ATA _ _XAnswer on ring #:12345610AutoPilot filename:@ _ X   SELECTCANCELOK DIALING OPTIONS Local Dialing:ATDTa( _,XxLD Dialing #1:ATDTa( _,XxLD Dialing #2:ATDTa( _,XxLD Dialing #3:ATDTa( _,XxRedial Attempts if Busy:05 __xxCD Wait Time:20 __xxsecs.Redial Attempts if error:02 __xxRedial Wait Time:30 __xxsecs.Smart CD result:CONNECT _ _$X$Smart Disconnect:+++_! _$X$Busy Detect result:NO CARRIER _ _$X$Error Detect result:ERROR _ _$X$Initialization Codes:ATZ _ _$X$CANCELOKRS232SMARTDisconnect modem:Carrier Detection:RS232SMART PRINTER OPTIONS Convert Linefeeds:LFCR/LFCR(NO)Convert Returns:CRCR/LFLF(NO)Initialize codes:a$ _$X$Left Margin:aa__XXTop Margin:aa__XXRight Margin:aa__XXText Lines:aa__XXCANCELOK TEXT AND UPLOAD OPTIONS Convert Linefeeds:LFCR/LFCR(NO)Convert Returns:CRCR/LFLF(NO)Control Codes:DELETESAVESHOWBackspace Deletes:YESNOUpload Using:XON/XOFFPROMPTUpload Delay:0(0 -> 1) _ secsXUpload Prompt:a _XInput Translation:ONOFFOutput Translation:ONOFF   SELECTCANCELOK Enter Program Parameters @. _.X.CANCELOK  AutoDial Selector # a Name : _Xa Number : _ X a $/Hour : _XNoneLD #1LD #2LD #3PreDial :Baud :30012002400960019,200a Comments : _ X aOptions : _XaAutoPilot: _XBEFOREAFTER Calls $Total $Month #DL #UL BusyRESET 0 0 0 0 0 0%   ADDUPDATEFINDDIALDELETEPRINTCLEARQUITDirectory InformationFilename :SMaximum Records :SRecords Entered :SFree Records :SOKSelect Text BufferFree Buffer Memory: 0K Free System Memory: 0K BufferFile NameLength123456789100 0 0 0 0 0 0 0 0 0 LOADSAVEERASE!CANCELOKKEYBOARD DIALLocalLD #1LD #2LD #3@ Enter Phone Number: _!X!CANCELDIALSEARCH/REPLACE TEXTCANCELa Search for: _ X a Replace with: _ X Match Upper/Lower Case ALLFIRST Select matching lines Define Function KeysSHIFTCONTROLALTERNATEF1:F2:F3:F4:F5:F6:F7:F8:F9:F10:SAVELOADDONETERMINAL MODETTYVT-52VT-100VT-220OTHER...CANCEL Desk File Text Edit Select Options Print Help About ST-Talk Pro- (c)1988, QMI All rights Reserved  Desk Accessory 5 Desk Accessory 6 List & View...- Send File... Receive File...- Archive Un-Archive View Archive- Set Paths Utilities Command Shell- Run a Program- Quit ST-Talk! Capture Text Upload Text...- Select Buffer...- Load Buffer... Save Buffer...- Erase Buffer- Exit Editor Page Up Page Down- Top of Buffer End of Buffer- Search... Replace...- Go To Line#... Begin Select Clear Selected Reverse Selected- Save Selected...- Erase Selected- Move Selected Copy Selected Port Selected...- Upload Selected Tab Size... Line Length... Reformat- Word Wrap Insert Mode Control Codes- Re-initialize Print File...- Print Buffer Print Selected AutoCheck- File Text Edit Select Options Print- Keyboard- AutoPilot- More...a Go To Line # _XOKCANCELaa Set Tab Size: __XXOKCANCELaaa Set Maximum Line Length: ___xxxOKCANCELFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAME Define Alternate-F10 Name: _ X a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.CANCELOK Re-Initialize Memory Usage! Maximum System Memory:0KBuffer Memory Used:0KBuffer Memory Free:0K-Total Buffer Memory:0KNew Buffer Total:0 _XK bytes CANCELOKSave Modified Buffers1123456789106Cancel27Quit Program3849Save Buffers510123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 Format a New Disk _ Volume Label: _ X Drive: - A -- B -Sides:SINGLEDOUBLETracks:Normal80tr/10sec40 trackCANCELFORMAT!22?`?`08~8888x%?>@`@@#`@` #p#?#?#8#8#8#?# ##?#8#8#`8 08 8?~|>x(?>??????????????????~|>x388?pppp080`p??p88p88ppÀpp )? `  ??? ?`yyyyyyyy=?@@" @`* @" A" Cl" @`" @`" @" ?    4o0@" @`* @`" Cl" A" @" @`" @" ?    4=ZMUUUKIII$III$IIIIIIIyI$ I$ "("/<"* !ɾ=<@@ @^ @   `  **  9QQ190 $PV0000000000  C???????a``0`c1 UT>?h8+?*h8+?*h8+?*h8+?*h8+?*h8+?*h8+?*h8+?*h8+?*h8+?);;;;{{Ç~x<L !)*+BCDgh#i%r %& .89 ANO ^ij oxy  r    $ ; I P g  r r    ; nc23 23 7 i 23 323 e 23 . a23 23*\23&23X23!T23       C)5M Y[\]de  LX{ #+,-78 9EF arsrt     ->?r@PQ^qrs+8 EKL^pqr-.Es-. -.Fs-.),0EHLf%& 3%&l%&<%&w%&.@ArBUVhyz%& "%(45 69<?MNORUXde filyr+,=KLMRfkz{|  r  J z/0    !#!*!K!v!+!!!!""C!-"d"m" """ ###r$v$$r$$$"7%%%9%:r%B%c%!0%%&!0&a&v&wr(((r.k.q......./D/[/\r/]/i/{ /////00C0r//000//1.1]1//112//2H2w2//2333//3b33//344M//4|44//55152s555566rFT7$717L 7Y7`7a7o7v7w7778J7 0 98P ;: P<< ==v >>V -@?6 0%  A@ 0! CDB~ 0!!DD  00EE*.00FJE.00G F.00GGj/00HH*/00IJH/00J I/ 00JJj/)00KK*/200LJK/;00  P P  F $  -  5 = E!   O+   Y5  b> k P j~ &%  A-?S]jy  ! " # $ %2'1 ()* +5,H-].n/01 & F3E456789:$;3<B=Q >` ?o @~ A BCDE2OGN#HIJ KL(M9NHFY`P_-QgRvSTUVWXYZ [ \" ]2 ^A _UOgkaj7 bycdefghij`  ly@m'n4oCpJqQrYs`tiurv w x y k   C $ r_0_*P_L PMM4    !  MP Ml M   MMM ' 6CA MN    /    #) N0 /      & NL Nh"  -'+N   :> N %!$ - "P#S$V Z &N )'(  (k&m*N 1+0 ( ,z-|.~/ 0 *2N 534 426 $ ' 2 CP_nJ _J _J-_I 0%_J 0!`J0! `:J0C* O  $O,OH Od    B E  O      n  q u' | C% O  @ @ @ @    ! @ @ '  CB O @O  3 O2P 3P(3 PD3 P`3 P|3 P2 P3P3P 3Q 3@Q$@Q@@Q\ @Qx @Q @Q @Q @Q @R@R   )' 7r R< % 'C' # RX # @Rt@R  @f @ @ @ @ @@&@F@f@ @R @ @@@R R S S  %$ QQQQ  Q !Q"Q#Q$QQ& ' ' :C= + '   ,     *  1  8  ? F   S8#  # @STSp  @@@@@@4@T@t@@ @S @ @@ @S ! + $"# ,  #Q !Q % +(&' , ' % ) 4*3  +Q,Q-Q .Q /Q 0Q1Q2Q3Q)Q5S 6S 7S 8G 9O :V '[+"C( TT4   TP     Tl   T   T   T  T     T!  " # ' * C- UU0 RX UL Uh U  U U         U  U V  M  T ' [! %CB V,r VH.  Vd. V. 7  V.    V  '  V5  :   V 3#  W 5 O: U  W( &  WD &X W`& W|&a W&- 6#!"u " $%&' '"%1(C. WW WZ` c W   { ~   X X$ &X@  X\ Xx  X& X  X X  Y&  o ' v! *C. Y Y<   YX       Yt Y   Y   - 6 Y  Y Z  Z  Z8#!" "   $ZT'%& & $ (Zp)  *  ' # C4  Z Z0 ' ).C?&% =AZZ7AZ:! 9 ["[4* [P    ! ! ! !! !   !!! !![l,[ [  , """* " +@ "0  " )#, "@#:%#$@: $@"@@# : 'q5(A #$)A #( *A #/! +A #40 ,A #9-A #@ .A #F! a #L0  C  #Q   #g #r #{# # # ##c # +CB [#&#&$$  $6'& 0=    $ $  $" $$$&$($*$,$. $0 $3-$45$7-$85$;-$<5$?-$@5$C-$D5$G-$H5 $K-!$L5"$O -#$P5 $$S -%$T5 &$W -$X5 ($[ )$` *$e +$l( '$s5  C<  [  $$$$ [7  %! ' % / C5  \ %;) \00 \L0!&&  &?  &C) ! &I =C? \h&x&~%&2 &   @&  @&  @&  @&  @&  @& @& @& @& @'    @'  @' @'$ @'0 @'< @'H @'T @'` @'l @'x '& #  @' @'  @' !@' "@' #@' $@' %@' &@' @' 2(1 1  )@' *@( +@( ,@(  -@(, .@(8 /@(D 0@(P 1@(\ '@(h 3(t4(x5(|6( 7( 8( 9( :(;(<( =( '(1 C.  \ *A(A(A(A(A(! ' (#   P P  G (  (  ( ( )!   ) +   )6  )? Z P )');)R)a)n)y) )&% )))))***'*6 *J !*V "*b #*r $* %**2'1 (*)***+*,+-+.+(/+90+N1+] &+r =3< 4+5+6+7+8+9+:+;+<+2, K>J# ?,@,(A,9B,LC,aD,tE,F,G,H, I, J, =, ULT- M- N-O-(P-3Q-FR-RS-`T-pK-ZVY8W-X-Y-U- [hA \- ]- ^- _- `- a. b. c. d.  e.. f.9 g.G h.S Z .a C- \ .#% .C- \ .#% .C9 \ ..% .$ BP`\J0`~J0`J0`J0`J 0aJ 0a(J0 aJJ0 alJ0 aJ0C4 \ ]  0 ],.]H.]d.]. ]. ]. ]. ]. ^ .^( .q2 5  % 5( C % ^D535J5P5dD5j5~ 5 5  5  5   ^`  5 5 ' 5 C> ^|6  C% @$6 @$6 @$6@$6 @$6 @$6 @$6 @$6 @$6@$66 ) 6"-6)6+) 6--6: 6<) 6> 6@)  6B- 6O  6Q(  * M  6T 6s 6 6 6 6  6 %7 B- 7 ^ ^  7b7i^    7x7 ^    7 7  7   '# 7  % 7 am nstvwyz}X(0HhX0pp`PLeLPbPP$7P!P Desk File Text Dial Answer Select Print Help About ST-Talk Pro- (c)1988, QMI All rights Reserved  Desk Accessory 5 Desk Accessory 6 List & View...- Send File... Receive File...- Archive Un-Archive View Archive- Set Paths Utilities Command Shell- Run a Program- Quit ST-Talk! Capture Text Upload Text...- Select Buffer...- Load Buffer... Save Buffer...- Erase Buffer!- Go To Editor Keyboard AutoPilot...- Directory...- - Activity Log- Disconnect! Answer Now AutoPilot...- Database...- Activity Log- Disconnect! Text Options Dial Options Answer Options Print Options RS-232 Options Screen Options- Terminal Mode Vidtex Graphics- Function Keys Clock & Timer Event Sounds- Load Options... Save Options... Printer Echo- Print File... Print Buffer Print Screen- Show Graphics Print Graphics Save Graphics... Load Graphics... AutoRecord- File Text Print Dial Answer Select- Keyboard- AutoPilot- More... BY JOHN DeMAR PO BOX 179, LIVERPOOL, NY 13088QUANTUM MICROSYSTEMS,INC.315-451-7747 USACopyright (C)1988, QMIThis is ALPHA release version 2.0ARegister this copy for free updates!DEMOOK RS-232 PORT OPTIONS Baud Rate:110300600120024004800960019200Parity:NONEEVENODDMARKSPACEDuplex:FULLHALFSend Echo:YESNOXon/Xoff:YESNOBuffer Size:1K4K16K32KData Bits:78Port ID:12345MIDIStop Bits:12CANCELOKDIALSENDRECEIVEOFFOFFVT52OPTIONS SET CLOCK AND TIMER 0800a Time: __:__ _mX021987 Date: __/__/__X0 Alarm Timer: __:__:__XONOFF000.00 Money Limit: $ _XONOFFCANCELOK DISK UTILITIES COPYDELETEFORMATRENAMEMAKE FOLDERDELETE FOLDEREXITSET DEFAULT PATHS\FILES Click on Name to SelectSend:A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. __ _/x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1Receive:Capture:AutoDial:Activity:Help:Fonts:Archiver:Cmd Shell:Kermit:Other Xfr:CANCELOK QUIT ST-TALK? YESNOSelect a file..._ File Name: _ X A:\*.*  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  SORTED BY NAME 999 FILES99 SELECTEDDisk:ABCDEFGHIJSORT...CANCELOKProtocol_ASCIIXMODEMXMODEM CRCYMODEMFMODEMCIS-QBKERMITOther_ Select or Enter File: _ X A:\*.*  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86 Batch ModeOFFONBackgroundNOYESDisk:ABCDEFGHIJ SORTED BY NAME 999 FILES99 SELECTEDSORT...CANCELHOLDSTART SCREEN OPTIONS Long lines:WRAPFOLDCUTScrolling:JUMPSMOOTHReverse Colors:YESNO"Talk" Mode:YESNOColumns:80140Rows:2448Text Font:STANDARDOTHER  SELECTCANCELOK ANSWER OPTIONS Ring Detection:RS232SMARTSmart ring result:RING _XSmart modem answer:ATA _XAnswer on ring #:12345610AutoPilot filename:@_X  SELECTCANCELOK DIALING OPTIONS Local Dialing:ATDTa( _,XxLD Dialing #1:ATDTa( _,XxLD Dialing #2:ATDTa( _,XxLD Dialing #3:ATDTa( _,XxRedial Attempts if Busy:05 __xxCD Wait Time:20 __xxsecs.Redial Attempts if error:02 __xxRedial Wait Time:30 __xxsecs.Smart CD result:CONNECT _ _$X$Smart Disconnect:+++_! _$X$Busy Detect result:NO CARRIER _ _$X$Error Detect result:ERROR _ _$X$Initialization Codes:ATZ _ _$X$Disconnect modem:RS232SMARTCANCELOKRS232SMARTCarrier Detection: PRINTER OPTIONS Convert Linefeeds:LFCR/LFCR(NO)Convert Returns:CRCR/LFLF(NO)Initialize codes:a$ _$X$Left Margin:aa__XXTop Margin:aa__XXRight Margin:aa__XXText Lines:aa__XXCANCELOK TEXT and UPLOAD OPTIONS Convert Linefeeds:LFCR/LFCRNONEConvert Returns:CRCR/LFLFNONEControl Codes:SHOWSAVEDELETEBackspace Deletes:YESNOUpload Using:XON/XOFFPROMPTUpload Delay:0(0 -> 1) _ secsXUpload Prompt:a _XInput Translation:ONOFFOutput Translation:ONOFF   SELECTCANCELOK Enter Program Parameters @ @ _.X.CANCELOK  AutoDial Directory # a Name : _Xa Number : _ X a $/Hour : _XPreDial :LocalLD #1LD #2LD #3Baud :30012002400960019,200a Comments : _ X aOptions: _XaAutoPilot: _XBEFOREAFTER Calls $Total $Month #DL #UL BusyRESET 0 0 0 0 0 0%   ADDMAKE LISTSORTDIALEDITREAD LISTDE-SELECTQUITDirectory InformationFilename :SMaximum Records :SRecords Entered :SFree Records :SOKSelect Text BufferFree Buffer Memory: 0K Free System Memory: 0K BufferFile NameLength123456789100 0 0 0 0 0 0 0 0 0 LOADSAVEERASE!CANCELOKKEYBOARD DIALLocalLD #1LD #2LD #3@ Enter Phone Number: _!X!CANCELDIALSEARCH/REPLACE TEXTCANCELa Search for: _ X a Replace with: _ X Match Upper/Lower case ALLFIRST Select matching lines Define Function KeysSHIFTCONTROLALTERNATEF1:F2:F3:F4:F5:F6:F7:F8:F9:F10:SAVELOADDONETERMINAL MODETTYVT-52VT-100VT-220OTHER...CANCEL Desk File Text Edit Select Options Print Help About ST-Talk Pro- (c)1987, QMI All rights Reserved  Desk Accessory 5 Desk Accessory 6 List & View...- Send File... Receive File...- Archive Un-Archive View Archive- Set Paths Utilities Command Shell- Run a Program- Quit ST-Talk! Capture Text Upload Text...- Select Buffer...- Load Buffer... Save Buffer...- Erase Buffer!- Exit Editor Page Up Page Down- Top of Buffer End of Buffer- Search... Replace...- Go To Line#... Begin Select Clear Selected Reverse Selected- Save Selected...- Erase Selected- Move Selected Copy Selected Port Selected...- Upload Selected Tab Size... Line Length... Reformat- Word Wrap Insert Mode Control Codes- Re-initialize! Print File...- Print Buffer Print Selected AutoCheck- File Text Edit Select Print Options- Keyboard- AutoPilot- More...a Go To Line # _XOKCANCELaa Set Tab Size: __XXOKCANCELaaa Set Maximum Line Length: ___xxxOKCANCELFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAME Define Alternate-F10 Name: _ X a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a.__&X.a._.X.CANCELOK Re-Initialize Editor Memory! Maximum System Memory:0KBuffer Memory Used:0KBuffer Memory Free:0K-Total Buffer Memory:0KNew Buffer Total:0 _XK bytes CANCELOKSave Modified Buffers!1162738495106Cancel27Quit Program3849Save Buffers510123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 Format a New Disk _ Volume Label: _ X Drive: - A -- B -Sides:SINGLEDOUBLETracks:Normal80tr/10sec40 trackCANCELFORMAT!?>@`@@#`@` #p#?#?#8#8#8#?# ##?#8#8#`8 08 8?~|>x(?>??????????????????~|>x22?`?`08~8888x088?pppp080`p??p88p88ppÀpp )?  ??? ?`yIIyyIIyyIIyyIIy? @* @`* @" A" Cl" Bd" @`" @`" @`" @`" @" ?           @* @`* @`" @`" @`" Bd" Cl" A" @" @`" @" ?          "("/<"* !ɾ?  @>x1$/4+6*6 x_{DFDB xED{HDB@DDz $????????? U`5T@`U`5T``````````````` 9EEE910` 00c2=?? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????/;;;;{{Ç~x<PF !&'(?@Ade#f%   "# +56 >KL [fg luv      ! 8 F M d |      8 k23 23 4 f 23 023 b 23 + ^23 23'Y23#23U23Q23         &3K XZ[\cd  KX{ #,-.89 :FG bstu     .?@AQR_rstz  -?@P}-.B-.~-.Bp-.5Z%&%&;`%& %&Fk%&$%7HI[mno%&   !$'34 58;Hbcdwx !5:IJKZjy  I/0    # !!F!+!g!m!}!!"!,"4"="O "X"a"u ###$N$\$]$v$$"7$%%%%;%k!0%%%!0&9&N&O(((.E.K.`.p.s....//5/6/7/C/U /a/////00L//0{00//1171f//111//2"2Q2//223 //3<3k3//334'//4V44//45 5 555555FT77 7( 757<7=7K7R7S7b7j7k87P :9v 0 ;|: P<>2 -?? 0%  A@ 0! C BZ 0! !DvC 00EE.100FF&.200GGF.300HHf.400JI.500K6J.600LVK.700MvL/800NN/ 900OO&/000  P P  F $  -  5 = E!   O+   Y5  b> k P j~ &%  -?S]jy  ! " # $ %2'1 () *+2,E-Z.k/|01 & F3E456789:!;0<?=N >] ?l @{ A BCDE2OGN#HIJKL%M6NEFV`P_-QdRsSTUVWXYZ [ \ ]/ ^> _ROdkaj7 bvcdefghij`  ly@m$n1o@pGqNrVs]tfuov~ w x y k   C# !bPb0b PPP      P Q Q$   Q@Q\Qx'6CA QQ    /    #) Q /      & Q  R"  -$(R    7; R< %!$ - "M#P$S W &RX )'(  (h&j*Rt 1+0 ( ,w-y.{/} 0 *2R 534 426 $ ' 2 APc J"#c,J #cNJ-#cpI 0%cJ0!cI0! cI2C* R  $RR S    ? B  S      k  n r' y C % S8  @ @ @ @    ! @ @ '  CB ST  @Sp  3 S2S3S3 S3 S3 T3 T42 TP3Tl3T 3T 3@T@T@T @U @U0 @UL @Uh @U @U@U  )' 7B U%'C' # U # @V@V,  @e @ @ @ @ @@%@E@e@ @VH @ @@@Vd V V V  %$ QQQQ  Q !Q"Q#Q$QQ& ' ' :C= +  '   ,    )  0  7   >  E   V#  # @VW   @@@@@@5@U@u@@ @W( @ @@ @WD ! + $"# ,  #Q !Q % +(&' , ' % ) 4*3  +Q,Q -Q .Q /Q 0Q1Q2Q3Q)Q5W` 6W| 7W 8H 9P :W '\+"C( WW   W     X   X$   X@   X\  Xx     X!  " $ ' + C- XX SYX Y Y   Y< YX         Yt  Y Y    # ' *! 'CA Y A  Y .  Z .o Z.   Z8.    ZT  '   Zp5 :   Z #  Z5 : $  Z &  Z &'  Z & [&0 [4&" ! !# -$ 7'%& &$ C, [P[l &)/ 2 [   J M S  V[ [ &[  [ \  \0% \L  \h \  \%  > ' E  *C. \ \ y|  \       ] ],    ]H      ]d  ] ]  ]  ]#!" "    $]'%& & $  (^ )  *  ' # C4  ^( ^D0 x' ).C?&% =A^`^|7A^:! : ^"^P* ^ !     ! !! !!   !!! !!_+_$ _@  , "~""* " +@ "/  " )", "@":%#$@: $@"@@": 'q;(A ")A " *A #! +A #0 ,A # -A # .A #! a #$0  C  #)   #? #J #S#e #g #y #{#c # +CB _\#&#&## #8'& 0>    # # # ## $ $ $$ $ $ -$ 5 $ -$5 $ -$5 $-$5$-$5$-$ 5 $#-!$$5"$'-#$(5$$+ -%$,5 &$/ -$05 ($3 )$8 *$= +$D* '$K6  C<  _x  $^$d$j$p _7  $! ' $/ C5 _ %* _0 _0!%  &  &* ! &! =B@ `&P&V%&^2 &h   @&l  @&x  @&  @&  @&  @&  @&  @& @& @&    @& @& @& @' @' @'  @',  @'8 @'D @'P '& #  @'\ @'h  @'t !@' "@' #@'  $@'  %@' &@' @' 2(1 1  )@' *@' +@' ,@' -@( .@(  /@(  0@(( 1@(4 '@(@ 3(L4(P5(T6(X 7(\ 8(` 9(d :(h;(l< (q = (v ' ({1 C /  `  *A(A(A(A(A(! ' (#   P P  G (  (  ( ( (!   (+   (6  (? Z P ())*)9)F)Q)d )y&% ))))))))* *" !*. "*: #*J $*^ %*n*2'1 (*)***+*,*-*.+/+0+&1+6 &+K =3< 4+Y5+c6+o7+8+9+:+;+<+2+ K>J# ?+@,A,B,%C,:D,ME,bF,sG,H, I, J, =, ULT- M,N,O-P- Q-R-+S-9T-IK-\ZVY8W-mX-}Y-U- [hA \- ]- ^- _- `- a- b- c- d- e. f. g.! h.- Z .; C- `< .f#% .iC- `X .#% .C8 `t ..% .$ APcJ0dJ0d<J0d^J0dJ 0dJ 0dJ0 dJ0 eJ0 e*J0C4 ` `  0 `.`.a.a. a8. aT. ap. a. a.a .q2 4 % 4) C % a55%5+5?5E5Y 5_ 5|  5  5   a  5 5 ' 5 C> b5 C% @$5@$5@$5@$5 @$5 @$5 @$5 @$5 @$5@$55( 5,66( 6 ,6 6( 6 6(  6, 6+  6-'  * P 60 6O 6n 6 6 6  6 %6 B- 6 b4 bP  7>7Ebl    7T7[ b    7l 7s  7~   '# 7  % 7 eLprTw|x<yz}L}l<TDtL lt  >>Capture if capture 100 capture 0 else capture -1 endif >>Upload File file = selectfile "" "" "" "Select Text File" if file is "" quit else sendfile file endif >>XMODEM Recv title = "Select File for XMODEM Receive" file = selectfile "" "" "" title if file is "" quit endif m="[3][Receive using...][QUIT|XMODEM|YMODEM]" kind = alert m if kind>1 download kind file endif >>XMODEM Send title = "Select File for XMODEM Send" file = selectfile "" "" "" title if file is "" quit endif m="[3][Send using...][QUIT|XMODEM|YMODEM]" kind = alert m if kind>1 upload kind file endif >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> ST-TALK OPTIONS 2.0b A:\ A:\ A:\ A:\STT_AUTO\ A:\ A:\STT_HELP\ A:\STT_MISC\ST-TALK.STF A:\STT_MISC\ARC.TTP A:\STT_MISC\DO-IT!.PRG A:\STT_MISC\KERMIT.TTP A:\STT_MISC\TRANSFER.TTP 131072 0 0 1 4 80 1 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 0 0 0 0 DATABASE.DBF 1 1 0 0 0 1 1 ATDT ATDT1 ATDT1 ATDT1 40 7 14 21 26 51 30 40 \