Home » Personal collection » Acorn hard disk » apps » !Fireworkz » Commands

Commands

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Personal collection » Acorn hard disk » apps » !Fireworkz
Filename: Commands
Read OK:
File size: 433A bytes
Load address: 0000
Exec address: 0000
File contents
{Version:1.05/01;18 Oct 1993;Fireworkz;Colton Software;4000 2029 4983 8986}
{Block:0;0;;32;4;187;;32;4;187}
{Style:BaseLetter;{ColWidth:11164}{ColName:#}{RowHeight:0}{RowHeightFix:0}{RowUnbreakable:0}{RowName:#}{MarginLeft:283}{MarginRight:283}{MarginPara:0}{Tablist:L1134 L2268 L3402 L4536 L5670 L6804 L7938 L9072 L10206}{Background:255;255;255}{ParaStart:68}{ParaEnd:45}{LineSpace:0;72}{Justify:0}{NewObject:3}{Numform:#,##0.00}{NumformDT:dd.mm.yy}{NumformSE:@}{BorderColour:0;187;255}{Border:0}{GridLeftColour:0;187;255}{GridTopColour:0;187;255}{GridRightColour:0;187;255}{GridBottomColour:0;187;255}{GridLeft:0}{GridTop:0}{GridRight:0}{GridBottom:0}{Typeface:Times}{Fontx:0}{Fonty:240}{Underline:0}{Bold:0}{Italic:0}{Superscript:0}{Subscript:0}{Foreground:0;0;0}}
{StyleBase:BaseLetter}
{Style:BaseHeadFoot;{ColWidth:11164}{MarginLeft:283}{MarginRight:283}{MarginPara:0}{Tablist:C5499 R10598}}
{StyleHeaderFooter:BaseHeadFoot}
{Style:.Table1;{GridLeftColour:0;0;0}{GridTopColour:0;0;0}{GridRightColour:0;0;0}{GridBottomColour:0;0;0}{GridLeft:2}{GridTop:2}{GridRight:2}{GridBottom:2}}
{Style:Heading;{ParaStart:850}{ParaEnd:567}{Justify:1}{Typeface:Helvetica}{Fonty:360}}
{Style:Subheading;{ParaStart:283}{Fonty:320}{Bold:1}}
{Paper:Default A4;0;16840;11900;460;460;360;360;0;0;0;0;32;;0}
{PrintQuality:0}
{StartOfData}
{S:X;X;0;0;Fireworkz Command Language}
{S:X;X;0;1;This file contains some sketchy details of the Fireworkz command language. This is provided only for advanced and intrepid users who wish to experiment. In the future we will supply some proper user interface and documentation for the command language\\\; this information is supplied for those who can't wait. PLEASE do not hope for lengthy technical support on the command language at the moment. If the information in this file seems difficult and dangerous to you, then don't attempt to use the command language\\\; please don't ask us to explain all about command languages: see if you have a techie friend who might be able to help. On the other hand, if you are an intrepid explorer, then do explore.}
{S:X;X;0;2;The keywords and arguments described here are fairly static. But be prepared for things to change slightly in later versions, though the biggest change is likely to be addition of more commands.}
{S:X;X;0;3;At the moment, there are two things you can do with commands: put them in a file, usually with FwrkzTem filetype, or use the command function from within a custom function. In a file, each command must be surrounded with squiggly brackets \{�\}. See any Z family file for examples of use of commands. After looking at some files you will realise that all Z family files whatever their filetype are made up of commands. You should be able to learn a lot by examining Z family files and maybe experimenting. If you have a command or commands in a FwrkzTem type file, you can execute them by dropping the file onto a Fireworkz window.}
{S:X;X;0;4;The command function is not documented, but it takes a single argument which is a string. Don't use the squiggly brackets in the argument to the command function. The thing about using the command function is that you can use the custom function language to control the use of commands. You can also use the doubleclick function to execute a custom function at a particular time. See Minesweeper for some examples of this.}
{S:X;X;0;5;Each command consists of a keyword. Following the keyword there may be several arguments. If there are any arguments, the keyword is separated from the arguments by a colon ':'. Each argument is separated from the next by a semi-colon '\\\;'.}
{S:X;X;0;6;Example of a command in a file: \{DefineKey:^Insert\\\;4\\\;Copy\}}
{S:X;X;0;7;Example of a command in the command function: command("DefineKey:^!X\\\;8\\\;BoxIntro")}
{S:X;X;0;8;When it comes to specifying a cell or an area of a document, you give row and column and character positions. If it's an area, you give the top left co-ordinate which comes first, and the bottom right co-ordinate which comes second. All three indexes start at zero. The bottom right co-ordinate is 'exclusive' ie if area specified is A1B2, the top left col, row is 0,0 and the bottom right col row is 2,2 (not 1,1 as you might expect). When you specify character positions you need to specify an object number as well. At the moment it's simple: if the character position is to be ignored use 32\\\; if it's a character position inside a text cell, use 3. So the start character position of the word it at the start of this paragraph is 5,3\\\; the end position is 7,3. The area covering the word it is: 0\\\;8\\\;5\\\;3\\\; 1\\\;9\\\;7\\\;3 . From it to the end of the paragraph is: 0\\\;8\\\;5\\\;3\\\; 1\\\;9\\\;0\\\;32 .}
{S:X;X;0;9;In the argument descriptions in the table below tl_col, tl_row, tl_char, tl_obj\\\; br_col, br_row, br_char, br_obj are used to represent the parameters described above.}
{S:X;X;0;10;Some areas also accept whole_col and whole_row. These are either 0 or 1. If whole_col is 1 then the tl_row and br_row numbers are ignored: the area is taken to cover the whole column. Correspondingly for whole_row.}
{S:X;X;0;11;When specifying sizes of fonts, paper, lines and so on, Fireworkz uses a single unit called the Twip. This is 1/20th of a point. There are 1440 Twips to the inch.}
{S:X;X;1;13;Command keyword}
{S:X;X;1;14;R}
{S:X;X;1;15;S}
{S:X;X;1;16;Style}
{S:X;X;1;17;StyleBase}
{S:X;X;1;18;StyleCurrent}
{S:X;X;1;19;StyleHeaderFooter}
{S:X;X;1;20;StyleText}
{S:X;X;1;21;CmdGroup}
{S:X;X;1;22;StartOfData}
{S:X;X;1;23;EndOfData}
{S:X;X;1;25;StyleName}
{S:X;X;1;26;StyleKey}
{S:X;X;1;28;ColWidth}
{S:X;X;1;29;ColName}
{S:X;X;1;31;RowHeight}
{S:X;X;1;32;RowHeightFix}
{S:X;X;1;33;RowUnbreakable}
{S:X;X;1;34;RowName}
{S:X;X;1;36;MarginLeft}
{S:X;X;1;37;MarginRight}
{S:X;X;1;38;MarginPara}
{S:X;X;1;39;Tablist}
{S:X;X;1;40;Background}
{S:X;X;1;41;ParaStart}
{S:X;X;1;42;ParaEnd}
{S:X;X;1;43;LineSpace}
{S:X;X;1;44;Justify}
{S:X;X;1;45;JustifyV}
{S:X;X;1;46;NewObject}
{S:X;X;1;47;Numform}
{S:X;X;1;48;NumformDT}
{S:X;X;1;49;NumformSE}
{S:X;X;1;51;BorderColour}
{S:X;X;1;52;Border}
{S:X;X;1;54;GridLeftColour}
{S:X;X;1;55;GridTopColour}
{S:X;X;1;56;GridRightColour}
{S:X;X;1;57;GridBottomColour}
{S:X;X;1;58;GridLeft}
{S:X;X;1;59;GridTop}
{S:X;X;1;60;GridRight}
{S:X;X;1;61;GridBottom}
{S:X;X;1;63;Protect}
{S:X;X;1;65;Typeface}
{S:X;X;1;66;Fontx}
{S:X;X;1;67;Fonty}
{S:X;X;1;68;Underline}
{S:X;X;1;69;Bold}
{S:X;X;1;70;Italic}
{S:X;X;1;71;Superscript}
{S:X;X;1;72;Subscript}
{S:X;X;1;73;Foreground}
{S:X;X;1;75;SI}
{S:X;X;1;76;CursorLeft}
{S:X;X;1;77;CursorRight}
{S:X;X;1;78;CursorDown}
{S:X;X;1;79;CursorUp}
{S:X;X;1;80;WordLeft}
{S:X;X;1;81;WordRight}
{S:X;X;1;82;PageDown}
{S:X;X;1;83;PageUp}
{S:X;X;1;84;LineStart}
{S:X;X;1;85;LineEnd}
{S:X;X;1;86;DocumentTop}
{S:X;X;1;87;DocumentBottom}
{S:X;X;1;88;FirstColumn}
{S:X;X;1;89;LastColumn}
{S:X;X;1;90;DeleteLeft}
{S:X;X;1;91;DeleteRight}
{S:X;X;1;92;Return}
{S:X;X;1;93;Escape}
{S:X;X;1;95;Clear}
{S:X;X;1;96;Copy}
{S:X;X;1;97;Cut}
{S:X;X;1;98;Paste}
{S:X;X;1;99;BlockClear}
{S:X;X;1;100;DeleteLine}
{S:X;X;1;102;DefineKey}
{S:X;X;1;103;MenuAdd}
{S:X;X;1;104;MenuDelete}
{S:X;X;1;105;CurrentDocument}
{S:X;X;1;106;CurrentPane}
{S:X;X;1;107;CurrentPosition}
{S:X;X;1;108;CurrentView}
{S:X;X;1;109;Load}
{S:X;X;1;110;LoadOther}
{S:X;X;1;111;LoadTemplate}
{S:X;X;1;112;Save}
{S:X;X;1;113;SaveAs}
{S:X;X;1;114;SaveOther}
{S:X;X;1;115;SavePicture}
{S:X;X;1;116;SaveTemplate}
{S:X;X;1;117;Execute}
{S:X;X;1;119;PlainTextPrint}
{S:X;X;1;120;Print}
{S:X;X;1;121;PrintExtra}
{S:X;X;1;122;PrintQuality}
{S:X;X;1;124;StyleApply}
{S:X;X;1;125;StyleApplySource}
{S:X;X;1;126;StyleIntro}
{S:X;X;1;127;StyleButton}
{S:X;X;1;128;ApplyEffects}
{S:X;X;1;129;RemoveEffects}
{S:X;X;1;130;EffectsButton}
{S:X;X;1;132;ToggleMarks}
{S:X;X;1;133;SelectDocument}
{S:X;X;1;134;SelectCell}
{S:X;X;1;135;SelectWord}
{S:X;X;1;136;TabLeft}
{S:X;X;1;137;TabRight}
{S:X;X;1;139;CaseIntro}
{S:X;X;1;140;CaseUpper}
{S:X;X;1;141;CaseLower}
{S:X;X;1;142;CaseIniCap}
{S:X;X;1;143;CaseSwap}
{S:X;X;1;145;Paper}
{S:X;X;1;147;FieldInsPage}
{S:X;X;1;148;FieldInsPageX}
{S:X;X;1;149;FieldInsDate}
{S:X;X;1;150;FieldInsName}
{S:X;X;1;151;FieldInsWholeN}
{S:X;X;1;152;FieldInsLeafN}
{S:X;X;1;153;FieldInsSoftH}
{S:X;X;1;154;FieldInsReturn}
{S:X;X;1;155;FieldInsField}
{S:X;X;1;157;AddColumns}
{S:X;X;1;158;InsertCol}
{S:X;X;1;159;DeleteCol}
{S:X;X;1;160;AddRows}
{S:X;X;1;161;InsertRow}
{S:X;X;1;162;DeleteRow}
{S:X;X;1;163;InsertTable}
{S:X;X;1;164;WordCount}
{S:X;X;1;165;BoxIntro}
{S:X;X;1;166;Box}
{S:X;X;1;167;AutoWidth}
{S:X;X;1;168;AutoHeight}
{S:X;X;1;169;SearchIntro}
{S:X;X;1;170;Search}
{S:X;X;1;171;Choices}
{S:X;X;1;172;Info}
{S:X;X;1;173;Quit}
{S:X;X;1;174;Thesaurus}
{S:X;X;1;176;SortIntro}
{S:X;X;1;177;Sort}
{S:X;X;1;178;Snapshot}
{S:X;X;1;179;ObjectConvert}
{S:X;X;1;181;StraddleHorz}
{S:X;X;1;183;RegionClear}
{S:X;X;1;184;RegionCount}
{S:X;X;1;185;Select}
{S:X;X;1;186;ForceRecalc}
{S:X;X;2;13;Purpose}
{S:X;X;2;14;Define a region}
{S:X;X;2;15;Define a slot/cell}
{S:X;X;2;16;Define a style}
{S:X;X;2;17;Specify the base style name}
{S:X;X;2;18;Specify the current cell style name}
{S:X;X;2;19;Specify the header/footer style name}
{S:X;X;2;20;Specify the text style name}
{S:X;X;2;21;Group commands together}
{S:X;X;2;22;Start of data in a file}
{S:X;X;2;23;End of data in a file}
{S:X;X;2;25;In style string, specify name of style}
{S:X;X;2;26;In style string, specify function key shortcut}
{S:X;X;2;28;In style string, specify column width}
{S:X;X;2;29;In style string, specify column name}
{S:X;X;2;31;In style string, specify row height}
{S:X;X;2;32;In style string, specify whether height is fixed}
{S:X;X;2;33;In style string, specify whether row can contain page breaks}
{S:X;X;2;34;In style string, specify row name}
{S:X;X;2;36;In style string, specify left margin}
{S:X;X;2;37;In style string, specify right margin}
{S:X;X;2;38;In style string, specify paragraph margin}
{S:X;X;2;39;In style string, specify list of tabs}
{S:X;X;2;40;In style string, specify background colour}
{S:X;X;2;41;In style string, specify space above paragraph}
{S:X;X;2;42;In style string, specify space below paragraph}
{S:X;X;2;43;In style string, specify line spacing}
{S:X;X;2;44;In style string, specify justification, left, right, centre, both}
{S:X;X;2;45;In style string, specify vertical justification, top, centre, bottom}
{S:X;X;2;46;In style string, specify object type for new cells, 1=SS, 3=Text}
{S:X;X;2;47;In style string, specify number format for numbers}
{S:X;X;2;48;In style string, specify number format for dates}
{S:X;X;2;49;In style string, specify number format for strings and errors}
{S:X;X;2;51;In style string, specify border colour}
{S:X;X;2;52;In style string, specify border style}
{S:X;X;2;54;In style string, specify colour of left grid line}
{S:X;X;2;55;In style string, specify colour of top grid line}
{S:X;X;2;56;In style string, specify colour of right grid line}
{S:X;X;2;57;In style string, specify colour of bottom grid line}
{S:X;X;2;58;In style string, specify left grid line style}
{S:X;X;2;59;In style string, specify top grid line style}
{S:X;X;2;60;In style string, specify right grid line style}
{S:X;X;2;61;In style string, specify bottom grid line style}
{S:X;X;2;63;In style string, specify protection}
{S:X;X;2;65;In style string, specify name of typeface}
{S:X;X;2;66;In style string, specify x font size}
{S:X;X;2;67;In style string, specify y font size}
{S:X;X;2;68;In style string, specify underline}
{S:X;X;2;69;In style string, specify bold}
{S:X;X;2;70;In style string, specify italic}
{S:X;X;2;71;In style string, specify superscript}
{S:X;X;2;72;In style string, specify subscript}
{S:X;X;2;73;In style string, specify text colour}
{S:X;X;2;75;Set interactive}
{S:X;X;2;100;Delete contents of formula line}
{S:X;X;2;102;Assign a command to a key}
{S:X;X;2;103;Add an item to a menu}
{S:X;X;2;104;Remove a menu item}
{S:X;X;2;109;Load a file}
{S:X;X;2;112;Save a file}
{S:X;X;2;115;Save selected picture}
{S:X;X;2;117;Another command file}
{S:X;X;2;124;apply style to selection}
{S:X;X;2;132;Clear marks/Mark whole document}
{S:X;X;2;133;Select whole document}
{S:X;X;2;139;Put up case dialog}
{S:X;X;2;145;Specifies paper}
{S:X;X;2;147;Insert page number}
{S:X;X;2;148;Insert X page number}
{S:X;X;2;149;Insert live date}
{S:X;X;2;150;Insert spreadsheet name}
{S:X;X;2;151;Insert pathname}
{S:X;X;2;152;Insert leafname}
{S:X;X;2;153;Insert soft hyphen}
{S:X;X;2;154;Insert Return in paragraph}
{S:X;X;2;155;Insert mailshot field}
{S:X;X;2;157;Add n columns}
{S:X;X;2;160;Add n rows}
{S:X;X;2;165;Put up box dialog}
{S:X;X;2;169;Put up search dialog}
{S:X;X;2;176;Put up sort dialog}
{S:X;X;2;178;Remove formulas from selection}
{S:X;X;2;179;Convert to object type}
{S:X;X;2;181;Straddle columns}
{S:X;X;2;183;Clear regions in selection}
{S:X;X;2;184;Count regions in selection}
{S:X;X;2;185;Select area}
{S:X;X;2;186;Force a recalc}
{S:X;X;3;13;arguments}
{S:X;X;3;14;tl_col\\\;tl_row\\\;tl_char\\\;tl_obj\\\; br_col\\\;br_row\\\;br_char\\\;br_obj\\\; whole_col\\\;whole_row\\\;style string}
{S:X;X;3;15;slot type\\\; data type\\\; col\\\; row\\\; contents\\\; formula}
{S:X;X;3;16;style name\\\; style string}
{S:X;X;3;17;string}
{S:X;X;3;18;string}
{S:X;X;3;19;string}
{S:X;X;3;20;string}
{S:X;X;3;21;string}
{S:X;X;3;25;string}
{S:X;X;3;26;string}
{S:X;X;3;28;integer}
{S:X;X;3;29;string}
{S:X;X;3;31;integer}
{S:X;X;3;32;0 or 1}
{S:X;X;3;33;0 or 1}
{S:X;X;3;34;string}
{S:X;X;3;36;integer}
{S:X;X;3;37;integer}
{S:X;X;3;38;integer}
{S:X;X;3;39;string}
{S:X;X;3;40;r\\\; g\\\; b\\\; transparent (0 or 1)}
{S:X;X;3;41;integer}
{S:X;X;3;42;integer}
{S:X;X;3;43;integer}
{S:X;X;3;44;0,1,2,3}
{S:X;X;3;45;0,1,2}
{S:X;X;3;46;number}
{S:X;X;3;47;string}
{S:X;X;3;48;string}
{S:X;X;3;49;string}
{S:X;X;3;51;r\\\; g\\\; b\\\; transparent (0 or 1)}
{S:X;X;3;52;0,1,2,...}
{S:X;X;3;54;r\\\; g\\\; b\\\; transparent (0 or 1)}
{S:X;X;3;55;r\\\; g\\\; b\\\; transparent (0 or 1)}
{S:X;X;3;56;r\\\; g\\\; b\\\; transparent (0 or 1)}
{S:X;X;3;57;r\\\; g\\\; b\\\; transparent (0 or 1)}
{S:X;X;3;58;0,1,2,...}
{S:X;X;3;59;0,1,2,...}
{S:X;X;3;60;0,1,2,...}
{S:X;X;3;61;0,1,2,...}
{S:X;X;3;63;0 or 1}
{S:X;X;3;65;string}
{S:X;X;3;66;integer}
{S:X;X;3;67;integer}
{S:X;X;3;68;0 or 1}
{S:X;X;3;69;0 or 1}
{S:X;X;3;70;0 or 1}
{S:X;X;3;71;0 or 1}
{S:X;X;3;72;0 or 1}
{S:X;X;3;73;r\\\; g\\\; b\\\; transparent (0 or 1)}
{S:X;X;3;102;key to define\\\; length of command string\\\; command string}
{S:X;X;3;103;menu name\\\; string for menu\\\; \\\; length of command string\\\; command string:command conditions}
{S:X;X;3;104;menu delete arguments}
{S:X;X;3;105;string}
{S:X;X;3;106;integer}
{S:X;X;3;108;integer}
{S:X;X;3;109;string}
{S:X;X;3;110;string_s32_string}
{S:X;X;3;111;string}
{S:X;X;3;113;filename\\\; U8n}
{S:X;X;3;114;filename\\\; type\\\; U8n}
{S:X;X;3;116;filename\\\; U8n\\\; string}
{S:X;X;3;117;string}
{S:X;X;3;124;stylename}
{S:X;X;3;125;string}
{S:X;X;3;127;integer}
{S:X;X;3;147;number format string}
{S:X;X;3;148;number format string}
{S:X;X;3;149;number format string}
{S:X;X;3;155;integer}
{S:X;X;3;157;integer}
{S:X;X;3;160;integer}
{S:X;X;3;163;n_cols\\\; n_rows}
{S:X;X;3;166;box arguments}
{S:X;X;3;170;search string\\\; ignore capitals\\\; whole words\\\; replace?\\\; replace string\\\; copy capitals\\\; search_from}
{S:X;X;3;177;col_0\\\; order\\\; col_1\\\; order ...}
{S:X;X;3;179;object number}
{S:X;X;3;185;tl_col\\\;tl_row\\\;tl_char\\\;tl_obj\\\; br_col\\\;b_row\\\;br_char\\\;br_obj\\\; whole_col\\\;whole_row}
{BR:;;;;;;;;1;1;{StyleHandle:BaseLetter}}
{BR:;;;;;;;;1;1;{ColWidth:0}}
{BR:0;;;;1;;;;1;0;{StyleHandle:BaseLetter}}
{R:1;13;;32;4;187;;32;0;0;{StyleHandle:.Table1}}
{R:0;13;;32;1;187;;32;0;0;{ColWidth:285}{MarginLeft:113}{MarginRight:113}{MarginPara:0}{Tablist}}
{R:3;13;;32;4;187;;32;0;0;{ColWidth:4176}{MarginLeft:113}{MarginRight:113}{MarginPara:0}{Tablist}}
{R:1;13;;32;2;187;;32;0;0;{ColWidth:2550}{MarginLeft:113}{MarginRight:113}{MarginPara:0}{Tablist}}
{R:2;13;;32;3;187;;32;0;0;{ColWidth:4137}{MarginLeft:113}{MarginRight:113}{MarginPara:0}{Tablist}}
{R:0;0;;32;1;1;;32;0;0;{StyleHandle:Heading}}
{R:;13;;;;14;;;0;1;{Bold:1}}
{R:0;3;125;3;1;4;;32;0;0;{Italic:1}}
{R:0;3;133;3;1;4;;32;0;0;{Italic:0}}
{R:0;4;4;3;1;5;11;3;0;0;{Italic:1}}
{R:0;4;145;3;1;5;152;3;0;0;{Italic:1}}
{R:0;4;308;3;1;5;319;3;0;0;{Italic:1}}
{R:0;7;28;3;1;8;35;3;0;0;{Italic:1}}
{R:0;8;697;3;1;9;699;3;0;0;{Italic:1}}
{R:0;8;791;3;1;9;793;3;0;0;{Italic:1}}
{R:0;8;822;3;1;9;824;3;0;0;{Italic:1}}
{PageHefoBreakValues-H:0;0;0;;1;569;68;0;;;0;;;1;569;228;0;;;0}
{HD-H:0;2}
{HBR-H:0;2;;32;;32;{StyleHandle:BaseLetter}}
{HBR-H:0;2;;32;;32;{StyleHandle:BaseHeadFoot}}
{HD-H:0;3}
{HBR-H:0;3;;32;;32;{StyleHandle:BaseLetter}}
{HBR-H:0;3;;32;;32;{StyleHandle:BaseHeadFoot}}
{PageHefoBreakValues-H:13;0;0;;1;569;68;0;;;0;;;1;569;228;0;;;0}
{HD-H:13;2}
{HBR-H:13;2;;32;;32;{StyleHandle:BaseLetter}}
{HBR-H:13;2;;32;;32;{StyleHandle:BaseHeadFoot}}
{HD-H:13;3}
{HBR-H:13;3;;32;;32;{StyleHandle:BaseLetter}}
{HBR-H:13;3;;32;;32;{StyleHandle:BaseHeadFoot}}
{EndOfData}
{CmdGroup:{ViewCreate:1152;13472;12480;11968}
{ViewControl:100;0;0;0;0;0;0;2048;0;2048}
{CurrentPosition:0;0;0;3}
}
00000000  7b 56 65 72 73 69 6f 6e  3a 31 2e 30 35 2f 30 31  |{Version:1.05/01|
00000010  3b 31 38 20 4f 63 74 20  31 39 39 33 3b 46 69 72  |;18 Oct 1993;Fir|
00000020  65 77 6f 72 6b 7a 3b 43  6f 6c 74 6f 6e 20 53 6f  |eworkz;Colton So|
00000030  66 74 77 61 72 65 3b 34  30 30 30 20 32 30 32 39  |ftware;4000 2029|
00000040  20 34 39 38 33 20 38 39  38 36 7d 0a 7b 42 6c 6f  | 4983 8986}.{Blo|
00000050  63 6b 3a 30 3b 30 3b 3b  33 32 3b 34 3b 31 38 37  |ck:0;0;;32;4;187|
00000060  3b 3b 33 32 3b 34 3b 31  38 37 7d 0a 7b 53 74 79  |;;32;4;187}.{Sty|
00000070  6c 65 3a 42 61 73 65 4c  65 74 74 65 72 3b 7b 43  |le:BaseLetter;{C|
00000080  6f 6c 57 69 64 74 68 3a  31 31 31 36 34 7d 7b 43  |olWidth:11164}{C|
00000090  6f 6c 4e 61 6d 65 3a 23  7d 7b 52 6f 77 48 65 69  |olName:#}{RowHei|
000000a0  67 68 74 3a 30 7d 7b 52  6f 77 48 65 69 67 68 74  |ght:0}{RowHeight|
000000b0  46 69 78 3a 30 7d 7b 52  6f 77 55 6e 62 72 65 61  |Fix:0}{RowUnbrea|
000000c0  6b 61 62 6c 65 3a 30 7d  7b 52 6f 77 4e 61 6d 65  |kable:0}{RowName|
000000d0  3a 23 7d 7b 4d 61 72 67  69 6e 4c 65 66 74 3a 32  |:#}{MarginLeft:2|
000000e0  38 33 7d 7b 4d 61 72 67  69 6e 52 69 67 68 74 3a  |83}{MarginRight:|
000000f0  32 38 33 7d 7b 4d 61 72  67 69 6e 50 61 72 61 3a  |283}{MarginPara:|
00000100  30 7d 7b 54 61 62 6c 69  73 74 3a 4c 31 31 33 34  |0}{Tablist:L1134|
00000110  20 4c 32 32 36 38 20 4c  33 34 30 32 20 4c 34 35  | L2268 L3402 L45|
00000120  33 36 20 4c 35 36 37 30  20 4c 36 38 30 34 20 4c  |36 L5670 L6804 L|
00000130  37 39 33 38 20 4c 39 30  37 32 20 4c 31 30 32 30  |7938 L9072 L1020|
00000140  36 7d 7b 42 61 63 6b 67  72 6f 75 6e 64 3a 32 35  |6}{Background:25|
00000150  35 3b 32 35 35 3b 32 35  35 7d 7b 50 61 72 61 53  |5;255;255}{ParaS|
00000160  74 61 72 74 3a 36 38 7d  7b 50 61 72 61 45 6e 64  |tart:68}{ParaEnd|
00000170  3a 34 35 7d 7b 4c 69 6e  65 53 70 61 63 65 3a 30  |:45}{LineSpace:0|
00000180  3b 37 32 7d 7b 4a 75 73  74 69 66 79 3a 30 7d 7b  |;72}{Justify:0}{|
00000190  4e 65 77 4f 62 6a 65 63  74 3a 33 7d 7b 4e 75 6d  |NewObject:3}{Num|
000001a0  66 6f 72 6d 3a 23 2c 23  23 30 2e 30 30 7d 7b 4e  |form:#,##0.00}{N|
000001b0  75 6d 66 6f 72 6d 44 54  3a 64 64 2e 6d 6d 2e 79  |umformDT:dd.mm.y|
000001c0  79 7d 7b 4e 75 6d 66 6f  72 6d 53 45 3a 40 7d 7b  |y}{NumformSE:@}{|
000001d0  42 6f 72 64 65 72 43 6f  6c 6f 75 72 3a 30 3b 31  |BorderColour:0;1|
000001e0  38 37 3b 32 35 35 7d 7b  42 6f 72 64 65 72 3a 30  |87;255}{Border:0|
000001f0  7d 7b 47 72 69 64 4c 65  66 74 43 6f 6c 6f 75 72  |}{GridLeftColour|
00000200  3a 30 3b 31 38 37 3b 32  35 35 7d 7b 47 72 69 64  |:0;187;255}{Grid|
00000210  54 6f 70 43 6f 6c 6f 75  72 3a 30 3b 31 38 37 3b  |TopColour:0;187;|
00000220  32 35 35 7d 7b 47 72 69  64 52 69 67 68 74 43 6f  |255}{GridRightCo|
00000230  6c 6f 75 72 3a 30 3b 31  38 37 3b 32 35 35 7d 7b  |lour:0;187;255}{|
00000240  47 72 69 64 42 6f 74 74  6f 6d 43 6f 6c 6f 75 72  |GridBottomColour|
00000250  3a 30 3b 31 38 37 3b 32  35 35 7d 7b 47 72 69 64  |:0;187;255}{Grid|
00000260  4c 65 66 74 3a 30 7d 7b  47 72 69 64 54 6f 70 3a  |Left:0}{GridTop:|
00000270  30 7d 7b 47 72 69 64 52  69 67 68 74 3a 30 7d 7b  |0}{GridRight:0}{|
00000280  47 72 69 64 42 6f 74 74  6f 6d 3a 30 7d 7b 54 79  |GridBottom:0}{Ty|
00000290  70 65 66 61 63 65 3a 54  69 6d 65 73 7d 7b 46 6f  |peface:Times}{Fo|
000002a0  6e 74 78 3a 30 7d 7b 46  6f 6e 74 79 3a 32 34 30  |ntx:0}{Fonty:240|
000002b0  7d 7b 55 6e 64 65 72 6c  69 6e 65 3a 30 7d 7b 42  |}{Underline:0}{B|
000002c0  6f 6c 64 3a 30 7d 7b 49  74 61 6c 69 63 3a 30 7d  |old:0}{Italic:0}|
000002d0  7b 53 75 70 65 72 73 63  72 69 70 74 3a 30 7d 7b  |{Superscript:0}{|
000002e0  53 75 62 73 63 72 69 70  74 3a 30 7d 7b 46 6f 72  |Subscript:0}{For|
000002f0  65 67 72 6f 75 6e 64 3a  30 3b 30 3b 30 7d 7d 0a  |eground:0;0;0}}.|
00000300  7b 53 74 79 6c 65 42 61  73 65 3a 42 61 73 65 4c  |{StyleBase:BaseL|
00000310  65 74 74 65 72 7d 0a 7b  53 74 79 6c 65 3a 42 61  |etter}.{Style:Ba|
00000320  73 65 48 65 61 64 46 6f  6f 74 3b 7b 43 6f 6c 57  |seHeadFoot;{ColW|
00000330  69 64 74 68 3a 31 31 31  36 34 7d 7b 4d 61 72 67  |idth:11164}{Marg|
00000340  69 6e 4c 65 66 74 3a 32  38 33 7d 7b 4d 61 72 67  |inLeft:283}{Marg|
00000350  69 6e 52 69 67 68 74 3a  32 38 33 7d 7b 4d 61 72  |inRight:283}{Mar|
00000360  67 69 6e 50 61 72 61 3a  30 7d 7b 54 61 62 6c 69  |ginPara:0}{Tabli|
00000370  73 74 3a 43 35 34 39 39  20 52 31 30 35 39 38 7d  |st:C5499 R10598}|
00000380  7d 0a 7b 53 74 79 6c 65  48 65 61 64 65 72 46 6f  |}.{StyleHeaderFo|
00000390  6f 74 65 72 3a 42 61 73  65 48 65 61 64 46 6f 6f  |oter:BaseHeadFoo|
000003a0  74 7d 0a 7b 53 74 79 6c  65 3a 2e 54 61 62 6c 65  |t}.{Style:.Table|
000003b0  31 3b 7b 47 72 69 64 4c  65 66 74 43 6f 6c 6f 75  |1;{GridLeftColou|
000003c0  72 3a 30 3b 30 3b 30 7d  7b 47 72 69 64 54 6f 70  |r:0;0;0}{GridTop|
000003d0  43 6f 6c 6f 75 72 3a 30  3b 30 3b 30 7d 7b 47 72  |Colour:0;0;0}{Gr|
000003e0  69 64 52 69 67 68 74 43  6f 6c 6f 75 72 3a 30 3b  |idRightColour:0;|
000003f0  30 3b 30 7d 7b 47 72 69  64 42 6f 74 74 6f 6d 43  |0;0}{GridBottomC|
00000400  6f 6c 6f 75 72 3a 30 3b  30 3b 30 7d 7b 47 72 69  |olour:0;0;0}{Gri|
00000410  64 4c 65 66 74 3a 32 7d  7b 47 72 69 64 54 6f 70  |dLeft:2}{GridTop|
00000420  3a 32 7d 7b 47 72 69 64  52 69 67 68 74 3a 32 7d  |:2}{GridRight:2}|
00000430  7b 47 72 69 64 42 6f 74  74 6f 6d 3a 32 7d 7d 0a  |{GridBottom:2}}.|
00000440  7b 53 74 79 6c 65 3a 48  65 61 64 69 6e 67 3b 7b  |{Style:Heading;{|
00000450  50 61 72 61 53 74 61 72  74 3a 38 35 30 7d 7b 50  |ParaStart:850}{P|
00000460  61 72 61 45 6e 64 3a 35  36 37 7d 7b 4a 75 73 74  |araEnd:567}{Just|
00000470  69 66 79 3a 31 7d 7b 54  79 70 65 66 61 63 65 3a  |ify:1}{Typeface:|
00000480  48 65 6c 76 65 74 69 63  61 7d 7b 46 6f 6e 74 79  |Helvetica}{Fonty|
00000490  3a 33 36 30 7d 7d 0a 7b  53 74 79 6c 65 3a 53 75  |:360}}.{Style:Su|
000004a0  62 68 65 61 64 69 6e 67  3b 7b 50 61 72 61 53 74  |bheading;{ParaSt|
000004b0  61 72 74 3a 32 38 33 7d  7b 46 6f 6e 74 79 3a 33  |art:283}{Fonty:3|
000004c0  32 30 7d 7b 42 6f 6c 64  3a 31 7d 7d 0a 7b 50 61  |20}{Bold:1}}.{Pa|
000004d0  70 65 72 3a 44 65 66 61  75 6c 74 20 41 34 3b 30  |per:Default A4;0|
000004e0  3b 31 36 38 34 30 3b 31  31 39 30 30 3b 34 36 30  |;16840;11900;460|
000004f0  3b 34 36 30 3b 33 36 30  3b 33 36 30 3b 30 3b 30  |;460;360;360;0;0|
00000500  3b 30 3b 30 3b 33 32 3b  3b 30 7d 0a 7b 50 72 69  |;0;0;32;;0}.{Pri|
00000510  6e 74 51 75 61 6c 69 74  79 3a 30 7d 0a 7b 53 74  |ntQuality:0}.{St|
00000520  61 72 74 4f 66 44 61 74  61 7d 0a 7b 53 3a 58 3b  |artOfData}.{S:X;|
00000530  58 3b 30 3b 30 3b 46 69  72 65 77 6f 72 6b 7a 20  |X;0;0;Fireworkz |
00000540  43 6f 6d 6d 61 6e 64 20  4c 61 6e 67 75 61 67 65  |Command Language|
00000550  7d 0a 7b 53 3a 58 3b 58  3b 30 3b 31 3b 54 68 69  |}.{S:X;X;0;1;Thi|
00000560  73 20 66 69 6c 65 20 63  6f 6e 74 61 69 6e 73 20  |s file contains |
00000570  73 6f 6d 65 20 73 6b 65  74 63 68 79 20 64 65 74  |some sketchy det|
00000580  61 69 6c 73 20 6f 66 20  74 68 65 20 46 69 72 65  |ails of the Fire|
00000590  77 6f 72 6b 7a 20 63 6f  6d 6d 61 6e 64 20 6c 61  |workz command la|
000005a0  6e 67 75 61 67 65 2e 20  54 68 69 73 20 69 73 20  |nguage. This is |
000005b0  70 72 6f 76 69 64 65 64  20 6f 6e 6c 79 20 66 6f  |provided only fo|
000005c0  72 20 61 64 76 61 6e 63  65 64 20 61 6e 64 20 69  |r advanced and i|
000005d0  6e 74 72 65 70 69 64 20  75 73 65 72 73 20 77 68  |ntrepid users wh|
000005e0  6f 20 77 69 73 68 20 74  6f 20 65 78 70 65 72 69  |o wish to experi|
000005f0  6d 65 6e 74 2e 20 49 6e  20 74 68 65 20 66 75 74  |ment. In the fut|
00000600  75 72 65 20 77 65 20 77  69 6c 6c 20 73 75 70 70  |ure we will supp|
00000610  6c 79 20 73 6f 6d 65 20  70 72 6f 70 65 72 20 75  |ly some proper u|
00000620  73 65 72 20 69 6e 74 65  72 66 61 63 65 20 61 6e  |ser interface an|
00000630  64 20 64 6f 63 75 6d 65  6e 74 61 74 69 6f 6e 20  |d documentation |
00000640  66 6f 72 20 74 68 65 20  63 6f 6d 6d 61 6e 64 20  |for the command |
00000650  6c 61 6e 67 75 61 67 65  5c 5c 5c 3b 20 74 68 69  |language\\\; thi|
00000660  73 20 69 6e 66 6f 72 6d  61 74 69 6f 6e 20 69 73  |s information is|
00000670  20 73 75 70 70 6c 69 65  64 20 66 6f 72 20 74 68  | supplied for th|
00000680  6f 73 65 20 77 68 6f 20  63 61 6e 27 74 20 77 61  |ose who can't wa|
00000690  69 74 2e 20 50 4c 45 41  53 45 20 64 6f 20 6e 6f  |it. PLEASE do no|
000006a0  74 20 68 6f 70 65 20 66  6f 72 20 6c 65 6e 67 74  |t hope for lengt|
000006b0  68 79 20 74 65 63 68 6e  69 63 61 6c 20 73 75 70  |hy technical sup|
000006c0  70 6f 72 74 20 6f 6e 20  74 68 65 20 63 6f 6d 6d  |port on the comm|
000006d0  61 6e 64 20 6c 61 6e 67  75 61 67 65 20 61 74 20  |and language at |
000006e0  74 68 65 20 6d 6f 6d 65  6e 74 2e 20 49 66 20 74  |the moment. If t|
000006f0  68 65 20 69 6e 66 6f 72  6d 61 74 69 6f 6e 20 69  |he information i|
00000700  6e 20 74 68 69 73 20 66  69 6c 65 20 73 65 65 6d  |n this file seem|
00000710  73 20 64 69 66 66 69 63  75 6c 74 20 61 6e 64 20  |s difficult and |
00000720  64 61 6e 67 65 72 6f 75  73 20 74 6f 20 79 6f 75  |dangerous to you|
00000730  2c 20 74 68 65 6e 20 64  6f 6e 27 74 20 61 74 74  |, then don't att|
00000740  65 6d 70 74 20 74 6f 20  75 73 65 20 74 68 65 20  |empt to use the |
00000750  63 6f 6d 6d 61 6e 64 20  6c 61 6e 67 75 61 67 65  |command language|
00000760  5c 5c 5c 3b 20 70 6c 65  61 73 65 20 64 6f 6e 27  |\\\; please don'|
00000770  74 20 61 73 6b 20 75 73  20 74 6f 20 65 78 70 6c  |t ask us to expl|
00000780  61 69 6e 20 61 6c 6c 20  61 62 6f 75 74 20 63 6f  |ain all about co|
00000790  6d 6d 61 6e 64 20 6c 61  6e 67 75 61 67 65 73 3a  |mmand languages:|
000007a0  20 73 65 65 20 69 66 20  79 6f 75 20 68 61 76 65  | see if you have|
000007b0  20 61 20 74 65 63 68 69  65 20 66 72 69 65 6e 64  | a techie friend|
000007c0  20 77 68 6f 20 6d 69 67  68 74 20 62 65 20 61 62  | who might be ab|
000007d0  6c 65 20 74 6f 20 68 65  6c 70 2e 20 4f 6e 20 74  |le to help. On t|
000007e0  68 65 20 6f 74 68 65 72  20 68 61 6e 64 2c 20 69  |he other hand, i|
000007f0  66 20 79 6f 75 20 61 72  65 20 61 6e 20 69 6e 74  |f you are an int|
00000800  72 65 70 69 64 20 65 78  70 6c 6f 72 65 72 2c 20  |repid explorer, |
00000810  74 68 65 6e 20 64 6f 20  65 78 70 6c 6f 72 65 2e  |then do explore.|
00000820  7d 0a 7b 53 3a 58 3b 58  3b 30 3b 32 3b 54 68 65  |}.{S:X;X;0;2;The|
00000830  20 6b 65 79 77 6f 72 64  73 20 61 6e 64 20 61 72  | keywords and ar|
00000840  67 75 6d 65 6e 74 73 20  64 65 73 63 72 69 62 65  |guments describe|
00000850  64 20 68 65 72 65 20 61  72 65 20 66 61 69 72 6c  |d here are fairl|
00000860  79 20 73 74 61 74 69 63  2e 20 42 75 74 20 62 65  |y static. But be|
00000870  20 70 72 65 70 61 72 65  64 20 66 6f 72 20 74 68  | prepared for th|
00000880  69 6e 67 73 20 74 6f 20  63 68 61 6e 67 65 20 73  |ings to change s|
00000890  6c 69 67 68 74 6c 79 20  69 6e 20 6c 61 74 65 72  |lightly in later|
000008a0  20 76 65 72 73 69 6f 6e  73 2c 20 74 68 6f 75 67  | versions, thoug|
000008b0  68 20 74 68 65 20 62 69  67 67 65 73 74 20 63 68  |h the biggest ch|
000008c0  61 6e 67 65 20 69 73 20  6c 69 6b 65 6c 79 20 74  |ange is likely t|
000008d0  6f 20 62 65 20 61 64 64  69 74 69 6f 6e 20 6f 66  |o be addition of|
000008e0  20 6d 6f 72 65 20 63 6f  6d 6d 61 6e 64 73 2e 7d  | more commands.}|
000008f0  0a 7b 53 3a 58 3b 58 3b  30 3b 33 3b 41 74 20 74  |.{S:X;X;0;3;At t|
00000900  68 65 20 6d 6f 6d 65 6e  74 2c 20 74 68 65 72 65  |he moment, there|
00000910  20 61 72 65 20 74 77 6f  20 74 68 69 6e 67 73 20  | are two things |
00000920  79 6f 75 20 63 61 6e 20  64 6f 20 77 69 74 68 20  |you can do with |
00000930  63 6f 6d 6d 61 6e 64 73  3a 20 70 75 74 20 74 68  |commands: put th|
00000940  65 6d 20 69 6e 20 61 20  66 69 6c 65 2c 20 75 73  |em in a file, us|
00000950  75 61 6c 6c 79 20 77 69  74 68 20 46 77 72 6b 7a  |ually with Fwrkz|
00000960  54 65 6d 20 66 69 6c 65  74 79 70 65 2c 20 6f 72  |Tem filetype, or|
00000970  20 75 73 65 20 74 68 65  20 63 6f 6d 6d 61 6e 64  | use the command|
00000980  20 66 75 6e 63 74 69 6f  6e 20 66 72 6f 6d 20 77  | function from w|
00000990  69 74 68 69 6e 20 61 20  63 75 73 74 6f 6d 20 66  |ithin a custom f|
000009a0  75 6e 63 74 69 6f 6e 2e  20 49 6e 20 61 20 66 69  |unction. In a fi|
000009b0  6c 65 2c 20 65 61 63 68  20 63 6f 6d 6d 61 6e 64  |le, each command|
000009c0  20 6d 75 73 74 20 62 65  20 73 75 72 72 6f 75 6e  | must be surroun|
000009d0  64 65 64 20 77 69 74 68  20 73 71 75 69 67 67 6c  |ded with squiggl|
000009e0  79 20 62 72 61 63 6b 65  74 73 20 5c 7b a0 5c 7d  |y brackets \{.\}|
000009f0  2e 20 53 65 65 20 61 6e  79 20 5a 20 66 61 6d 69  |. See any Z fami|
00000a00  6c 79 20 66 69 6c 65 20  66 6f 72 20 65 78 61 6d  |ly file for exam|
00000a10  70 6c 65 73 20 6f 66 20  75 73 65 20 6f 66 20 63  |ples of use of c|
00000a20  6f 6d 6d 61 6e 64 73 2e  20 41 66 74 65 72 20 6c  |ommands. After l|
00000a30  6f 6f 6b 69 6e 67 20 61  74 20 73 6f 6d 65 20 66  |ooking at some f|
00000a40  69 6c 65 73 20 79 6f 75  20 77 69 6c 6c 20 72 65  |iles you will re|
00000a50  61 6c 69 73 65 20 74 68  61 74 20 61 6c 6c 20 5a  |alise that all Z|
00000a60  20 66 61 6d 69 6c 79 20  66 69 6c 65 73 20 77 68  | family files wh|
00000a70  61 74 65 76 65 72 20 74  68 65 69 72 20 66 69 6c  |atever their fil|
00000a80  65 74 79 70 65 20 61 72  65 20 6d 61 64 65 20 75  |etype are made u|
00000a90  70 20 6f 66 20 63 6f 6d  6d 61 6e 64 73 2e 20 59  |p of commands. Y|
00000aa0  6f 75 20 73 68 6f 75 6c  64 20 62 65 20 61 62 6c  |ou should be abl|
00000ab0  65 20 74 6f 20 6c 65 61  72 6e 20 61 20 6c 6f 74  |e to learn a lot|
00000ac0  20 62 79 20 65 78 61 6d  69 6e 69 6e 67 20 5a 20  | by examining Z |
00000ad0  66 61 6d 69 6c 79 20 66  69 6c 65 73 20 61 6e 64  |family files and|
00000ae0  20 6d 61 79 62 65 20 65  78 70 65 72 69 6d 65 6e  | maybe experimen|
00000af0  74 69 6e 67 2e 20 49 66  20 79 6f 75 20 68 61 76  |ting. If you hav|
00000b00  65 20 61 20 63 6f 6d 6d  61 6e 64 20 6f 72 20 63  |e a command or c|
00000b10  6f 6d 6d 61 6e 64 73 20  69 6e 20 61 20 46 77 72  |ommands in a Fwr|
00000b20  6b 7a 54 65 6d 20 74 79  70 65 20 66 69 6c 65 2c  |kzTem type file,|
00000b30  20 79 6f 75 20 63 61 6e  20 65 78 65 63 75 74 65  | you can execute|
00000b40  20 74 68 65 6d 20 62 79  20 64 72 6f 70 70 69 6e  | them by droppin|
00000b50  67 20 74 68 65 20 66 69  6c 65 20 6f 6e 74 6f 20  |g the file onto |
00000b60  61 20 46 69 72 65 77 6f  72 6b 7a 20 77 69 6e 64  |a Fireworkz wind|
00000b70  6f 77 2e 7d 0a 7b 53 3a  58 3b 58 3b 30 3b 34 3b  |ow.}.{S:X;X;0;4;|
00000b80  54 68 65 20 63 6f 6d 6d  61 6e 64 20 66 75 6e 63  |The command func|
00000b90  74 69 6f 6e 20 69 73 20  6e 6f 74 20 64 6f 63 75  |tion is not docu|
00000ba0  6d 65 6e 74 65 64 2c 20  62 75 74 20 69 74 20 74  |mented, but it t|
00000bb0  61 6b 65 73 20 61 20 73  69 6e 67 6c 65 20 61 72  |akes a single ar|
00000bc0  67 75 6d 65 6e 74 20 77  68 69 63 68 20 69 73 20  |gument which is |
00000bd0  61 20 73 74 72 69 6e 67  2e 20 44 6f 6e 27 74 20  |a string. Don't |
00000be0  75 73 65 20 74 68 65 20  73 71 75 69 67 67 6c 79  |use the squiggly|
00000bf0  20 62 72 61 63 6b 65 74  73 20 69 6e 20 74 68 65  | brackets in the|
00000c00  20 61 72 67 75 6d 65 6e  74 20 74 6f 20 74 68 65  | argument to the|
00000c10  20 63 6f 6d 6d 61 6e 64  20 66 75 6e 63 74 69 6f  | command functio|
00000c20  6e 2e 20 54 68 65 20 74  68 69 6e 67 20 61 62 6f  |n. The thing abo|
00000c30  75 74 20 75 73 69 6e 67  20 74 68 65 20 63 6f 6d  |ut using the com|
00000c40  6d 61 6e 64 20 66 75 6e  63 74 69 6f 6e 20 69 73  |mand function is|
00000c50  20 74 68 61 74 20 79 6f  75 20 63 61 6e 20 75 73  | that you can us|
00000c60  65 20 74 68 65 20 63 75  73 74 6f 6d 20 66 75 6e  |e the custom fun|
00000c70  63 74 69 6f 6e 20 6c 61  6e 67 75 61 67 65 20 74  |ction language t|
00000c80  6f 20 63 6f 6e 74 72 6f  6c 20 74 68 65 20 75 73  |o control the us|
00000c90  65 20 6f 66 20 63 6f 6d  6d 61 6e 64 73 2e 20 59  |e of commands. Y|
00000ca0  6f 75 20 63 61 6e 20 61  6c 73 6f 20 75 73 65 20  |ou can also use |
00000cb0  74 68 65 20 64 6f 75 62  6c 65 63 6c 69 63 6b 20  |the doubleclick |
00000cc0  66 75 6e 63 74 69 6f 6e  20 74 6f 20 65 78 65 63  |function to exec|
00000cd0  75 74 65 20 61 20 63 75  73 74 6f 6d 20 66 75 6e  |ute a custom fun|
00000ce0  63 74 69 6f 6e 20 61 74  20 61 20 70 61 72 74 69  |ction at a parti|
00000cf0  63 75 6c 61 72 20 74 69  6d 65 2e 20 53 65 65 20  |cular time. See |
00000d00  4d 69 6e 65 73 77 65 65  70 65 72 20 66 6f 72 20  |Minesweeper for |
00000d10  73 6f 6d 65 20 65 78 61  6d 70 6c 65 73 20 6f 66  |some examples of|
00000d20  20 74 68 69 73 2e 7d 0a  7b 53 3a 58 3b 58 3b 30  | this.}.{S:X;X;0|
00000d30  3b 35 3b 45 61 63 68 20  63 6f 6d 6d 61 6e 64 20  |;5;Each command |
00000d40  63 6f 6e 73 69 73 74 73  20 6f 66 20 61 20 6b 65  |consists of a ke|
00000d50  79 77 6f 72 64 2e 20 46  6f 6c 6c 6f 77 69 6e 67  |yword. Following|
00000d60  20 74 68 65 20 6b 65 79  77 6f 72 64 20 74 68 65  | the keyword the|
00000d70  72 65 20 6d 61 79 20 62  65 20 73 65 76 65 72 61  |re may be severa|
00000d80  6c 20 61 72 67 75 6d 65  6e 74 73 2e 20 49 66 20  |l arguments. If |
00000d90  74 68 65 72 65 20 61 72  65 20 61 6e 79 20 61 72  |there are any ar|
00000da0  67 75 6d 65 6e 74 73 2c  20 74 68 65 20 6b 65 79  |guments, the key|
00000db0  77 6f 72 64 20 69 73 20  73 65 70 61 72 61 74 65  |word is separate|
00000dc0  64 20 66 72 6f 6d 20 74  68 65 20 61 72 67 75 6d  |d from the argum|
00000dd0  65 6e 74 73 20 62 79 20  61 20 63 6f 6c 6f 6e 20  |ents by a colon |
00000de0  27 3a 27 2e 20 45 61 63  68 20 61 72 67 75 6d 65  |':'. Each argume|
00000df0  6e 74 20 69 73 20 73 65  70 61 72 61 74 65 64 20  |nt is separated |
00000e00  66 72 6f 6d 20 74 68 65  20 6e 65 78 74 20 62 79  |from the next by|
00000e10  20 61 20 73 65 6d 69 2d  63 6f 6c 6f 6e 20 27 5c  | a semi-colon '\|
00000e20  5c 5c 3b 27 2e 7d 0a 7b  53 3a 58 3b 58 3b 30 3b  |\\;'.}.{S:X;X;0;|
00000e30  36 3b 45 78 61 6d 70 6c  65 20 6f 66 20 61 20 63  |6;Example of a c|
00000e40  6f 6d 6d 61 6e 64 20 69  6e 20 61 20 66 69 6c 65  |ommand in a file|
00000e50  3a 20 5c 7b 44 65 66 69  6e 65 4b 65 79 3a 5e 49  |: \{DefineKey:^I|
00000e60  6e 73 65 72 74 5c 5c 5c  3b 34 5c 5c 5c 3b 43 6f  |nsert\\\;4\\\;Co|
00000e70  70 79 5c 7d 7d 0a 7b 53  3a 58 3b 58 3b 30 3b 37  |py\}}.{S:X;X;0;7|
00000e80  3b 45 78 61 6d 70 6c 65  20 6f 66 20 61 20 63 6f  |;Example of a co|
00000e90  6d 6d 61 6e 64 20 69 6e  20 74 68 65 20 63 6f 6d  |mmand in the com|
00000ea0  6d 61 6e 64 20 66 75 6e  63 74 69 6f 6e 3a 20 63  |mand function: c|
00000eb0  6f 6d 6d 61 6e 64 28 22  44 65 66 69 6e 65 4b 65  |ommand("DefineKe|
00000ec0  79 3a 5e 21 58 5c 5c 5c  3b 38 5c 5c 5c 3b 42 6f  |y:^!X\\\;8\\\;Bo|
00000ed0  78 49 6e 74 72 6f 22 29  7d 0a 7b 53 3a 58 3b 58  |xIntro")}.{S:X;X|
00000ee0  3b 30 3b 38 3b 57 68 65  6e 20 69 74 20 63 6f 6d  |;0;8;When it com|
00000ef0  65 73 20 74 6f 20 73 70  65 63 69 66 79 69 6e 67  |es to specifying|
00000f00  20 61 20 63 65 6c 6c 20  6f 72 20 61 6e 20 61 72  | a cell or an ar|
00000f10  65 61 20 6f 66 20 61 20  64 6f 63 75 6d 65 6e 74  |ea of a document|
00000f20  2c 20 79 6f 75 20 67 69  76 65 20 72 6f 77 20 61  |, you give row a|
00000f30  6e 64 20 63 6f 6c 75 6d  6e 20 61 6e 64 20 63 68  |nd column and ch|
00000f40  61 72 61 63 74 65 72 20  70 6f 73 69 74 69 6f 6e  |aracter position|
00000f50  73 2e 20 49 66 20 69 74  27 73 20 61 6e 20 61 72  |s. If it's an ar|
00000f60  65 61 2c 20 79 6f 75 20  67 69 76 65 20 74 68 65  |ea, you give the|
00000f70  20 74 6f 70 20 6c 65 66  74 20 63 6f 2d 6f 72 64  | top left co-ord|
00000f80  69 6e 61 74 65 20 77 68  69 63 68 20 63 6f 6d 65  |inate which come|
00000f90  73 20 66 69 72 73 74 2c  20 61 6e 64 20 74 68 65  |s first, and the|
00000fa0  20 62 6f 74 74 6f 6d 20  72 69 67 68 74 20 63 6f  | bottom right co|
00000fb0  2d 6f 72 64 69 6e 61 74  65 20 77 68 69 63 68 20  |-ordinate which |
00000fc0  63 6f 6d 65 73 20 73 65  63 6f 6e 64 2e 20 41 6c  |comes second. Al|
00000fd0  6c 20 74 68 72 65 65 20  69 6e 64 65 78 65 73 20  |l three indexes |
00000fe0  73 74 61 72 74 20 61 74  20 7a 65 72 6f 2e 20 54  |start at zero. T|
00000ff0  68 65 20 62 6f 74 74 6f  6d 20 72 69 67 68 74 20  |he bottom right |
00001000  63 6f 2d 6f 72 64 69 6e  61 74 65 20 69 73 20 27  |co-ordinate is '|
00001010  65 78 63 6c 75 73 69 76  65 27 20 69 65 20 69 66  |exclusive' ie if|
00001020  20 61 72 65 61 20 73 70  65 63 69 66 69 65 64 20  | area specified |
00001030  69 73 20 41 31 42 32 2c  20 74 68 65 20 74 6f 70  |is A1B2, the top|
00001040  20 6c 65 66 74 20 63 6f  6c 2c 20 72 6f 77 20 69  | left col, row i|
00001050  73 20 30 2c 30 20 61 6e  64 20 74 68 65 20 62 6f  |s 0,0 and the bo|
00001060  74 74 6f 6d 20 72 69 67  68 74 20 63 6f 6c 20 72  |ttom right col r|
00001070  6f 77 20 69 73 20 32 2c  32 20 28 6e 6f 74 20 31  |ow is 2,2 (not 1|
00001080  2c 31 20 61 73 20 79 6f  75 20 6d 69 67 68 74 20  |,1 as you might |
00001090  65 78 70 65 63 74 29 2e  20 57 68 65 6e 20 79 6f  |expect). When yo|
000010a0  75 20 73 70 65 63 69 66  79 20 63 68 61 72 61 63  |u specify charac|
000010b0  74 65 72 20 70 6f 73 69  74 69 6f 6e 73 20 79 6f  |ter positions yo|
000010c0  75 20 6e 65 65 64 20 74  6f 20 73 70 65 63 69 66  |u need to specif|
000010d0  79 20 61 6e 20 6f 62 6a  65 63 74 20 6e 75 6d 62  |y an object numb|
000010e0  65 72 20 61 73 20 77 65  6c 6c 2e 20 41 74 20 74  |er as well. At t|
000010f0  68 65 20 6d 6f 6d 65 6e  74 20 69 74 27 73 20 73  |he moment it's s|
00001100  69 6d 70 6c 65 3a 20 69  66 20 74 68 65 20 63 68  |imple: if the ch|
00001110  61 72 61 63 74 65 72 20  70 6f 73 69 74 69 6f 6e  |aracter position|
00001120  20 69 73 20 74 6f 20 62  65 20 69 67 6e 6f 72 65  | is to be ignore|
00001130  64 20 75 73 65 20 33 32  5c 5c 5c 3b 20 69 66 20  |d use 32\\\; if |
00001140  69 74 27 73 20 61 20 63  68 61 72 61 63 74 65 72  |it's a character|
00001150  20 70 6f 73 69 74 69 6f  6e 20 69 6e 73 69 64 65  | position inside|
00001160  20 61 20 74 65 78 74 20  63 65 6c 6c 2c 20 75 73  | a text cell, us|
00001170  65 20 33 2e 20 53 6f 20  74 68 65 20 73 74 61 72  |e 3. So the star|
00001180  74 20 63 68 61 72 61 63  74 65 72 20 70 6f 73 69  |t character posi|
00001190  74 69 6f 6e 20 6f 66 20  74 68 65 20 77 6f 72 64  |tion of the word|
000011a0  20 69 74 20 61 74 20 74  68 65 20 73 74 61 72 74  | it at the start|
000011b0  20 6f 66 20 74 68 69 73  20 70 61 72 61 67 72 61  | of this paragra|
000011c0  70 68 20 69 73 20 35 2c  33 5c 5c 5c 3b 20 74 68  |ph is 5,3\\\; th|
000011d0  65 20 65 6e 64 20 70 6f  73 69 74 69 6f 6e 20 69  |e end position i|
000011e0  73 20 37 2c 33 2e 20 54  68 65 20 61 72 65 61 20  |s 7,3. The area |
000011f0  63 6f 76 65 72 69 6e 67  20 74 68 65 20 77 6f 72  |covering the wor|
00001200  64 20 69 74 20 69 73 3a  20 30 5c 5c 5c 3b 38 5c  |d it is: 0\\\;8\|
00001210  5c 5c 3b 35 5c 5c 5c 3b  33 5c 5c 5c 3b 20 31 5c  |\\;5\\\;3\\\; 1\|
00001220  5c 5c 3b 39 5c 5c 5c 3b  37 5c 5c 5c 3b 33 20 2e  |\\;9\\\;7\\\;3 .|
00001230  20 46 72 6f 6d 20 69 74  20 74 6f 20 74 68 65 20  | From it to the |
00001240  65 6e 64 20 6f 66 20 74  68 65 20 70 61 72 61 67  |end of the parag|
00001250  72 61 70 68 20 69 73 3a  20 30 5c 5c 5c 3b 38 5c  |raph is: 0\\\;8\|
00001260  5c 5c 3b 35 5c 5c 5c 3b  33 5c 5c 5c 3b 20 31 5c  |\\;5\\\;3\\\; 1\|
00001270  5c 5c 3b 39 5c 5c 5c 3b  30 5c 5c 5c 3b 33 32 20  |\\;9\\\;0\\\;32 |
00001280  2e 7d 0a 7b 53 3a 58 3b  58 3b 30 3b 39 3b 49 6e  |.}.{S:X;X;0;9;In|
00001290  20 74 68 65 20 61 72 67  75 6d 65 6e 74 20 64 65  | the argument de|
000012a0  73 63 72 69 70 74 69 6f  6e 73 20 69 6e 20 74 68  |scriptions in th|
000012b0  65 20 74 61 62 6c 65 20  62 65 6c 6f 77 20 74 6c  |e table below tl|
000012c0  5f 63 6f 6c 2c 20 74 6c  5f 72 6f 77 2c 20 74 6c  |_col, tl_row, tl|
000012d0  5f 63 68 61 72 2c 20 74  6c 5f 6f 62 6a 5c 5c 5c  |_char, tl_obj\\\|
000012e0  3b 20 62 72 5f 63 6f 6c  2c 20 62 72 5f 72 6f 77  |; br_col, br_row|
000012f0  2c 20 62 72 5f 63 68 61  72 2c 20 62 72 5f 6f 62  |, br_char, br_ob|
00001300  6a 20 61 72 65 20 75 73  65 64 20 74 6f 20 72 65  |j are used to re|
00001310  70 72 65 73 65 6e 74 20  74 68 65 20 70 61 72 61  |present the para|
00001320  6d 65 74 65 72 73 20 64  65 73 63 72 69 62 65 64  |meters described|
00001330  20 61 62 6f 76 65 2e 7d  0a 7b 53 3a 58 3b 58 3b  | above.}.{S:X;X;|
00001340  30 3b 31 30 3b 53 6f 6d  65 20 61 72 65 61 73 20  |0;10;Some areas |
00001350  61 6c 73 6f 20 61 63 63  65 70 74 20 77 68 6f 6c  |also accept whol|
00001360  65 5f 63 6f 6c 20 61 6e  64 20 77 68 6f 6c 65 5f  |e_col and whole_|
00001370  72 6f 77 2e 20 54 68 65  73 65 20 61 72 65 20 65  |row. These are e|
00001380  69 74 68 65 72 20 30 20  6f 72 20 31 2e 20 49 66  |ither 0 or 1. If|
00001390  20 77 68 6f 6c 65 5f 63  6f 6c 20 69 73 20 31 20  | whole_col is 1 |
000013a0  74 68 65 6e 20 74 68 65  20 74 6c 5f 72 6f 77 20  |then the tl_row |
000013b0  61 6e 64 20 62 72 5f 72  6f 77 20 6e 75 6d 62 65  |and br_row numbe|
000013c0  72 73 20 61 72 65 20 69  67 6e 6f 72 65 64 3a 20  |rs are ignored: |
000013d0  74 68 65 20 61 72 65 61  20 69 73 20 74 61 6b 65  |the area is take|
000013e0  6e 20 74 6f 20 63 6f 76  65 72 20 74 68 65 20 77  |n to cover the w|
000013f0  68 6f 6c 65 20 63 6f 6c  75 6d 6e 2e 20 43 6f 72  |hole column. Cor|
00001400  72 65 73 70 6f 6e 64 69  6e 67 6c 79 20 66 6f 72  |respondingly for|
00001410  20 77 68 6f 6c 65 5f 72  6f 77 2e 7d 0a 7b 53 3a  | whole_row.}.{S:|
00001420  58 3b 58 3b 30 3b 31 31  3b 57 68 65 6e 20 73 70  |X;X;0;11;When sp|
00001430  65 63 69 66 79 69 6e 67  20 73 69 7a 65 73 20 6f  |ecifying sizes o|
00001440  66 20 66 6f 6e 74 73 2c  20 70 61 70 65 72 2c 20  |f fonts, paper, |
00001450  6c 69 6e 65 73 20 61 6e  64 20 73 6f 20 6f 6e 2c  |lines and so on,|
00001460  20 46 69 72 65 77 6f 72  6b 7a 20 75 73 65 73 20  | Fireworkz uses |
00001470  61 20 73 69 6e 67 6c 65  20 75 6e 69 74 20 63 61  |a single unit ca|
00001480  6c 6c 65 64 20 74 68 65  20 54 77 69 70 2e 20 54  |lled the Twip. T|
00001490  68 69 73 20 69 73 20 31  2f 32 30 74 68 20 6f 66  |his is 1/20th of|
000014a0  20 61 20 70 6f 69 6e 74  2e 20 54 68 65 72 65 20  | a point. There |
000014b0  61 72 65 20 31 34 34 30  20 54 77 69 70 73 20 74  |are 1440 Twips t|
000014c0  6f 20 74 68 65 20 69 6e  63 68 2e 7d 0a 7b 53 3a  |o the inch.}.{S:|
000014d0  58 3b 58 3b 31 3b 31 33  3b 43 6f 6d 6d 61 6e 64  |X;X;1;13;Command|
000014e0  20 6b 65 79 77 6f 72 64  7d 0a 7b 53 3a 58 3b 58  | keyword}.{S:X;X|
000014f0  3b 31 3b 31 34 3b 52 7d  0a 7b 53 3a 58 3b 58 3b  |;1;14;R}.{S:X;X;|
00001500  31 3b 31 35 3b 53 7d 0a  7b 53 3a 58 3b 58 3b 31  |1;15;S}.{S:X;X;1|
00001510  3b 31 36 3b 53 74 79 6c  65 7d 0a 7b 53 3a 58 3b  |;16;Style}.{S:X;|
00001520  58 3b 31 3b 31 37 3b 53  74 79 6c 65 42 61 73 65  |X;1;17;StyleBase|
00001530  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 31 38 3b 53 74  |}.{S:X;X;1;18;St|
00001540  79 6c 65 43 75 72 72 65  6e 74 7d 0a 7b 53 3a 58  |yleCurrent}.{S:X|
00001550  3b 58 3b 31 3b 31 39 3b  53 74 79 6c 65 48 65 61  |;X;1;19;StyleHea|
00001560  64 65 72 46 6f 6f 74 65  72 7d 0a 7b 53 3a 58 3b  |derFooter}.{S:X;|
00001570  58 3b 31 3b 32 30 3b 53  74 79 6c 65 54 65 78 74  |X;1;20;StyleText|
00001580  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 32 31 3b 43 6d  |}.{S:X;X;1;21;Cm|
00001590  64 47 72 6f 75 70 7d 0a  7b 53 3a 58 3b 58 3b 31  |dGroup}.{S:X;X;1|
000015a0  3b 32 32 3b 53 74 61 72  74 4f 66 44 61 74 61 7d  |;22;StartOfData}|
000015b0  0a 7b 53 3a 58 3b 58 3b  31 3b 32 33 3b 45 6e 64  |.{S:X;X;1;23;End|
000015c0  4f 66 44 61 74 61 7d 0a  7b 53 3a 58 3b 58 3b 31  |OfData}.{S:X;X;1|
000015d0  3b 32 35 3b 53 74 79 6c  65 4e 61 6d 65 7d 0a 7b  |;25;StyleName}.{|
000015e0  53 3a 58 3b 58 3b 31 3b  32 36 3b 53 74 79 6c 65  |S:X;X;1;26;Style|
000015f0  4b 65 79 7d 0a 7b 53 3a  58 3b 58 3b 31 3b 32 38  |Key}.{S:X;X;1;28|
00001600  3b 43 6f 6c 57 69 64 74  68 7d 0a 7b 53 3a 58 3b  |;ColWidth}.{S:X;|
00001610  58 3b 31 3b 32 39 3b 43  6f 6c 4e 61 6d 65 7d 0a  |X;1;29;ColName}.|
00001620  7b 53 3a 58 3b 58 3b 31  3b 33 31 3b 52 6f 77 48  |{S:X;X;1;31;RowH|
00001630  65 69 67 68 74 7d 0a 7b  53 3a 58 3b 58 3b 31 3b  |eight}.{S:X;X;1;|
00001640  33 32 3b 52 6f 77 48 65  69 67 68 74 46 69 78 7d  |32;RowHeightFix}|
00001650  0a 7b 53 3a 58 3b 58 3b  31 3b 33 33 3b 52 6f 77  |.{S:X;X;1;33;Row|
00001660  55 6e 62 72 65 61 6b 61  62 6c 65 7d 0a 7b 53 3a  |Unbreakable}.{S:|
00001670  58 3b 58 3b 31 3b 33 34  3b 52 6f 77 4e 61 6d 65  |X;X;1;34;RowName|
00001680  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 33 36 3b 4d 61  |}.{S:X;X;1;36;Ma|
00001690  72 67 69 6e 4c 65 66 74  7d 0a 7b 53 3a 58 3b 58  |rginLeft}.{S:X;X|
000016a0  3b 31 3b 33 37 3b 4d 61  72 67 69 6e 52 69 67 68  |;1;37;MarginRigh|
000016b0  74 7d 0a 7b 53 3a 58 3b  58 3b 31 3b 33 38 3b 4d  |t}.{S:X;X;1;38;M|
000016c0  61 72 67 69 6e 50 61 72  61 7d 0a 7b 53 3a 58 3b  |arginPara}.{S:X;|
000016d0  58 3b 31 3b 33 39 3b 54  61 62 6c 69 73 74 7d 0a  |X;1;39;Tablist}.|
000016e0  7b 53 3a 58 3b 58 3b 31  3b 34 30 3b 42 61 63 6b  |{S:X;X;1;40;Back|
000016f0  67 72 6f 75 6e 64 7d 0a  7b 53 3a 58 3b 58 3b 31  |ground}.{S:X;X;1|
00001700  3b 34 31 3b 50 61 72 61  53 74 61 72 74 7d 0a 7b  |;41;ParaStart}.{|
00001710  53 3a 58 3b 58 3b 31 3b  34 32 3b 50 61 72 61 45  |S:X;X;1;42;ParaE|
00001720  6e 64 7d 0a 7b 53 3a 58  3b 58 3b 31 3b 34 33 3b  |nd}.{S:X;X;1;43;|
00001730  4c 69 6e 65 53 70 61 63  65 7d 0a 7b 53 3a 58 3b  |LineSpace}.{S:X;|
00001740  58 3b 31 3b 34 34 3b 4a  75 73 74 69 66 79 7d 0a  |X;1;44;Justify}.|
00001750  7b 53 3a 58 3b 58 3b 31  3b 34 35 3b 4a 75 73 74  |{S:X;X;1;45;Just|
00001760  69 66 79 56 7d 0a 7b 53  3a 58 3b 58 3b 31 3b 34  |ifyV}.{S:X;X;1;4|
00001770  36 3b 4e 65 77 4f 62 6a  65 63 74 7d 0a 7b 53 3a  |6;NewObject}.{S:|
00001780  58 3b 58 3b 31 3b 34 37  3b 4e 75 6d 66 6f 72 6d  |X;X;1;47;Numform|
00001790  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 34 38 3b 4e 75  |}.{S:X;X;1;48;Nu|
000017a0  6d 66 6f 72 6d 44 54 7d  0a 7b 53 3a 58 3b 58 3b  |mformDT}.{S:X;X;|
000017b0  31 3b 34 39 3b 4e 75 6d  66 6f 72 6d 53 45 7d 0a  |1;49;NumformSE}.|
000017c0  7b 53 3a 58 3b 58 3b 31  3b 35 31 3b 42 6f 72 64  |{S:X;X;1;51;Bord|
000017d0  65 72 43 6f 6c 6f 75 72  7d 0a 7b 53 3a 58 3b 58  |erColour}.{S:X;X|
000017e0  3b 31 3b 35 32 3b 42 6f  72 64 65 72 7d 0a 7b 53  |;1;52;Border}.{S|
000017f0  3a 58 3b 58 3b 31 3b 35  34 3b 47 72 69 64 4c 65  |:X;X;1;54;GridLe|
00001800  66 74 43 6f 6c 6f 75 72  7d 0a 7b 53 3a 58 3b 58  |ftColour}.{S:X;X|
00001810  3b 31 3b 35 35 3b 47 72  69 64 54 6f 70 43 6f 6c  |;1;55;GridTopCol|
00001820  6f 75 72 7d 0a 7b 53 3a  58 3b 58 3b 31 3b 35 36  |our}.{S:X;X;1;56|
00001830  3b 47 72 69 64 52 69 67  68 74 43 6f 6c 6f 75 72  |;GridRightColour|
00001840  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 35 37 3b 47 72  |}.{S:X;X;1;57;Gr|
00001850  69 64 42 6f 74 74 6f 6d  43 6f 6c 6f 75 72 7d 0a  |idBottomColour}.|
00001860  7b 53 3a 58 3b 58 3b 31  3b 35 38 3b 47 72 69 64  |{S:X;X;1;58;Grid|
00001870  4c 65 66 74 7d 0a 7b 53  3a 58 3b 58 3b 31 3b 35  |Left}.{S:X;X;1;5|
00001880  39 3b 47 72 69 64 54 6f  70 7d 0a 7b 53 3a 58 3b  |9;GridTop}.{S:X;|
00001890  58 3b 31 3b 36 30 3b 47  72 69 64 52 69 67 68 74  |X;1;60;GridRight|
000018a0  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 36 31 3b 47 72  |}.{S:X;X;1;61;Gr|
000018b0  69 64 42 6f 74 74 6f 6d  7d 0a 7b 53 3a 58 3b 58  |idBottom}.{S:X;X|
000018c0  3b 31 3b 36 33 3b 50 72  6f 74 65 63 74 7d 0a 7b  |;1;63;Protect}.{|
000018d0  53 3a 58 3b 58 3b 31 3b  36 35 3b 54 79 70 65 66  |S:X;X;1;65;Typef|
000018e0  61 63 65 7d 0a 7b 53 3a  58 3b 58 3b 31 3b 36 36  |ace}.{S:X;X;1;66|
000018f0  3b 46 6f 6e 74 78 7d 0a  7b 53 3a 58 3b 58 3b 31  |;Fontx}.{S:X;X;1|
00001900  3b 36 37 3b 46 6f 6e 74  79 7d 0a 7b 53 3a 58 3b  |;67;Fonty}.{S:X;|
00001910  58 3b 31 3b 36 38 3b 55  6e 64 65 72 6c 69 6e 65  |X;1;68;Underline|
00001920  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 36 39 3b 42 6f  |}.{S:X;X;1;69;Bo|
00001930  6c 64 7d 0a 7b 53 3a 58  3b 58 3b 31 3b 37 30 3b  |ld}.{S:X;X;1;70;|
00001940  49 74 61 6c 69 63 7d 0a  7b 53 3a 58 3b 58 3b 31  |Italic}.{S:X;X;1|
00001950  3b 37 31 3b 53 75 70 65  72 73 63 72 69 70 74 7d  |;71;Superscript}|
00001960  0a 7b 53 3a 58 3b 58 3b  31 3b 37 32 3b 53 75 62  |.{S:X;X;1;72;Sub|
00001970  73 63 72 69 70 74 7d 0a  7b 53 3a 58 3b 58 3b 31  |script}.{S:X;X;1|
00001980  3b 37 33 3b 46 6f 72 65  67 72 6f 75 6e 64 7d 0a  |;73;Foreground}.|
00001990  7b 53 3a 58 3b 58 3b 31  3b 37 35 3b 53 49 7d 0a  |{S:X;X;1;75;SI}.|
000019a0  7b 53 3a 58 3b 58 3b 31  3b 37 36 3b 43 75 72 73  |{S:X;X;1;76;Curs|
000019b0  6f 72 4c 65 66 74 7d 0a  7b 53 3a 58 3b 58 3b 31  |orLeft}.{S:X;X;1|
000019c0  3b 37 37 3b 43 75 72 73  6f 72 52 69 67 68 74 7d  |;77;CursorRight}|
000019d0  0a 7b 53 3a 58 3b 58 3b  31 3b 37 38 3b 43 75 72  |.{S:X;X;1;78;Cur|
000019e0  73 6f 72 44 6f 77 6e 7d  0a 7b 53 3a 58 3b 58 3b  |sorDown}.{S:X;X;|
000019f0  31 3b 37 39 3b 43 75 72  73 6f 72 55 70 7d 0a 7b  |1;79;CursorUp}.{|
00001a00  53 3a 58 3b 58 3b 31 3b  38 30 3b 57 6f 72 64 4c  |S:X;X;1;80;WordL|
00001a10  65 66 74 7d 0a 7b 53 3a  58 3b 58 3b 31 3b 38 31  |eft}.{S:X;X;1;81|
00001a20  3b 57 6f 72 64 52 69 67  68 74 7d 0a 7b 53 3a 58  |;WordRight}.{S:X|
00001a30  3b 58 3b 31 3b 38 32 3b  50 61 67 65 44 6f 77 6e  |;X;1;82;PageDown|
00001a40  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 38 33 3b 50 61  |}.{S:X;X;1;83;Pa|
00001a50  67 65 55 70 7d 0a 7b 53  3a 58 3b 58 3b 31 3b 38  |geUp}.{S:X;X;1;8|
00001a60  34 3b 4c 69 6e 65 53 74  61 72 74 7d 0a 7b 53 3a  |4;LineStart}.{S:|
00001a70  58 3b 58 3b 31 3b 38 35  3b 4c 69 6e 65 45 6e 64  |X;X;1;85;LineEnd|
00001a80  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 38 36 3b 44 6f  |}.{S:X;X;1;86;Do|
00001a90  63 75 6d 65 6e 74 54 6f  70 7d 0a 7b 53 3a 58 3b  |cumentTop}.{S:X;|
00001aa0  58 3b 31 3b 38 37 3b 44  6f 63 75 6d 65 6e 74 42  |X;1;87;DocumentB|
00001ab0  6f 74 74 6f 6d 7d 0a 7b  53 3a 58 3b 58 3b 31 3b  |ottom}.{S:X;X;1;|
00001ac0  38 38 3b 46 69 72 73 74  43 6f 6c 75 6d 6e 7d 0a  |88;FirstColumn}.|
00001ad0  7b 53 3a 58 3b 58 3b 31  3b 38 39 3b 4c 61 73 74  |{S:X;X;1;89;Last|
00001ae0  43 6f 6c 75 6d 6e 7d 0a  7b 53 3a 58 3b 58 3b 31  |Column}.{S:X;X;1|
00001af0  3b 39 30 3b 44 65 6c 65  74 65 4c 65 66 74 7d 0a  |;90;DeleteLeft}.|
00001b00  7b 53 3a 58 3b 58 3b 31  3b 39 31 3b 44 65 6c 65  |{S:X;X;1;91;Dele|
00001b10  74 65 52 69 67 68 74 7d  0a 7b 53 3a 58 3b 58 3b  |teRight}.{S:X;X;|
00001b20  31 3b 39 32 3b 52 65 74  75 72 6e 7d 0a 7b 53 3a  |1;92;Return}.{S:|
00001b30  58 3b 58 3b 31 3b 39 33  3b 45 73 63 61 70 65 7d  |X;X;1;93;Escape}|
00001b40  0a 7b 53 3a 58 3b 58 3b  31 3b 39 35 3b 43 6c 65  |.{S:X;X;1;95;Cle|
00001b50  61 72 7d 0a 7b 53 3a 58  3b 58 3b 31 3b 39 36 3b  |ar}.{S:X;X;1;96;|
00001b60  43 6f 70 79 7d 0a 7b 53  3a 58 3b 58 3b 31 3b 39  |Copy}.{S:X;X;1;9|
00001b70  37 3b 43 75 74 7d 0a 7b  53 3a 58 3b 58 3b 31 3b  |7;Cut}.{S:X;X;1;|
00001b80  39 38 3b 50 61 73 74 65  7d 0a 7b 53 3a 58 3b 58  |98;Paste}.{S:X;X|
00001b90  3b 31 3b 39 39 3b 42 6c  6f 63 6b 43 6c 65 61 72  |;1;99;BlockClear|
00001ba0  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 31 30 30 3b 44  |}.{S:X;X;1;100;D|
00001bb0  65 6c 65 74 65 4c 69 6e  65 7d 0a 7b 53 3a 58 3b  |eleteLine}.{S:X;|
00001bc0  58 3b 31 3b 31 30 32 3b  44 65 66 69 6e 65 4b 65  |X;1;102;DefineKe|
00001bd0  79 7d 0a 7b 53 3a 58 3b  58 3b 31 3b 31 30 33 3b  |y}.{S:X;X;1;103;|
00001be0  4d 65 6e 75 41 64 64 7d  0a 7b 53 3a 58 3b 58 3b  |MenuAdd}.{S:X;X;|
00001bf0  31 3b 31 30 34 3b 4d 65  6e 75 44 65 6c 65 74 65  |1;104;MenuDelete|
00001c00  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 31 30 35 3b 43  |}.{S:X;X;1;105;C|
00001c10  75 72 72 65 6e 74 44 6f  63 75 6d 65 6e 74 7d 0a  |urrentDocument}.|
00001c20  7b 53 3a 58 3b 58 3b 31  3b 31 30 36 3b 43 75 72  |{S:X;X;1;106;Cur|
00001c30  72 65 6e 74 50 61 6e 65  7d 0a 7b 53 3a 58 3b 58  |rentPane}.{S:X;X|
00001c40  3b 31 3b 31 30 37 3b 43  75 72 72 65 6e 74 50 6f  |;1;107;CurrentPo|
00001c50  73 69 74 69 6f 6e 7d 0a  7b 53 3a 58 3b 58 3b 31  |sition}.{S:X;X;1|
00001c60  3b 31 30 38 3b 43 75 72  72 65 6e 74 56 69 65 77  |;108;CurrentView|
00001c70  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 31 30 39 3b 4c  |}.{S:X;X;1;109;L|
00001c80  6f 61 64 7d 0a 7b 53 3a  58 3b 58 3b 31 3b 31 31  |oad}.{S:X;X;1;11|
00001c90  30 3b 4c 6f 61 64 4f 74  68 65 72 7d 0a 7b 53 3a  |0;LoadOther}.{S:|
00001ca0  58 3b 58 3b 31 3b 31 31  31 3b 4c 6f 61 64 54 65  |X;X;1;111;LoadTe|
00001cb0  6d 70 6c 61 74 65 7d 0a  7b 53 3a 58 3b 58 3b 31  |mplate}.{S:X;X;1|
00001cc0  3b 31 31 32 3b 53 61 76  65 7d 0a 7b 53 3a 58 3b  |;112;Save}.{S:X;|
00001cd0  58 3b 31 3b 31 31 33 3b  53 61 76 65 41 73 7d 0a  |X;1;113;SaveAs}.|
00001ce0  7b 53 3a 58 3b 58 3b 31  3b 31 31 34 3b 53 61 76  |{S:X;X;1;114;Sav|
00001cf0  65 4f 74 68 65 72 7d 0a  7b 53 3a 58 3b 58 3b 31  |eOther}.{S:X;X;1|
00001d00  3b 31 31 35 3b 53 61 76  65 50 69 63 74 75 72 65  |;115;SavePicture|
00001d10  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 31 31 36 3b 53  |}.{S:X;X;1;116;S|
00001d20  61 76 65 54 65 6d 70 6c  61 74 65 7d 0a 7b 53 3a  |aveTemplate}.{S:|
00001d30  58 3b 58 3b 31 3b 31 31  37 3b 45 78 65 63 75 74  |X;X;1;117;Execut|
00001d40  65 7d 0a 7b 53 3a 58 3b  58 3b 31 3b 31 31 39 3b  |e}.{S:X;X;1;119;|
00001d50  50 6c 61 69 6e 54 65 78  74 50 72 69 6e 74 7d 0a  |PlainTextPrint}.|
00001d60  7b 53 3a 58 3b 58 3b 31  3b 31 32 30 3b 50 72 69  |{S:X;X;1;120;Pri|
00001d70  6e 74 7d 0a 7b 53 3a 58  3b 58 3b 31 3b 31 32 31  |nt}.{S:X;X;1;121|
00001d80  3b 50 72 69 6e 74 45 78  74 72 61 7d 0a 7b 53 3a  |;PrintExtra}.{S:|
00001d90  58 3b 58 3b 31 3b 31 32  32 3b 50 72 69 6e 74 51  |X;X;1;122;PrintQ|
00001da0  75 61 6c 69 74 79 7d 0a  7b 53 3a 58 3b 58 3b 31  |uality}.{S:X;X;1|
00001db0  3b 31 32 34 3b 53 74 79  6c 65 41 70 70 6c 79 7d  |;124;StyleApply}|
00001dc0  0a 7b 53 3a 58 3b 58 3b  31 3b 31 32 35 3b 53 74  |.{S:X;X;1;125;St|
00001dd0  79 6c 65 41 70 70 6c 79  53 6f 75 72 63 65 7d 0a  |yleApplySource}.|
00001de0  7b 53 3a 58 3b 58 3b 31  3b 31 32 36 3b 53 74 79  |{S:X;X;1;126;Sty|
00001df0  6c 65 49 6e 74 72 6f 7d  0a 7b 53 3a 58 3b 58 3b  |leIntro}.{S:X;X;|
00001e00  31 3b 31 32 37 3b 53 74  79 6c 65 42 75 74 74 6f  |1;127;StyleButto|
00001e10  6e 7d 0a 7b 53 3a 58 3b  58 3b 31 3b 31 32 38 3b  |n}.{S:X;X;1;128;|
00001e20  41 70 70 6c 79 45 66 66  65 63 74 73 7d 0a 7b 53  |ApplyEffects}.{S|
00001e30  3a 58 3b 58 3b 31 3b 31  32 39 3b 52 65 6d 6f 76  |:X;X;1;129;Remov|
00001e40  65 45 66 66 65 63 74 73  7d 0a 7b 53 3a 58 3b 58  |eEffects}.{S:X;X|
00001e50  3b 31 3b 31 33 30 3b 45  66 66 65 63 74 73 42 75  |;1;130;EffectsBu|
00001e60  74 74 6f 6e 7d 0a 7b 53  3a 58 3b 58 3b 31 3b 31  |tton}.{S:X;X;1;1|
00001e70  33 32 3b 54 6f 67 67 6c  65 4d 61 72 6b 73 7d 0a  |32;ToggleMarks}.|
00001e80  7b 53 3a 58 3b 58 3b 31  3b 31 33 33 3b 53 65 6c  |{S:X;X;1;133;Sel|
00001e90  65 63 74 44 6f 63 75 6d  65 6e 74 7d 0a 7b 53 3a  |ectDocument}.{S:|
00001ea0  58 3b 58 3b 31 3b 31 33  34 3b 53 65 6c 65 63 74  |X;X;1;134;Select|
00001eb0  43 65 6c 6c 7d 0a 7b 53  3a 58 3b 58 3b 31 3b 31  |Cell}.{S:X;X;1;1|
00001ec0  33 35 3b 53 65 6c 65 63  74 57 6f 72 64 7d 0a 7b  |35;SelectWord}.{|
00001ed0  53 3a 58 3b 58 3b 31 3b  31 33 36 3b 54 61 62 4c  |S:X;X;1;136;TabL|
00001ee0  65 66 74 7d 0a 7b 53 3a  58 3b 58 3b 31 3b 31 33  |eft}.{S:X;X;1;13|
00001ef0  37 3b 54 61 62 52 69 67  68 74 7d 0a 7b 53 3a 58  |7;TabRight}.{S:X|
00001f00  3b 58 3b 31 3b 31 33 39  3b 43 61 73 65 49 6e 74  |;X;1;139;CaseInt|
00001f10  72 6f 7d 0a 7b 53 3a 58  3b 58 3b 31 3b 31 34 30  |ro}.{S:X;X;1;140|
00001f20  3b 43 61 73 65 55 70 70  65 72 7d 0a 7b 53 3a 58  |;CaseUpper}.{S:X|
00001f30  3b 58 3b 31 3b 31 34 31  3b 43 61 73 65 4c 6f 77  |;X;1;141;CaseLow|
00001f40  65 72 7d 0a 7b 53 3a 58  3b 58 3b 31 3b 31 34 32  |er}.{S:X;X;1;142|
00001f50  3b 43 61 73 65 49 6e 69  43 61 70 7d 0a 7b 53 3a  |;CaseIniCap}.{S:|
00001f60  58 3b 58 3b 31 3b 31 34  33 3b 43 61 73 65 53 77  |X;X;1;143;CaseSw|
00001f70  61 70 7d 0a 7b 53 3a 58  3b 58 3b 31 3b 31 34 35  |ap}.{S:X;X;1;145|
00001f80  3b 50 61 70 65 72 7d 0a  7b 53 3a 58 3b 58 3b 31  |;Paper}.{S:X;X;1|
00001f90  3b 31 34 37 3b 46 69 65  6c 64 49 6e 73 50 61 67  |;147;FieldInsPag|
00001fa0  65 7d 0a 7b 53 3a 58 3b  58 3b 31 3b 31 34 38 3b  |e}.{S:X;X;1;148;|
00001fb0  46 69 65 6c 64 49 6e 73  50 61 67 65 58 7d 0a 7b  |FieldInsPageX}.{|
00001fc0  53 3a 58 3b 58 3b 31 3b  31 34 39 3b 46 69 65 6c  |S:X;X;1;149;Fiel|
00001fd0  64 49 6e 73 44 61 74 65  7d 0a 7b 53 3a 58 3b 58  |dInsDate}.{S:X;X|
00001fe0  3b 31 3b 31 35 30 3b 46  69 65 6c 64 49 6e 73 4e  |;1;150;FieldInsN|
00001ff0  61 6d 65 7d 0a 7b 53 3a  58 3b 58 3b 31 3b 31 35  |ame}.{S:X;X;1;15|
00002000  31 3b 46 69 65 6c 64 49  6e 73 57 68 6f 6c 65 4e  |1;FieldInsWholeN|
00002010  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 31 35 32 3b 46  |}.{S:X;X;1;152;F|
00002020  69 65 6c 64 49 6e 73 4c  65 61 66 4e 7d 0a 7b 53  |ieldInsLeafN}.{S|
00002030  3a 58 3b 58 3b 31 3b 31  35 33 3b 46 69 65 6c 64  |:X;X;1;153;Field|
00002040  49 6e 73 53 6f 66 74 48  7d 0a 7b 53 3a 58 3b 58  |InsSoftH}.{S:X;X|
00002050  3b 31 3b 31 35 34 3b 46  69 65 6c 64 49 6e 73 52  |;1;154;FieldInsR|
00002060  65 74 75 72 6e 7d 0a 7b  53 3a 58 3b 58 3b 31 3b  |eturn}.{S:X;X;1;|
00002070  31 35 35 3b 46 69 65 6c  64 49 6e 73 46 69 65 6c  |155;FieldInsFiel|
00002080  64 7d 0a 7b 53 3a 58 3b  58 3b 31 3b 31 35 37 3b  |d}.{S:X;X;1;157;|
00002090  41 64 64 43 6f 6c 75 6d  6e 73 7d 0a 7b 53 3a 58  |AddColumns}.{S:X|
000020a0  3b 58 3b 31 3b 31 35 38  3b 49 6e 73 65 72 74 43  |;X;1;158;InsertC|
000020b0  6f 6c 7d 0a 7b 53 3a 58  3b 58 3b 31 3b 31 35 39  |ol}.{S:X;X;1;159|
000020c0  3b 44 65 6c 65 74 65 43  6f 6c 7d 0a 7b 53 3a 58  |;DeleteCol}.{S:X|
000020d0  3b 58 3b 31 3b 31 36 30  3b 41 64 64 52 6f 77 73  |;X;1;160;AddRows|
000020e0  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 31 36 31 3b 49  |}.{S:X;X;1;161;I|
000020f0  6e 73 65 72 74 52 6f 77  7d 0a 7b 53 3a 58 3b 58  |nsertRow}.{S:X;X|
00002100  3b 31 3b 31 36 32 3b 44  65 6c 65 74 65 52 6f 77  |;1;162;DeleteRow|
00002110  7d 0a 7b 53 3a 58 3b 58  3b 31 3b 31 36 33 3b 49  |}.{S:X;X;1;163;I|
00002120  6e 73 65 72 74 54 61 62  6c 65 7d 0a 7b 53 3a 58  |nsertTable}.{S:X|
00002130  3b 58 3b 31 3b 31 36 34  3b 57 6f 72 64 43 6f 75  |;X;1;164;WordCou|
00002140  6e 74 7d 0a 7b 53 3a 58  3b 58 3b 31 3b 31 36 35  |nt}.{S:X;X;1;165|
00002150  3b 42 6f 78 49 6e 74 72  6f 7d 0a 7b 53 3a 58 3b  |;BoxIntro}.{S:X;|
00002160  58 3b 31 3b 31 36 36 3b  42 6f 78 7d 0a 7b 53 3a  |X;1;166;Box}.{S:|
00002170  58 3b 58 3b 31 3b 31 36  37 3b 41 75 74 6f 57 69  |X;X;1;167;AutoWi|
00002180  64 74 68 7d 0a 7b 53 3a  58 3b 58 3b 31 3b 31 36  |dth}.{S:X;X;1;16|
00002190  38 3b 41 75 74 6f 48 65  69 67 68 74 7d 0a 7b 53  |8;AutoHeight}.{S|
000021a0  3a 58 3b 58 3b 31 3b 31  36 39 3b 53 65 61 72 63  |:X;X;1;169;Searc|
000021b0  68 49 6e 74 72 6f 7d 0a  7b 53 3a 58 3b 58 3b 31  |hIntro}.{S:X;X;1|
000021c0  3b 31 37 30 3b 53 65 61  72 63 68 7d 0a 7b 53 3a  |;170;Search}.{S:|
000021d0  58 3b 58 3b 31 3b 31 37  31 3b 43 68 6f 69 63 65  |X;X;1;171;Choice|
000021e0  73 7d 0a 7b 53 3a 58 3b  58 3b 31 3b 31 37 32 3b  |s}.{S:X;X;1;172;|
000021f0  49 6e 66 6f 7d 0a 7b 53  3a 58 3b 58 3b 31 3b 31  |Info}.{S:X;X;1;1|
00002200  37 33 3b 51 75 69 74 7d  0a 7b 53 3a 58 3b 58 3b  |73;Quit}.{S:X;X;|
00002210  31 3b 31 37 34 3b 54 68  65 73 61 75 72 75 73 7d  |1;174;Thesaurus}|
00002220  0a 7b 53 3a 58 3b 58 3b  31 3b 31 37 36 3b 53 6f  |.{S:X;X;1;176;So|
00002230  72 74 49 6e 74 72 6f 7d  0a 7b 53 3a 58 3b 58 3b  |rtIntro}.{S:X;X;|
00002240  31 3b 31 37 37 3b 53 6f  72 74 7d 0a 7b 53 3a 58  |1;177;Sort}.{S:X|
00002250  3b 58 3b 31 3b 31 37 38  3b 53 6e 61 70 73 68 6f  |;X;1;178;Snapsho|
00002260  74 7d 0a 7b 53 3a 58 3b  58 3b 31 3b 31 37 39 3b  |t}.{S:X;X;1;179;|
00002270  4f 62 6a 65 63 74 43 6f  6e 76 65 72 74 7d 0a 7b  |ObjectConvert}.{|
00002280  53 3a 58 3b 58 3b 31 3b  31 38 31 3b 53 74 72 61  |S:X;X;1;181;Stra|
00002290  64 64 6c 65 48 6f 72 7a  7d 0a 7b 53 3a 58 3b 58  |ddleHorz}.{S:X;X|
000022a0  3b 31 3b 31 38 33 3b 52  65 67 69 6f 6e 43 6c 65  |;1;183;RegionCle|
000022b0  61 72 7d 0a 7b 53 3a 58  3b 58 3b 31 3b 31 38 34  |ar}.{S:X;X;1;184|
000022c0  3b 52 65 67 69 6f 6e 43  6f 75 6e 74 7d 0a 7b 53  |;RegionCount}.{S|
000022d0  3a 58 3b 58 3b 31 3b 31  38 35 3b 53 65 6c 65 63  |:X;X;1;185;Selec|
000022e0  74 7d 0a 7b 53 3a 58 3b  58 3b 31 3b 31 38 36 3b  |t}.{S:X;X;1;186;|
000022f0  46 6f 72 63 65 52 65 63  61 6c 63 7d 0a 7b 53 3a  |ForceRecalc}.{S:|
00002300  58 3b 58 3b 32 3b 31 33  3b 50 75 72 70 6f 73 65  |X;X;2;13;Purpose|
00002310  7d 0a 7b 53 3a 58 3b 58  3b 32 3b 31 34 3b 44 65  |}.{S:X;X;2;14;De|
00002320  66 69 6e 65 20 61 20 72  65 67 69 6f 6e 7d 0a 7b  |fine a region}.{|
00002330  53 3a 58 3b 58 3b 32 3b  31 35 3b 44 65 66 69 6e  |S:X;X;2;15;Defin|
00002340  65 20 61 20 73 6c 6f 74  2f 63 65 6c 6c 7d 0a 7b  |e a slot/cell}.{|
00002350  53 3a 58 3b 58 3b 32 3b  31 36 3b 44 65 66 69 6e  |S:X;X;2;16;Defin|
00002360  65 20 61 20 73 74 79 6c  65 7d 0a 7b 53 3a 58 3b  |e a style}.{S:X;|
00002370  58 3b 32 3b 31 37 3b 53  70 65 63 69 66 79 20 74  |X;2;17;Specify t|
00002380  68 65 20 62 61 73 65 20  73 74 79 6c 65 20 6e 61  |he base style na|
00002390  6d 65 7d 0a 7b 53 3a 58  3b 58 3b 32 3b 31 38 3b  |me}.{S:X;X;2;18;|
000023a0  53 70 65 63 69 66 79 20  74 68 65 20 63 75 72 72  |Specify the curr|
000023b0  65 6e 74 20 63 65 6c 6c  20 73 74 79 6c 65 20 6e  |ent cell style n|
000023c0  61 6d 65 7d 0a 7b 53 3a  58 3b 58 3b 32 3b 31 39  |ame}.{S:X;X;2;19|
000023d0  3b 53 70 65 63 69 66 79  20 74 68 65 20 68 65 61  |;Specify the hea|
000023e0  64 65 72 2f 66 6f 6f 74  65 72 20 73 74 79 6c 65  |der/footer style|
000023f0  20 6e 61 6d 65 7d 0a 7b  53 3a 58 3b 58 3b 32 3b  | name}.{S:X;X;2;|
00002400  32 30 3b 53 70 65 63 69  66 79 20 74 68 65 20 74  |20;Specify the t|
00002410  65 78 74 20 73 74 79 6c  65 20 6e 61 6d 65 7d 0a  |ext style name}.|
00002420  7b 53 3a 58 3b 58 3b 32  3b 32 31 3b 47 72 6f 75  |{S:X;X;2;21;Grou|
00002430  70 20 63 6f 6d 6d 61 6e  64 73 20 74 6f 67 65 74  |p commands toget|
00002440  68 65 72 7d 0a 7b 53 3a  58 3b 58 3b 32 3b 32 32  |her}.{S:X;X;2;22|
00002450  3b 53 74 61 72 74 20 6f  66 20 64 61 74 61 20 69  |;Start of data i|
00002460  6e 20 61 20 66 69 6c 65  7d 0a 7b 53 3a 58 3b 58  |n a file}.{S:X;X|
00002470  3b 32 3b 32 33 3b 45 6e  64 20 6f 66 20 64 61 74  |;2;23;End of dat|
00002480  61 20 69 6e 20 61 20 66  69 6c 65 7d 0a 7b 53 3a  |a in a file}.{S:|
00002490  58 3b 58 3b 32 3b 32 35  3b 49 6e 20 73 74 79 6c  |X;X;2;25;In styl|
000024a0  65 20 73 74 72 69 6e 67  2c 20 73 70 65 63 69 66  |e string, specif|
000024b0  79 20 6e 61 6d 65 20 6f  66 20 73 74 79 6c 65 7d  |y name of style}|
000024c0  0a 7b 53 3a 58 3b 58 3b  32 3b 32 36 3b 49 6e 20  |.{S:X;X;2;26;In |
000024d0  73 74 79 6c 65 20 73 74  72 69 6e 67 2c 20 73 70  |style string, sp|
000024e0  65 63 69 66 79 20 66 75  6e 63 74 69 6f 6e 20 6b  |ecify function k|
000024f0  65 79 20 73 68 6f 72 74  63 75 74 7d 0a 7b 53 3a  |ey shortcut}.{S:|
00002500  58 3b 58 3b 32 3b 32 38  3b 49 6e 20 73 74 79 6c  |X;X;2;28;In styl|
00002510  65 20 73 74 72 69 6e 67  2c 20 73 70 65 63 69 66  |e string, specif|
00002520  79 20 63 6f 6c 75 6d 6e  20 77 69 64 74 68 7d 0a  |y column width}.|
00002530  7b 53 3a 58 3b 58 3b 32  3b 32 39 3b 49 6e 20 73  |{S:X;X;2;29;In s|
00002540  74 79 6c 65 20 73 74 72  69 6e 67 2c 20 73 70 65  |tyle string, spe|
00002550  63 69 66 79 20 63 6f 6c  75 6d 6e 20 6e 61 6d 65  |cify column name|
00002560  7d 0a 7b 53 3a 58 3b 58  3b 32 3b 33 31 3b 49 6e  |}.{S:X;X;2;31;In|
00002570  20 73 74 79 6c 65 20 73  74 72 69 6e 67 2c 20 73  | style string, s|
00002580  70 65 63 69 66 79 20 72  6f 77 20 68 65 69 67 68  |pecify row heigh|
00002590  74 7d 0a 7b 53 3a 58 3b  58 3b 32 3b 33 32 3b 49  |t}.{S:X;X;2;32;I|
000025a0  6e 20 73 74 79 6c 65 20  73 74 72 69 6e 67 2c 20  |n style string, |
000025b0  73 70 65 63 69 66 79 20  77 68 65 74 68 65 72 20  |specify whether |
000025c0  68 65 69 67 68 74 20 69  73 20 66 69 78 65 64 7d  |height is fixed}|
000025d0  0a 7b 53 3a 58 3b 58 3b  32 3b 33 33 3b 49 6e 20  |.{S:X;X;2;33;In |
000025e0  73 74 79 6c 65 20 73 74  72 69 6e 67 2c 20 73 70  |style string, sp|
000025f0  65 63 69 66 79 20 77 68  65 74 68 65 72 20 72 6f  |ecify whether ro|
00002600  77 20 63 61 6e 20 63 6f  6e 74 61 69 6e 20 70 61  |w can contain pa|
00002610  67 65 20 62 72 65 61 6b  73 7d 0a 7b 53 3a 58 3b  |ge breaks}.{S:X;|
00002620  58 3b 32 3b 33 34 3b 49  6e 20 73 74 79 6c 65 20  |X;2;34;In style |
00002630  73 74 72 69 6e 67 2c 20  73 70 65 63 69 66 79 20  |string, specify |
00002640  72 6f 77 20 6e 61 6d 65  7d 0a 7b 53 3a 58 3b 58  |row name}.{S:X;X|
00002650  3b 32 3b 33 36 3b 49 6e  20 73 74 79 6c 65 20 73  |;2;36;In style s|
00002660  74 72 69 6e 67 2c 20 73  70 65 63 69 66 79 20 6c  |tring, specify l|
00002670  65 66 74 20 6d 61 72 67  69 6e 7d 0a 7b 53 3a 58  |eft margin}.{S:X|
00002680  3b 58 3b 32 3b 33 37 3b  49 6e 20 73 74 79 6c 65  |;X;2;37;In style|
00002690  20 73 74 72 69 6e 67 2c  20 73 70 65 63 69 66 79  | string, specify|
000026a0  20 72 69 67 68 74 20 6d  61 72 67 69 6e 7d 0a 7b  | right margin}.{|
000026b0  53 3a 58 3b 58 3b 32 3b  33 38 3b 49 6e 20 73 74  |S:X;X;2;38;In st|
000026c0  79 6c 65 20 73 74 72 69  6e 67 2c 20 73 70 65 63  |yle string, spec|
000026d0  69 66 79 20 70 61 72 61  67 72 61 70 68 20 6d 61  |ify paragraph ma|
000026e0  72 67 69 6e 7d 0a 7b 53  3a 58 3b 58 3b 32 3b 33  |rgin}.{S:X;X;2;3|
000026f0  39 3b 49 6e 20 73 74 79  6c 65 20 73 74 72 69 6e  |9;In style strin|
00002700  67 2c 20 73 70 65 63 69  66 79 20 6c 69 73 74 20  |g, specify list |
00002710  6f 66 20 74 61 62 73 7d  0a 7b 53 3a 58 3b 58 3b  |of tabs}.{S:X;X;|
00002720  32 3b 34 30 3b 49 6e 20  73 74 79 6c 65 20 73 74  |2;40;In style st|
00002730  72 69 6e 67 2c 20 73 70  65 63 69 66 79 20 62 61  |ring, specify ba|
00002740  63 6b 67 72 6f 75 6e 64  20 63 6f 6c 6f 75 72 7d  |ckground colour}|
00002750  0a 7b 53 3a 58 3b 58 3b  32 3b 34 31 3b 49 6e 20  |.{S:X;X;2;41;In |
00002760  73 74 79 6c 65 20 73 74  72 69 6e 67 2c 20 73 70  |style string, sp|
00002770  65 63 69 66 79 20 73 70  61 63 65 20 61 62 6f 76  |ecify space abov|
00002780  65 20 70 61 72 61 67 72  61 70 68 7d 0a 7b 53 3a  |e paragraph}.{S:|
00002790  58 3b 58 3b 32 3b 34 32  3b 49 6e 20 73 74 79 6c  |X;X;2;42;In styl|
000027a0  65 20 73 74 72 69 6e 67  2c 20 73 70 65 63 69 66  |e string, specif|
000027b0  79 20 73 70 61 63 65 20  62 65 6c 6f 77 20 70 61  |y space below pa|
000027c0  72 61 67 72 61 70 68 7d  0a 7b 53 3a 58 3b 58 3b  |ragraph}.{S:X;X;|
000027d0  32 3b 34 33 3b 49 6e 20  73 74 79 6c 65 20 73 74  |2;43;In style st|
000027e0  72 69 6e 67 2c 20 73 70  65 63 69 66 79 20 6c 69  |ring, specify li|
000027f0  6e 65 20 73 70 61 63 69  6e 67 7d 0a 7b 53 3a 58  |ne spacing}.{S:X|
00002800  3b 58 3b 32 3b 34 34 3b  49 6e 20 73 74 79 6c 65  |;X;2;44;In style|
00002810  20 73 74 72 69 6e 67 2c  20 73 70 65 63 69 66 79  | string, specify|
00002820  20 6a 75 73 74 69 66 69  63 61 74 69 6f 6e 2c 20  | justification, |
00002830  6c 65 66 74 2c 20 72 69  67 68 74 2c 20 63 65 6e  |left, right, cen|
00002840  74 72 65 2c 20 62 6f 74  68 7d 0a 7b 53 3a 58 3b  |tre, both}.{S:X;|
00002850  58 3b 32 3b 34 35 3b 49  6e 20 73 74 79 6c 65 20  |X;2;45;In style |
00002860  73 74 72 69 6e 67 2c 20  73 70 65 63 69 66 79 20  |string, specify |
00002870  76 65 72 74 69 63 61 6c  20 6a 75 73 74 69 66 69  |vertical justifi|
00002880  63 61 74 69 6f 6e 2c 20  74 6f 70 2c 20 63 65 6e  |cation, top, cen|
00002890  74 72 65 2c 20 62 6f 74  74 6f 6d 7d 0a 7b 53 3a  |tre, bottom}.{S:|
000028a0  58 3b 58 3b 32 3b 34 36  3b 49 6e 20 73 74 79 6c  |X;X;2;46;In styl|
000028b0  65 20 73 74 72 69 6e 67  2c 20 73 70 65 63 69 66  |e string, specif|
000028c0  79 20 6f 62 6a 65 63 74  20 74 79 70 65 20 66 6f  |y object type fo|
000028d0  72 20 6e 65 77 20 63 65  6c 6c 73 2c 20 31 3d 53  |r new cells, 1=S|
000028e0  53 2c 20 33 3d 54 65 78  74 7d 0a 7b 53 3a 58 3b  |S, 3=Text}.{S:X;|
000028f0  58 3b 32 3b 34 37 3b 49  6e 20 73 74 79 6c 65 20  |X;2;47;In style |
00002900  73 74 72 69 6e 67 2c 20  73 70 65 63 69 66 79 20  |string, specify |
00002910  6e 75 6d 62 65 72 20 66  6f 72 6d 61 74 20 66 6f  |number format fo|
00002920  72 20 6e 75 6d 62 65 72  73 7d 0a 7b 53 3a 58 3b  |r numbers}.{S:X;|
00002930  58 3b 32 3b 34 38 3b 49  6e 20 73 74 79 6c 65 20  |X;2;48;In style |
00002940  73 74 72 69 6e 67 2c 20  73 70 65 63 69 66 79 20  |string, specify |
00002950  6e 75 6d 62 65 72 20 66  6f 72 6d 61 74 20 66 6f  |number format fo|
00002960  72 20 64 61 74 65 73 7d  0a 7b 53 3a 58 3b 58 3b  |r dates}.{S:X;X;|
00002970  32 3b 34 39 3b 49 6e 20  73 74 79 6c 65 20 73 74  |2;49;In style st|
00002980  72 69 6e 67 2c 20 73 70  65 63 69 66 79 20 6e 75  |ring, specify nu|
00002990  6d 62 65 72 20 66 6f 72  6d 61 74 20 66 6f 72 20  |mber format for |
000029a0  73 74 72 69 6e 67 73 20  61 6e 64 20 65 72 72 6f  |strings and erro|
000029b0  72 73 7d 0a 7b 53 3a 58  3b 58 3b 32 3b 35 31 3b  |rs}.{S:X;X;2;51;|
000029c0  49 6e 20 73 74 79 6c 65  20 73 74 72 69 6e 67 2c  |In style string,|
000029d0  20 73 70 65 63 69 66 79  20 62 6f 72 64 65 72 20  | specify border |
000029e0  63 6f 6c 6f 75 72 7d 0a  7b 53 3a 58 3b 58 3b 32  |colour}.{S:X;X;2|
000029f0  3b 35 32 3b 49 6e 20 73  74 79 6c 65 20 73 74 72  |;52;In style str|
00002a00  69 6e 67 2c 20 73 70 65  63 69 66 79 20 62 6f 72  |ing, specify bor|
00002a10  64 65 72 20 73 74 79 6c  65 7d 0a 7b 53 3a 58 3b  |der style}.{S:X;|
00002a20  58 3b 32 3b 35 34 3b 49  6e 20 73 74 79 6c 65 20  |X;2;54;In style |
00002a30  73 74 72 69 6e 67 2c 20  73 70 65 63 69 66 79 20  |string, specify |
00002a40  63 6f 6c 6f 75 72 20 6f  66 20 6c 65 66 74 20 67  |colour of left g|
00002a50  72 69 64 20 6c 69 6e 65  7d 0a 7b 53 3a 58 3b 58  |rid line}.{S:X;X|
00002a60  3b 32 3b 35 35 3b 49 6e  20 73 74 79 6c 65 20 73  |;2;55;In style s|
00002a70  74 72 69 6e 67 2c 20 73  70 65 63 69 66 79 20 63  |tring, specify c|
00002a80  6f 6c 6f 75 72 20 6f 66  20 74 6f 70 20 67 72 69  |olour of top gri|
00002a90  64 20 6c 69 6e 65 7d 0a  7b 53 3a 58 3b 58 3b 32  |d line}.{S:X;X;2|
00002aa0  3b 35 36 3b 49 6e 20 73  74 79 6c 65 20 73 74 72  |;56;In style str|
00002ab0  69 6e 67 2c 20 73 70 65  63 69 66 79 20 63 6f 6c  |ing, specify col|
00002ac0  6f 75 72 20 6f 66 20 72  69 67 68 74 20 67 72 69  |our of right gri|
00002ad0  64 20 6c 69 6e 65 7d 0a  7b 53 3a 58 3b 58 3b 32  |d line}.{S:X;X;2|
00002ae0  3b 35 37 3b 49 6e 20 73  74 79 6c 65 20 73 74 72  |;57;In style str|
00002af0  69 6e 67 2c 20 73 70 65  63 69 66 79 20 63 6f 6c  |ing, specify col|
00002b00  6f 75 72 20 6f 66 20 62  6f 74 74 6f 6d 20 67 72  |our of bottom gr|
00002b10  69 64 20 6c 69 6e 65 7d  0a 7b 53 3a 58 3b 58 3b  |id line}.{S:X;X;|
00002b20  32 3b 35 38 3b 49 6e 20  73 74 79 6c 65 20 73 74  |2;58;In style st|
00002b30  72 69 6e 67 2c 20 73 70  65 63 69 66 79 20 6c 65  |ring, specify le|
00002b40  66 74 20 67 72 69 64 20  6c 69 6e 65 20 73 74 79  |ft grid line sty|
00002b50  6c 65 7d 0a 7b 53 3a 58  3b 58 3b 32 3b 35 39 3b  |le}.{S:X;X;2;59;|
00002b60  49 6e 20 73 74 79 6c 65  20 73 74 72 69 6e 67 2c  |In style string,|
00002b70  20 73 70 65 63 69 66 79  20 74 6f 70 20 67 72 69  | specify top gri|
00002b80  64 20 6c 69 6e 65 20 73  74 79 6c 65 7d 0a 7b 53  |d line style}.{S|
00002b90  3a 58 3b 58 3b 32 3b 36  30 3b 49 6e 20 73 74 79  |:X;X;2;60;In sty|
00002ba0  6c 65 20 73 74 72 69 6e  67 2c 20 73 70 65 63 69  |le string, speci|
00002bb0  66 79 20 72 69 67 68 74  20 67 72 69 64 20 6c 69  |fy right grid li|
00002bc0  6e 65 20 73 74 79 6c 65  7d 0a 7b 53 3a 58 3b 58  |ne style}.{S:X;X|
00002bd0  3b 32 3b 36 31 3b 49 6e  20 73 74 79 6c 65 20 73  |;2;61;In style s|
00002be0  74 72 69 6e 67 2c 20 73  70 65 63 69 66 79 20 62  |tring, specify b|
00002bf0  6f 74 74 6f 6d 20 67 72  69 64 20 6c 69 6e 65 20  |ottom grid line |
00002c00  73 74 79 6c 65 7d 0a 7b  53 3a 58 3b 58 3b 32 3b  |style}.{S:X;X;2;|
00002c10  36 33 3b 49 6e 20 73 74  79 6c 65 20 73 74 72 69  |63;In style stri|
00002c20  6e 67 2c 20 73 70 65 63  69 66 79 20 70 72 6f 74  |ng, specify prot|
00002c30  65 63 74 69 6f 6e 7d 0a  7b 53 3a 58 3b 58 3b 32  |ection}.{S:X;X;2|
00002c40  3b 36 35 3b 49 6e 20 73  74 79 6c 65 20 73 74 72  |;65;In style str|
00002c50  69 6e 67 2c 20 73 70 65  63 69 66 79 20 6e 61 6d  |ing, specify nam|
00002c60  65 20 6f 66 20 74 79 70  65 66 61 63 65 7d 0a 7b  |e of typeface}.{|
00002c70  53 3a 58 3b 58 3b 32 3b  36 36 3b 49 6e 20 73 74  |S:X;X;2;66;In st|
00002c80  79 6c 65 20 73 74 72 69  6e 67 2c 20 73 70 65 63  |yle string, spec|
00002c90  69 66 79 20 78 20 66 6f  6e 74 20 73 69 7a 65 7d  |ify x font size}|
00002ca0  0a 7b 53 3a 58 3b 58 3b  32 3b 36 37 3b 49 6e 20  |.{S:X;X;2;67;In |
00002cb0  73 74 79 6c 65 20 73 74  72 69 6e 67 2c 20 73 70  |style string, sp|
00002cc0  65 63 69 66 79 20 79 20  66 6f 6e 74 20 73 69 7a  |ecify y font siz|
00002cd0  65 7d 0a 7b 53 3a 58 3b  58 3b 32 3b 36 38 3b 49  |e}.{S:X;X;2;68;I|
00002ce0  6e 20 73 74 79 6c 65 20  73 74 72 69 6e 67 2c 20  |n style string, |
00002cf0  73 70 65 63 69 66 79 20  75 6e 64 65 72 6c 69 6e  |specify underlin|
00002d00  65 7d 0a 7b 53 3a 58 3b  58 3b 32 3b 36 39 3b 49  |e}.{S:X;X;2;69;I|
00002d10  6e 20 73 74 79 6c 65 20  73 74 72 69 6e 67 2c 20  |n style string, |
00002d20  73 70 65 63 69 66 79 20  62 6f 6c 64 7d 0a 7b 53  |specify bold}.{S|
00002d30  3a 58 3b 58 3b 32 3b 37  30 3b 49 6e 20 73 74 79  |:X;X;2;70;In sty|
00002d40  6c 65 20 73 74 72 69 6e  67 2c 20 73 70 65 63 69  |le string, speci|
00002d50  66 79 20 69 74 61 6c 69  63 7d 0a 7b 53 3a 58 3b  |fy italic}.{S:X;|
00002d60  58 3b 32 3b 37 31 3b 49  6e 20 73 74 79 6c 65 20  |X;2;71;In style |
00002d70  73 74 72 69 6e 67 2c 20  73 70 65 63 69 66 79 20  |string, specify |
00002d80  73 75 70 65 72 73 63 72  69 70 74 7d 0a 7b 53 3a  |superscript}.{S:|
00002d90  58 3b 58 3b 32 3b 37 32  3b 49 6e 20 73 74 79 6c  |X;X;2;72;In styl|
00002da0  65 20 73 74 72 69 6e 67  2c 20 73 70 65 63 69 66  |e string, specif|
00002db0  79 20 73 75 62 73 63 72  69 70 74 7d 0a 7b 53 3a  |y subscript}.{S:|
00002dc0  58 3b 58 3b 32 3b 37 33  3b 49 6e 20 73 74 79 6c  |X;X;2;73;In styl|
00002dd0  65 20 73 74 72 69 6e 67  2c 20 73 70 65 63 69 66  |e string, specif|
00002de0  79 20 74 65 78 74 20 63  6f 6c 6f 75 72 7d 0a 7b  |y text colour}.{|
00002df0  53 3a 58 3b 58 3b 32 3b  37 35 3b 53 65 74 20 69  |S:X;X;2;75;Set i|
00002e00  6e 74 65 72 61 63 74 69  76 65 7d 0a 7b 53 3a 58  |nteractive}.{S:X|
00002e10  3b 58 3b 32 3b 31 30 30  3b 44 65 6c 65 74 65 20  |;X;2;100;Delete |
00002e20  63 6f 6e 74 65 6e 74 73  20 6f 66 20 66 6f 72 6d  |contents of form|
00002e30  75 6c 61 20 6c 69 6e 65  7d 0a 7b 53 3a 58 3b 58  |ula line}.{S:X;X|
00002e40  3b 32 3b 31 30 32 3b 41  73 73 69 67 6e 20 61 20  |;2;102;Assign a |
00002e50  63 6f 6d 6d 61 6e 64 20  74 6f 20 61 20 6b 65 79  |command to a key|
00002e60  7d 0a 7b 53 3a 58 3b 58  3b 32 3b 31 30 33 3b 41  |}.{S:X;X;2;103;A|
00002e70  64 64 20 61 6e 20 69 74  65 6d 20 74 6f 20 61 20  |dd an item to a |
00002e80  6d 65 6e 75 7d 0a 7b 53  3a 58 3b 58 3b 32 3b 31  |menu}.{S:X;X;2;1|
00002e90  30 34 3b 52 65 6d 6f 76  65 20 61 20 6d 65 6e 75  |04;Remove a menu|
00002ea0  20 69 74 65 6d 7d 0a 7b  53 3a 58 3b 58 3b 32 3b  | item}.{S:X;X;2;|
00002eb0  31 30 39 3b 4c 6f 61 64  20 61 20 66 69 6c 65 7d  |109;Load a file}|
00002ec0  0a 7b 53 3a 58 3b 58 3b  32 3b 31 31 32 3b 53 61  |.{S:X;X;2;112;Sa|
00002ed0  76 65 20 61 20 66 69 6c  65 7d 0a 7b 53 3a 58 3b  |ve a file}.{S:X;|
00002ee0  58 3b 32 3b 31 31 35 3b  53 61 76 65 20 73 65 6c  |X;2;115;Save sel|
00002ef0  65 63 74 65 64 20 70 69  63 74 75 72 65 7d 0a 7b  |ected picture}.{|
00002f00  53 3a 58 3b 58 3b 32 3b  31 31 37 3b 41 6e 6f 74  |S:X;X;2;117;Anot|
00002f10  68 65 72 20 63 6f 6d 6d  61 6e 64 20 66 69 6c 65  |her command file|
00002f20  7d 0a 7b 53 3a 58 3b 58  3b 32 3b 31 32 34 3b 61  |}.{S:X;X;2;124;a|
00002f30  70 70 6c 79 20 73 74 79  6c 65 20 74 6f 20 73 65  |pply style to se|
00002f40  6c 65 63 74 69 6f 6e 7d  0a 7b 53 3a 58 3b 58 3b  |lection}.{S:X;X;|
00002f50  32 3b 31 33 32 3b 43 6c  65 61 72 20 6d 61 72 6b  |2;132;Clear mark|
00002f60  73 2f 4d 61 72 6b 20 77  68 6f 6c 65 20 64 6f 63  |s/Mark whole doc|
00002f70  75 6d 65 6e 74 7d 0a 7b  53 3a 58 3b 58 3b 32 3b  |ument}.{S:X;X;2;|
00002f80  31 33 33 3b 53 65 6c 65  63 74 20 77 68 6f 6c 65  |133;Select whole|
00002f90  20 64 6f 63 75 6d 65 6e  74 7d 0a 7b 53 3a 58 3b  | document}.{S:X;|
00002fa0  58 3b 32 3b 31 33 39 3b  50 75 74 20 75 70 20 63  |X;2;139;Put up c|
00002fb0  61 73 65 20 64 69 61 6c  6f 67 7d 0a 7b 53 3a 58  |ase dialog}.{S:X|
00002fc0  3b 58 3b 32 3b 31 34 35  3b 53 70 65 63 69 66 69  |;X;2;145;Specifi|
00002fd0  65 73 20 70 61 70 65 72  7d 0a 7b 53 3a 58 3b 58  |es paper}.{S:X;X|
00002fe0  3b 32 3b 31 34 37 3b 49  6e 73 65 72 74 20 70 61  |;2;147;Insert pa|
00002ff0  67 65 20 6e 75 6d 62 65  72 7d 0a 7b 53 3a 58 3b  |ge number}.{S:X;|
00003000  58 3b 32 3b 31 34 38 3b  49 6e 73 65 72 74 20 58  |X;2;148;Insert X|
00003010  20 70 61 67 65 20 6e 75  6d 62 65 72 7d 0a 7b 53  | page number}.{S|
00003020  3a 58 3b 58 3b 32 3b 31  34 39 3b 49 6e 73 65 72  |:X;X;2;149;Inser|
00003030  74 20 6c 69 76 65 20 64  61 74 65 7d 0a 7b 53 3a  |t live date}.{S:|
00003040  58 3b 58 3b 32 3b 31 35  30 3b 49 6e 73 65 72 74  |X;X;2;150;Insert|
00003050  20 73 70 72 65 61 64 73  68 65 65 74 20 6e 61 6d  | spreadsheet nam|
00003060  65 7d 0a 7b 53 3a 58 3b  58 3b 32 3b 31 35 31 3b  |e}.{S:X;X;2;151;|
00003070  49 6e 73 65 72 74 20 70  61 74 68 6e 61 6d 65 7d  |Insert pathname}|
00003080  0a 7b 53 3a 58 3b 58 3b  32 3b 31 35 32 3b 49 6e  |.{S:X;X;2;152;In|
00003090  73 65 72 74 20 6c 65 61  66 6e 61 6d 65 7d 0a 7b  |sert leafname}.{|
000030a0  53 3a 58 3b 58 3b 32 3b  31 35 33 3b 49 6e 73 65  |S:X;X;2;153;Inse|
000030b0  72 74 20 73 6f 66 74 20  68 79 70 68 65 6e 7d 0a  |rt soft hyphen}.|
000030c0  7b 53 3a 58 3b 58 3b 32  3b 31 35 34 3b 49 6e 73  |{S:X;X;2;154;Ins|
000030d0  65 72 74 20 52 65 74 75  72 6e 20 69 6e 20 70 61  |ert Return in pa|
000030e0  72 61 67 72 61 70 68 7d  0a 7b 53 3a 58 3b 58 3b  |ragraph}.{S:X;X;|
000030f0  32 3b 31 35 35 3b 49 6e  73 65 72 74 20 6d 61 69  |2;155;Insert mai|
00003100  6c 73 68 6f 74 20 66 69  65 6c 64 7d 0a 7b 53 3a  |lshot field}.{S:|
00003110  58 3b 58 3b 32 3b 31 35  37 3b 41 64 64 20 6e 20  |X;X;2;157;Add n |
00003120  63 6f 6c 75 6d 6e 73 7d  0a 7b 53 3a 58 3b 58 3b  |columns}.{S:X;X;|
00003130  32 3b 31 36 30 3b 41 64  64 20 6e 20 72 6f 77 73  |2;160;Add n rows|
00003140  7d 0a 7b 53 3a 58 3b 58  3b 32 3b 31 36 35 3b 50  |}.{S:X;X;2;165;P|
00003150  75 74 20 75 70 20 62 6f  78 20 64 69 61 6c 6f 67  |ut up box dialog|
00003160  7d 0a 7b 53 3a 58 3b 58  3b 32 3b 31 36 39 3b 50  |}.{S:X;X;2;169;P|
00003170  75 74 20 75 70 20 73 65  61 72 63 68 20 64 69 61  |ut up search dia|
00003180  6c 6f 67 7d 0a 7b 53 3a  58 3b 58 3b 32 3b 31 37  |log}.{S:X;X;2;17|
00003190  36 3b 50 75 74 20 75 70  20 73 6f 72 74 20 64 69  |6;Put up sort di|
000031a0  61 6c 6f 67 7d 0a 7b 53  3a 58 3b 58 3b 32 3b 31  |alog}.{S:X;X;2;1|
000031b0  37 38 3b 52 65 6d 6f 76  65 20 66 6f 72 6d 75 6c  |78;Remove formul|
000031c0  61 73 20 66 72 6f 6d 20  73 65 6c 65 63 74 69 6f  |as from selectio|
000031d0  6e 7d 0a 7b 53 3a 58 3b  58 3b 32 3b 31 37 39 3b  |n}.{S:X;X;2;179;|
000031e0  43 6f 6e 76 65 72 74 20  74 6f 20 6f 62 6a 65 63  |Convert to objec|
000031f0  74 20 74 79 70 65 7d 0a  7b 53 3a 58 3b 58 3b 32  |t type}.{S:X;X;2|
00003200  3b 31 38 31 3b 53 74 72  61 64 64 6c 65 20 63 6f  |;181;Straddle co|
00003210  6c 75 6d 6e 73 7d 0a 7b  53 3a 58 3b 58 3b 32 3b  |lumns}.{S:X;X;2;|
00003220  31 38 33 3b 43 6c 65 61  72 20 72 65 67 69 6f 6e  |183;Clear region|
00003230  73 20 69 6e 20 73 65 6c  65 63 74 69 6f 6e 7d 0a  |s in selection}.|
00003240  7b 53 3a 58 3b 58 3b 32  3b 31 38 34 3b 43 6f 75  |{S:X;X;2;184;Cou|
00003250  6e 74 20 72 65 67 69 6f  6e 73 20 69 6e 20 73 65  |nt regions in se|
00003260  6c 65 63 74 69 6f 6e 7d  0a 7b 53 3a 58 3b 58 3b  |lection}.{S:X;X;|
00003270  32 3b 31 38 35 3b 53 65  6c 65 63 74 20 61 72 65  |2;185;Select are|
00003280  61 7d 0a 7b 53 3a 58 3b  58 3b 32 3b 31 38 36 3b  |a}.{S:X;X;2;186;|
00003290  46 6f 72 63 65 20 61 20  72 65 63 61 6c 63 7d 0a  |Force a recalc}.|
000032a0  7b 53 3a 58 3b 58 3b 33  3b 31 33 3b 61 72 67 75  |{S:X;X;3;13;argu|
000032b0  6d 65 6e 74 73 7d 0a 7b  53 3a 58 3b 58 3b 33 3b  |ments}.{S:X;X;3;|
000032c0  31 34 3b 74 6c 5f 63 6f  6c 5c 5c 5c 3b 74 6c 5f  |14;tl_col\\\;tl_|
000032d0  72 6f 77 5c 5c 5c 3b 74  6c 5f 63 68 61 72 5c 5c  |row\\\;tl_char\\|
000032e0  5c 3b 74 6c 5f 6f 62 6a  5c 5c 5c 3b 20 62 72 5f  |\;tl_obj\\\; br_|
000032f0  63 6f 6c 5c 5c 5c 3b 62  72 5f 72 6f 77 5c 5c 5c  |col\\\;br_row\\\|
00003300  3b 62 72 5f 63 68 61 72  5c 5c 5c 3b 62 72 5f 6f  |;br_char\\\;br_o|
00003310  62 6a 5c 5c 5c 3b 20 77  68 6f 6c 65 5f 63 6f 6c  |bj\\\; whole_col|
00003320  5c 5c 5c 3b 77 68 6f 6c  65 5f 72 6f 77 5c 5c 5c  |\\\;whole_row\\\|
00003330  3b 73 74 79 6c 65 20 73  74 72 69 6e 67 7d 0a 7b  |;style string}.{|
00003340  53 3a 58 3b 58 3b 33 3b  31 35 3b 73 6c 6f 74 20  |S:X;X;3;15;slot |
00003350  74 79 70 65 5c 5c 5c 3b  20 64 61 74 61 20 74 79  |type\\\; data ty|
00003360  70 65 5c 5c 5c 3b 20 63  6f 6c 5c 5c 5c 3b 20 72  |pe\\\; col\\\; r|
00003370  6f 77 5c 5c 5c 3b 20 63  6f 6e 74 65 6e 74 73 5c  |ow\\\; contents\|
00003380  5c 5c 3b 20 66 6f 72 6d  75 6c 61 7d 0a 7b 53 3a  |\\; formula}.{S:|
00003390  58 3b 58 3b 33 3b 31 36  3b 73 74 79 6c 65 20 6e  |X;X;3;16;style n|
000033a0  61 6d 65 5c 5c 5c 3b 20  73 74 79 6c 65 20 73 74  |ame\\\; style st|
000033b0  72 69 6e 67 7d 0a 7b 53  3a 58 3b 58 3b 33 3b 31  |ring}.{S:X;X;3;1|
000033c0  37 3b 73 74 72 69 6e 67  7d 0a 7b 53 3a 58 3b 58  |7;string}.{S:X;X|
000033d0  3b 33 3b 31 38 3b 73 74  72 69 6e 67 7d 0a 7b 53  |;3;18;string}.{S|
000033e0  3a 58 3b 58 3b 33 3b 31  39 3b 73 74 72 69 6e 67  |:X;X;3;19;string|
000033f0  7d 0a 7b 53 3a 58 3b 58  3b 33 3b 32 30 3b 73 74  |}.{S:X;X;3;20;st|
00003400  72 69 6e 67 7d 0a 7b 53  3a 58 3b 58 3b 33 3b 32  |ring}.{S:X;X;3;2|
00003410  31 3b 73 74 72 69 6e 67  7d 0a 7b 53 3a 58 3b 58  |1;string}.{S:X;X|
00003420  3b 33 3b 32 35 3b 73 74  72 69 6e 67 7d 0a 7b 53  |;3;25;string}.{S|
00003430  3a 58 3b 58 3b 33 3b 32  36 3b 73 74 72 69 6e 67  |:X;X;3;26;string|
00003440  7d 0a 7b 53 3a 58 3b 58  3b 33 3b 32 38 3b 69 6e  |}.{S:X;X;3;28;in|
00003450  74 65 67 65 72 7d 0a 7b  53 3a 58 3b 58 3b 33 3b  |teger}.{S:X;X;3;|
00003460  32 39 3b 73 74 72 69 6e  67 7d 0a 7b 53 3a 58 3b  |29;string}.{S:X;|
00003470  58 3b 33 3b 33 31 3b 69  6e 74 65 67 65 72 7d 0a  |X;3;31;integer}.|
00003480  7b 53 3a 58 3b 58 3b 33  3b 33 32 3b 30 20 6f 72  |{S:X;X;3;32;0 or|
00003490  20 31 7d 0a 7b 53 3a 58  3b 58 3b 33 3b 33 33 3b  | 1}.{S:X;X;3;33;|
000034a0  30 20 6f 72 20 31 7d 0a  7b 53 3a 58 3b 58 3b 33  |0 or 1}.{S:X;X;3|
000034b0  3b 33 34 3b 73 74 72 69  6e 67 7d 0a 7b 53 3a 58  |;34;string}.{S:X|
000034c0  3b 58 3b 33 3b 33 36 3b  69 6e 74 65 67 65 72 7d  |;X;3;36;integer}|
000034d0  0a 7b 53 3a 58 3b 58 3b  33 3b 33 37 3b 69 6e 74  |.{S:X;X;3;37;int|
000034e0  65 67 65 72 7d 0a 7b 53  3a 58 3b 58 3b 33 3b 33  |eger}.{S:X;X;3;3|
000034f0  38 3b 69 6e 74 65 67 65  72 7d 0a 7b 53 3a 58 3b  |8;integer}.{S:X;|
00003500  58 3b 33 3b 33 39 3b 73  74 72 69 6e 67 7d 0a 7b  |X;3;39;string}.{|
00003510  53 3a 58 3b 58 3b 33 3b  34 30 3b 72 5c 5c 5c 3b  |S:X;X;3;40;r\\\;|
00003520  20 67 5c 5c 5c 3b 20 62  5c 5c 5c 3b 20 74 72 61  | g\\\; b\\\; tra|
00003530  6e 73 70 61 72 65 6e 74  20 28 30 20 6f 72 20 31  |nsparent (0 or 1|
00003540  29 7d 0a 7b 53 3a 58 3b  58 3b 33 3b 34 31 3b 69  |)}.{S:X;X;3;41;i|
00003550  6e 74 65 67 65 72 7d 0a  7b 53 3a 58 3b 58 3b 33  |nteger}.{S:X;X;3|
00003560  3b 34 32 3b 69 6e 74 65  67 65 72 7d 0a 7b 53 3a  |;42;integer}.{S:|
00003570  58 3b 58 3b 33 3b 34 33  3b 69 6e 74 65 67 65 72  |X;X;3;43;integer|
00003580  7d 0a 7b 53 3a 58 3b 58  3b 33 3b 34 34 3b 30 2c  |}.{S:X;X;3;44;0,|
00003590  31 2c 32 2c 33 7d 0a 7b  53 3a 58 3b 58 3b 33 3b  |1,2,3}.{S:X;X;3;|
000035a0  34 35 3b 30 2c 31 2c 32  7d 0a 7b 53 3a 58 3b 58  |45;0,1,2}.{S:X;X|
000035b0  3b 33 3b 34 36 3b 6e 75  6d 62 65 72 7d 0a 7b 53  |;3;46;number}.{S|
000035c0  3a 58 3b 58 3b 33 3b 34  37 3b 73 74 72 69 6e 67  |:X;X;3;47;string|
000035d0  7d 0a 7b 53 3a 58 3b 58  3b 33 3b 34 38 3b 73 74  |}.{S:X;X;3;48;st|
000035e0  72 69 6e 67 7d 0a 7b 53  3a 58 3b 58 3b 33 3b 34  |ring}.{S:X;X;3;4|
000035f0  39 3b 73 74 72 69 6e 67  7d 0a 7b 53 3a 58 3b 58  |9;string}.{S:X;X|
00003600  3b 33 3b 35 31 3b 72 5c  5c 5c 3b 20 67 5c 5c 5c  |;3;51;r\\\; g\\\|
00003610  3b 20 62 5c 5c 5c 3b 20  74 72 61 6e 73 70 61 72  |; b\\\; transpar|
00003620  65 6e 74 20 28 30 20 6f  72 20 31 29 7d 0a 7b 53  |ent (0 or 1)}.{S|
00003630  3a 58 3b 58 3b 33 3b 35  32 3b 30 2c 31 2c 32 2c  |:X;X;3;52;0,1,2,|
00003640  2e 2e 2e 7d 0a 7b 53 3a  58 3b 58 3b 33 3b 35 34  |...}.{S:X;X;3;54|
00003650  3b 72 5c 5c 5c 3b 20 67  5c 5c 5c 3b 20 62 5c 5c  |;r\\\; g\\\; b\\|
00003660  5c 3b 20 74 72 61 6e 73  70 61 72 65 6e 74 20 28  |\; transparent (|
00003670  30 20 6f 72 20 31 29 7d  0a 7b 53 3a 58 3b 58 3b  |0 or 1)}.{S:X;X;|
00003680  33 3b 35 35 3b 72 5c 5c  5c 3b 20 67 5c 5c 5c 3b  |3;55;r\\\; g\\\;|
00003690  20 62 5c 5c 5c 3b 20 74  72 61 6e 73 70 61 72 65  | b\\\; transpare|
000036a0  6e 74 20 28 30 20 6f 72  20 31 29 7d 0a 7b 53 3a  |nt (0 or 1)}.{S:|
000036b0  58 3b 58 3b 33 3b 35 36  3b 72 5c 5c 5c 3b 20 67  |X;X;3;56;r\\\; g|
000036c0  5c 5c 5c 3b 20 62 5c 5c  5c 3b 20 74 72 61 6e 73  |\\\; b\\\; trans|
000036d0  70 61 72 65 6e 74 20 28  30 20 6f 72 20 31 29 7d  |parent (0 or 1)}|
000036e0  0a 7b 53 3a 58 3b 58 3b  33 3b 35 37 3b 72 5c 5c  |.{S:X;X;3;57;r\\|
000036f0  5c 3b 20 67 5c 5c 5c 3b  20 62 5c 5c 5c 3b 20 74  |\; g\\\; b\\\; t|
00003700  72 61 6e 73 70 61 72 65  6e 74 20 28 30 20 6f 72  |ransparent (0 or|
00003710  20 31 29 7d 0a 7b 53 3a  58 3b 58 3b 33 3b 35 38  | 1)}.{S:X;X;3;58|
00003720  3b 30 2c 31 2c 32 2c 2e  2e 2e 7d 0a 7b 53 3a 58  |;0,1,2,...}.{S:X|
00003730  3b 58 3b 33 3b 35 39 3b  30 2c 31 2c 32 2c 2e 2e  |;X;3;59;0,1,2,..|
00003740  2e 7d 0a 7b 53 3a 58 3b  58 3b 33 3b 36 30 3b 30  |.}.{S:X;X;3;60;0|
00003750  2c 31 2c 32 2c 2e 2e 2e  7d 0a 7b 53 3a 58 3b 58  |,1,2,...}.{S:X;X|
00003760  3b 33 3b 36 31 3b 30 2c  31 2c 32 2c 2e 2e 2e 7d  |;3;61;0,1,2,...}|
00003770  0a 7b 53 3a 58 3b 58 3b  33 3b 36 33 3b 30 20 6f  |.{S:X;X;3;63;0 o|
00003780  72 20 31 7d 0a 7b 53 3a  58 3b 58 3b 33 3b 36 35  |r 1}.{S:X;X;3;65|
00003790  3b 73 74 72 69 6e 67 7d  0a 7b 53 3a 58 3b 58 3b  |;string}.{S:X;X;|
000037a0  33 3b 36 36 3b 69 6e 74  65 67 65 72 7d 0a 7b 53  |3;66;integer}.{S|
000037b0  3a 58 3b 58 3b 33 3b 36  37 3b 69 6e 74 65 67 65  |:X;X;3;67;intege|
000037c0  72 7d 0a 7b 53 3a 58 3b  58 3b 33 3b 36 38 3b 30  |r}.{S:X;X;3;68;0|
000037d0  20 6f 72 20 31 7d 0a 7b  53 3a 58 3b 58 3b 33 3b  | or 1}.{S:X;X;3;|
000037e0  36 39 3b 30 20 6f 72 20  31 7d 0a 7b 53 3a 58 3b  |69;0 or 1}.{S:X;|
000037f0  58 3b 33 3b 37 30 3b 30  20 6f 72 20 31 7d 0a 7b  |X;3;70;0 or 1}.{|
00003800  53 3a 58 3b 58 3b 33 3b  37 31 3b 30 20 6f 72 20  |S:X;X;3;71;0 or |
00003810  31 7d 0a 7b 53 3a 58 3b  58 3b 33 3b 37 32 3b 30  |1}.{S:X;X;3;72;0|
00003820  20 6f 72 20 31 7d 0a 7b  53 3a 58 3b 58 3b 33 3b  | or 1}.{S:X;X;3;|
00003830  37 33 3b 72 5c 5c 5c 3b  20 67 5c 5c 5c 3b 20 62  |73;r\\\; g\\\; b|
00003840  5c 5c 5c 3b 20 74 72 61  6e 73 70 61 72 65 6e 74  |\\\; transparent|
00003850  20 28 30 20 6f 72 20 31  29 7d 0a 7b 53 3a 58 3b  | (0 or 1)}.{S:X;|
00003860  58 3b 33 3b 31 30 32 3b  6b 65 79 20 74 6f 20 64  |X;3;102;key to d|
00003870  65 66 69 6e 65 5c 5c 5c  3b 20 6c 65 6e 67 74 68  |efine\\\; length|
00003880  20 6f 66 20 63 6f 6d 6d  61 6e 64 20 73 74 72 69  | of command stri|
00003890  6e 67 5c 5c 5c 3b 20 63  6f 6d 6d 61 6e 64 20 73  |ng\\\; command s|
000038a0  74 72 69 6e 67 7d 0a 7b  53 3a 58 3b 58 3b 33 3b  |tring}.{S:X;X;3;|
000038b0  31 30 33 3b 6d 65 6e 75  20 6e 61 6d 65 5c 5c 5c  |103;menu name\\\|
000038c0  3b 20 73 74 72 69 6e 67  20 66 6f 72 20 6d 65 6e  |; string for men|
000038d0  75 5c 5c 5c 3b 20 5c 5c  5c 3b 20 6c 65 6e 67 74  |u\\\; \\\; lengt|
000038e0  68 20 6f 66 20 63 6f 6d  6d 61 6e 64 20 73 74 72  |h of command str|
000038f0  69 6e 67 5c 5c 5c 3b 20  63 6f 6d 6d 61 6e 64 20  |ing\\\; command |
00003900  73 74 72 69 6e 67 3a 63  6f 6d 6d 61 6e 64 20 63  |string:command c|
00003910  6f 6e 64 69 74 69 6f 6e  73 7d 0a 7b 53 3a 58 3b  |onditions}.{S:X;|
00003920  58 3b 33 3b 31 30 34 3b  6d 65 6e 75 20 64 65 6c  |X;3;104;menu del|
00003930  65 74 65 20 61 72 67 75  6d 65 6e 74 73 7d 0a 7b  |ete arguments}.{|
00003940  53 3a 58 3b 58 3b 33 3b  31 30 35 3b 73 74 72 69  |S:X;X;3;105;stri|
00003950  6e 67 7d 0a 7b 53 3a 58  3b 58 3b 33 3b 31 30 36  |ng}.{S:X;X;3;106|
00003960  3b 69 6e 74 65 67 65 72  7d 0a 7b 53 3a 58 3b 58  |;integer}.{S:X;X|
00003970  3b 33 3b 31 30 38 3b 69  6e 74 65 67 65 72 7d 0a  |;3;108;integer}.|
00003980  7b 53 3a 58 3b 58 3b 33  3b 31 30 39 3b 73 74 72  |{S:X;X;3;109;str|
00003990  69 6e 67 7d 0a 7b 53 3a  58 3b 58 3b 33 3b 31 31  |ing}.{S:X;X;3;11|
000039a0  30 3b 73 74 72 69 6e 67  5f 73 33 32 5f 73 74 72  |0;string_s32_str|
000039b0  69 6e 67 7d 0a 7b 53 3a  58 3b 58 3b 33 3b 31 31  |ing}.{S:X;X;3;11|
000039c0  31 3b 73 74 72 69 6e 67  7d 0a 7b 53 3a 58 3b 58  |1;string}.{S:X;X|
000039d0  3b 33 3b 31 31 33 3b 66  69 6c 65 6e 61 6d 65 5c  |;3;113;filename\|
000039e0  5c 5c 3b 20 55 38 6e 7d  0a 7b 53 3a 58 3b 58 3b  |\\; U8n}.{S:X;X;|
000039f0  33 3b 31 31 34 3b 66 69  6c 65 6e 61 6d 65 5c 5c  |3;114;filename\\|
00003a00  5c 3b 20 74 79 70 65 5c  5c 5c 3b 20 55 38 6e 7d  |\; type\\\; U8n}|
00003a10  0a 7b 53 3a 58 3b 58 3b  33 3b 31 31 36 3b 66 69  |.{S:X;X;3;116;fi|
00003a20  6c 65 6e 61 6d 65 5c 5c  5c 3b 20 55 38 6e 5c 5c  |lename\\\; U8n\\|
00003a30  5c 3b 20 73 74 72 69 6e  67 7d 0a 7b 53 3a 58 3b  |\; string}.{S:X;|
00003a40  58 3b 33 3b 31 31 37 3b  73 74 72 69 6e 67 7d 0a  |X;3;117;string}.|
00003a50  7b 53 3a 58 3b 58 3b 33  3b 31 32 34 3b 73 74 79  |{S:X;X;3;124;sty|
00003a60  6c 65 6e 61 6d 65 7d 0a  7b 53 3a 58 3b 58 3b 33  |lename}.{S:X;X;3|
00003a70  3b 31 32 35 3b 73 74 72  69 6e 67 7d 0a 7b 53 3a  |;125;string}.{S:|
00003a80  58 3b 58 3b 33 3b 31 32  37 3b 69 6e 74 65 67 65  |X;X;3;127;intege|
00003a90  72 7d 0a 7b 53 3a 58 3b  58 3b 33 3b 31 34 37 3b  |r}.{S:X;X;3;147;|
00003aa0  6e 75 6d 62 65 72 20 66  6f 72 6d 61 74 20 73 74  |number format st|
00003ab0  72 69 6e 67 7d 0a 7b 53  3a 58 3b 58 3b 33 3b 31  |ring}.{S:X;X;3;1|
00003ac0  34 38 3b 6e 75 6d 62 65  72 20 66 6f 72 6d 61 74  |48;number format|
00003ad0  20 73 74 72 69 6e 67 7d  0a 7b 53 3a 58 3b 58 3b  | string}.{S:X;X;|
00003ae0  33 3b 31 34 39 3b 6e 75  6d 62 65 72 20 66 6f 72  |3;149;number for|
00003af0  6d 61 74 20 73 74 72 69  6e 67 7d 0a 7b 53 3a 58  |mat string}.{S:X|
00003b00  3b 58 3b 33 3b 31 35 35  3b 69 6e 74 65 67 65 72  |;X;3;155;integer|
00003b10  7d 0a 7b 53 3a 58 3b 58  3b 33 3b 31 35 37 3b 69  |}.{S:X;X;3;157;i|
00003b20  6e 74 65 67 65 72 7d 0a  7b 53 3a 58 3b 58 3b 33  |nteger}.{S:X;X;3|
00003b30  3b 31 36 30 3b 69 6e 74  65 67 65 72 7d 0a 7b 53  |;160;integer}.{S|
00003b40  3a 58 3b 58 3b 33 3b 31  36 33 3b 6e 5f 63 6f 6c  |:X;X;3;163;n_col|
00003b50  73 5c 5c 5c 3b 20 6e 5f  72 6f 77 73 7d 0a 7b 53  |s\\\; n_rows}.{S|
00003b60  3a 58 3b 58 3b 33 3b 31  36 36 3b 62 6f 78 20 61  |:X;X;3;166;box a|
00003b70  72 67 75 6d 65 6e 74 73  7d 0a 7b 53 3a 58 3b 58  |rguments}.{S:X;X|
00003b80  3b 33 3b 31 37 30 3b 73  65 61 72 63 68 20 73 74  |;3;170;search st|
00003b90  72 69 6e 67 5c 5c 5c 3b  20 69 67 6e 6f 72 65 20  |ring\\\; ignore |
00003ba0  63 61 70 69 74 61 6c 73  5c 5c 5c 3b 20 77 68 6f  |capitals\\\; who|
00003bb0  6c 65 20 77 6f 72 64 73  5c 5c 5c 3b 20 72 65 70  |le words\\\; rep|
00003bc0  6c 61 63 65 3f 5c 5c 5c  3b 20 72 65 70 6c 61 63  |lace?\\\; replac|
00003bd0  65 20 73 74 72 69 6e 67  5c 5c 5c 3b 20 63 6f 70  |e string\\\; cop|
00003be0  79 20 63 61 70 69 74 61  6c 73 5c 5c 5c 3b 20 73  |y capitals\\\; s|
00003bf0  65 61 72 63 68 5f 66 72  6f 6d 7d 0a 7b 53 3a 58  |earch_from}.{S:X|
00003c00  3b 58 3b 33 3b 31 37 37  3b 63 6f 6c 5f 30 5c 5c  |;X;3;177;col_0\\|
00003c10  5c 3b 20 6f 72 64 65 72  5c 5c 5c 3b 20 63 6f 6c  |\; order\\\; col|
00003c20  5f 31 5c 5c 5c 3b 20 6f  72 64 65 72 20 2e 2e 2e  |_1\\\; order ...|
00003c30  7d 0a 7b 53 3a 58 3b 58  3b 33 3b 31 37 39 3b 6f  |}.{S:X;X;3;179;o|
00003c40  62 6a 65 63 74 20 6e 75  6d 62 65 72 7d 0a 7b 53  |bject number}.{S|
00003c50  3a 58 3b 58 3b 33 3b 31  38 35 3b 74 6c 5f 63 6f  |:X;X;3;185;tl_co|
00003c60  6c 5c 5c 5c 3b 74 6c 5f  72 6f 77 5c 5c 5c 3b 74  |l\\\;tl_row\\\;t|
00003c70  6c 5f 63 68 61 72 5c 5c  5c 3b 74 6c 5f 6f 62 6a  |l_char\\\;tl_obj|
00003c80  5c 5c 5c 3b 20 62 72 5f  63 6f 6c 5c 5c 5c 3b 62  |\\\; br_col\\\;b|
00003c90  5f 72 6f 77 5c 5c 5c 3b  62 72 5f 63 68 61 72 5c  |_row\\\;br_char\|
00003ca0  5c 5c 3b 62 72 5f 6f 62  6a 5c 5c 5c 3b 20 77 68  |\\;br_obj\\\; wh|
00003cb0  6f 6c 65 5f 63 6f 6c 5c  5c 5c 3b 77 68 6f 6c 65  |ole_col\\\;whole|
00003cc0  5f 72 6f 77 7d 0a 7b 42  52 3a 3b 3b 3b 3b 3b 3b  |_row}.{BR:;;;;;;|
00003cd0  3b 3b 31 3b 31 3b 7b 53  74 79 6c 65 48 61 6e 64  |;;1;1;{StyleHand|
00003ce0  6c 65 3a 42 61 73 65 4c  65 74 74 65 72 7d 7d 0a  |le:BaseLetter}}.|
00003cf0  7b 42 52 3a 3b 3b 3b 3b  3b 3b 3b 3b 31 3b 31 3b  |{BR:;;;;;;;;1;1;|
00003d00  7b 43 6f 6c 57 69 64 74  68 3a 30 7d 7d 0a 7b 42  |{ColWidth:0}}.{B|
00003d10  52 3a 30 3b 3b 3b 3b 31  3b 3b 3b 3b 31 3b 30 3b  |R:0;;;;1;;;;1;0;|
00003d20  7b 53 74 79 6c 65 48 61  6e 64 6c 65 3a 42 61 73  |{StyleHandle:Bas|
00003d30  65 4c 65 74 74 65 72 7d  7d 0a 7b 52 3a 31 3b 31  |eLetter}}.{R:1;1|
00003d40  33 3b 3b 33 32 3b 34 3b  31 38 37 3b 3b 33 32 3b  |3;;32;4;187;;32;|
00003d50  30 3b 30 3b 7b 53 74 79  6c 65 48 61 6e 64 6c 65  |0;0;{StyleHandle|
00003d60  3a 2e 54 61 62 6c 65 31  7d 7d 0a 7b 52 3a 30 3b  |:.Table1}}.{R:0;|
00003d70  31 33 3b 3b 33 32 3b 31  3b 31 38 37 3b 3b 33 32  |13;;32;1;187;;32|
00003d80  3b 30 3b 30 3b 7b 43 6f  6c 57 69 64 74 68 3a 32  |;0;0;{ColWidth:2|
00003d90  38 35 7d 7b 4d 61 72 67  69 6e 4c 65 66 74 3a 31  |85}{MarginLeft:1|
00003da0  31 33 7d 7b 4d 61 72 67  69 6e 52 69 67 68 74 3a  |13}{MarginRight:|
00003db0  31 31 33 7d 7b 4d 61 72  67 69 6e 50 61 72 61 3a  |113}{MarginPara:|
00003dc0  30 7d 7b 54 61 62 6c 69  73 74 7d 7d 0a 7b 52 3a  |0}{Tablist}}.{R:|
00003dd0  33 3b 31 33 3b 3b 33 32  3b 34 3b 31 38 37 3b 3b  |3;13;;32;4;187;;|
00003de0  33 32 3b 30 3b 30 3b 7b  43 6f 6c 57 69 64 74 68  |32;0;0;{ColWidth|
00003df0  3a 34 31 37 36 7d 7b 4d  61 72 67 69 6e 4c 65 66  |:4176}{MarginLef|
00003e00  74 3a 31 31 33 7d 7b 4d  61 72 67 69 6e 52 69 67  |t:113}{MarginRig|
00003e10  68 74 3a 31 31 33 7d 7b  4d 61 72 67 69 6e 50 61  |ht:113}{MarginPa|
00003e20  72 61 3a 30 7d 7b 54 61  62 6c 69 73 74 7d 7d 0a  |ra:0}{Tablist}}.|
00003e30  7b 52 3a 31 3b 31 33 3b  3b 33 32 3b 32 3b 31 38  |{R:1;13;;32;2;18|
00003e40  37 3b 3b 33 32 3b 30 3b  30 3b 7b 43 6f 6c 57 69  |7;;32;0;0;{ColWi|
00003e50  64 74 68 3a 32 35 35 30  7d 7b 4d 61 72 67 69 6e  |dth:2550}{Margin|
00003e60  4c 65 66 74 3a 31 31 33  7d 7b 4d 61 72 67 69 6e  |Left:113}{Margin|
00003e70  52 69 67 68 74 3a 31 31  33 7d 7b 4d 61 72 67 69  |Right:113}{Margi|
00003e80  6e 50 61 72 61 3a 30 7d  7b 54 61 62 6c 69 73 74  |nPara:0}{Tablist|
00003e90  7d 7d 0a 7b 52 3a 32 3b  31 33 3b 3b 33 32 3b 33  |}}.{R:2;13;;32;3|
00003ea0  3b 31 38 37 3b 3b 33 32  3b 30 3b 30 3b 7b 43 6f  |;187;;32;0;0;{Co|
00003eb0  6c 57 69 64 74 68 3a 34  31 33 37 7d 7b 4d 61 72  |lWidth:4137}{Mar|
00003ec0  67 69 6e 4c 65 66 74 3a  31 31 33 7d 7b 4d 61 72  |ginLeft:113}{Mar|
00003ed0  67 69 6e 52 69 67 68 74  3a 31 31 33 7d 7b 4d 61  |ginRight:113}{Ma|
00003ee0  72 67 69 6e 50 61 72 61  3a 30 7d 7b 54 61 62 6c  |rginPara:0}{Tabl|
00003ef0  69 73 74 7d 7d 0a 7b 52  3a 30 3b 30 3b 3b 33 32  |ist}}.{R:0;0;;32|
00003f00  3b 31 3b 31 3b 3b 33 32  3b 30 3b 30 3b 7b 53 74  |;1;1;;32;0;0;{St|
00003f10  79 6c 65 48 61 6e 64 6c  65 3a 48 65 61 64 69 6e  |yleHandle:Headin|
00003f20  67 7d 7d 0a 7b 52 3a 3b  31 33 3b 3b 3b 3b 31 34  |g}}.{R:;13;;;;14|
00003f30  3b 3b 3b 30 3b 31 3b 7b  42 6f 6c 64 3a 31 7d 7d  |;;;0;1;{Bold:1}}|
00003f40  0a 7b 52 3a 30 3b 33 3b  31 32 35 3b 33 3b 31 3b  |.{R:0;3;125;3;1;|
00003f50  34 3b 3b 33 32 3b 30 3b  30 3b 7b 49 74 61 6c 69  |4;;32;0;0;{Itali|
00003f60  63 3a 31 7d 7d 0a 7b 52  3a 30 3b 33 3b 31 33 33  |c:1}}.{R:0;3;133|
00003f70  3b 33 3b 31 3b 34 3b 3b  33 32 3b 30 3b 30 3b 7b  |;3;1;4;;32;0;0;{|
00003f80  49 74 61 6c 69 63 3a 30  7d 7d 0a 7b 52 3a 30 3b  |Italic:0}}.{R:0;|
00003f90  34 3b 34 3b 33 3b 31 3b  35 3b 31 31 3b 33 3b 30  |4;4;3;1;5;11;3;0|
00003fa0  3b 30 3b 7b 49 74 61 6c  69 63 3a 31 7d 7d 0a 7b  |;0;{Italic:1}}.{|
00003fb0  52 3a 30 3b 34 3b 31 34  35 3b 33 3b 31 3b 35 3b  |R:0;4;145;3;1;5;|
00003fc0  31 35 32 3b 33 3b 30 3b  30 3b 7b 49 74 61 6c 69  |152;3;0;0;{Itali|
00003fd0  63 3a 31 7d 7d 0a 7b 52  3a 30 3b 34 3b 33 30 38  |c:1}}.{R:0;4;308|
00003fe0  3b 33 3b 31 3b 35 3b 33  31 39 3b 33 3b 30 3b 30  |;3;1;5;319;3;0;0|
00003ff0  3b 7b 49 74 61 6c 69 63  3a 31 7d 7d 0a 7b 52 3a  |;{Italic:1}}.{R:|
00004000  30 3b 37 3b 32 38 3b 33  3b 31 3b 38 3b 33 35 3b  |0;7;28;3;1;8;35;|
00004010  33 3b 30 3b 30 3b 7b 49  74 61 6c 69 63 3a 31 7d  |3;0;0;{Italic:1}|
00004020  7d 0a 7b 52 3a 30 3b 38  3b 36 39 37 3b 33 3b 31  |}.{R:0;8;697;3;1|
00004030  3b 39 3b 36 39 39 3b 33  3b 30 3b 30 3b 7b 49 74  |;9;699;3;0;0;{It|
00004040  61 6c 69 63 3a 31 7d 7d  0a 7b 52 3a 30 3b 38 3b  |alic:1}}.{R:0;8;|
00004050  37 39 31 3b 33 3b 31 3b  39 3b 37 39 33 3b 33 3b  |791;3;1;9;793;3;|
00004060  30 3b 30 3b 7b 49 74 61  6c 69 63 3a 31 7d 7d 0a  |0;0;{Italic:1}}.|
00004070  7b 52 3a 30 3b 38 3b 38  32 32 3b 33 3b 31 3b 39  |{R:0;8;822;3;1;9|
00004080  3b 38 32 34 3b 33 3b 30  3b 30 3b 7b 49 74 61 6c  |;824;3;0;0;{Ital|
00004090  69 63 3a 31 7d 7d 0a 7b  50 61 67 65 48 65 66 6f  |ic:1}}.{PageHefo|
000040a0  42 72 65 61 6b 56 61 6c  75 65 73 2d 48 3a 30 3b  |BreakValues-H:0;|
000040b0  30 3b 30 3b 3b 31 3b 35  36 39 3b 36 38 3b 30 3b  |0;0;;1;569;68;0;|
000040c0  3b 3b 30 3b 3b 3b 31 3b  35 36 39 3b 32 32 38 3b  |;;0;;;1;569;228;|
000040d0  30 3b 3b 3b 30 7d 0a 7b  48 44 2d 48 3a 30 3b 32  |0;;;0}.{HD-H:0;2|
000040e0  7d 0a 7b 48 42 52 2d 48  3a 30 3b 32 3b 3b 33 32  |}.{HBR-H:0;2;;32|
000040f0  3b 3b 33 32 3b 7b 53 74  79 6c 65 48 61 6e 64 6c  |;;32;{StyleHandl|
00004100  65 3a 42 61 73 65 4c 65  74 74 65 72 7d 7d 0a 7b  |e:BaseLetter}}.{|
00004110  48 42 52 2d 48 3a 30 3b  32 3b 3b 33 32 3b 3b 33  |HBR-H:0;2;;32;;3|
00004120  32 3b 7b 53 74 79 6c 65  48 61 6e 64 6c 65 3a 42  |2;{StyleHandle:B|
00004130  61 73 65 48 65 61 64 46  6f 6f 74 7d 7d 0a 7b 48  |aseHeadFoot}}.{H|
00004140  44 2d 48 3a 30 3b 33 7d  0a 7b 48 42 52 2d 48 3a  |D-H:0;3}.{HBR-H:|
00004150  30 3b 33 3b 3b 33 32 3b  3b 33 32 3b 7b 53 74 79  |0;3;;32;;32;{Sty|
00004160  6c 65 48 61 6e 64 6c 65  3a 42 61 73 65 4c 65 74  |leHandle:BaseLet|
00004170  74 65 72 7d 7d 0a 7b 48  42 52 2d 48 3a 30 3b 33  |ter}}.{HBR-H:0;3|
00004180  3b 3b 33 32 3b 3b 33 32  3b 7b 53 74 79 6c 65 48  |;;32;;32;{StyleH|
00004190  61 6e 64 6c 65 3a 42 61  73 65 48 65 61 64 46 6f  |andle:BaseHeadFo|
000041a0  6f 74 7d 7d 0a 7b 50 61  67 65 48 65 66 6f 42 72  |ot}}.{PageHefoBr|
000041b0  65 61 6b 56 61 6c 75 65  73 2d 48 3a 31 33 3b 30  |eakValues-H:13;0|
000041c0  3b 30 3b 3b 31 3b 35 36  39 3b 36 38 3b 30 3b 3b  |;0;;1;569;68;0;;|
000041d0  3b 30 3b 3b 3b 31 3b 35  36 39 3b 32 32 38 3b 30  |;0;;;1;569;228;0|
000041e0  3b 3b 3b 30 7d 0a 7b 48  44 2d 48 3a 31 33 3b 32  |;;;0}.{HD-H:13;2|
000041f0  7d 0a 7b 48 42 52 2d 48  3a 31 33 3b 32 3b 3b 33  |}.{HBR-H:13;2;;3|
00004200  32 3b 3b 33 32 3b 7b 53  74 79 6c 65 48 61 6e 64  |2;;32;{StyleHand|
00004210  6c 65 3a 42 61 73 65 4c  65 74 74 65 72 7d 7d 0a  |le:BaseLetter}}.|
00004220  7b 48 42 52 2d 48 3a 31  33 3b 32 3b 3b 33 32 3b  |{HBR-H:13;2;;32;|
00004230  3b 33 32 3b 7b 53 74 79  6c 65 48 61 6e 64 6c 65  |;32;{StyleHandle|
00004240  3a 42 61 73 65 48 65 61  64 46 6f 6f 74 7d 7d 0a  |:BaseHeadFoot}}.|
00004250  7b 48 44 2d 48 3a 31 33  3b 33 7d 0a 7b 48 42 52  |{HD-H:13;3}.{HBR|
00004260  2d 48 3a 31 33 3b 33 3b  3b 33 32 3b 3b 33 32 3b  |-H:13;3;;32;;32;|
00004270  7b 53 74 79 6c 65 48 61  6e 64 6c 65 3a 42 61 73  |{StyleHandle:Bas|
00004280  65 4c 65 74 74 65 72 7d  7d 0a 7b 48 42 52 2d 48  |eLetter}}.{HBR-H|
00004290  3a 31 33 3b 33 3b 3b 33  32 3b 3b 33 32 3b 7b 53  |:13;3;;32;;32;{S|
000042a0  74 79 6c 65 48 61 6e 64  6c 65 3a 42 61 73 65 48  |tyleHandle:BaseH|
000042b0  65 61 64 46 6f 6f 74 7d  7d 0a 7b 45 6e 64 4f 66  |eadFoot}}.{EndOf|
000042c0  44 61 74 61 7d 0a 7b 43  6d 64 47 72 6f 75 70 3a  |Data}.{CmdGroup:|
000042d0  7b 56 69 65 77 43 72 65  61 74 65 3a 31 31 35 32  |{ViewCreate:1152|
000042e0  3b 31 33 34 37 32 3b 31  32 34 38 30 3b 31 31 39  |;13472;12480;119|
000042f0  36 38 7d 0a 7b 56 69 65  77 43 6f 6e 74 72 6f 6c  |68}.{ViewControl|
00004300  3a 31 30 30 3b 30 3b 30  3b 30 3b 30 3b 30 3b 30  |:100;0;0;0;0;0;0|
00004310  3b 32 30 34 38 3b 30 3b  32 30 34 38 7d 0a 7b 43  |;2048;0;2048}.{C|
00004320  75 72 72 65 6e 74 50 6f  73 69 74 69 6f 6e 3a 30  |urrentPosition:0|
00004330  3b 30 3b 30 3b 33 7d 0a  7d 0a                    |;0;0;3}.}.|
0000433a