NoteCards Programmer's Interface Randy Trigg Xerox Corporation This document describes a facility whereby users with some programming know-how can obtain a lisp interface to NoteCards. In this way, they can create and modify Notefiles, cards and links under program control. The functions described below are divided into 7 groups: creating and accessing NoteFiles, creating and accessing NoteCard types, creating NoteCards, accessing NoteCards, creating and accessing links, creating and accessing link labels, and various handy miscellaneous functions. NoteFile creation and access For each of the following functions (except NCP.CloseNoteFile), the argument is a filename. The suffix ".NoteFile" is added if not already present. In any case, the filename used by NoteCards always has this suffix. (NCP.CreateNoteFile ) If is not already a notefile, then create a notefile .NoteFile, and return this filename which can later be passed to NCP.OpenNoteFile. (NCP.OpenNoteFile ) If there is no currently open notefile, then open and make it the currently active NoteFile. Returns resultant stream if successful, else nil. If is non-nil, then a new file will not be created if the given one doesn't exist. If is non-nil, then if needed, the file will be converted to release1.1 format without user confirmation. (NCP.CloseNoteFile []) Closes if it is corresponds to a currently open Notefile. Returns its filename if successful. If is nil, then closes current open notefile. (NCP.RepairNoteFile ) Rebuilds the link structure of . It must *not* be currently open. (NCP.CompactNoteFile ) Copies to a later version, recovering space. Must not be open. (NCP.DeleteNoteFile ) Removes the notefile. Must not be open. (NCP.FloppyRestoreNoteFile ) Finds and restores the latest version of on the floppy. Again, should not be an open Notefile. (NCP.FloppyBackupNoteFile ) Stores a backup copy of the Notefile onto a floppy. should not be open. (NCP.CurrentNoteFileStream) Returns the currently open notefile stream if there is one, else nil. (NCP.CurrentNoteFile) Returns the full name of the currently active notefile if there is one, else nil. Creating and Accessing NoteCard Types These functions give the user access to the NoteCard user-defined types facility. For an explanation of this facility, see [???]. (NCP.CardTypes) (NCP.SubstanceTypes) Returns lists of all currently defined NoteCard types and substances, respectively. (NCP.CreateCardType ) Makes a new NoteCard type with name , super type , substance , link display mode , and the given functions. If any of the function args are nil, then definitions will be inherited from . (NCP.CreateSubstanceType ) Makes a new substance type with name and the given functions. None of these should be nil (but might be the function NILL). (NCP.CardTypeSuper ) Returns the super type of . (NCP.CardTypeSubstance ) Returns 's substance type. (NCP.CardTypeLinkDisplayMode ) Returns the link display mode of . (NCP.CardTypeFn ) Returns the function for . (NCP.CardTypeInheritedFn ) Returns the function that will be actually be called for if is invoked. This is possibly different from the value returned by NCP.CardTypeFn in that if the defined value for of is nil, then the super is checked for a non-nil value. This checking continues until either a non-nil function is found or we reach the top of the super hierarchy. In that case, the value of 's substance's is used. (NCP.SubstanceTypeFn ) Returns the function for the substance . (NCP.ValidCardType ) Returns non-nil if is an existing NoteCard type. (NCP.ValidSubstanceType ) Returns non-nil if is an existing NoteCard substance type. (NCP.ValidCardTypeFn ) Returns non-nil if is a valid function field for NoteCard types, for example, the litatom MakeCardFn. (In other words, can serve as the arg to NCP.CardTypeFn.) (NCP.ValidSubstanceTypeFn ) Returns non-nil if is a valid function field for substance types. (In other words, can serve as the arg to NCP.SubstanceTypeFn.) (NCP.CardTypeFns) (NCP.SubstanceTypeFns) These return lists of all valid fields for NoteCard types and substances respectively. Creating NoteCards and FileBoxes The following functions create various sorts of cards and boxes within the currently open notefile. (NCP.CreateTextCard <nodisplayflg> <props> <parentfileboxes>) Creates and returns a new notecard having type TEXT. If <title> is non-nil, it is installed as the Notecard's title, otherwise the title is "Untitled". <props>, if non-nil, should be a prop-list of properties and values to be placed on the user property list of the Notecard. If <parentfileboxes> is non-nil, then it should be a list of FileBoxes in which to initially file this card. (NCP.CreateFileBox <title> <nodisplayflg> <props> <childcardsboxes> <parentfileboxes>) Creates and returns a new Filebox with title <title> (or a gensym'ed name if <title> is nil). It will initially contain child cards and boxes from the list <childcardsboxes> (if that arg is non-nil). If <parentfileboxes> is nil, then the new filebox will be filed in NCP.ToBeFiledBox. The <props> arg is handled as it was for NCP.CreateNoteCard. (NCP.CreateBrowserCard <title> <rootcard> <linklabels> <nodisplayflg> <props> <parentfileboxes>) Creates and returns a new browser card with given title, props and parents. Browses starting from the root card <rootcard> following all links in <linklabels>. Any label present in the list having the backarrow prefix ("_") represents that link type but in the reverse direction. <linklabels> can also contain the atoms ALL or _ALL in which case browsing will be done on all links in either the forward or reverse direction. If both ALL and _ALL are specified, then links in both directions will be used (generally making a mess). If either <rootcard> or <linklabels> are nil, then the user will be asked to provide them. (NCP.CreateSketchCard <title> <nodisplayflg> <props> <parentfileboxes>) Creates and returns an initially empty sketch/map card having given title, props, and parents. (NCP.CreateGraphCard <title> <nodisplayflg> <props> <parentfileboxes>) Creates and returns an initially empty graph card having given title, props, and parents. (NCP.CreateCard <type> <title> <nodisplayflg> <props> <parentfileboxes> <otherargs>) Creates and returns a card of the given (possibly user-defined) type, with given title, props, and parents. <otherargs> is a possibly nil list of args that will be passed to the MakeCardFn of <type>. Card is initially displayed or not according to value of <nodisplayflg>. (NCP.MakeDocument <rootcard> <parametersProplist> <nodisplayflg> <props> <parentfileboxes>) Creates and returns a Document card starting from <rootcard>. The default set of parameters for making documents can be accessed via NCP.DocumentParameters, but some of these can be given new values just for the duration of this MakeDocument by specifying a non-nil <parametersProplist>. For example, a value of '(TitlesFromNoteCards Bold ExpandEmbeddedLinks ALL) for <parametersProplist> would cause temporary changes to the values of the parameters TitlesFromNoteCards and ExpandEmbeddedLinks. As usual, the resulting card will have the given props and parents. (NCP.MakeLinkIndex <linktypes> <backpointersP> <nodisplayflg> <props> <parentfileboxes>) Creates and returns a LinkIndex text card consisting of a sorted record of all instances of links in the current notefile having one of the given link types. <linktypes> can contain the litatoms ALL and/or _ALL as well as any particular backwards links. (See the above description of NCP.MakeDocument.) Backpointer links are inserted in the text if <backpointersP> is non-nil. Resulting card will have given props and parents. Accessing Cards and Boxes The following functions provide access to the cards and boxes present in the current notefile. Note that whether a card's window has been brought up on the screen has little or no effect on the following functions. If the user changes some field of a card while that card is visible on the screen, then the field will update itself automatically. Thus, users can switch between program-driven and screen-interface-driven modes at will. Cards can be active or inactive. An active card has its information cached (on its property list) thus saving time at the expense of memory. All cards visible on the screen are active. Most of the following functions leave the card in the same state as it was when they started (except NCP.BringUpCardBox, which makes it active). Thus, users needing to do several consecutive operations to the same card should consider temporarily caching the card's information via NCP.ActivateCard (and then uncache with NCP.DeactivateCard). Most of the following functions take as first argument a card or filebox. If this does not in fact correspond to an existing card or box, then an error message is printed and nil is returned. (NCP.BringUpCard <card> <region/position>) Brings up on the screen the given card in the given region or at the given position. If <region/position> is nil, then user specifies position with mouse. (NCP.ActiveCardP <card>) Returns non-nil if given card or box is currently active (i.e. information is currently cached in memory). (NCP.ActivateCards <cardList>) For each card or box in <cardList> (or just the one, if the argument is atomic), make it active (i.e. cache its information in memory). (NCP.DeactivateCards <cardList>) For each card or box in <cardList> (or just the one, if the argument is atomic), make it inactive (i.e. uncache its information back into the file). If any cards in <cardList> were on the screen then this will close their windows. (NCP.CardType <card>) Returns the type of <card> or NIL if the card does not exist. (NCP.ValidCard <card>) Currently a synonym for NCP.CardType. (NCP.CardTitle <card> [<newtitle>]) Returns old title of <card>. If <newtitle> is present, then set <card>'s title to <newtitle>. Note, however, that all titles are converted internally to strings by NoteCards. (NCP.FileCards <cards> <fileboxes>) Every card or box in <cards> is filed in every box in <fileboxes>. Either arg may be an atom or a list. (NCP.UnfileCards <cards> <fileboxes>) Every card or box in <cards> is unfiled from every box in <fileboxes>. Furthermore if <cards> is the litatom ALL, then the boxes in <fileboxes> will be cleared of all children. Similarly, if <fileboxes> is the litatom ALL, then the cards and boxes in <cards> will be unfiled from all their parent boxes. Either arg may be an atom or a list. (NCP.CardParents <card>) Returns list of fileboxes in which <card> has been filed. (NCP.FileBoxChildren <filebox>) Returns list of children of <filebox> in the order in which they appear in the box's textstream. (NCP.GetLinks <cards> <destinationCards> <labels>) Returns list of all links from any of <cards> to any of <destinationCards> having any label in <labels>. Any of these arguments can be nil. For example, if <destinationCards> is nil, then all links pointing from <cards> to anywhere with a label in <labels> are returned. If both <cards> and <destinationCards> are nil, then this returns all links having a label in <labels>. If all three args are nil, then this is a slow synomym for NCP.AllLinks. (NCP.CardPropList <card>) Returns the prop list of the given card. (NCP.CardProp <card> <propname> [<newvalue>]) Returns old value of property <propname> on <card>'s prop list. If <newvalue> is present, then set <card>'s <propname> property to <newvalue>. (Semantics are analogous to the Interlisp function WINDOWPROP.) (NCP.CardAddProp <card> <propname> <newitem>) Adds <newitem> to the list present on the <propname> property of <card>. Returns old value of property. (Semantics are analogous to WINDOWADDPROP.) (NCP.CardDelProp <card> <propname> <itemToDelete>) Deletes <itemToDelete> from the <propname> property of <card> if it is there, returning the previous value of that property. If not there, return nil. (Semantics are analogous to WINDOWDELPROP.) (NCP.CardSubstance <card>) Returns the substance of <card>. This will be a textstream in the case that the type of <card> has TEXT substance. Otherwise, it will be the appropriate underlying structure if <card> has GRAPH or SKETCH substance. (NCP.CardRegion <card>) Returns the region of <card>. This works even if <card> is not currently up on the screen, since the region information is cached. (NCP.CardAddText <card> <textstr> <loc>) Adds the text within the string <textstr> to the text card <card>. If <loc> is the litatom START or END, then the text will be placed at the start or end of the card respectively. If <loc> is a number, then it is assumed to be a character count within the card at which to place the new text. If <loc> is NIL, then the text is placed at the current cursor location. (NCP.ChangeLoc <card> <loc>) Changes the cursor's location in <card>'s textstream to <loc>. Possible values for <loc> are as described for NCP.CardAddText. (NCP.DeleteCards <cards>) Deletes the given cards and fileboxes from the current notefile, or delete just the one if <cards> is atomic. (NCP.FileBoxP <card>) Returns non-nil if <card> is a filebox. (NCP.AllCards) Returns a list of all extant cards for the current notefile. (NCP.AllBoxes) Returns a list of all fileboxes in the current notefile. (NCP.MapCards <fn>) Maps down the set of all cards in the current notefile, applying <fn> to each. (NCP.MapBoxes <fn>) Maps down the set of all fileboxes in the current notefile, applying <fn> to each. (NCP.GetContentsFileBox) (NCP.GetOrphansFileBox) (NCP.GetToBeFiledFileBox) These functions retrieve the three predefined FileBoxes for the currently open NoteFile. These boxes can be modified (but not deleted) by the user in the same way as any other filebox. Creating and Accessing Links Links can be connected to points within a card or to the card as a whole, thus the following four link creation functions are provided. Those that connect to points within a card specify at least one of <fromloc> or <toloc>. If nil, then the link icon is placed at the current cursor location in the card. If the arg is the litatom START or END, then it is placed at the front or end of the text respectively. If the loc arg is a number, then it is assumed to be a character count at which to place the link icon. (NCP.GlobalGlobalLink <label> <sourceCard> <destinationCard>) Creates and returns a new link with label <label>, connecting <sourceCard> to <destinationCard>. (NCP.LocalGlobalLink <label> <sourceCard> <destinationCard> <fromloc> <displaymode>) Creates and returns a new link with label <label>, connecting from <fromloc> of <sourceCard> card to <destinationCard>. If <displaymode> is non-nil, then the new link will be displayed in the given mode. Otherwise the default displaymode for the source card's type is used. (NCP.GlobalLocalLink <label> <sourceCard> <destinationCard> <toloc>) Not implemented at this time. (NCP.LocalLocalLink <label> <sourceCard> <destinationCard> <fromloc> <toloc>) Not implemented at this time. (NCP.LinkDesc <link>) Returns list of three items (<label> <sourceDesc> <destinationDesc>) where <label> is the link type and <sourceDesc> and <destinationDesc> have the form (<anchor mode> <card> <loc>). <anchor mode> is either LOCAL or GLOBAL, <card> is the card at this end of the link, and <loc> gives a position in the text of <card> if <anchor type> is LOCAL and <card>'s substance's type is TEXT. (NCP.LinkDisplayMode <link> [<newdisplaymode>]) Returns old diplay mode of <link>. If <newdisplaymode> is present, then set <link>'s displaymode to that atom. If non-nil, should be one of the litatoms: Icon, Title, Label, or Both. (NCP.LinkLabel <link> [<newlabel>]) Returns old label of <link>. If <newlabel> is present, set <link>'s label to <newlabel>. (NCP.GetLinkSource <link>) Returns the card at the source end of <link>. (NCP.GetLinkDestination <link>) Returns the card at the destination end of <link>. (NCP.DeleteLinks <links>) Removes all links in <links> (or the single one if <links> is atomic). (NCP.ValidLink <link>) Returns non-nil if <link> is a link in the current notefile. (NCP.AllLinks) Returns a list of all existing links in the current notefile. (This is equivalent to but faster than (NCP.GetLinks NIL NIL NIL).) (NCP.MapLinks <fn>) Maps down the set of all links in the current notefile, applying <fn> to each one. Creating and Accessing Link Labels The following functions allow the user to manipulate link labels. (NCP.CreateLinkLabel <label>) Creates a new link label with name <label> for current notefile unless there is already one defined by that name. (NCP.DeleteLinkLabel <label>) Deletes the link label <label> from the current notefile. The label must exist and must not be the label of any existing link, and it must not be a system-defined link label (e.g. SubBox or FiledCard). (NCP.RenameLinkLabel <label> <newlabel>) Changes any links having label <label> to have label <newlabel>. <label> must exist and neither <label> nor <newlabel> should be a system-defined label. (NCP.GetLinkLabels) Returns a list of all existing link labels including system-defined ones. (NCP.GetReverseLinkLabels) Returns a list of the reverse labels for every existing link label. Thus, whereas SubBox would appear in the list returned by NCP.GetLinkLabels, _SubBox would appear in the list returned by NCP.GetReverseLinkLabels. (NCP.GetUserLinkLabels) Returns a list of all existing user-defined link labels. (NCP.ValidLinkLabel <label>) Returns non-nil if <label> is a defined link label for current notefile. Handy Miscellaneous Functions (NCP.TitleSearch <key> <key> ... ) Returns a list of all cards having all of the <key>s (can be atoms, numbers or strings) within their titles. (NCP.PropSearch <propOrPair> <propOrPair> ...) Returns a list of all cards such that for every <propOrPair> arg, if it is atomic, then the card must contain that property. If it is a list of two elements, then the card must have a property EQ to the first element with value EQ to the second element. (NCP.WhichCard <x> <y>) Returns the card currently displayed on the screen whose window contains the position in screen coordinates of <x> if <x> is a POSITION, the position (<x>,<y>) if <x> and <y> are numbers, or the position of the cursor if <x> is NIL. Returns NIL if the coordinates are not in the window of any card. If they are in the window of more than one card, then returns the uppermost. If <x> is a window, then NCP.WhichCard will return the card associated with that window. (NCP.CardFromWindow <window>) Returns the card associated with <window>, or NIL if not a notecards window. (NCP.CardWindow <card>) Returns <card>'s window if <card> is currently displayed somewhere on the screen. (NCP.SelectCards) Returns a list of those cards selected from the screen. A menu appears near the top of the screen with buttons for "DONE" and "CANCEL". Selections are made by left buttoning in the title bars of the desired cards. (NCP.DocumentParameters <parametersProplist>) Returns the old value of the document parameters in the form of a proplist. If <parametersProplist> is non-nil then it should be a proplist whose properties are (some of the) valid document parameter names and whose values are permissible values for those parameters. The valid parameters and possible values are as follows: HeadingsFromFileboxes: NumberedBold, UnnumberedBold, NONE. TitlesFromNoteCards: Bold, NotBold, NONE. BuildBackpointers: ToCardsBoxes, ToCards, ToBoxes, NONE. CopyEmbeddedLinks: ALL, NONE, <listOfLinkLabels>. ExpandEmbeddedLinks: ALL, NONE, <listOfLinkLabels>. [See ??? for an explanation of these parameters and how their values affect the document created.] (NCP.NoteCardsParameters <parametersProplist>) Returns the old value of the global Notecards parameters in the form of a proplist. If <parametersProplist> is non-nil then it should be a proplist whose properties are (some of the) valid document parameter names and whose values are permissible values for those parameters. The valid parameters and possible values are as follows: DefaultCardType: <legalCardType> FixedTopLevelMenu: T or NIL ShortWindowMenus: T or NIL ForceSources: T or NIL ForceFiling: T or NIL SpecialBrowserSpecs: T or NIL AnnoAccessible: T or NIL LinkDashingInBrowsers: T or NIL Here, <legalCardType> should be an existing Notecard type, i.e. one that appears in the list returned by NCP.CardTypes. (NCP.PrintMsg <window> <clearFirstFlg> <arg1> <arg2> ...) Prints a message in the prompt window of <window>. If <window> is NIL, then will print message in the Lisp prompt window. If <clearFirstFlg> is non-nil, then will clear the prompt window first. The args are PRIN1'ed one at a time. (NCP.ClearMsg <window> <closePromptWinFlg>) Clears the prompt window associated with <window> (or with the main Lisp prompt window if <window> is NIL) and closes it if <closePromptWinFlg> is non-nil. (NCP.AskUser <Msg> <prompt> <FirstTry> <ClearFirstFlg> <MainWindow> <DontCloseAtEndFlg> <DontClearAtEndFlg>) This function can be used to ask questions of the user in a window's prompt window. The <Msg> and <prompt> are printed along with <FirstTry> (if non-nil). The value returned is whatever the user types. If <ClearFirstFlg> is non-nil, then the prompt window is cleared first. If <MainWindow> is nil, then the Lisp prompt window is used. If <DontCloseAtEndFlg> is non-nil, then the prompt window won't be closed after the question is answered and if <DontClearAtEndFlg> is non-nil, then the prompt window won't be cleared at the end.����������������������NIL�NIL�����������!���CREAM� �����������������������������NIL�NIL��������������CREAM� �����������������������������NIL�NIL��������������CREAM� ������������������������������NIL�NIL����������� ��� TIMESROMAN� ����������������������������NIL�NIL�������������� TIMESROMAN� ����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� ������������������������������NIL�NIL�������������� TIMESROMAN� ������������������������������NIL�NIL������������� TIMESROMAN� ������������������������������NIL�NIL�������������� TIMESROMAN� ������������������������������NIL�NIL�������������� TIMESROMAN� ����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� ������������������������������NIL�NIL�������������� TIMESROMAN� ������������������������������NIL�NIL�������������� TIMESROMAN� ������������� TIMESROMAN� ��������� ��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������F��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������7��� TIMESROMAN� �����������������������������NIL�NIL�����������K��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������� ��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������M��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������!��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������L��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������� ��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������4��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������'��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������v��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������&��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������_��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������F��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������R��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������%��� TIMESROMAN� ������������ TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������T��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������"��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������!��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������%��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������)��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������&��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������&��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������'��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������9��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������8��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������%��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������B��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������� ��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������\��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������!��� TIMESROMAN� ����������������������������NIL�NIL�������������� TIMESROMAN� ����������������������������NIL�NIL�����������d��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������F��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������W��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������]��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������a��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������t��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������H��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������_��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������G��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������Z��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������U��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������\��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������7��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������Z��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� ����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������+��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������k��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������!��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������>��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������&��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������$��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������$��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������i��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������&��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������Y��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������:��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������� ��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������a��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������3��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������)��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� ������������� TIMESROMAN� ����������������������������NIL�NIL�����������.��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������.��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������3��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������)��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������q��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������n��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������(��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������=��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������9��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������O��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������S��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� ����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������>��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������a��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������U��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������E��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������N��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� ����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������0��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������$��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������Z��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������.��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������� ��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������3��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������G��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������=��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������S��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������#��� TIMESROMAN� ����������������������������NIL�NIL�������������� TIMESROMAN� ����������������������������NIL�NIL�����������B��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������r��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������)��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������J��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������9��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������I��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� ����������������������������NIL�NIL�������������� TIMESROMAN� ����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������#��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������n��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������0��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������M��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������R��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������.��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������G��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������<��� TIMESROMAN� �����������������������������NIL�NIL�����������,��� TIMESROMAN� �����������������������������NIL�NIL�����������;��� TIMESROMAN� �����������������������������NIL�NIL�����������4��� TIMESROMAN� �����������������������������NIL�NIL�����������5��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������d��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������/��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL����������O��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������"��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������!��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������x��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������:��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������,��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL�����������m��� TIMESROMAN� �����������������������������NIL�NIL�������������� TIMESROMAN� �����������������������������NIL�NIL������������� TIMESROMAN� ���������Y\z