THE IOBRIDGE THE IOBRIDGE THE IOBRIDGE 1 1 1 IOBridge Data Sheet Interface between DynaBus & PC/AT bus Jean-Marc Frailong and Lissy Bland Dragon-88-05 February 3, 1988 c Copyright 1988 Xerox Corporation. All rights reserved. Keywords: DynaBus, IO, PC/AT, IOBridge, Address Mapping, Address Translation; Maintained by: Jean-Marc Frailong XEROX Xerox Corporation Palo Alto Research Center 3333 Coyote Hill Road Palo Alto, California 94304 For Internal Xerox Use Only IOBridge 1.0 Brief Description The IOBridge links the DynaBus and the PC/AT extension bus. It provides low-speed IO support and IO extensibility to DynaBus-based systems. DynaBus IO requests are translated to reads and writes on the PC/AT bus (Figure 1). The reads and writes may be 1, 2 or 4 bytes long with a choice of byte ordering. The IOBridge also maps a programmable part of the DynaBus memory into the PC/AT memory address space. Physical access to DynaBus memory from the PC/AT goes through the IOBridge and SmallCache. Finally, the IOBridge converts PC/AT interrupts into DynaBus interrupt requests. Figure 1: The IOBridge translates IO Requests from the Processor into reads and writes on the PC/AT bus. It maps variable length PC/AT memory addresses into 32-bit DynaBus addresses. 2.0 Pin-Out 3.0 Block Diagram 3.1. Overall block diagram Figure 3 is a block diagram of the IOBridge. Note that the left and right halves, that handle DynaBus->PC/AT and PC/AT->DynaBus transactions, respectively, are completely independent. 3.2 DynaBus to PC/AT bus When a command is received from the DynaBus, it is checked by the Command Recognition Block to determine if it is intended for this IOBridge. (A system may support up to 16 IOBridges.) The check is based exclusively on the header word and is a filter on the command and address fields. Only IORead, IOWrite and BIOWrite commands are supported. The filtered commands are queued in a 16-entry FIFO. This FIFO is necessary because access time to the PC/AT bus is random, and in any case much larger than the potential IORequest throughput on the DynaBus. The FIFO holds most of the information from the header field as well as the 32, low-order bits of the data word of the IO request. Requests are processed serially. They are directed either to the PC/AT bus or to one of 3 internal IO registers visible from the DynaBus: a 32-bit free-running counter for precise timing estimates, a programmable 32-bit interrupt timer and an interrupt generator to the PC/AT bus. When a request is for an access to the PC/AT bus, the PC/AT Master Control block first gains control of the PC/AT bus through the BReq/BAck protocol, then asserts Master to gain control of the PC/AT address bus. Transfers are done in 16-bit words, using up to two transfers if a 32-bit operation is required. The byte ordering is specified through the encoding of the address field (c.f. programming guide for details). For read operations, the response(s) are reordered in the correct byte order. The PC/AT bus is released at the completion of the request. If Fault is raised by the PC/AT during the transfer, the error bit will be set in the DynaBus reply packet. Once a request is completed, it is queued for reply in the Reply Generation Block which provides a single pipeline stage. This is quite sufficient due to the long delay associated with taking control of the PC/AT bus. (The average latency to send the reply is much shorter than the average latency to perform an access on the PC/AT bus). 3.3 PC/AT Bus to DynaBus The IOBridge accepts memory Read and Write commands from the PC/AT bus. The PC/AT bus receives the Wait signal as long as the cache or the IOBridge is busy. If an error is detected by the cache, the Fault signal will be raised on the PC/AT bus and fault information will be stored inside the IOBridge for retrieval, then the cycle will be terminated. The IOBridge accepts memory Read and Write commands in two distinct areas: MemCS (Memory Chip Select) and IOCS (IO Chip Select). Only one of those areas may be selected at a time. 3.3.1 Memory Reads and writes in the memory area are transmitted to the Small Cache via the PBus. Addresses are translated in the IOBridge using 3, 16-entry mapping RAMs (The map selected depends upon the length of the address: 20, 24 or 32 bits.) The resulting address is passed to the cache. If the cache has been loaded with ASN=-1, the address will be a physical DynaBus memory address. Otherwise, the cache will use the MapCache for further address translation. If the MapCache is used, it is the programmer's responsibility to ensure that there will be no mapping faults; PC/AT memory cycles are not retryable. 3.3.2 IO Reads and writes in the IO area are for the PC/AT bus to access the IOBridge's internal registers and address mapping RAMs. The internal registers provided are for storing fault information and for accessing the memory cache. 1. Fault Information Registers The fault information registers contain the address, data and command being transmitted when the fault occured. 2. Cache Access Registers The cache access registers explicitly specify the address, (untranslated by the Small, Large, or Extra Map), data, and cache command to be used in accessing the cache, thus making it possible to generate DynaBus IO transactions and DynaBus ConditionalWriteSingle transactions from the PC/AT. 4.0 Programming Guide 4.1 DynaBus Requests The IOBridge accepts three commands from the DynaBus: IORRequest, IOWRequest and BIOWRequest. Because IO transactions on the DynaBus always use a full 32-bit word while transactions on the PC/AT bus are of variable length, some extra encoding is used to specify the number and ordering of bytes when accessing the PC/AT bus from the DynaBus. Figure 3 contrasts the byte ordering and numbering used on the DynaBus and PC/AT bus. The DynaBus uses big-endian numbering with zero representing the most signifcant bit of a word. The PC/AT uses little-endian numbering; however, zero still represents the most signifcant bit of a byte. These differences in ordering require the IOBridge to implement additional logic to transmit from 1 to 4 bytes in any order. Note: Unless otherwise specified, this section uses big-endian bit-ordering where bit 0 is the most-significant bit of a word. 4.1.2 PC/AT Memory Access Figure 4 illustrates the format for the IOBus Address Field of the IORRequest, IOWRequest and BIOWRequest commands when those commands access memory. Figure 4: The IOBus Address Format for DynaBus IO commands that access memory. The DeviceNo is the 4, low-order bits of the DeviceID. There are three different Access Modes for the DynaBus IO commands that access memory: byte, half-word and word. The following explanation of the three access modes, uses a DynaBus data word (D0, D1, D2, D3) where D0 is the most significant byte and D3 is the least significant byte. 1. Byte Access (0010) A byte is read or written at the specified 24-bit address. 2. Half-word Access (0011) The least significant bit (bit 31) of the word is used to specify byte ordering. a. If bit 31 = 0, then INT16 order is implemented as follows: D3 will be written at the 23-bit address || 0. D2 will be written at the 23-bit address || 1. A read returns (0, 0, D2, D3). b. If bit 31 = 1, then byte-stream order is implemented as follows: D2 will be written at the 23-bit address || 0. D3 will be written at the 23-bit address || 1. A read returns (0, 0, D2, D3). 3. Word Access (0100) The two least significant bits (bits 30 and 31) are used to specify byte ordering. a. If bit pattern = 00, then INT32 order is implemented as follows: D3 will be written at the 22-bit address || 0 0. D2 will be written at the 22-bit address || 0 1. D1 will be written at the 22-bit address || 1 0. D0 will be written at the 22-bit address || 1 1. A reads returns (D0, D1, D2, D3). b. If bit pattern = 01, then the following (probably useless) order is implemented: D2 will be written at the 22-bit address || 0 0. D3 will be written at the 22-bit address || 0 1. D0 will be written at the 22-bit address || 1 0. D1 will be written at the 22-bit address || 1 1. A reads returns (D0, D1, D2, D3). c. If bit pattern = 10, then the following DOUBLEINT16 order is implemented as follows: D1 will be written at the 22-bit address || 0 0. D0 will be written at the 22-bit address || 0 1. D3 will be written at the 22-bit address || 1 0. D2 will be written at the 22-bit address || 1 1. A reads returns (D0, D1, D2, D3). d. If bit pattern = 11, then the following byte-stream order is implemented as follows: D0 will be written at the 22-bit address || 0 0. D1 will be written at the 22-bit address || 0 1. D2 will be written at the 22-bit address || 1 0. D3 will be written at the 22-bit address || 1 1. A reads returns (D0, D1, D2, D3). To summarize the most relevant information from the above: Half-word Access Mode If the 24, low-order bits of the IOBus Address Field are divisible by 2, a write will result in INT16 ordering. If the 24, low-order bits of the IOBus Address Field are not divisible by 2, a write will result in byte-stream ordering. Word Access Mode If the 24, low-order bits of the IOBus Address Field are divisible by 4, a write will result in INT32 ordering. If the (24, low-order bits of the IOBus Address Field) MOD 4 = 3, a write will result in byte-stream ordering. 4.1.3 PC/AT IO Access Figure 5 illustrates the format for the IOBus Address Field of the IORRequest, IOWRequest and BIOWRequest commands when those commands access IO devices. Note that accesses from the DynaBus to the PC/AT IO space uses only 16 bit byte-addresses, according to Intel conventions. If write access is attempted in user mode or if the PC/AT generates a Fault signal during the cycle an error reply will be generated. 4.1.4 PC/AT Internal Registers Access Figure 6 illustrates the format for the IOBus Address Field of the IORRequest, IOWRequest and BIOWRequest commands when those commands access Internal PC/AT Registers. Accesses from the DynaBus to the Internal PC/AT Registers use a 3-bit address. Writes are only permitted in Kernel mode. User mode writes result in an error reply. Figure 6: IOBus Address Field of the IORRequest, IOWRequest and BIOWRequest commands that access Internal PC/AT Registers. The DeviceNo is the 4, low-order bits of the DeviceID. The supported values for the Address Field are: 000: PermanentClock Read/Write 32-bit counter. Set to 0 upon DynaBus Reset, incremented permanently at 1MHz (exact rate specified through DBus, c.f. section ). The counter automatically wraps around from 232-1 to 0 without notice. Although writing into this register is permitted to make chip testing easier, it is not expected to be written. The PermanentClock is intended to provide precise timing estimates. 001: IntervalTimer Read/Write 32-bit counter. Incremented permanently at 1MHz (exact rate specified through DBus, c.f. section ). When the counter wraps around from 232-1 to 0, a DynaBus interrupt is generated (if the corresponding interrupt mask bit is set) to signal expiration of the delay. The timer is not initialized during reset. It is the programmer's responsibility to initialize it at bootstrap time. There is no way to prevent the timer from interrupting except by disabling the corresponding interrupt. 010: NOT Used Not implemented. Writes are ignored, reads will return an unspecified value without error. 011: INTRStatus Read/Write 32-bit register. Reading this register will return a 1 for bit positions corresponding to pending interrupts, whether or not they are masked. Only the two most significant bits will ever be non-zero: bit 0 (MSB) if for PC/AT interrupt and bit 1 for IntervalTimer wrap-around. Writing into this register will remove interrupts corresponding to the bit positions in which a 1 is written, whereas writing a 0 does not change the interrupt status. C.f. section 4.1.6 for discussion of IOBridge interrupts. 100: INTRMask Read/Write 32-bit register. Only bits 0 and 1 are significant. The register is initialized to 0 upon reset. A 1 in a bit position permits the corresponding bit position in INTRStatus to generate a DynaBus interrupt. (C.f. section 4.1.6 for discussion of IOBridge interrupts.) 101: INTRReason Read/Write 32-bit register. Only the top 16 bits are significant (Figure 7). Figure 7: The Interrupt Register. The four fields of the Interrupt register are: Interrupt Type: interrupt reason to be reflected (0 to 31). Broadcast Broadcast is set to 1 for broadcast interrupts and to 0 for directed interrupts. DynaBusID This is the DynaBus ID of the processor EU cache to which the interrupt should be reflected. It should be set to all 1's when Broadcast = 1. Unused The low order 16 bits are used on writes and return 0 on reads. C.f. section 4.1.6 for discussion of IOBridge interrupts. 110: NOT Used 111: NOT Used 4.1.5 PC/AT Interrupt Acknowledge The Application Schematic of Section VIII uses the same Intel Interrupt Controllers as those used by the PC/AT itself to reflect PC/AT interrupts to the DynaBus. This is done to limit the IOBridge pin-count. The IOBridge may generate an Interrupt Acknowledge to the Interrupt controller by using a read access with an address of the form: Figure 8: PC/AT interrupt acknowledge. The low-order 16 bits are ignored. The DeviceNo is the 4, low-order bits of the DeviceID. 4.1.6 IOBridge Interrupts The IOBridge may generate DynaBus interrupts for external or internal reasons. External interrupts are initiated by the PC/AT. Internal interrupts are caused by timer wraparound. When an interrupt occurs, the corresponding bit in INTRStatus is set. Whenever the AND of INTRStatus and INTRMask has a new bit set to 1, an interrupt is sent onto the DynaBus using the specification provided by the INTRReason register. Pin-count limitations mean that the IOBridge can only provide limited support for interrupts. More extensive support of interrupts is provided by an external interrupt controller that catches all interrupts from the PC/AT bus and presents only a summary status. Under the currently planned external hardware, a pair of Intel Interrupt Controllers are used (8259A). Managing an IOBus interrupt consists in the following steps (assuming that the 8259As have been properly initialized): WHILE INTRStatus.bit1 DO { INT number _ send INTA cycle -- Refer to following sections for details Perform action for INT number -- such as signaling a condition variable }; The programmer must be aware that no new interrupt will be signalled on the DynaBus as long as all the PC/AT interrupts have not been acknowledged. Thus, the loop outlined above must be performed until INTRStatus bit 1 is inactive. 4.2 PC/AT Requests The PC/AT bus handles two types of requests: IO and Memory. Memory requests can access DynaBus Memory or IO Registers in the IOBridge. 4.2.1 Requests to DynaBus Memory Requests for DynaBus Memory convert the 20, 24 or 32 bit PC/AT address, into a 32-bit DynaBus address. The conversion is done using one of the 3, 16-entry map RAMs in the IOBridge. These maps are called the Small Map, Large Map, and Extra Map. The appropriate map is selected using the address itself and examining the other signals that are asserted in conjunction with the address. The Small Map will normally be used for 80286 CPU access. (MSDOS currently runs only in 8086 emulation mode, and generates addresses below 1M.) The Large Map will normally be used for DMA peripherals on the PC/AT bus. DMA peripherals may generate any 24-bit address. The Extra Map is intended to be used only by the disk controller, which is able to generate full 32-bit addresses. The address obtained by using the Extra Map is passed to the cache which may further remap it through the MapCache if programmed to do so. Small Map: If nRD or nWR is asserted in conjunction with nMemCS and the address presented on the address line is below 1M (20 bits), the Small Map is used to generate the DynaBus Address. (See Figure 9 for the precise timing relationships between the signals). When address is below 1M, only the low 16 address bits are considered (Figure 10). Figure 9: Timing relationships between Figure 10: The low-order 16 bits of the PC/AT address are used to form the DynaBus Address when the address is below one Megabyte. There are 3 subfields: page, byte offset and byte selector. External hardware decodes a single 64K byte chunk of addresses in that range. Those 64K bytes are mapped in 16 pages of 4K bytes. Each page has a base address on an even 4K byte (1K, 32-bit word) boundary. The page serves as an index into the Small Map. The DynaBus address is formed by concatenating the base address retrieved by indexing Small Map[page] and the bits representing the byte offset within that page. Because the 2, low-order bits of the offset are used for byte selection, they are not used to form the DynaBus address so that for addresses below 1M, the Small Map contributes the high-order 22 bits to the DynaBus Address (Figure 11). Figure 11: The Use of the Small, Large and Extra Maps to generate Dynabus addresses from PC addresses. Large Map: If nRD or nWR is asserted in conjunction with nMemCS and the address presented on the address line is between 1M and 16 M (24 bits), all 24 address bits are used in forming the DynaBus Address (Figure 12). Those 16M bytes are mapped in 16 pages of 1M bytes. Figure 12: The subfields of the 24-bit PC/AT address. Each page has a base address on an even 1M byte (256K 32-bit word) boundary. The page serves as an index into the Large Map. The DynaBus address is formed by concatenating the base address retrieved by indexing Large Map[page] and the bits representing the byte offset within that page. The base address is thus 14 bits long (Figure 11). Extra Map: The Extra Map is used for 32-bit addressing (Figure 13). It is an extension to the PC/AT addressing structure that uses its own read/write command signals, nRDX and nWRX. Figure 13: The subfields of the 32-bit PC/AT address. The Extra Map is for use by IO devices with large address spaces, for example, the disk controller. All Extra Map addresses are above 16M. The address is mapped into 16 pages of 256M bytes. Each page has a base address on an even 256M byte (64M 32-bit word) boundary. The DynaBus address is formed by concatenating base address retrieved by indexing Extra Map[page] and the bits representing the byte offset within that page. The base address is thus 6 bits long (Figure 11). 4.2.1.1 Byte Selection The low 2 IOBus address bits and nBHE act as byte selectors and allow byte or aligned half-word accesses. Unaligned half-word transactions are not permited on the PC/AT bus. The byte ordering maintains consistency for byte-streams; that is, the MSB of a DynaBus word is mapped to an IOBus address of the form 4*n and the LSB to an address of the form 4*n+3. This means that it is necessary to swap bytes when accessing half-word or word integers on the DynaBus. 4.2.1.2 DynaBus Memory Faults If a DynaBus reference fails, a flag will be set in the PBusFault register (c.f. next section(s)) and an interrupt will be raised on the IOBus. When a reference fails, random data will be returned for a read. The issuer of the command should read the cache fault register to get the exact reason for the fault. 4.2.2 Requests to IOBridge Registers An access to IOBridge registers is initiated when the IOBridge receives nRD or nWR while nIOCS is asserted. nIOCS is issued by an external PAL that decodes the address presented on the PC/AT backpanel to determine to what range of memory-space addresses the IO registers of the IOBridge should respond. Only the low-order 8 bits of the address are decoded within the IOBridge. The corresponding 256-byte space is separated in 4 areas of 64 bytes each. Byte Addr Reg Name R/W Description 00-03 PBusData R/W (0 is LSB, 3 is MSB). The contents of this register are used when PBusCmd is written. 04-07 PBusAddr (0 is LSB, 3 is MSB). The contents of this register are used when PBusCmd is written. 08-0B PBusResult R (0 is LSB, 3 is MSB). This result is setup as a side-effect of writing into PBusCmd. It can only be read. (Writes to these addresses are ignored). 0C PBusCmd W When this 8-bit register is written, a PBus cache transaction is initiated with the address contained in PBusAddr, the data contained in PBusData, and the 8-bit command written into PCmd. The PBusAddr must be a DynaBus 32-bit word address, no translation provided by the IOBridge. When the transaction is completed, the results returned by the cache are stored in PBusResult for later processing and the PC/AT bus cycle is finished. Refer to Cache specification for the encoding of PBusCmd. If the transaction fails, fault information is stored in PBusErrData, PBusErrAddr, PBusErrCmd, and PBusFault. Reading this register will return random information. 0D IOBusInt R This register contains the 8-bit interrupt information to be presented to the PC/AT bus. It is automatically cleared on Reset. Bits in this register are set/cleared by writing into IOBusSetInt/IOBusClrInt respectively. The IntOut wire is asserted as long as this register is non-zero. This mechanism makes it possible to raise a single interrupt on the PC/AT bus and submultiplex it using the 8 information bits. The IOBusInt register is initialized to 0 by reset. 0E IOBusSetInt W Addresses 0D, 0E, and 0F are 3 different paths to the same physical register. The first path, 0D, is read only. The other 2 paths, 0E and 0F are write only. Because IOBusInt may not be written directly, an alternate path (0E) is used to set bits in IOBusInt to one. Writing into the IOBusSetInt register performs an OR of IOBusInt and IOBusSetInt: IOBusInt _ IOBusInt OR DataIOBusSetInt). Reading this registers returns random results. 0F IOBusClrInt W Addresses 0D, 0E, and 0F are 3 different paths to the same physical register. The first path, 0D, is read only. The other 2 paths, 0E and 0F are write only. Because IOBusInt may not be written directly, an alternate path (0F) is used to set bits in IOBusInt to zero. Writing into the IOBusClrInt register performs a AND NOT of IOBusInt and IOBusClrInt, so that it sets to zero the bit positions of IOBusInt that are one in IOBusClrInt: IOBusInt _ IOBusInt AND NOT DataIOBusClrInt). Reading this registers returns random results. 10-13 PBusErrData R (10 is LSB, 13 is MSB). This register contains the data that was being written when the cache returns an error. 14-17 PBusErrAddr R (14 is LSB, 17 is MSB). This register contains the address (after IOBridge translation) that was being written when the cache returns an error. 18 PBusErrCmd R This register contains the command that was being issued when the cache returns an error. 19 PBusFault RW This register will be non-zero whenever the cache has returned a fault. The low-order bit of the register is output by the IOBridge on the nITFault line. Writing into the register will clear the fault condition. The PBusFault register is initialized to 0 by reset. 1A-1B DynaBus ID RO (1A is LSB, 1B is MSB). This register contains the DynaBus DeviceID (setup through the DBus) of the IOBridge. The DynaBus DeviceID is 10 bits, zero-extended to 16 bits. 1C-1E Unused Reads will return random values, writes will be ignored. 1F DynaBusStopCtl RW When writing into this register, the msb of data is stored in a flip-flop that drives the SStopOut DynaBus signal. When read, this register returns as msb the value of this flip-flop, and as next significant bit, the value of the SStopIn, DynaBus signal. The other 6 bits are ignored on writes and return 0 on reads. 20-3F Unused Reads will return random values, writes will be ignored. 40-7F Small Map Access Each entry of the small map uses 4 bytes of that space. Entry 0 is at 40 and entry 15 at 7C. For each entry, the LSB is at the lowest address and the MSB at the highest address. When writing, only the high-order 22 bits of data are taken in account. Thus, for example, byte 40 is never written. Those 22 bits specify the 22 high-order bits that will be output as PBus address when this entry is used. On reads, the 22 bits are returned as MSBs and the low-order 10 bits are returned as zeroes. The map is not initialized at Reset and must be initialized before accessing DynaBus memory through the IOBridge. 80H-BFH Large Map Access Each entry of the large map uses 4 bytes of that space. Entry 0 is at 80 and entry 15 at BC. For each entry, the LSB is at the lowest address and the MSB at the highest address. When writing, only the high-order 14 bits of data are taken in account Thus, for example, bytes 80 and 81 are never written. Those 14 bits specify the 14 high-order bits that will be output as PBus address when this entry is used. On reads, the 14 bits are returned as MSBs and the low-order 18 bits are returned as zeroes. The map is not initialized at Reset and must be initialized before accessing DynaBus memory through through the IOBridge. C0H-FFH Extra Map Access Each entry of the extra map uses 4 bytes of that space. Entry 0 is at C0 and entry 15 at FC. For each entry, the LSB is at the lowest address and the MSB at the highest address. When writing, only the high-order 6 bits of data are taken in account Thus, for example, bytes C0, C1, and C2 are never written. Those 6 bits specify the 6 high-order bits that will be output as PBus address when this entry is used. On reads, the 6 bits are returned as MSBs and the low-order 26 bits are returned as zeroes. The map is not initialized at Reset and must be initialized before accessing DynaBus memory through the IOBridge. 4.3 DBus Parameterization The IOBridge has 4 registers that may be initialized and/or read by the DBus. Their addresses (path numbers) are as follows: 0: Chip Identification 16 bits, RO. Indicates the type and version of the IOBridge. With the current version (IOBNOV87A). This register should always read 0101000111000000, i.e. type 7 version 0. 1: DeviceID 10 bits, R/W. Specifies the DynaBus Device ID for the IOBridge. Note that the DeviceNo, that is 4 low-order bits of the Device ID, should be different for all IOBridges, because the DeviceNo is also used to specify the IO address range to which the IOBridge responds. 2: AddINT 5 bits, R/W. Specifies the register offset within the cache IO address space to which interrupts should be sent. 3: MHz 6 bits, R/W. Indicates the division factor of the DynaBus clock used to provide the 1MHz signal that increments the timing registers. The number is in 2's complement format: 3FH specifies 1, 00H specifies 63. 5.0 Detailed Description of Each Pin 5.1 DynaBus Pins The following table describes the DynaBus pins of the IOBridge: Pin Name I/O Pin Description RequestOut O 2 bits, indicates arbiter request code. The IOBridge behaves as a memory device on the DynaBus. The following values are used: 00: No allocation 01: Bus lock (FIFO close to overflow) 11: 2-cycle bus request SpareOut O 2 bits, driven to 0 when DataOut is driven, floated otherwise. Present only for compatibility SStopOut O DynaBus synchronous stop request (stops arbitration). Driven according to the status of an internal FF loaded by the PC/AT bus. This line is normally used for bootstrap and debug only. SharedOut O Always driven to 0. Present only for compatibility OwnerOut O Always driven to 0. Present only for compatibility HeaderCycleOut O Driven high when the header cycle of a packet is emitted on DataOut, driven low when data cycles are emitted on DataOut, floated when DataOut is floated. ParityOut O Parity of DataOut. Not yet implemented, always driven to 0. DataOut O 64-bit wide DynaBus data output. Floated except when Grant is assserted (with 1 cycle of pipeline delay) Grant I Packet grant from the arbiter. Will be high for 2 or 5 cycles (as indicated by previous LongGrant). Data emission on DataOut starts on the next clcok edge. HiPGrant I Ignored, present only for compatibility LongGrant I Indication by arbiter that packet granted on the next clock edge will be for 2 cycles (low) or 5 cycles (high). Valid only on the cycle preceding the beginning of a new Grant. SpareIn I 2 bits, ignored, present only for compatibility SStopIn I Synchronous stop line from DynaBus. Buffered internally to be accessible from the PC/AT. SharedIn I Ignored, present only for compatibility OwnerIn I Ignored, present only for compatibility HeaderCycleIn I Asserted (high) on header cycles coming from the DynaBus ParityIn I Parity on DataIn. Not yet implemented. DataIn I 64-bit wide DynaBus data input. Clock I DynaBus clock input. This is also the basic clock used inside the IOBridge. CkOut O Clock feedback output. Used to adjust the clock skew based on internal clock buffering delay. 5.2 DBus Pins The following table describes the DBus pins of the IOBridge. The reader is referred to the DBus specification for details. Pin Name I/O Pin Description DSelect I DBus selection. This line is asserted (high) when the IOBridge should listen to the DBus. DSerialOut O Data emitted serially on the DBus by the IOBridge. This line is floated except when DSelect is asserted. DSerialIn I DBus serial input data and address nDReset I System reset (active low) nDFreeze I Ignored by IOBridge DExecute I Not used by IOBridge DAddress I When high, address bit is present on DSerialIn DShiftCK I DBus shift clock 5.3 PC/AT Pins The following table describes the PC/AT pins of the IOBridge. Unless otherwise specified, those pins use little endian bit-ordering (bit 0 is LSB). Pin Name I/O Pin Description PCLK I PC/AT bus clock. This clock is used to derive the timings on the PC/AT bus when the IOBridge is the bus master. Reset I PC/AT bus reset. This signal resets the internal PC/AT related automata. It should always be asserted together with the DBus DReset and should be rescinded before it. BAck I Acknowledge of PC/AT bus allocation. Asserted by PC/AT bus allocator after BReq has been asserted by the IOBridge. Signal should not be rescinded before BReq is rescinded. BReq I Allocation request for PC/AT bus. nFault I/O Input when IOBridge is PC/AT bus master (BAck high), output when IOBridge is PC/AT bus slave. When the IOBridge is master, the DynaBus transaction will return in error if nFault is asserted at the end of the PC/AT cycle. When the IOBridge is slave, nFault will be asserted if the request cannot be completed properly (DynaBus error detected by the cache). nWRXnIOW I/O Input when IOBridge is PC/AT bus slave, output when IOBridge is PC/AT bus master. When the IOBridge is PC/AT bus master, nWRXnIOW is asserted to indicate an IOWrite cycle on the PC/AT bus. When the IOBridge is PC/AT bus slave, nWRXnIOW asserted means that an extended address memory write cycle is active (as nWRX, except that 32 bit addresses are used and nMemCS/nIOCS are ignored) nRDXnIOR I/O Input when IOBridge is PC/AT bus slave, output when IOBridge is PC/AT bus master. When the IOBridge is PC/AT bus master, nRDXnIOR is asserted to indicate an IORead cycle on the PC/AT bus. When the IOBridge is PC/AT bus slave, nRDXnIOR asserted means that an extended address memory read cycle is active (as nRDX, except that 32 bit addresses are used and nMemCS/nIOCS are ignored) nReady I/O Input when IOBridge is PC/AT bus master, output when IOBridge is PC/AT bus slave. When the IOBridge is PC/AT bus master, nReady prevents completion of the PC/AT bus cycle as long as it is active. When the IOBridge is PC/AT bus slave, nReady is asserted as long as the IOBridge has not provided/sampled the data on the PC/AT bus. nIOCS I When active (low), indicates that nWR/nRD cycle is for access to IOBridge registers. nMemCS I When active (low), indicates that nWR/nRD cycle is for access to DynaBus memory. nWR I/O Input when IOBridge is PC/AT bus slave, output when IOBridge is PC/AT bus master. When the IOBridge is PC/AT bus master, nWR is asserted to indicate a memory write cycle on the PC/AT bus. When the IOBridge is PC/AT bus slave, nWR asserted means that a write cycle is active. The cycle is ignored if neither nMemCS or nIOCS is active. nRD I/O Input when IOBridge is PC/AT bus slave, output when IOBridge is PC/AT bus master. When the IOBridge is PC/AT bus master, nRD is asserted to indicate a memory read cycle on the PC/AT bus. When the IOBridge is PC/AT bus slave, nWR asserted means that a read cycle is active. The cycle is ignored if neither nMemCS nor nIOCS is active. nBHE I/O Input when IOBridge is PC/AT bus slave, output when IOBridge is PC/AT bus master. Indicates that data high order byte takes part in transaction (when low). A31nDEN I/O Input when IOBridge is PC/AT bus slave, output when IOBridge is PC/AT bus master. When IOBridge is PC/AT bus master, asserted (low) when data transceivers should be enabled. When IOBridge is PC/AT bus slave, this signal is the extended address bit 31 (msb). A30DTnR I/O Input when IOBridge is PC/AT bus slave, output when IOBridge is PC/AT bus master. When IOBridge is PC/AT bus master, asserted (low) when data transceivers should transmit towards the IOBridge. When IOBridge is PC/AT bus slave, this signal is the extended address bit 30 (next to msb). A29nINTA I/O Input when IOBridge is PC/AT bus slave, output when IOBridge is PC/AT bus master. When IOBridge is PC/AT bus master, asserted (low) to acknowledge PC/AT bus interrupt when using 8259 interrupt controllers. When IOBridge is PC/AT bus slave, this signal is the extended address bit 29. A28-A24 I 5 bits, extended address bits 28 to 24. Address I/O 24 bits. Input when IOBridge is PC/AT bus slave, output when IOBridge is PC/AT bus master. Full PC/AT bus address. DATA I/O 16 bits. Direction defined by master/slave and read/write in the obvious fashion. Represents the data bus of the PC/AT. IntOut O Driven when the DynaBus requests an interrupt on the PC/AT bus. INTR I Driven to indicate that an interrupt should be passed on to the DynaBus. Logical acknowledge provided by A29nINTA. 5.4 PBus Pins The following table describes the PBus pins (interface to SmallCache) of the IOBridge. Refer to the Cache specification for details. Bit ordering is big endian (0 is MSB). Pin Name I/O Pin Description PData I/O 32-bit Data and address bus between IOBridge and SmallCache. Direction is out during PhA, in or out during PhB according to read/write command. PhA O High to indicate address transfer from IOBridge to SmallCache. PhB O High to indicate data transfer between IOBridge and SmallCache. PhA and PhB must be non-overlapping. PReject I If high at end of PhB, retry cycle (wait state) PFault I If high at end of PhB (PReject also high at same time), cycle has failed. PCmd O 4-bit command. PByteSel O 4-bit byte selection for writes (most significant bit enables most significant byte). 5.5 Miscellaneous Pins The following table describes miscellaneous pins of the IOBridge. Pin Name I/O Pin Description Test I This signal is used to reduce the number of pins that need to be contacted for testing purposes. It relates only to the operation of the Dynabus Data lines. When de-asserted the DynabusIn and DynabusOut pins are uni-directional. When asserted, the DynabusIn pins become active outputs and drive the level currently on the DynabusOut pins. Spare N.A. 3 unused pins (not connected on PGA). 6.0 DC Characteristics This section lists the Direct Current characteristics of each signal. Pins are grouped when they have a common DC behavior. Pin Name Signal Type Voltage Current Group Out 5V output L 0.5 2 ma H 4.0 0 Group TSOut 5V tri-state output L 0.5 2 ma H 4.0 0 Group In 5V input L 0.5 2 ma H 4.5 2 ma Group InOut 5V input/output L 0.5 2 ma H 4.5 2 ma Group D Unbuffered input L 0.5 2 ma H 4.5 2 ma Pin Type Pin Name Group Out BReq, CkOut, IntOut, OwnerOut, PByteSel, PCmd, PhA, PhB, RequestOut, SharedOut, SpareOut, SStopOut Group TSOut DataOut, DSerialOut, HeaderCycleOut, ParityOut Group In A28-A24, BAck, DAddress, DataIn, DExecute, DSelect, DSerialIn, DShiftCK, Grant, HeaderCycleIn, HiPGrant, INTR, LongGrant, nDFreeze, nDReset, nIOCS, nMemCS, OwnerIn, ParityIn, PCLK, PFault, PReject, Reset, SharedIn, SpareIn, SStopIn, Test Group InOut A29nINTA, A30DTnR, A31nDEN, Address, DATA, nBHE, nFault, nRD, nRDXnIOR, nReady, nWR, nWRXnIOW, PData Group D PCLK 7.0. AC Characteristics A. Definitions Figure 14: Input Signal Characteristics Ts (setup time) = the mimimum time a signal must be stable before the rising edge of the clock. Th (hold time) = the mimimum time a signal must be stable after the rising edge of the clock. Figure 15: Output Signal Characteristics Tcycle = the time interval between successive rising edges of the clock Tpd (propagation delay) = the waiting time after the clock is high until an output becomes valid. Tm (maintenance of old data) = the time after rising edge of next clock cycle that old data remains valid. B. Values Qualififed Pin Name Tmin Ttypical Tmax Tcycle 20ns 25ns 27ns Ts.Dynabus In (setup.Dynabus In) 3ns Th.Dynabus In (hold.Dynabus In) 1ns Tpd.Dynabus Out (propagation delay.Dynabus Out) 5ns Tm.Dynabus Out (maintain.Dynabus Out) 2ns         8.0 Application Schematics of the Circuit 9.0 Physical Pin-Out For Each Package 9.1 Physical die pin-out This section indicates the pin-out of the IOBridge at the die level. In the following table, each colums describes a single side of the chip. Pads are numbered from left to right and top to bottom, from 1 to 67. The IOBridge uses the standard June87 padframe with signals pins on a single row inside and power supplies on the outside. No Top No Bottom No Left No Right 1 DataIn[0] 1 DataIn[32] 1 Reset 1 HeaderCycleIn 2 DataOut[0] 2 DataOut[32] 2 nReady 2 HeaderCycleOut 3 DataIn[1] 3 DataIn[33] 3 nFault 3 OwnerIn 4 DataOut[1] 4 DataOut[33] 4 nWRXnIOW 4 OwnerOut 5 DataIn[2] 5 DataIn[34] 5 nRDXnIOR 5 SharedIn 6 DataOut[2] 6 DataOut[34] 6 nWR 6 SharedOut 7 DataIn[3] 7 DataIn[35] 7 nRD 7 SStopIn 8 DataOut[3] 8 DataOut[35] 8 nMemCS 8 SStopOut 9 DataIn[4] 9 DataIn[36] 9 nIOCS 9 Grant 10 DataOut[4] 10 DataOut[36] 10 nBHE 10 LongGrant 11 DataIn[5] 11 DataIn[37] 11 Address[23] 11 HiPGrant 12 DataOut[5] 12 DataOut[37] 12 Address[22] 12 RequestOut[1] 13 DataIn[6] 13 DataIn[38] 13 Address[21] 13 RequestOut[0] 14 DataOut[6] 14 DataOut[38] 14 Address[20] 14 DShiftCK 15 DataIn[7] 15 DataIn[39] 15 Address[19] 15 DAddress 16 DataOut[7] 16 DataOut[39] 16 Address[18] 16 DExecute 17 DataIn[8] 17 DataIn[40] 17 Address[17] 17 nDFreeze 18 DataOut[8] 18 DataOut[40] 18 Address[16] 18 nDReset 19 DataIn[9] 19 DataIn[41] 19 Address[15] 19 DSerialIn 20 DataOut[9] 20 DataOut[41] 20 Address[14] 20 DBusOut 21 DataIn[10] 21 DataIn[42] 21 Address[13] 21 DSelect 22 DataOut[10] 22 DataOut[42] 22 Address[12] 22 Clock 23 DataIn[11] 23 DataIn[43] 23 Address[11] 23 CkOut 24 DataOut[11] 24 DataOut[43] 24 Address[10] 24 PhA 25 DataIn[12] 25 DataIn[44] 25 Address[9] 25 PhB 26 DataOut[12] 26 DataOut[44] 26 Address[8] 26 PByteSel[3] 27 DataIn[13] 27 DataIn[45] 27 Address[7] 27 PByteSel[2] 28 DataOut[13] 28 DataOut[45] 28 Address[6] 28 PByteSel[1] 29 DataIn[14] 29 DataIn[46] 29 Address[5] 29 PByteSel[0] 30 DataOut[14] 30 DataOut[46] 30 Address[4] 30 PCmd[3] 31 DataIn[15] 31 DataIn[47] 31 Address[3] 31 PCmd[2] 32 DataOut[15] 32 DataOut[47] 32 Address[2] 32 PCmd[1] 33 DataIn[16] 33 DataIn[48] 33 Address[1] 33 PCmd[0] 34 DataOut[16] 34 DataOut[48] 34 Address[0] 34 PFault 35 DataIn[17] 35 DataIn[49] 35 A28-A24[4] 35 PReject 36 DataOut[17] 36 DataOut[49] 36 A28-A24[3] 36 PData[31] 37 DataIn[18] 37 DataIn[50] 37 A28-A24[2] 37 PData[30] 38 DataOut[18] 38 DataOut[50] 38 A28-A24[1] 38 PData[29] 39 DataIn[19] 39 DataIn[51] 39 A28-A24[0] 39 PData[28] 40 DataOut[19] 40 DataOut[51] 40 A29nINTA 40 PData[27] 41 DataIn[20] 41 DataIn[52] 41 A30DTnR 41 PData[26] 42 DataOut[20] 42 DataOut[52] 42 A31nDEN 42 PData[25] 43 DataIn[21] 43 DataIn[53] 43 DATA[15] 43 PData[24] 44 DataOut[21] 44 DataOut[53] 44 DATA[14] 44 PData[23] 45 DataIn[22] 45 DataIn[54] 45 DATA[13] 45 PData[22] 46 DataOut[22] 46 DataOut[54] 46 DATA[12] 46 PData[21] 47 DataIn[23] 47 DataIn[55] 47 DATA[11] 47 PData[20] 48 DataOut[23] 48 DataOut[55] 48 DATA[10] 48 PData[19] 49 DataIn[24] 49 DataIn[56] 49 DATA[9] 49 PData[18] 50 DataOut[24] 50 DataOut[56] 50 DATA[8] 50 PData[17] 51 DataIn[25] 51 DataIn[57] 51 DATA[7] 51 PData[16] 52 DataOut[25] 52 DataOut[57] 52 DATA[6] 52 PData[15] 53 DataIn[26] 53 DataIn[58] 53 DATA[5] 53 PData[14] 54 DataOut[26] 54 DataOut[58] 54 DATA[4] 54 PData[13] 55 DataIn[27] 55 DataIn[59] 55 DATA[3] 55 PData[12] 56 DataOut[27] 56 DataOut[59] 56 DATA[2] 56 PData[11] 57 DataIn[28] 57 DataIn[60] 57 DATA[1] 57 PData[10] 58 DataOut[28] 58 DataOut[60] 58 DATA[0] 58 PData[9] 59 DataIn[29] 59 DataIn[61] 59 PCLK 59 PData[8] 60 DataOut[29] 60 DataOut[61] 60 BAck 60 PData[7] 61 DataIn[30] 61 DataIn[62] 61 BReq 61 PData[6] 62 DataOut[30] 62 DataOut[62] 62 INTR 62 PData[5] 63 DataIn[31] 63 DataIn[63] 63 IntOut 63 PData[4] 64 DataOut[31] 64 DataOut[63] 64 Spare[2] 64 PData[3] 65 ParityIn 65 SpareIn[1] 65 Spare[1] 65 PData[2] 66 ParityOut 66 SpareOut[0] 66 Spare[0] 66 PData[1] 67 SpareIn[0] 67 SpareOut[1] 67 Test 67 PData[0] Here is a diagram indicating the range of pins that are located on each side of the PGA: ô [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'ArtworkInterpress on' to command tool] Figure 2: Simplified block diagram of the IOBridge [Artwork node; type 'Artwork on' to command tool] Figure 3: Numbering and ordering of bits and bytes on the DynaBus and PC/AT bus. [Artwork node; type 'ArtworkInterpress on' to command tool] [Artwork node; type 'ArtworkInterpress on' to command tool] Figure 5: IOBus Address Field of the IORRequest, IOWRequest and BIOWRequest commands that access IO devices. The DeviceNo is the 4, low-order bits of the DeviceID. [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] [Artwork node; type 'Artwork on' to command tool] ÊЖ"dragondoc" style–.8 in footerMargin˜Iblock•Mark centerHeaderšÏs ˜ K–centerRectoHeaderš ˜ K–centerVersoHeaderš ˜ K– centerFooter–e"XeroxLogotypes" family 48 pt size 48 pt leading 48 pt topLeading 40 pt topIndent 24 pt bottomLeadingšœ˜K–e"XeroxLogotypes" family 48 pt size 48 pt leading 48 pt topLeading 40 pt topIndent 24 pt bottomLeading–centerRectoFooteršœ˜K–centerVersoFooter–e"XeroxLogotypes" family 48 pt size 48 pt leading 48 pt topLeading 40 pt topIndent 24 pt bottomLeadingšœ˜Ititlešœ˜Isubtitlešœ%˜%M˜Iauthorsšœ"˜"Iabstractš˜O˜OšÐms9˜:O˜OšÏbœE˜MOšŸ œ˜!O˜I boilerplatešÏqœÏoiœÑbox˜ŽL–3centered lineFormatting centered lastLineFormatting˜head˜bodyšœÉ˜ÉK˜K˜I artworkFigure•GGFileã’Gargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/IntroBlockDiagram.gargoyle at February 29, 1988 4:53:44 pm PST Produced by version 8802.04 Scripts: ///Users/wallgren.pa/wallgren880229-10-40-06.script, ///Users/wallgren.pa/wallgren880229-11-02-55.script, ///Users/bland.pa/gargoyle/bland880229-11-08-08.script, ///Users/bland.pa/gargoyle/bland880229-11-18-01.script, ///Users/bland.pa/gargoyle/bland880229-11-24-21.script, ///Users/bland.pa/gargoyle/bland880229-11-51-56.script, ///Users/bland.pa/gargoyle/bland880229-11-57-09.script, ///Users/bland.pa/gargoyle/bland880229-12-09-44.script, ///Users/bland.pa/gargoyle/bland880229-12-12-02.script, ///Users/bland.pa/gargoyle/bland880229-12-15-19.script, ///Users/bland.pa/gargoyle/bland880229-12-18-14.script, ///Users/bland.pa/gargoyle/bland880229-12-19-50.script, ///Users/bland.pa/gargoyle/bland880229-13-03-18.script, ///Users/bland.pa/gargoyle/bland880229-13-11-56.script, ///Users/bland.pa/gargoyle/bland880229-13-45-22.script, ///Users/bland.pa/gargoyle/bland880229-13-49-26.script, ///Users/bland.pa/gargoyle/bland880229-14-06-02.script, ///Users/bland.pa/gargoyle/bland880229-14-16-57.script, ///Users/bland.pa/gargoyle/bland880229-14-28-51.script, ///Users/bland.pa/gargoyle/bland880229-14-51-17.script, ///Users/bland.pa/gargoyle/bland880229-15-12-14.script, ///Users/bland.pa/gargoyle/bland880229-15-15-33.script, ///Users/bland.pa/gargoyle/bland880229-16-42-11.script Slope: [T 0.0] [F 30.0] [F 45.0] [F 60.0] [T 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 4.0 4] [F 2.0 2] [F 1.0 1] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.125 1/8] [F 0.1111111 1/9] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.20052 0.2] [F 0.1414652 0.14] [F 0.1111111 1/9] [F 0.1052 0.11] [F 7.945776e-2 0.08] [F 5.555556e-2 1/18] [F 0.00183 0] [F 0.0 0] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: F GravityExtent: 8.680555e-2 GravityType: pointsPreferred DefaultFont: Xerox/PressFonts/Helvetica-MRR [r1: 0.0 s: [11.96353 11.96353] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 1.0 round round Dashed: F Shadows: []F Anchor: T [322.0,259.0] Entities: [130]: Outline fillColor: [2 Xerox/Research/ChipNDale/CD/InitialColor] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [101.7598,416.5023] (Line ) [101.7598,86.00982] (Line ) [518.2402,86.00982] (Line ) [518.2402,416.5023] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.4499,361.171] (Line ) [204.1976,361.171] (Line ) [204.1976,398.557] (Line ) [203.4499,398.557] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.4499,250.5084] (Line ) [204.1976,250.5084] (Line ) [204.1976,257.2379] (Line ) [203.4499,257.2379] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [294.6718,385.098] (Line ) [295.4195,385.098] (Line ) [295.4195,391.8276] (Line ) [294.6718,391.8276] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [294.6718,361.171] (Line ) [295.4195,361.171] (Line ) [295.4195,398.557] (Line ) [294.6718,398.557] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [418.7934,320.7941] (Line ) [419.5411,320.7941] (Line ) [419.5411,361.171] (Line ) [418.7934,361.171] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [294.6718,370.1436] (Line ) [295.4195,370.1436] (Line ) [295.4195,376.8732] (Line ) [294.6718,376.8732] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.4499,385.098] (Line ) [204.1976,385.098] (Line ) [204.1976,391.8276] (Line ) [203.4499,391.8276] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.4499,284.9035] (Line ) [204.1976,284.9035] (Line ) [204.1976,291.633] (Line ) [203.4499,291.633] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [266.2584,210.1314] (Line ) [267.0061,210.1314] (Line ) [267.0061,250.5084] (Line ) [266.2584,250.5084] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [516.7448,398.557] (Line ) [516.7448,399.3047] (Line ) [155.5957,399.3047] (Line ) [155.5957,398.557] (CubicSpline Type: Natural 1 [336.1703,398.557] ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [388.1368,398.557] (Line ) [387.3891,398.557] (Line ) [387.3891,361.171] (Line ) [388.1368,361.171] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [355.9849,361.171] (Line ) [358.9757,361.171] (Line ) [358.9757,361.9187] (Line ) [355.9849,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [355.9849,320.7941] (Line ) [356.7326,320.7941] (Line ) [356.7326,361.9187] (Line ) [355.9849,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [355.9849,320.7941] (Line ) [418.7934,320.7941] (Line ) [418.7934,321.5418] (Line ) [355.9849,321.5418] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [357.4803,361.171] (Line ) [419.5411,361.171] (Line ) [419.5411,361.9187] (Line ) [357.4803,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [263.2675,320.7941] (Line ) [326.076,320.7941] (Line ) [326.076,321.5418] (Line ) [263.2675,321.5418] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [263.2675,320.7941] (Line ) [264.0152,320.7941] (Line ) [264.0152,361.9187] (Line ) [263.2675,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [263.2675,361.171] (Line ) [266.2584,361.171] (Line ) [266.2584,361.9187] (Line ) [263.2675,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [170.5501,361.171] (Line ) [173.541,361.171] (Line ) [173.541,361.9187] (Line ) [170.5501,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [170.5501,320.7941] (Line ) [171.2979,320.7941] (Line ) [171.2979,361.9187] (Line ) [170.5501,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.8541,320.7941] (Line ) [235.6018,320.7941] (Line ) [235.6018,361.171] (Line ) [234.8541,361.171] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [170.5501,320.7941] (Line ) [234.8541,320.7941] (Line ) [234.8541,321.5418] (Line ) [170.5501,321.5418] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [172.0456,361.171] (Line ) [235.6018,361.171] (Line ) [235.6018,361.9187] (Line ) [172.0456,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [450.1976,361.171] (Line ) [512.2585,361.171] (Line ) [512.2585,361.9187] (Line ) [450.1976,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [448.7022,320.7941] (Line ) [511.5108,320.7941] (Line ) [511.5108,321.5418] (Line ) [448.7022,321.5418] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [511.5108,320.7941] (Line ) [512.2585,320.7941] (Line ) [512.2585,361.171] (Line ) [511.5108,361.171] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [448.7022,320.7941] (Line ) [449.4499,320.7941] (Line ) [449.4499,361.9187] (Line ) [448.7022,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [448.7022,361.171] (Line ) [451.6931,361.171] (Line ) [451.6931,361.9187] (Line ) [448.7022,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.1065,361.171] (Line ) [480.8542,361.171] (Line ) [480.8542,398.557] (Line ) [480.1065,398.557] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [216.9088,250.5084] (Line ) [267.0061,250.5084] (Line ) [267.0061,251.256] (Line ) [216.9088,251.256] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [216.9088,210.1314] (Line ) [266.2584,210.1314] (Line ) [266.2584,210.8792] (Line ) [216.9088,210.8792] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [216.9088,210.1314] (Line ) [217.6565,210.1314] (Line ) [217.6565,251.256] (Line ) [216.9088,251.256] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [216.9088,250.5084] (Line ) [218.5912,250.5084] (Line ) [218.5912,251.256] (Line ) [216.9088,251.256] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [216.9088,229.5722] (Line ) [216.9088,230.3199] fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [196.5584,230.6938] (Line ) [203.4499,229.5722] fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.4499,87.50525] (Line ) [204.1976,87.50525] (Line ) [204.1976,320.7941] (Line ) [203.4499,320.7941] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [263.2675,361.171] (Line ) [294.6718,361.171] (Line ) [294.6718,361.9187] (Line ) [263.2675,361.9187] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [326.076,320.7941] (Line ) [326.8237,320.7941] (Line ) [326.8237,361.171] (Line ) [326.076,361.171] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [326.8237,361.171] (Line ) [326.8237,361.9187] (Line ) [264.763,361.9187] (Line ) [264.763,361.171] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.3891,370.1436] (Line ) [388.1368,370.1436] (Line ) [388.1368,376.8732] (Line ) [387.3891,376.8732] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.3891,385.098] (Line ) [388.1368,385.098] (Line ) [388.1368,391.8276] (Line ) [387.3891,391.8276] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.1065,385.098] (Line ) [480.8542,385.098] (Line ) [480.8542,391.8276] (Line ) [480.1065,391.8276] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.1065,370.1436] (Line ) [480.8542,370.1436] (Line ) [480.8542,376.8732] (Line ) [480.1065,376.8732] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.8237,250.8822] (Line ) [200.8328,256.864] (Line ) [203.8237,255.3685] (Line ) [206.8146,256.864] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [295.0457,391.4537] (Line ) [298.0365,385.4719] (Line ) [295.0457,386.9674] (Line ) [292.0548,385.4719] (Line ) fwd: T Text T "Memory" Xerox/PressFonts/Helvetica [8.972646 0.0 465.1521 0.0 8.972646 337.6178][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [295.0457,370.5175] (Line ) [292.0548,376.4993] (Line ) [295.0457,375.0038] (Line ) [298.0365,376.4993] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.8237,391.4537] (Line ) [206.8146,385.4719] (Line ) [203.8237,386.9674] (Line ) [200.8328,385.4719] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.8237,291.2591] (Line ) [206.8146,285.2773] (Line ) [203.8237,286.7728] (Line ) [200.8328,285.2773] (Line ) fwd: T Text T "PC" Xerox/PressFonts/Helvetica [8.972646 0.0 233.3587 0.0 8.972646 226.9552][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "Processor" Xerox/PressFonts/Helvetica [8.972646 0.0 367.2007 0.0 8.972646 337.6178][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "IOBridge" Xerox/PressFonts/Helvetica [8.972646 0.0 182.5137 0.0 8.972646 337.6178][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "Small Cache" Xerox/PressFonts/Helvetica [8.972646 0.0 269.2493 0.0 8.972646 337.6178][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "PC/AT bus" Xerox/PressFonts/Helvetica [8.972646 0.0 187.375 0.0 8.972646 301.8276][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.763,370.5175] (Line ) [384.7721,376.4993] (Line ) [387.763,375.0038] (Line ) [390.7539,376.4993] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.763,391.4537] (Line ) [390.7539,385.4719] (Line ) [387.763,386.9674] (Line ) [384.7721,385.4719] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.4804,391.4537] (Line ) [483.4713,385.4719] (Line ) [480.4804,386.9674] (Line ) [477.4894,385.4719] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [480.4804,370.5175] (Line ) [477.4894,376.4993] (Line ) [480.4804,375.0038] (Line ) [483.4713,376.4993] (Line ) fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [6] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [0.0 5.0 0.0 5.0 0.0 1.0 0.0] 0.0 -1.0 [208.75,230.3199] (Bezier [208.75,292.5699] [212.5,328.5699] ) [244.75,328.5699] (Line ) [292.0,328.5699] (Arc [302.0511,333.0575] ) [305.5,342.0699] (Line ) [305.5,381.25] (Arc [311.5115,392.4827] ) [319.0,394.75] (Line ) [366.25,394.75] fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (open) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: F [347.508,394.3249] (Line F ) [340.7785,394.3249] (Line F ) [340.7785,395.0726] (Line T [0.0 5.0 0.0 5.0 0.0 1.0 0.0] 0.0 -1.0 ) [462.25,394.75] fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [365.8427,394.7661] (Line ) [359.8609,397.757] (Line ) [361.3564,394.7661] (Line ) [359.8609,391.7752] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [475.3773,370.9017] (Line ) [476.125,370.9017] (Line ) [476.125,364.1723] (Line ) [475.3773,364.1723] (Line ) fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [3.0 5.0] 0.0 0.0 [394.5625,358.75] (Line ) [394.5625,394.75] fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [3.0 5.0] 0.0 0.0 [380.3125,403.375] (CubicSpline Type: Natural 1 [393.0625,400.5625] ) [394.9375,394.75] fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [3.0 5.0] 0.0 0.0 [196.5584,230.6938] (Line ) [196.5584,394.3739] fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [3.0 5.0] 0.0 0.0 [211.1834,402.9988] (CubicSpline Type: Natural 1 [198.4334,400.1863] ) [196.5584,394.3739] fwd: T Text T "DynaBus" Xerox/PressFonts/Helvetica [8.972646 0.0 158.875 0.0 8.972646 403.0][] F 1.0 props: ( F ) Outline fillColor: [1 0.0] ow: T Trajectories: [1] Traj (fence) [4] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [120.4769,188.158] (Line ) [185.277,188.158] (Line ) [185.277,136.1242] (Bezier [185.277,128.574] [167.277,124.479] ) [152.8769,124.479] (Bezier [138.027,124.479] [120.4769,129.8298] ) [120.4769,137.38] (Bezier [120.4769,144.9302] [120.4769,188.158] ) fwd: T Circle [32.4 0.0 152.8769 0.0 9.229092 188.158] strokeWidth: 1.0 strokeColor: [1 1.0] fillColor: [1 0.0] dashes: ( F ) props: ( F ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.4499,189.0084] (Line ) [204.1976,189.0084] (Line ) [204.1976,195.7378] (Line ) [203.4499,195.7378] (Line ) fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [203.875,161.5] (Line ) [185.277,161.5] fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [197.8556,161.1261] (Line ) [197.8556,161.8738] (Line ) [191.1261,161.8738] (Line ) [191.1261,161.1261] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [191.5,161.5] (Line ) [197.4817,164.4909] (Line ) [195.9863,161.5] (Line ) [197.4817,158.5091] (Line ) fwd: T Outline fillColor: [0 1.0 1.0 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [300.6636,184.7949] (Line ) [244.5938,198.6549] (Line ) [229.8938,181.015] (Line ) [287.8536,163.375] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [300.6636,184.7949] (Line ) [244.5938,198.6549] (Line ) [229.8938,181.015] (Line ) [287.8536,163.375] (Line ) fwd: T Outline fillColor: [0 1.0 1.0 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [300.6636,184.7949] (Line ) [300.6636,182.905] (Line ) [288.0636,161.065] (Line ) [287.8536,163.375] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [300.6636,184.7949] (Line ) [300.6636,182.905] (Line ) [288.0636,161.065] (Line ) [287.8536,163.375] (Line ) fwd: T Outline fillColor: [0 1.0 1.0 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [287.8536,163.375] (Line ) [229.8938,181.015] (Line ) [229.8938,179.545] (Line ) [288.0636,161.065] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [287.8536,163.375] (Line ) [229.8938,181.015] (Line ) [229.8938,179.545] (Line ) [288.0636,161.065] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [287.4336,180.385] (Line ) [293.1036,178.705] (Line ) [287.228,167.7994] (Line ) [281.0539,169.613] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [287.4336,180.385] (Line ) [293.1036,178.705] (Line ) [287.228,167.7994] (Line ) [281.0539,169.613] (Line ) fwd: T Outline fillColor: [0 0.794 0.794 0.794] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [284.9091,181.1059] (Line ) [278.3989,170.3959] (Line ) [244.3838,180.385] (Line ) [251.936,190.0177] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [284.9091,181.1059] (Line ) [278.3989,170.3959] (Line ) [244.3838,180.385] (Line ) [251.936,190.0177] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [250.0544,191.0975] (Line ) [242.2838,181.4349] (Line ) [235.3536,183.3249] (Line ) [243.3346,192.9874] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [250.0544,191.0975] (Line ) [242.2838,181.4349] (Line ) [235.3536,183.3249] (Line ) [243.3346,192.9874] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [287.0135,184.585] (Line ) [275.0436,187.7349] (Line ) [273.7836,186.265] (Line ) [285.9636,183.115] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [287.0135,184.585] (Line ) [275.0436,187.7349] (Line ) [273.7836,186.265] (Line ) [285.9636,183.115] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [272.6765,188.3578] (Line ) [261.5466,191.2978] (Line ) [259.8956,189.9403] (Line ) [271.4148,186.8775] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [272.6765,188.3578] (Line ) [261.5466,191.2978] (Line ) [259.8956,189.9403] (Line ) [271.4148,186.8775] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [2] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [299.1673,180.3112] (Line ) [298.9836,175.9749] (Line ) [290.0425,164.4949] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [2] arrows: 0 j: round e: T round w: 0.1999996 c: T [1 1.0] d: T F [299.1673,180.3112] (Line ) [298.9836,175.9749] (Line ) [290.0425,164.4949] (Line ) fwd: T Outline fillColor: [0 1.0 1.0 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [240.9816,148.6492] (Line ) [242.2415,144.2392] (Line ) [236.9915,139.8292] (Line ) [236.1516,145.4992] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [240.9816,148.6492] (Line ) [242.2415,144.2392] (Line ) [236.9915,139.8292] (Line ) [236.1516,145.4992] (Line ) fwd: T Outline fillColor: [0 1.0 1.0 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [240.9816,148.6492] (Line ) [233.0016,151.7992] (Line ) [228.3815,149.0692] (Line ) [236.1516,145.4992] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [240.9816,148.6492] (Line ) [233.0016,151.7992] (Line ) [228.3815,149.0692] (Line ) [236.1516,145.4992] (Line ) fwd: T Outline fillColor: [0 1.0 1.0 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [236.1516,145.4992] (Line ) [236.9915,139.8292] (Line ) [226.4915,145.7092] (Line ) [228.3815,149.0692] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [236.1516,145.4992] (Line ) [236.9915,139.8292] (Line ) [226.4915,145.7092] (Line ) [228.3815,149.0692] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [236.7956,149.7067] (Line ) [233.4309,151.0405] (Line ) [232.0906,150.2486] (Line ) [235.3946,148.7929] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [234.6516,148.3284] (Line ) [231.2867,149.6621] (Line ) [229.9464,148.8702] (Line ) [233.2504,147.4146] (Line ) fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [283.4682,178.7353] (Line ) [250.1911,187.792] fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [281.783,175.9632] (Line ) [248.7938,185.2149] fwd: T Outline fillColor: [] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.3999992 c: T [1 1.0] d: T F [280.0978,173.191] (Line ) [246.3488,182.8914] fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [204.1976,192.3731] (Line ) [239.3589,192.3731] fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [203.4499,149.125] (Line ) [228.476,149.125] fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [0.0 5.0 0.0 5.0 0.0 1.0 0.0] 0.0 -1.0 [462.25,394.75] (Arc [472.7917,389.6834] ) [475.75,381.25] (Line ) [475.75,358.0] fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [223.7672,192.625] (Line ) [223.7672,191.8773] (Line ) [230.4966,191.8773] (Line ) [230.4966,192.625] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [230.1227,192.2511] (Line ) [224.141,189.2602] (Line ) [225.6364,192.2511] (Line ) [224.141,195.242] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [210.6421,149.5] (Line ) [210.6421,148.7523] (Line ) [217.3716,148.7523] (Line ) [217.3716,149.5] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [216.9977,149.1261] (Line ) [211.016,146.1352] (Line ) [212.5114,149.1261] (Line ) [211.016,152.117] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (open) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [204.1976,225.3628] (Line ) [203.4499,225.3628] (Line ) [203.4499,218.6333] (Line ) [204.1976,218.6333] fwd: T Text T "IO Requests" xerox/pressfonts/helvetica [6.75 0.0 242.9076 0.0 6.75 404.8336][] F 1.0 props: ( F ) Text T "address" xerox/pressfonts/helvetica [6.75 0.0 416.0547 0.0 6.75 389.0836][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [217.6565,230.6938] (Line ) [196.5584,230.6938] fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [3.0 5.0] 0.0 0.0 [211.1834,402.9988] (Line ) [380.3125,403.375] fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [235.6018,340.1652] (Line ) [263.2675,340.1652] fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [259.1875,340.1652] (Line ) [253.2057,343.1561] (Line ) [254.7012,340.1652] (Line ) [253.2057,337.1743] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [238.75,340.1652] (Line ) [244.7317,343.1561] (Line ) [243.2363,340.1652] (Line ) [244.7317,337.1743] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.5,366.25] (Line ) [204.2477,366.25] (Line ) [204.2477,372.9795] (Line ) [203.5,372.9795] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [203.8738,366.6238] (Line ) [200.883,372.6056] (Line ) [203.8738,371.1102] (Line ) [206.8647,372.6056] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [352.5207,394.6987] (Line ) [358.5025,397.6896] (Line ) [357.0071,394.6987] (Line ) [358.5025,391.7078] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [326.8427,403.2036] (Line ) [320.8609,406.1945] (Line ) [322.3564,403.2036] (Line ) [320.8609,400.2127] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [313.5207,403.1362] (Line ) [319.5025,406.1271] (Line ) [318.0071,403.1362] (Line ) [319.5025,400.1453] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [196.1374,277.758] (Line ) [196.1374,271.0285] (Line ) [196.8851,271.0285] (Line ) [196.8851,277.758] (Line ) [196.1374,277.758] fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [196.5112,277.3841] (Line ) [199.5021,271.4023] (Line ) [196.5112,272.8978] (Line ) [193.5203,271.4023] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [196.8851,264.242] (Line ) [196.1374,264.242] (Line ) [196.1374,270.9715] (Line ) [196.8851,270.9715] (Line ) [196.8851,264.242] fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [196.5112,264.6159] (Line ) [199.5021,270.5977] (Line ) [196.5112,269.1022] (Line ) [193.5203,270.5977] (Line ) fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [0.0 5.0 0.0 5.0 0.0 1.0 0.0] 0.0 -1.0 [365.875,395.125] (Line ) [461.125,395.125] fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [261.8427,328.7661] (Line ) [255.8609,331.757] (Line ) [257.3564,328.7661] (Line ) [255.8609,325.7752] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [248.5207,328.6987] (Line ) [254.5025,331.6896] (Line ) [253.0071,328.6987] (Line ) [254.5025,325.7078] (Line ) fwd: T –Ô120.1182 mm topLeading 120.1182 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff•Bounds90.0 mm xmin 0.0 mm ymin 147.6306 mm xmax 117.296 mm ymax •Artwork Interpress• InterpressšVInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jĹŒ³ÄÞ!f ¢ ¨ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§ • ”­“ÄG'³Äa Ù™Ä"EfÄ2œŽÄa ÙÄG'³Ž¡¡ ¡™ x j kÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¡•¡”­“Ä”„ýÄk9L™Ä@œQŽÄzþOÄ”„ýŽÄk9L¡¡¡¡™ x j k¡”­“Ä”„ýÄ9¼;™Ä@œQŽÄù3øÄ”„ýŽÄ9¼;¡¡¡¡™ x j k¡”­“ÄI«@ÄL¸3™Ä#ÆŽÄ,cÄI«@ŽÄL¸3¡¡¡¡™ x j k¡”­“ÄI«@Äk9L™Ä#ÆŽÄzþOÄI«@ŽÄk9L¡¡¡¡™ x j k¡”­“Ä–\Ä*›"™Äcø=ŽÄk9LÄ–\ŽÄ*›"¡¡¡¡™ x j k¡”­“ÄI«@ÄòÙÄ#ÆŽÄh†GÄI«@ŽÄòá¡¡¡™ x j k¡”­“Ä”„ýÄL¸3™Ä@œQŽÄ,cÄ”„ýŽÄL¸3¡¡¡¡™ x j k¡”­“Ä”„ýÄ~ßr™Ä@œQŽÄYÿOÄ”„ýŽÄ~ßr¡¡¡¡™ x j k¡”­“Ä\‘YÄpt‰™Äª£ŽÄ9¼;Ä\‘YŽÄpt‰¡¡¡¡™ x j k¡”­“Ä^ß/ÄzþO™Äǧ€Ä‘/ŽÄzþOÄ'ž/ÄzþOÄ2«/ÄzþOÄ=¸/ÄzþO¡’ÄHÅ/ÄzþOÄSÒ/ÄzþOÄ^ß/ÄzþO¡’¡¡ ¡™ x j k¡”­“Ä _ÄzþO™Ä„çŽÄk9LÄ _ŽÄzþO¡¡ ¡™ x j k¡”­“Ä[ÇBÄk9L™Ä9~)ŽÄ­ä{Ä[ÇBŽÄk9L¡¡¡¡™ x j k¡”­“Ä[ÇBÄ*›"™Äw×VŽÄ­ä{Ä[ÇBŽÄ*›"¡¡¡¡™ x j k¡”­“Ä[ÇBÄ*›"™Ä–\ŽÄYhÄ[ÇBŽÄ*›"¡¡¡¡™ x j k¡”­“ıXÄk9L™Äcø=ŽÄ­ä{ıXŽÄk9L¡¡¡¡™ x j k¡”­“ÄIGÄ*›"™Äd OŽÄYhÄIGŽÄ*›"¡¡¡¡™ x j k¡”­“ÄIGÄ*›"™ÄDBŽÄ­ä{ÄIGŽÄ*›"¡¡¡¡™ x j k¡”­“ÄIGÄk9L™Ä\‘YŽÄ­ä{ÄIGŽÄk9L¡¡¡¡™ x j k¡”­“ÄSýÄk9L™Ä)Z=ŽÄ­ä{ÄSýŽÄk9L¡¡¡¡™ x j k¡”­“ÄSýÄ*›"™Äs/ŽÄ­ä{ÄSýŽÄ*›"¡¡¡¡™ x j k¡”­“Ä, 0Ä*›"™ÄcelŽÄk9LÄ, 0ŽÄ*›"¡¡¡¡™ x j k¡”­“ÄSýÄ*›"™Ä, 0ŽÄYhÄSýŽÄ*›"¡¡¡¡™ x j k¡”­“ÄÎR3Äk9L™ÄcelŽÄ­ä{ÄÎR3ŽÄk9L¡¡¡¡™ x j k¡”­“ÄŽrQÄk9L™Ät:ŽÄ­ä{ÄŽrQŽÄk9L¡¡¡¡™ x j k¡”­“ÄRa/Ä*›"™Ä]é/ŽÄYhÄRa/ŽÄ*›"¡¡¡¡™ x j k¡”­“Ä]é/Ä*›"™Ät:ŽÄk9LÄ]é/ŽÄ*›"¡¡¡¡™ x j k¡”­“ÄRa/Ä*›"™Ä#ŽÄ­ä{ÄRa/ŽÄ*›"¡¡¡¡™ x j k¡”­“ÄRa/Äk9L™Ä›EXŽÄ­ä{ÄRa/ŽÄk9L¡¡¡¡™ x j k¡”­“ÄX%/Äk9L™ÄZ)0ŽÄzþOÄX%/ŽÄk9L¡¡¡¡™ x j k¡”­“Ä3Ä9¼;™Äª£ŽÄz¯}Ä3ŽÄ9¼;¡¡¡¡™ x j k¡”­“Ä3Äpt‰™Ä\‘YŽÄz½•Ä3ŽÄpt‰¡¡¡¡™ x j k¡”­“Ä3Äpt‰™ÄT,cŽÄz¯}Ä3ŽÄpt‰¡¡¡¡™ x j k¡”­“Ä3Ä9¼;™Ätû‰ŽÄz¯}Ä3ŽÄ9¼;¡¡¡¡™ x j k¡”­“ ¡ ¡™ x j k¡”­“ ¡ ¡™ x j k¡”­“Ä”„ýÄ y_™Ä@œQŽÄ*›"Ä”„ýŽÄ y_¡¡¡¡™ x j k¡”­“ÄIGÄk9L™ÄI«@ŽÄ­ä{ÄIGŽÄk9L¡¡¡¡™ x j k¡”­“Äd OÄ*›"™Ä¤IŽÄk9LÄd OŽÄ*›"¡¡¡¡™ x j k¡”­“ĤIÄk9L™Ä­ä{Ä‹Ÿ‡ŽÄk9LĤIŽ¡¡ ¡™ x j k¡”­“Ä„çÄòÙÄ _ŽÄh†GÄ„çŽÄòá¡¡¡™ x j k¡”­“Ä„çÄL¸3™Ä _ŽÄ,cÄ„çŽÄL¸3¡¡¡¡™ x j k¡”­“ÄX%/ÄL¸3™ÄZ)0ŽÄ,cÄX%/ŽÄL¸3¡¡¡¡™ x j k¡”­“ÄX%/ÄòÙÄZ)0ŽÄh†GÄX%/ŽÄòá¡¡¡™ x j k¡”­“ÄòIÄv]~™ÄïF1ÄgYg—ÄòIÄô—Äyý—ÄgYg—ÄòIÄv]~—¡¡ ¡™ x j k¡”­“Äã ÅÄ¥%l™Ä@7ĆY—Äã ÅÄ‹\—ÄSHIĆY—Äã ÅÄ¥%l—¡¡ ¡™ x j k x jÄ ˆI ¤ÄS•.Äûå¿ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “¢•¢ —¡”­“  Š¡²“ÁMemory– k¡”­“Äã ÅĤÿr™ÄSHIÄ«Ç—Äã ÅÄË—Ä@7Ä«Ç—Äã ÅĤÿr—¡¡ ¡™ x j k¡”­“ÄòIÄ¥%l™Äyý—ĆY—ÄòIÄ‹\—ÄïF1ĆY—ÄòIÄ¥%l—¡¡ ¡™ x j k¡”­“ÄòIÄúMÜ™Äyý—Ä„œw—ÄòIÄ¥—ÄïF1Ä„œw—ÄòIÄúMÜ—¡¡ ¡™ x j k x jÄ ˆI ¤ÄSÝ\Ä;fC ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “¢•¢ —¡”­“  Š¡²“ÁPC– k x jÄ ˆI ¤Ä1Äûå¿ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “¢•¢ —¡”­“  Š¡²“Á Processor– k x jÄ ˆI ¤ÄM¶mÄûå¿ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “¢•¢ —¡”­“  Š¡²“ÁIOBridge– k x jÄ ˆI ¤ÄsEaÄûå¿ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “¢•¢ —¡”­“  Š¡²“Á Small Cache– k x jÄ ˆI ¤ÄÛÄ"1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “¢•¢ —¡”­“  Š¡²“Á PC/AT bus– k¡”­“ÄÌ|‡Ä¤ÿr™Äv½OÄ«Ç—ÄÌ|‡ÄË—Äc7AÄ«Ç—ÄÌ|‡Ä¤ÿr—¡¡ ¡™ x j k¡”­“ÄÌ|‡Ä¥%l™Äc7AĆY—ÄÌ|‡Ä‹\—Äv½OĆY—ÄÌ|‡Ä¥%l—¡¡ ¡™ x j k¡”­“Ä…MÄ¥%l™Ä„3FĆY—Ä…MÄ‹\—ÄWª/ĆY—Ä…MÄ¥%l—¡¡ ¡™ x j k¡”­“Ä…MĤÿr™ÄWª/Ä«Ç—Ä…MÄË—Ä„3FÄ«Ç—Ä…MĤÿr—¡¡ ¡™ x j kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨ÄCÄe-™ÄCÄjI]Ä©Äw]]ÄÓÄw]]¡’ÄŽÄs¡bÄq0WÄcÄø‰º¡“ÄõÄÓ»®Ä,vßÄ+¡“ĹŽ ¥ ¥ ¡ §¡ Ÿ¡º k¡”­“ ¡ ¡™ x j¢°“¢°“¢°“ k¡”­“Ä0YÄHz/™Ä¡¨sĦ@k—ÄzÎWÄHz/—Ä¡¨sĈ4Y—Ä0YÄHz/—¡¡ ¡™ x j k¡”­“Äbk5ÄXa=™ÄáŽÄ)AÄbk5ŽÄXa=¡¡ ¡™ x j kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä©Ä›™Ä+£¥¢¡  ¡º kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨ÄÅÄ ›™ÄNQ4Ä»wÄlcGÄ^™<Ä‘Ä ¡’ÄLû2ÄIF/ĵ±Äí:™Ä¯Ä+¡’£¥¢¡  ¡º kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä;MÄ,(1™Ä¤Ök£¥¢¡  ¡º kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä1<Ä*WH™ÄA)QÄß\ÄDýXÄ|pOÄAÄ\;;¡’Ä-|;Äb ?Ä5ÛFÄ”µ`Ä;MĤÖk¡’£¥¢¡  ¡º k x jÄ ˆI ¤Ä÷3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “¢•¢ —¡¡¨  Š¡²“ÁDynaBus– k ¡¨Ä—AÄS‘ΙÄš(ÕŽÄQ[™Äš(ÕÄpßÄ‹.ÕÄ9ÝwÄ&ÑAÄ9Ýw¡’Äó%Ä9ÝwÄ—AÄÖ/Ä—AÄÕ2¡’Ä—AÄX+Ä—AÄS‘ÎÄ—AÄS‘Ρ’¡¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä—AÄS‘ΙÄš(ÕŽÄQ[™Äš(ÕÄpßÄ‹.ÕÄ9ÝwÄ&ÑAÄ9Ýw¡’Äó%Ä9ÝwÄ—AÄÖ/Ä—AÄÕ2¡’Ä—AÄX+Ä—AÄS‘ÎÄ—AÄS‘Ρ’¡¸ k x j x j ¡¨Ä¢Ä ê ¦Ä&ÑAÄS‘Π¢ ¥ ¨Ÿ ™ ¡¡ ¡“ ŸŸ ¡“¡¡ ¡™ k¡¡¨ r j  Š ªÄ“AÄ$Á>ÄlÄl¡£¡¯“¢°“¢·“Ä—AÄS‘ΙÄ—AÄçÄ&ÑAÄçÄÙ J¡”Ä/ AÄçÄ/ AÄS‘ÎÄÙ J¡”Ä/ AÄ“zÓÄ&ÑAÄ“zÓÄÙ J¡”Ä—AÄ“zÓÄ—AÄS‘ÎÄÙ J¡”¡¸ k é k¡”­“Ä”„ýÄWv™Ä@œQŽÄ}e¤Ä”„ýŽÄWv¡¡ ¡™ x j kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä_ÄC™Äš(ÕŽ˜ k¡”­“ÄEZÄEÝo™ÄA!gÄRßoŽÄEÝoÄEZŽ¡¡ ¡™ x j k¡”­“ÄÄC™Ä~ƒ¤Ä#W7—Ä7ãIÄC—Ä~ƒ¤Ä"7—ÄÄC—¡¡ ¡™ x j kˆˆˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¢•¢” ç­“Ä}«kÄ''™Ä“ ÄW°q—ÄezqÄkÈ—Ä.)Ä—Ä}«kÄ''—¡¡¡¡™ x j k x jĆÏ?¯“¢°“¢·“¡¡¨Ä}«kÄ''™Ä“ ÄW°q—ÄezqÄkÈ—Ä.)Ä—Ä}«kÄ''—¡¸ kˆˆˆ£¡¢” ç­“Ä}«kÄ''™ÄŽåÈÄFä?ÄMc{—Ä.)Ä—Ä}«kÄ''—¡¡¡¡™ x j k x jĆÏ?¯“¢°“¢·“¡¡¨Ä}«kÄ''™ÄŽåÈÄFä?ÄMc{—Ä.)Ä—Ä}«kÄ''—¡¸ kˆˆˆ£¡¢” ç­“Ä.)Ä™ÄezqÄkÈ—Ä„Ž½ÄFä?ÄMc{—Ä.)Ä—¡¡¡¡™ x j k x jĆÏ?¯“¢°“¢·“¡¡¨Ä.)Ä™ÄezqÄkÈ—Ä„Ž½ÄFä?ÄMc{—Ä.)Ä—¡¸ k¡¡¨Ä~àqÄŒíÈ™ÄÜùÁÄa‹—Ä?ô9ÄצI—Ä·X§ÄÁw$—Ä~àqÄŒíÈ—¡¡¡¡™ x j k x jĆÏ?¯“¢°“¢·“¡¡¨Ä~àqÄŒíÈ™ÄÜùÁÄa‹—Ä?ô9ÄצI—Ä·X§ÄÁw$—Ä~àqÄŒíÈ—¡¸ kººº£¡¢” ç­“Ä > Ä<"U™ÄÁ“²Ä£õ—ÄRVÄŒíÈ—Ä{}ÄSàq—Ä > Ä<"U—¡¡¡¡™ x j k x jĆÏ?¯“¢°“¢·“¡¡¨Ä > Ä<"U™ÄÁ“²Ä£õ—ÄRVÄŒíÈ—Ä{}ÄSàq—Ä > Ä<"U—¡¸ k¡¡¨ÄYÝ\Ä*—™ÄF JÄïR—ÄKcRÄ©¸í—ÄùýÄ;ŽO—ÄYÝ\Ä*——¡¡¡¡™ x j k x jĆÏ?¯“¢°“¢·“¡¡¨ÄYÝ\Ä*—™ÄF JÄïR—ÄKcRÄ©¸í—ÄùýÄ;ŽO—ÄYÝ\Ä*——¡¸ k¡¡¨ÄR÷JÄiþ“™ÄXáAÄ<ÞS—ÄO†ÄU!u—Ä=p7ÄPÔq—ÄR÷JÄiþ“—¡¡¡¡™ x j k x jĆÏ?¯“¢°“¢·“¡¡¨ÄR÷JÄiþ“™ÄXáAÄ<ÞS—ÄO†ÄU!u—Ä=p7ÄPÔq—ÄR÷JÄiþ“—¡¸ k¡¡¨Ä$7"ÄEæ_™ÄL KÄ#/—ÄDCÄ1¶C—Ä!‡Ä#Å1—Ä$7"ÄEæ_—¡¡¡¡™ x j k x jĆÏ?¯“¢°“¢·“¡¡¨Ä$7"ÄEæ_™ÄL KÄ#/—ÄDCÄ1¶C—Ä!‡Ä#Å1—Ä$7"ÄEæ_—¡¸ k¡¡¨Ä3YÄ©¿ñ™ÄG>=ĤJï—Ä5@/Ä}ñÄ—Ä3YÄ©¿ñ—¡¡¡¡™ x j k x jĆžy¯“¢°“¢·“¡¡¨Ä3YÄ©¿ñ™ÄG>=ĤJï—Ä5@/Ä}ñÄ—Ä3YÄ©¿ñ—¡¸ kˆˆˆ£¡¢” ç­“Äf›mÄnè¿™Äú ĩ˜-—ÄlPuįáB—Ä—Ä_IjĪyã—¡¡ ¡™ x j k¡”­“ÄN+_Ä+™Ä?VmÄ}«”ŽÄ+ÄN+_Ž¡¡ ¡™ x j k¡”­“Äoá²Ä@©o™Äg }Ä%—ÄI XÄ@©o—Äg }Ä7Û^—Äoá²Ä@©o—¡¡ ¡™ x j k¡”­“ ¡ ¡™ x j k x jÄ ¤ÄpêwÄ Î ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “£•£ —¡¡¨  Š¡²“Á IO Requests– k x jÄ ¤ÄYc7ÄêêC ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “£•£ —¡¡¨  Š¡²“Áaddress– kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨ÄT,cÄ,(1™Ä;MŽ˜ kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä1<Ä*WH™ÄÅÄ ›—£¥¢¡  ¡º kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨ÄcelÄÖm™ÄIGŽ˜ k¡”­“Ä3ÄÖm™Ä‹vÄçæ­—ÄLœMÄÖm—Ä‹vÄm—Ä3ÄÖm—¡¡ ¡™ x j k¡”­“Ä»ÄÖm™Ä'2)Äçæ­—Ä4B7ÄÖm—Ä'2)Äm—Ä»ÄÖm—¡¡ ¡™ x j k¡”­“ėĹ™ÄSÆiŽÄGd1Ä—ŽÄ¹¡¡ ¡™ x j k¡”­“ÄRgÄ¥e™ÄIÃ^ÄgWG—ÄRgÄ«v—Äky…ÄgWG—ÄRgÄ¥e—¡¡ ¡™ x j k¡”­“ÄB0ÄpI™Ä®ÇÄ- —ÄÃ=ŒÄpI—Ä®ÇÄcuA—ÄB0ÄpI—¡¡ ¡™ x j k¡”­“Äq¡YÄU 6™Ä#sÄ9$—ÄmWÄU 6—Ä#sÄIz/—Äq¡YÄU 6—¡¡ ¡™ x j k¡”­“Ä”0yÄ"¥™Äø]ÇÄcò?—Ä­éŒÄ"¥—Äø]ÇÄ`é>—Ä”0yÄ"¥—¡¡ ¡™ x j k¡”­“ ¡ ¡™ x j k¡”­“Ä"‹-Ä•‡Š™Ä¸²íÄ\<W—Ä"‹-Ä]ÏX—Ä\û{Ä\<W—Ä"‹-Ä•‡Š—¡¡ ¡™ x j k¡”­“ ¡ ¡™ x j k¡”­“Ä"‹-ÄŽ¥Š™Ä¸²íÄ[öW—Ä"‹-Ä\X—Ä\û{Ä[öW—Ä"‹-ÄŽ¥Š—¡¡ ¡™ x j kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä oÄ Y™ÄiŽ ¥ ¥ ¡ §¡ Ÿ¡º k¡”­“Ä[YÄŸ?|™ÄrðsÄŠªk—ÄWvWÄŸ?|—ÄrðsÄqBY—Ä[YÄŸ?|—¡¡ ¡™ x j k¡”­“ÄuwyÄ]»I™ÄÅÖÇÄ%“—ÄŠ]ŒÄ]»I—ÄÅÖÇÄR³A—ÄuwyÄ]»I—¡¡ ¡™ x j k k k gšÏn3™3KšŸ Ït¯˜¸—— šœ ˜ S–Ô197.9083 mm topLeading 197.9083 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–:0.0 mm xmin 0.0 mm ymin 160.8667 mm xmax 195.0861 mm ymax – Interpress–¢|Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  hÉ¡£~L ¢ ¨ r jÄÄÿM ¢ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈÄ`¹ ¢ ¨Ä ¬o ¤ ¨ ‚ ¢ ¨"¾|´¡£¡¡¨ x jú £ÔÄ ¢ ¥ ¨Ÿ ¤¸ ¢ ¥ ¨ÄYe) ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á<44>– k x jú £œÄ ¢ ¥ ¨Ÿ ¤¸ ¢ ¥ ¨Äd ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁPBus– k¼<¤Ø¡š˜<Ȥ¡š”<¤Ø¡š0,¤¡š0Ì(¤¡š x j@à ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁTest– k x j¡Ÿ ¦8  ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDataOut– k x j¡Ÿ ¦@P ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁParityIn– k x j¡Ÿ ¦<€ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á HeaderCycleIn– k x j¡Ÿ ¦<  ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁHiPGrant– k x jŸ ¤”¬ ¢ ¥ ¨Ÿ ¤ü¸ ¢ ¥ ¨Ä2é½ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁINTR– k x jŸ¡ ¦ Ü ¢ ¥ ¨Ÿ¡ ¦   ¢ ¥ ¨Ä$àŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁIntOut– k x jŸ ¤œ„ ¢ ¥ ¨Ÿ ¤ ¸ ¢ ¥ ¨Ä ¤} ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDATA– k x jŸ ¤œÔ ¢ ¥ ¨Ÿ ¤<¸ ¢ ¥ ¨Ä³’ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁAddress– k x jŸ¡ ¦  ¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨ÄF÷o ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁA28-A24– k x jŸ¡ ¦ d ¢ ¥ ¨Ÿ¡ ¦`  ¢ ¥ ¨Äe} ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁA29nINTA– k x jŸ¡ ¦¤Œ ¢ ¥ ¨Ÿ¡ ¦T  ¢ ¥ ¨Ä#Àí ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁA30DTnR– k x jŸ¡ ¦ ´ ¢ ¥ ¨Ÿ¡ ¦P  ¢ ¥ ¨Ä7œ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁA31nDEN– k x jŸ ¤¤L ¢ ¥ ¨Ÿ ¤ü¸ ¢ ¥ ¨Ä/}3 ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnWR– k x jŸ ¤¤t ¢ ¥ ¨Ÿ ¤ì¸ ¢ ¥ ¨Ä(Æ1 ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnRD– k x jP  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnBHE– k x jŸ ¤¤ ¢ ¥ ¨Ÿ ¤8¸ ¢ ¥ ¨ÄŠP‡ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnReady– k x jPÔ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁBReq– k x jŸ¡ ¦¨, ¢ ¥ ¨Ÿ¡ ¦h  ¢ ¥ ¨Ä#Ãç ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnRDXnIOR– k x jŸ¡ ¦¨\ ¢ ¥ ¨Ÿ¡ ¦ˆ  ¢ ¥ ¨ÄD‰7 ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnWRXnIOW– k x j¡Ÿ ¦<° ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁOwnerIn– k x j¡Ÿ ¦<à ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSharedIn– k x jŸ ¤`¬ ¢ ¥ ¨Ÿ ¤à¸ ¢ ¥ ¨Ä+œ} ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á DynaBus <145>– k x jÈ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “à ¤ ” •  —ÁIOBridge– k डšp(䤡š¸˜¤¡š¸8¤¡š¸Ø¤¡š¸¨¤¡š¸x¤¡š¸H¤¡š x j@< ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDShiftCk– k x j@l ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDAddress– k x j@œ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDExecute– k x j@, ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á DSerialIn– k¸h¤¡š x j¡Ÿ ¦@¤ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDSelect– k0¤h¡šx<¤¡š|œà¤¡šxì䤡š¸è¤¡š x jŸ ¤Ö ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køÄĤ¡š¼Ä¤¡š x jú6 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køDĤ¡š¼D¤¡š x jŸ ¤F ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kø4Ĥ¡š¼4¤¡š x jú¦ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kø´Ä¤¡š x júÖ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køäĤ¡š¼´¤¡š¼ä¤¡š x jŸ ¤¶ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kø¤Ä¤¡š x jŸ ¤æ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køÔĤ¡š x jú £l ¢ ¥ ¨Ÿ ¤¸ ¢ ¥ ¨Ä"Ad ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁPCmd– k x jú £¬ ¢ ¥ ¨Ÿ ¤\¸ ¢ ¥ ¨Ä ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁPByteSel– k x jú £ $ ¢ ¥ ¨Ÿ ¤$¸ ¢ ¥ ¨Ä j«@ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁPFault– k x jú £Ì$ ¢ ¥ ¨Ÿ ¤@¸ ¢ ¥ ¨Ä'üå ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁPReject– k x jú £€$ ¢ ¥ ¨Ÿ ¤ì¸ ¢ ¥ ¨Ä,•é ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁPhB– k x jú £@$ ¢ ¥ ¨Ÿ ¤ì¸ ¢ ¥ ¨Ä1¯Z ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁPhA– k x jŸ ¤¤œ ¢ ¥ ¨Ÿ ¤L¸ ¢ ¥ ¨Ät} ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnMemCS– k x jŸ ¤¤Ä ¢ ¥ ¨Ÿ ¤¸ ¢ ¥ ¨Ä.ð ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnIOCS– k x jŸ ¤¬¼ ¢ ¥ ¨Ÿ ¤ ¸ ¢ ¥ ¨ÄC§ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnFault– k x jŸ ¤¤ ¢ ¥ ¨Ÿ ¤¸ ¢ ¥ ¨Ä-$ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁBAck– k x jŸ ¤¬\ ¢ ¥ ¨Ÿ ¤¸ ¢ ¥ ¨Ä$M ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁReset– k x jŸ ¤¬„ ¢ ¥ ¨Ÿ ¤¸ ¢ ¥ ¨ÄÌm?û ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁPCLK– kœd¤X¡š\d¤X¡šd¤X¡š¼d¤X¡štd¤X¡š4d¤X¡š´d¤X¡š x jŸ¡ ¦öÒ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÔàĤ¡š¸à¤¡š¸¤¡š x j¾¢ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼°Ä¤¡š x jú £~ˆ ¢ ¥ ¨Ÿ ¤¸¸ ¢ ¥ ¨ÄåOE ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k\|¤Ä¡šL“¢¢¡šN’¢¢¡šP‘¢¢¡šR¢¢¡šT¢¢¡šVŽ¢¢¡šX¢¢¡šZŒ¢¢¡š\‹¢¢¡š^Š¢¢¡š`‰¢¢¡šbˆ¢¢¡šd‡¢¢¡šf†¢¢¡šh…¢¢¡šj„¢¢¡šlƒ¢¢¡šn‚¢¢¡š¸P¤¡š¸ ¤¡š¸¤¡š x jŸ¡ ¦Ò ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é käàĤ¡š¸¸¤¡š¸¤¡š x j¾‚ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼Ä¤¡š x jŸ ¤&z ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é khĤ¡š x jŸ ¤&J ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k8Ĥ¡š x j¾* ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼8Ĥ¡š¸h¤¡š x j¾Z ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼hĤ¡š x jŸ ¤&z ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é khĤ¡š x jŸ ¤&R ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k@Ĥ¡š x j¾2 ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼@Ĥ¡š x jŸ ¤&* ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kĤ¡š x j¾  ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼Ä¤¡š x jŸ ¤&Ú ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kÈĤ¡š x j¾º ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼ÈĤ¡š¸È¤¡š x jŸ ¤üê ¢ ¥ ¨Ÿ ¤Ð¸ ¢ ¥ ¨ÄÉk$ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á24– käÈĤ¡šï¸¢¢¡šðº¢¢¡šñ¼¢¢¡šò¾¢¢¡šóÀ¢¢¡šô¢¢¡šõÄ¢¢¡šöÆ¢¢¡š÷È¢¢¡šøÊ¢¢¡šùÌ¢¢¡šú΢¢¡šûТ¢¡šüÒ¢¢¡šýÔ¢¢¡šþÖ¢¢¡šÿØ¢¢¡šÚ¢¢¡š x jŸ ¤üš ¢ ¥ ¨Ÿ ¤Ì¸ ¢ ¥ ¨Ä7øw ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á16– käxĤ¡šïh¢¢¡šðj¢¢¡šñl¢¢¡šòn¢¢¡šóp¢¢¡šôr¢¢¡šõt¢¢¡šöv¢¢¡š÷x¢¢¡šøz¢¢¡šù|¢¢¡šú~¢¢¡šû€¢¢¡šü‚¢¢¡šý„¢¢¡šþ†¢¢¡šÿˆ¢¢¡šŠ¢¢¡š x jŸ ¤&Š ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kxĤ¡š x j¾j ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼xĤ¡š¸x¤¡š x jŸ ¤ª ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kð˜Ä¤¡š x j¡Ÿ ¦ú £N® ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k\¬¤Ä¡š x jŸ¡ ¦ú £Ö ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k´¤Ä¡š x jF £¦Þ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k´¼¤Ä¡š x júF ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køTĤ¡š¼Œ¤¡š¼T¤¡š¼D¤¡š¼t¤¡š¼„¤¡š¼T¤¡š¼¤¡š¼”¤¡š¼¤¡š x jú £Ö ¢ ¥ ¨Ÿ ¤Ì¸ ¢ ¥ ¨Äo) ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á32– k´„¤Ä¡š¤›¢¢¡š¦š¢¢¡š¨™¢¢¡šª˜¢¢¡š¬—¢¢¡š®–¢¢¡š°•¢¢¡š²”¢¢¡š´“¢¢¡š¶’¢¢¡š¸‘¢¢¡šº¢¢¡š¼¢¢¡š¾Ž¢¢¡šÀ¢¢¡šÂŒ¢¢¡šÄ‹¢¢¡šÆŠ¢¢¡š x jŸ ¤¦ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kø”Ĥ¡š x jŸ ¤ž ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køŒÄ¤¡š x jòZ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kðhĤ¡š x jú ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køĤ¡š x jŸ ¤ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køĤ¡š x jŸ ¤† ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køtĤ¡š x jŸ ¤V ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køDĤ¡š x júv ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kø„Ĥ¡š x júF ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køTĤ¡š x júf ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køtĤ¡š x jú ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é køĤ¡š x jŸ ¤v ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kødĤ¡š x jŸ¡ ¦ú £ÎÖ ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼´¤Ä¡š x j¡Ÿ ¦ú £f® ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kt¬¤Ä¡š x j¡Ÿ ¦ú £&® ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k4¬¤Ä¡š x jú £Æf ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k´d¤Ä¡š x j¾j ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼xĤ¡š x jŸ ¤&Š ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kxĤ¡š¸@¤¡š x j¾ª ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼¸Ä¤¡š x j¾ú ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼Ä¤¡š x j¾’ ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼ Ä¤¡š x j¾B ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼PĤ¡š¸x¤¡š x j¾j ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼xĤ¡š x j¾ú ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼Ä¤¡š x jŸ ¤& ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kĤ¡š¸¤¡š¼¤¡š¼t¤¡š x jŸ ¤à– ¢ ¥ ¨Ÿ ¤´¸ ¢ ¥ ¨Ä ´= ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– kÈtĤ¡šÓd¢¢¡šÔf¢¢¡šÕh¢¢¡šÖj¢¢¡š×l¢¢¡šØn¢¢¡šÙp¢¢¡šÚr¢¢¡šÛt¢¢¡šÜv¢¢¡šÝx¢¢¡šÞz¢¢¡šß|¢¢¡šà~¢¢¡šá€¢¢¡šâ‚¢¢¡šã„¢¢¡šä†¢¢¡š x j¡Ÿ ¦ú £Ž® ¢ ¥ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kœ¬¤Ä¡š¸à¤¡š¸°¤¡š x jŸ¡ ¦&¢ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k°Ä¤¡š x j¾Z ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼hĤ¡š¸8¤¡š¸h¤¡š x jŸ ¤&ª ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k˜Ä¤¡š x j¾Š ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼˜Ä¤¡š x j¾ª ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼¸Ä¤¡š x jŸ ¤&Ê ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¸Ä¤¡š¸¤¡š¸¸¤¡š¸˜¤¡š¸x¤¡š x j¾  ¢ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k¼Ä¤¡š x jìú ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á5– kàĤ¡š÷*¢¢¡šö(¢¢¡šõ&¢¢¡šô$¢¢¡šó"¢¢¡šò ¢¢¡šñ¢¢¡šð¢¢¡šï¢¢¡šî¢¢¡ší¢¢¡šì¢¢¡šë¢¢¡šê¢¢¡šé¢¢¡šè ¢¢¡šç ¢¢¡šæ¢¢¡š¼d¤¡š x j¡Ÿ ¦<` ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁCkOut– k x jú £¾ˆ ¢ ¥ ¨Ÿ ¤¸¸ ¢ ¥ ¨ÄåOE ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– kœ|¤Ä¡šŒ“¢¢¡šŽ’¢¢¡š‘¢¢¡š’¢¢¡š”¢¢¡š–Ž¢¢¡š˜¢¢¡ššŒ¢¢¡šœ‹¢¢¡šžŠ¢¢¡š ‰¢¢¡š¢ˆ¢¢¡š¤‡¢¢¡š¦†¢¢¡š¨…¢¢¡šª„¢¢¡š¬ƒ¢¢¡š®‚¢¢¡š x j<€ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁClock– k x j¡Ÿ ¦<€ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á RequestOut– k¼¤¤¡š x j¡Ÿ ¦< ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSStopIn– k¼Ô¤¡š x j¡Ÿ ¦@p ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á LongGrant– k¼¤¡š x jŸ ¤ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é küĤ¡š x jŸ ¤ô& ¢ ¥ ¨Ÿ ¤Ð¸ ¢ ¥ ¨ÄÉk$ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á64– kÜĤ¡šçô¢¢¡šèö¢¢¡šéø¢¢¡šêú¢¢¡šëü¢¢¡šìþ¢¢¡ší¢¢¡šî¢¢¡šï¢¢¡šð¢¢¡šñ¢¢¡šò ¢¢¡šó ¢¢¡šô¢¢¡šõ¢¢¡šö¢¢¡š÷¢¢¡šø¢¢¡š x jŸ ¤ô6 ¢ ¥ ¨Ÿ ¤Ð¸ ¢ ¥ ¨ÄÉk$ ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á64– kÜĤ¡šç¢¢¡šè¢¢¡šé¢¢¡šê ¢¢¡šë ¢¢¡šì¢¢¡ší¢¢¡šî¢¢¡šï¢¢¡šð¢¢¡šñ¢¢¡šò¢¢¡šó¢¢¡šô¢¢¡šõ ¢¢¡šö"¢¢¡š÷$¢¢¡šø&¢¢¡š x j¡Ÿ ¦< ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDataIn– k x j¡Ÿ ¦<@ ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSpareIn– k x j¡Ÿ ¦<ð ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á SharedOut– k x j¡Ÿ ¦<À ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁOwnerOut– k x j¡Ÿ ¦< ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁHeaderCycleOut– k x j¡Ÿ ¦<  ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSStopOut– k x j¡Ÿ ¦<P ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSpareOut– k x j¡Ÿ ¦<Р¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁGrant– k x j¡Ÿ ¦<` ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á ParityOut– k x jŸ ¤2ú ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kèĤ¡šxì¤T¡šp¸è¤¡šx<䤡š|¬à¤¡š`¤ ¡šp(¤4¡š x jú £À$ ¢ ¥ ¨Ÿ ¤ ¸ ¢ ¥ ¨Ä9L} ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁPData– k x j@ü ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnDReset– k¸¤¡š x j@Ì ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnDFreeze– k x jŸ ¤J ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kð8Ĥ¡š x jŸ ¤ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kðĤ¡š x jŸ ¤ê ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kðØĤ¡š x jŸ ¤º ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kð¨Ä¤¡š x jŸ ¤Š ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kðxĤ¡š x jŸ ¤Z ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é kðHĤ¡š डš x j¡Ÿ ¦@t ¢ ¥ ¨¡Ÿ ¦ ¸ ¢ ¥ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á DSerialOut– k¸¤h¡š x jŸ ¤$| ¢ ¥ ¨Ÿ ¤l¸ ¢ ¥ ¨Ä˜ ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á Clock <2>– k x j ä ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁSlave– k x j¨¼ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á<8>– k x jŸ ¤ø$ ¢ ¥ ¨Ÿ ¤¸ ¢ ¥ ¨Ä „} ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁDBus– k x jpT ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁPC/AT– k x jxô ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á<63>– k x jx$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —ÁBus– k k é k é k gš£3™3—I pagebreak–centered lastLineFormatting˜ ˜ ˜Ršœ¹˜¹ •FitTRUE–èKInterpress/Xerox/3.0  f jˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç •   ˆ¤¡ ” ç¡•   ˆ¤¡ ” ç¢•? ë¤¡ ” ç£• " ¤¡ ” ç¤• Šº¤¡ ” ç¥• ™} ¤¡ ” ç¦• ì[-¤¡ ” ç§•ßf ¸¤¡ ” ç¨• Óâ<¤¡ ” ç©•Ž ƒé¤¡ ” çª•ŸÞ I¤¡ ” ç«•E5 º¤¡ ” ç¬•c  ¤¡ ” ç­•/ë T¤¡ ” ç®•EK Ï¤¡ ” ç¯•@ƒ þ¤¡ ” ç°•Â ‹ƒ¤¡ ” ç±•Î -‡¤¡ ” ç²•† 1¤¡ ” ç³•È Ë¤¡ ” ç´• ´íd¤¡ ” çµ•° R=¤¡ ” ç¶•H Ì¿¤¡ ” ç·•Û ¡¤¡ ” ç¸• ëظ¤¡ ” ç¹• Ëãˤ¡ ” çº•  ˆ ¤¡ ” ç»•  Ê ¤¡ ” ç¼•ÅXeroxÅ PressFontsÅ Helvetica-MIR£¡ “à ¤ ”½•ÅXeroxÅ PressFontsÅ Helvetica-MIR£¡ “À ¤ ”¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Äc ¤ ¨H ¸ ¢ ¨¡°“ ·“øˆd0¡£¡¥“ x j¢”­“¤¯“ˆÚ ¬Ú¡¹ ¯“ °“ŒØ ¨Ø¡¹ˆØˆÜ¡¹ˆÜ ¬Ü¡¹ ¬Ø ¬Ü¡¹¡°“¤¯“Š˜ŠØ¡¹ ¯“ °“ˆ˜Œ˜¡¹ˆ˜ˆØ¡¹ŒœŒØ¡¹Œ˜Œœ¡¹¡°“¤¯“"Ú"´Ú¡¹ ¯“ °“" Ø"°Ø¡¹"Ø"Ü¡¹"Ü"´Ü¡¹"´Ø"´Ü¡¹¡°“¤¯“"  " Ø¡¹ ¯“ °“" "  ¡¹" "Ø¡¹" ¤" Ø¡¹"  " ¤¡¹¡°“¤¯“ ª˜ ªØ¡¹ ¯“ °“ ¨˜ ¬˜¡¹ ¨˜ ¨œ¡¹ ¨œ ¨Ø¡¹ ¬  ¬Ø¡¹ ¬˜ ¬ ¡¹¡°“¬¯“ r rœ¡¹ ¯“ °“ l lœ¡¹ lœ xœ¡¹ x˜ xœ¡¹ x x˜¡¹¡°“¬¯“â ✡¹ ¯“ °“Ü Ü˜¡¹Ü˜Üœ¡¹Üœèœ¡¹è 蜡¹¡°“¤¯“X | ¡¹ ¯“ °“\x¡¹XX ¡¹è | ¡¹X Ü ¡¹|| ¡¹¡°“¤¯“ð ô ¡¹ ¯“ °“ô ð¡¹ðð ¡¹ x ô ¡¹ð l ¡¹ ô ô ¡¹¡°“¤¯“ ò¬ ò¡¹ ¯“ °“ ð¬ 𡹠ô¬ ô¡¹¡°“¤¯“ò¬ò¡¹ ¯“ °“ð¬ð¡¹ô¬ô¡¹¡°“¤¯“ðª ôª¡¹ ¯“ °“ð¨ d¨¡¹ p¨ ô¨¡¹ð¨ð¬¡¹ô¬ 𬡹 ô¨ ô¬¡¹¡°“¤¯“zœz¡¹ ¯“ °“xœx¡¹|¨|¡¹|œ|¨¡¹¡°“¤¯“ZœZ¡¹ ¯“ °“XœX¡¹\œ\¡¹¡°“¤¯“Xš|š¡¹ ¯“ °“X˜Ü˜¡¹è˜|˜¡¹X˜Xœ¡¹\œxœ¡¹|˜|œ¡¹¡°“¬¯“â,☡¹ ¯“ °“Ü,ܘ¡¹è,蘡¹¡°“¤¯“X*|*¡¹ ¯“ °“\(x(¡¹X(X,¡¹è,|,¡¹X,Ü,¡¹|(|,¡¹¡°“¤¯“x X ¡¹ ¯“ °“xX¡¹xx ¡¹x X ¡¹XX ¡¹¡°“¤¯“xêX꡹ ¯“ °“xèX衹xèx졹xìX졹XèX졹¡°“¤¯“xÊXÊ¡¹ ¯“ °“xÈXÈ¡¹xÈxÌ¡¹xÌXÌ¡¹XÈXÌ¡¹¡°“¤¯“xªXª¡¹ ¯“ °“x¨X¨¡¹x¨x¬¡¹x¬X¬¡¹X¨X¬¡¹¡°“¤¯“xŠXŠ¡¹ ¯“ °“xˆXˆ¡¹xˆxŒ¡¹xŒXŒ¡¹XˆXŒ¡¹¡°“¤¯“xJXJ¡¹ ¯“ °“xHXH¡¹xHxL¡¹xLXL¡¹XHXL¡¹¡°“¤¯“x*X*¡¹ ¯“ °“x(X(¡¹x(x,¡¹x,X,¡¹X(X,¡¹¡°“¤¯“x X ¡¹ ¯“ °“xX¡¹xx ¡¹x X ¡¹XX ¡¹¡°“¤¯“xêX꡹ ¯“ °“xèX衹xèx졹xìX졹XèX졹¡°“¤¯“xÊXÊ¡¹ ¯“ °“xÈXÈ¡¹xÈxÌ¡¹xÌXÌ¡¹XÈXÌ¡¹¡°“¤¯“xªXª¡¹ ¯“ °“x¨X¨¡¹x¨x¬¡¹x¬X¬¡¹X¨X¬¡¹¡°“¤¯“"² "²Ø¡¹ ¯“ °“"° "´ ¡¹"° "°¤¡¹"°¤"°Ø¡¹"´ "´Ø¡¹¡°“¬¯“"Zp"Z¤¡¹ ¯“ °“"Tp"T¨¡¹"T¨"T ¡¹"T "T˜¡¹"T˜"T ¡¹"T "T¤¡¹"T¤"`¤¡¹"` "`¤¡¹"`p"` ¡¹¡°“¬¯“"Tj$8j¡¹ ¯“ °“"`d$,d¡¹"Td"Tp¡¹"`p$8p¡¹$8d$8p¡¹¡°“¬¯“"ZÔ"Zd¡¹ ¯“ °“"TÔ"Td¡¹"`Ô"`d¡¹¡°“¤¯“!àÒ"äÒ¡¹ ¯“ °“!äÐ"àС¹!àÐ!àÔ¡¹"`Ô"äÔ¡¹!àÔ"TÔ¡¹"äÐ"äÔ¡¹¡°“¬¯“ jÐ j¨¡¹ ¯“ °“ dÐ d,¡¹ d, d˜¡¹ d˜ d¨¡¹ pÔ p¨¡¹ pÐ pÔ¡¹¡°“¬¯“ dÊ!Ê¡¹ ¯“ °“ pÄ! Ä¡¹ dÄ dС¹ pÐ!С¹!Ä!С¹¡°“¬¯“ jô jÄ¡¹ ¯“ °“ dô dÄ¡¹ pô pÄ¡¹¡°“¤¯“z”z(¡¹ ¯“ °“x”x¨¡¹x¨x¬¡¹x¬xÈ¡¹xÈxÌ¡¹xÌx衹xèx졹xìx¡¹xx ¡¹x x(¡¹x(x,¡¹x,xH¡¹xHxL¡¹xLxˆ¡¹xˆxŒ¡¹xŒx¨¡¹x¨x¬¡¹x¬xÈ¡¹xÈxÌ¡¹xÌx衹xèx졹xìx¡¹xx ¡¹x x(¡¹|ô|(¡¹|”|ô¡¹¡°“¤¯“Z”Z(¡¹ ¯“ °“X”X(¡¹\ \(¡¹\\ ¡¹\ì\¡¹\è\졹\Ì\衹\È\Ì¡¹\¬\È¡¹\¨\¬¡¹\Œ\¨¡¹\ˆ\Œ¡¹\L\ˆ¡¹\H\L¡¹\,\H¡¹\(\,¡¹\ \(¡¹\\ ¡¹\ì\¡¹\è\졹\Ì\衹\È\Ì¡¹\¬\È¡¹\¨\¬¡¹\”\¨¡¹¡°“¤¯“ðò ôò¡¹ ¯“ °“ôð ðð¡¹ðððô¡¹ pô ôô¡¹ðô dô¡¹ ôð ôô¡¹¡°“¤¯“ ò” ò𡹠¯“ °“ ð” ð𡹠ô” ô𡹡°“¤¯“ò”ò𡹠¯“ °“ð”ðð¡¹ô”ô𡹡°“¤¯“ð’ ô’¡¹ ¯“ °“ð d¡¹ p  ¡¹ ¤ ô¡¹ð𔡹ô” 𔡹 ô ô”¡¹¡°“¤¯“X’|’¡¹ ¯“ °“XÔ¡¹à|¡¹XX”¡¹\”x”¡¹||”¡¹¡°“¬¯“ j@ j¡¹ ¯“ °“ d@ d¡¹ p@ p¡¹¡°“¬¯“Ú@Ú¡¹ ¯“ °“Ô@Ô¡¹à@ࡹ¡°“¬¯“Ô: p:¡¹ ¯“ °“à4 p4¡¹Ô4Ô@¡¹à@ d@¡¹ p4 p@¡¹¡°“¬¯“ÚäÚ4¡¹ ¯“ °“ÔäÔ4¡¹àäà4¡¹¡°“¤¯“Pât⡹ ¯“ °“TàpࡹPàP䡹àät䡹PäÔ䡹tàt䡹¡°“¤¯“rtrࡹ ¯“ °“ptpࡹtttࡹ¡°“¤¯“RtRࡹ ¯“ °“PtPࡹTtTࡹ¡°“¤¯“Prtr¡¹ ¯“ °“PpŒp¡¹˜p4p¡¹@ptp¡¹PpPt¡¹Ttpt¡¹tptt¡¹¡°“¤¯“ ¢ð ¢¡¹ ¯“ °“  ð ¤𡹠 ð  p¡¹  p  䡹  ä  4¡¹  4  ¡¹ ¤ð ¤¡¹¡°“¤¯“"ât"âС¹ ¯“ °“"àt"àС¹"ät"äС¹¡°“¤¯“!ât!âС¹ ¯“ °“!àt!àС¹!ät!äС¹¡°“¤¯“!àr"är¡¹ ¯“ °“!àp!ôp¡¹"p"¼p¡¹"Èp"äp¡¹!àp!àt¡¹!ät"àt¡¹"äp"ät¡¹¡°“¬¯“$2è$2d¡¹ ¯“ °“$,è$,p¡¹$,p$,Ô¡¹$,Ô$,d¡¹$8è$8d¡¹¡°“¬¯“"Âè"Âp¡¹ ¯“ °“"¼è"¼p¡¹"Èè"Èp¡¹¡°“¬¯“!úè!úp¡¹ ¯“ °“!ôè!ôp¡¹"è"p¡¹¡°“¬¯“!ôâ$8⡹ ¯“ °“"Ü"¼Ü¡¹"ÈÜ#tÜ¡¹#€Ü$,Ü¡¹!ôÜ!ô衹"Èè$,衹"è"¼衹$8Ü$8衹¡°“¬¯“!ú”!úÜ¡¹ ¯“ °“!ô”!ôÜ¡¹"”"Ü¡¹¡°“¤¯“!x’"|’¡¹ ¯“ °“!|"x¡¹!x!x”¡¹"”"|”¡¹!x”!ô”¡¹"|"|”¡¹¡°“¤¯“"z4"z¡¹ ¯“ °“"x4"x¡¹"|4"|¡¹¡°“¤¯“!z4!z¡¹ ¯“ °“!x4!x¡¹!|4!|¡¹¡°“¤¯“!x2"|2¡¹ ¯“ °“!x0!ô0¡¹"0"40¡¹"@0"|0¡¹!x0!x4¡¹!|4"x4¡¹"|0"|4¡¹¡°“¬¯“!ì!Ä¡¹ ¯“ °“! ì!졹! ì! ð¡¹! ð! ¡¹! ! ô¡¹! ô! Ä¡¹!p!Ä¡¹!”!p¡¹!0!”¡¹!!0¡¹!ì!¡¹¡°“¬¯“:ì:p¡¹ ¯“ °“4ì@졹4ì4p¡¹@ð@p¡¹@ì@𡹡°“¬¯“’ì’p¡¹ ¯“ °“Œì˜졹ŒìŒ¡¹ŒŒp¡¹˜ì˜p¡¹¡°“¤¯“!‚Ì!‚¡¹ ¯“ °“!€Ì!€졹!€ì!€¡¹!€!„¡¹!„Ì!„¡¹¡°“¤¯“Ì¡¹ ¯“ °“Ì¡¹¡¹ì¡¹Ì졹¡°“¬¯“#z”#zÜ¡¹ ¯“ °“#t”#tÜ¡¹#€”#€Ü¡¹¡°“¤¯“#’$’¡¹ ¯“ °“#$¡¹##”¡¹#€”$”¡¹#”#t”¡¹$$”¡¹¡°“¤¯“$4$¡¹ ¯“ °“$4$¡¹$4$¡¹¡°“¤¯“#4#¡¹ ¯“ °“#4#¡¹#4#¡¹¡°“¤¯“#2$2¡¹ ¯“ °“#0#l0¡¹#x0$0¡¹#0#4¡¹#4$4¡¹$0$4¡¹¡°“¬¯“#rØ#r0¡¹ ¯“ °“#lØ#l0¡¹#xØ#x0¡¹¡°“¬¯“"ÂØ"ÂÜ¡¹ ¯“ °“"¼Ø"¼0¡¹"¼0"¼”¡¹"¼”"¼Ü¡¹"È”"ÈÜ¡¹"È0"È”¡¹"ÈØ"È0¡¹¡°“¬¯“"¼Ò#xÒ¡¹ ¯“ °“"ÈÌ#xÌ¡¹"¼Ì"¼Ø¡¹"ÈØ#lØ¡¹#xÌ#xØ¡¹¡°“¬¯“"¨"ÂÌ¡¹ ¯“ °“"¼¨"¼Ì¡¹"Ȩ"ÈÌ¡¹¡°“¬¯“":¨":0¡¹ ¯“ °“"4¨"40¡¹"@¨"@0¡¹¡°“¬¯“"4¢"È¢¡¹ ¯“ °“"4œ"¼œ¡¹"4œ"4¨¡¹"@¨"¼¨¡¹"Èœ"Ȩ¡¹¡°“¬¯“$2ì$2Ü¡¹ ¯“ °“$,ì$8졹$,ì$,Ì¡¹$,Ì$,0¡¹$,0$,”¡¹$,”$,Ü¡¹$8$8Ü¡¹$8ì$8¡¹¡°“¬¯“"Âì"Âœ¡¹ ¯“ °“"¼ì"È졹"¼ì"¼œ¡¹"Èì"Èœ¡¹¡°“¬¯“!úì!ú0¡¹ ¯“ °“!ôì"졹!ôì!ô¡¹!ô!ô0¡¹"œ"0¡¹"ì"œ¡¹¡°“¤¯“$ªÌ$ª¡¹ ¯“ °“$¨Ì$¨졹$¨ì$¨¡¹$¨$¬¡¹$¬Ì$¬¡¹¡°“¤¯“!ÂÌ!¡¹ ¯“ °“!ÀÌ!À¡¹!À!Ä¡¹!Äì!Ä¡¹!ÄÌ!Ä졹¡°“¤¯“!ÀÊ$¬Ê¡¹ ¯“ °“!ÀÈ$¬È¡¹!ÀÈ!ÀÌ¡¹!ÄÌ$¨Ì¡¹$¬È$¬Ì¡¹¡°“¤¯“Ê!„Ê¡¹ ¯“ °“È!„È¡¹ÈÌ¡¹Ì!€Ì¡¹!„È!„Ì¡¹¡°“ k¢°“¢·“ x j¢”­“¿ — ´ ¢ ¨  ŠÁ Generation–Â ¢ ¨"0ì ¢ ¨  ŠÁPBus–ÂípT ¢ ¨¡Ÿ ¦ú £":" ¢ ¥ ¥ ¨ ¯“ À™àà—ÀÀ—à —¡¡ ¡™¡Ÿ ¦ú £Âíf ¢ ¥ ¥ ¨F £":¢ ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™ú £¢Âíf ¢ ¥ ¨Ÿ¡ ¦ú £#šÚ ¢ ¥ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦ú £Ú#š ¢ ¥ ¥ ¨Ÿ¡ ¦#: ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦#: ~ ¢ ¥ ¨ú £$R  ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™F £ 6$R ¢ ¥ ¨Ÿ¡ ¦#J ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦#ö ¢ ¥ ¨Ÿ¡ ¦ú £"j ¢ ¥ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦ú £j" ¢ ¥ ¥ ¨ú £2 ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™F £ ¢ ¥ ¨F £ J¢ ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™ú £¢ÂïV ¢ ¥ ¨ú £úJ ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™F £ öú ¢ ¥ ¨(ì ¢ ¨  ŠÁDynaBus–T ¢ ¨"¸¤ ¢ ¨  ŠÁPC/AT Bus Slave–Âìè œ ¢ ¨#@< ¢ ¨  ŠÁIORegs–Âì`  ¢ ¨` ¢ ¨  ŠÁOut–Âð@ < ¢ ¨¸\ ¢ ¨  ŠÁFIFO–ˆä ¢ ¨ ¼ ¢ ¨  ŠÁPC/AT–  „ ¢ ¨ 8ä ¢ ¨  ŠÁReply–Âïh\ ¢ ¨ Ì ¢ ¨  ŠÁDynaBus–Âï€ t ¢ ¨ (œ ¢ ¨  ŠÁIORegs–Âïx ¤ ¢ ¨!¨l ¢ ¨  ŠÁAddress–Âíø Ô ¢ ¨!¨< ¢ ¨  ŠÁMapping–Âíø  ¢ ¨`< ¢ ¨  ŠÁData–Âð@  ¢ ¨"0¬ ¢ ¨  ŠÁPBus–Âíp” ¢ ¨"| ¢ ¨  ŠÁControl–ÂíˆÄ ¢ ¨(œ ¢ ¨  ŠÁPC/AT Bus Master– ¤ ¢ ¨4 ¢ ¨  ŠÁAddr–0  ¢ ¨ ¢ ¨  ŠÁOut–0 < ¢ ¨ú £Z  ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™F £ 6Z ¢ ¥ ¨!8< ¢ ¨  ŠÁData–Âîh  ¢ ¨!8 ¢ ¨  ŠÁIn–Âîh < ¢ ¨ú £²  ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™F £ 6² ¢ ¥ ¨F £ JŠ ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™ú £ŠÂïV ¢ ¥ ¨#@l ¢ ¨  ŠÁPC/AT–Âì` Ô ¢ ¨Ÿ¡ ¦ú £!2J ¢ ¥ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦ú £J!2 ¢ ¥ ¥ ¨"< ¢ ¨  ŠÁAddress–Âí  ¢ ¨" ¢ ¨  ŠÁIn–Âíˆ < ¢ ¨"è< ¢ ¨  ŠÁData–Âì¸  ¢ ¨"è ¢ ¨  ŠÁIn–Âì¸ < ¢ ¨Ÿ¡ ¦ú £"J ¢ ¥ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦ú £J" ¢ ¥ ¥ ¨Ÿ¡ ¦ú £"zB ¢ ¥ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦ú £B"z ¢ ¥ ¥ ¨$P< ¢ ¨  ŠÁData–ÂëP  ¢ ¨$P ¢ ¨  ŠÁOut–ÂëP < ¢ ¨Ÿ¡ ¦ú £"âJ ¢ ¥ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦ú £J"â ¢ ¥ ¥ ¨Ÿ¡ ¦ú £"Z* ¢ ¥ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦ú £*"Z ¢ ¥ ¥ ¨Ÿ¡ ¦ú £"âj ¢ ¥ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦ú £j"â ¢ ¥ ¥ ¨Ÿ¡ ¦ú £#’* ¢ ¥ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™Ÿ¡ ¦ú £*#’ ¢ ¥ ¥ ¨ú £Z ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™F £æ ¢ ¥ ¨F £ Rš ¢ ¥ ¨ À™àà—ÀÀ—à —¡¡ ¡™ú £šÂïN ¢ ¥ ¨F £ ’r ¢ ¥ ¨ °™ÀÀ—¸°—À —¡¡ ¡™ú £rÂï ¢ ¥ ¨ Pü ¢ ¨  ŠÁIntr–ÂïP D ¢ ¨ˆ´ ¢ ¨  ŠÁ Recognition–¸Œ ¢ ¨˜ä ¢ ¨  ŠÁCommand–¨\ ¢ ¨ˆŒ ¢ ¨  ŠÁ Master Ctl–¸ ´ ¢ ¨ k k g– Interpress–810.0 mm xmin 10.0 mm ymin 205.9 mm xmax 171.0633 mm ymax–†0.8221709 the lineLength .mul 2.811678 .add topLeading 0.8221709 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeadingšœ;™;IartworkCaptionšŸ œ)™2T–centered lastLineFormatting™—— ˜RšœÜ˜ÜRšœÐŸœŸ˜ðR˜œR˜Ó— ˜Ršœà˜àRšœ³˜³Ihead3˜ Ršœá˜áV˜Ršœã˜ãIitemšœ˜Wšœp˜pWšœ˜Wšœ¤˜¤T–centered lastLineFormatting˜—— ˜ ˜Ršœù˜ùInotešœ˜R˜S–Â…Gargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/byteOrdering.gargoyle at March 10, 1988 4:48:55 pm PST Produced by version 8802.04 Scripts: ///Users/bland.pa/gargoyle/bland880310-14-50-01.script, ///Users/bland.pa/gargoyle/bland880310-15-00-33.script, ///Users/bland.pa/gargoyle/bland880310-15-02-37.script Slope: [T 0.0] [F 30.0] [F 45.0] [F 60.0] [T 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 4.0 4] [F 2.0 2] [F 1.0 1] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.125 1/8] [F 0.1111111 1/9] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 0.0 0] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: T GravityExtent: 0.3472222 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [10.0 10.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: T [292.5505,433.5741] Entities: [99]: Text T "appears on data line as" Xerox/PressFonts/Helvetica [9.564138 0.0 113.223 0.0 9.564138 487.3724][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [301.3176,449.1158] (Line ) [506.1496,449.1158] (Line ) [506.1496,449.9128] (Line ) [301.3176,449.9128] (Line ) fwd: T Text T "d" Xerox/PressFonts/HIPPO [12.75218 0.0 451.1558 0.0 12.75218 427.5965][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [292.1101,433.8999] (Line ) [285.734,437.088] (Line ) [287.328,433.8999] (Line ) [285.734,430.7118] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [285.3774,433.5741] (Line ) [292.5505,433.5741] (Line ) [292.5505,434.3712] (Line ) [285.3774,434.3712] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (open) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [295.3942,397.8221] (Line ) [295.3942,398.6192] (Line ) [199.7529,398.6192] (Line ) [206.927,398.6192] fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [301.3176,419.2279] (Line ) [302.1146,419.2279] (Line ) [302.1146,449.1158] (Line ) [301.3176,449.1158] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [505.3525,419.2279] (Line ) [506.1496,419.2279] (Line ) [506.1496,449.1158] (Line ) [505.3525,449.1158] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [301.3176,419.2279] (Line ) [506.1496,419.2279] (Line ) [506.1496,420.0249] (Line ) [301.3176,420.0249] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [400.147,420.822] (Line ) [400.944,420.822] (Line ) [400.944,449.1158] (Line ) [400.147,449.1158] (Line ) fwd: T Text T "g" Xerox/PressFonts/HIPPO [12.75218 0.0 349.1383 0.0 12.75218 430.7846][1 1.0] F 1.0 props: ( F ) Text T "15" Xerox/PressFonts/Helvetica [9.564138 0.0 301.3176 0.0 9.564138 411.6563][1 1.0] F 1.0 props: ( F ) Text T "8" Xerox/PressFonts/Helvetica [9.564138 0.0 393.7709 0.0 9.564138 411.6563][1 1.0] F 1.0 props: ( F ) Text T "7" Xerox/PressFonts/Helvetica [9.564138 0.0 403.3351 0.0 9.564138 411.6563][1 1.0] F 1.0 props: ( F ) Text T "0" Xerox/PressFonts/Helvetica [9.564138 0.0 498.9765 0.0 9.564138 411.6563][1 1.0] F 1.0 props: ( F ) Text T "byte no:" Xerox/PressFonts/Helvetica [9.564138 0.0 259.873 0.0 9.564138 453.1009][1 1.0] F 1.0 props: ( F ) Text T "1" Xerox/PressFonts/Helvetica [9.564138 0.0 301.3176 0.0 9.564138 453.1009][1 1.0] F 1.0 props: ( F ) Text T "0" Xerox/PressFonts/Helvetica [9.564138 0.0 400.147 0.0 9.564138 453.1009][1 1.0] F 1.0 props: ( F ) Text T "16-bit quantity" Xerox/PressFonts/Helvetica [9.564138 0.0 113.223 0.0 9.564138 477.8083][1 1.0] F 1.0 props: ( F ) Text T "most significant byte" Xerox/PressFonts/Helvetica [9.564138 0.0 411.3052 0.0 9.564138 592.5779][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [103.6588,587.3972] (Line ) [506.1496,587.3972] (Line ) [506.1496,588.1943] (Line ) [103.6588,588.1943] (Line ) fwd: T Text T "most significant bit" Xerox/PressFonts/Helvetica [9.564138 0.0 232.7746 0.0 9.564138 550.3363][1 1.0] F 1.0 props: ( F ) Text T "leasts significant bit" Xerox/PressFonts/Helvetica [9.564138 0.0 98.87671 0.0 9.564138 549.1408][1 1.0] F 1.0 props: ( F ) Text T "a" Xerox/PressFonts/HIPPO [12.75218 0.0 455.9378 0.0 12.75218 606.5255][1 1.0] F 1.0 props: ( F ) Text T "b" Xerox/PressFonts/HIPPO [12.75218 0.0 353.9204 0.0 12.75218 606.5255][1 1.0] F 1.0 props: ( F ) Text T "g" Xerox/PressFonts/HIPPO [12.75218 0.0 251.9029 0.0 12.75218 608.1196][1 1.0] F 1.0 props: ( F ) Text T "d" Xerox/PressFonts/HIPPO [12.75218 0.0 153.0735 0.0 12.75218 604.9315][1 1.0] F 1.0 props: ( F ) Text T "of byte" Xerox/PressFonts/Helvetica [9.564138 0.0 98.87671 0.0 9.564138 541.5691][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [198.5031,573.0511] (Line ) [197.7061,573.0511] fwd: T Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [223.2105,553.9229] (Line ) [223.2105,554.7198] fwd: T Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [226.5101,554.7029] (Line ) [220.134,557.891] (Line ) [221.728,554.7029] (Line ) [220.134,551.5148] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [220.0225,553.9229] (Line ) [227.1956,553.9229] (Line ) [227.1956,554.7198] (Line ) [220.0225,554.7198] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [105.2528,569.863] (Line ) [106.0498,569.863] (Line ) [106.0498,576.239] (Line ) [105.2528,576.239] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [105.7221,563.5148] (Line ) [102.534,569.891] (Line ) [105.7221,568.2969] (Line ) [108.9101,569.891] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [105.2528,563.487] (Line ) [106.0498,563.487] (Line ) [106.0498,570.66] (Line ) [105.2528,570.66] (Line ) fwd: T Text T "byte no:" Xerox/PressFonts/Helvetica [9.564138 0.0 60.62016 0.0 9.564138 621.2703][1 1.0] F 1.0 props: ( F ) Text T "1" Xerox/PressFonts/Helvetica [9.564138 0.0 207.2703 0.0 9.564138 621.2703][1 1.0] F 1.0 props: ( F ) Text T "0" Xerox/PressFonts/Helvetica [9.564138 0.0 102.0648 0.0 9.564138 621.2703][1 1.0] F 1.0 props: ( F ) Text T "2" Xerox/PressFonts/Helvetica [9.564138 0.0 309.2877 0.0 9.564138 621.2703][1 1.0] F 1.0 props: ( F ) Text T "3" Xerox/PressFonts/Helvetica [9.564138 0.0 411.3052 0.0 9.564138 621.2703][1 1.0] F 1.0 props: ( F ) Text T "0" Xerox/PressFonts/Helvetica [9.564138 0.0 401.741 0.0 9.564138 579.8257][1 1.0] F 1.0 props: ( F ) Text T "bit no:" Xerox/PressFonts/Helvetica [9.564138 0.0 60.62016 0.0 9.564138 581.0212][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [102.0648,617.6837] (Line ) [505.3525,617.6837] (Line ) [505.3525,618.4807] (Line ) [102.0648,618.4807] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [102.0648,587.3972] (Line ) [102.8618,587.3972] (Line ) [102.8618,617.6837] (Line ) [102.0648,617.6837] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [505.3525,587.3972] (Line ) [506.1496,587.3972] (Line ) [506.1496,617.6837] (Line ) [505.3525,617.6837] (Line ) fwd: T Text T "0" Xerox/PressFonts/Helvetica [9.564138 0.0 195.331 0.0 9.564138 579.8257][1 1.0] F 1.0 props: ( F ) Text T "7" Xerox/PressFonts/Helvetica [9.564138 0.0 103.061 0.0 9.564138 579.8257][1 1.0] F 1.0 props: ( F ) Text T "7" Xerox/PressFonts/Helvetica [9.564138 0.0 207.2703 0.0 9.564138 579.8257][1 1.0] F 1.0 props: ( F ) Text T "0" Xerox/PressFonts/Helvetica [9.564138 0.0 296.5355 0.0 9.564138 579.8257][1 1.0] F 1.0 props: ( F ) Text T "7" Xerox/PressFonts/Helvetica [9.564138 0.0 309.2877 0.0 9.564138 579.8257][1 1.0] F 1.0 props: ( F ) Text T "7" Xerox/PressFonts/Helvetica [9.564138 0.0 411.3052 0.0 9.564138 579.8257][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [202.4882,587.3972] (Line ) [203.2852,587.3972] (Line ) [203.2852,617.6837] (Line ) [202.4882,617.6837] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [306.0997,587.3972] (Line ) [306.8967,587.3972] (Line ) [306.8967,617.6837] (Line ) [306.0997,617.6837] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [408.1172,588.9913] (Line ) [408.9141,588.9913] (Line ) [408.9141,617.6837] (Line ) [408.1172,617.6837] (Line ) fwd: T Text T "of byte" Xerox/PressFonts/Helvetica [9.564138 0.0 232.7746 0.0 9.564138 541.5691][1 1.0] F 1.0 props: ( F ) Text T "least significant byte" Xerox/PressFonts/Helvetica [9.564138 0.0 105.2528 0.0 9.564138 592.5779][1 1.0] F 1.0 props: ( F ) Text T "0" Xerox/PressFonts/Helvetica [9.564138 0.0 497.3824 0.0 9.564138 578.6301][1 1.0] F 1.0 props: ( F ) Text T "PC/AT Memory" Xerox/PressFonts/Helvetica [12.75218 0.0 251.9029 0.0 12.75218 647.9702][1 1.0] F 1.0 props: ( F ) Text T "PC/AT Bus" Xerox/PressFonts/Helvetica [12.75218 0.0 361.8905 0.0 12.75218 471.8307][1 1.0] F 1.0 props: ( F ) Text T "least significant byte" Xerox/PressFonts/Helvetica [9.564138 0.0 408.522 0.0 9.564138 242.102][1 1.0] F 1.0 props: ( F ) Text T "most significant byte" Xerox/PressFonts/Helvetica [9.564138 0.0 102.4697 0.0 9.564138 242.102][1 1.0] F 1.0 props: ( F ) Text T "least significant bit" Xerox/PressFonts/Helvetica [9.564138 0.0 421.2742 0.0 9.564138 200.6574][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [405.334,238.5155] (Line ) [406.131,238.5155] (Line ) [406.131,267.2079] (Line ) [405.334,267.2079] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [303.3165,236.9215] (Line ) [304.1135,236.9215] (Line ) [304.1135,267.2079] (Line ) [303.3165,267.2079] (Line ) fwd: T Text T "DynaBus" Xerox/PressFonts/Helvetica [12.75218 0.0 271.4361 0.0 12.75218 297.4943][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [102.1389,210.1599] (Line ) [98.95085,216.536] (Line ) [102.1389,214.9419] (Line ) [105.327,216.536] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [101.6727,209.823] (Line ) [102.4697,209.823] (Line ) [102.4697,216.9962] (Line ) [101.6727,216.9962] (Line ) fwd: T Text T "3" Xerox/PressFonts/Helvetica [9.564138 0.0 408.522 0.0 9.564138 270.7944][1 1.0] F 1.0 props: ( F ) Text T "2" Xerox/PressFonts/Helvetica [9.564138 0.0 306.5046 0.0 9.564138 270.7944][1 1.0] F 1.0 props: ( F ) Text T "0" Xerox/PressFonts/Helvetica [9.564138 0.0 99.28163 0.0 9.564138 270.7944][1 1.0] F 1.0 props: ( F ) Text T "24" Xerox/PressFonts/Helvetica [9.564138 0.0 408.522 0.0 9.564138 226.1618][1 1.0] F 1.0 props: ( F ) Text T "16" Xerox/PressFonts/Helvetica [9.564138 0.0 306.5046 0.0 9.564138 226.1618][1 1.0] F 1.0 props: ( F ) Text T "8" Xerox/PressFonts/Helvetica [9.564138 0.0 204.4871 0.0 9.564138 226.1618][1 1.0] F 1.0 props: ( F ) Text T "0" Xerox/PressFonts/Helvetica [9.564138 0.0 99.28163 0.0 9.564138 226.1618][1 1.0] F 1.0 props: ( F ) Text T "31" Xerox/PressFonts/Helvetica [9.564138 0.0 496.1933 0.0 9.564138 228.1543][1 1.0] F 1.0 props: ( F ) Text T "23" Xerox/PressFonts/Helvetica [9.564138 0.0 392.5819 0.0 9.564138 226.1618][1 1.0] F 1.0 props: ( F ) Text T "15" Xerox/PressFonts/Helvetica [9.564138 0.0 287.3763 0.0 9.564138 226.1618][1 1.0] F 1.0 props: ( F ) Text T "7" Xerox/PressFonts/Helvetica [9.564138 0.0 191.7349 0.0 9.564138 226.1618][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [99.28163,236.9215] (Line ) [100.0786,236.9215] (Line ) [100.0786,267.2079] (Line ) [99.28163,267.2079] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [507.3515,236.9215] (Line ) [508.1485,236.9215] (Line ) [508.1485,267.2079] (Line ) [507.3515,267.2079] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [199.705,236.9215] (Line ) [200.5021,236.9215] (Line ) [200.5021,267.2079] (Line ) [199.705,267.2079] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [99.28163,236.9215] (Line ) [508.9455,236.9215] (Line ) [508.9455,237.7185] (Line ) [99.28163,237.7185] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [99.28163,267.2079] (Line ) [507.3515,267.2079] (Line ) [507.3515,268.0049] (Line ) [99.28163,268.0049] (Line ) fwd: T Text T "1" Xerox/PressFonts/Helvetica [9.564138 0.0 204.4871 0.0 9.564138 270.7944][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [101.6727,216.1991] (Line ) [102.4697,216.1991] (Line ) [102.4697,222.5753] (Line ) [101.6727,222.5753] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [502.5694,216.9962] (Line ) [503.3664,216.9962] (Line ) [503.3664,223.3723] (Line ) [502.5694,223.3723] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [502.9389,210.9599] (Line ) [499.7509,217.336] (Line ) [502.9389,215.7419] (Line ) [506.127,217.336] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [502.5694,210.6201] (Line ) [503.3664,210.6201] (Line ) [503.3664,217.7932] (Line ) [502.5694,217.7932] (Line ) fwd: T Text T "byte no:" Xerox/PressFonts/Helvetica [9.564138 0.0 57.837 0.0 9.564138 270.7944][1 1.0] F 1.0 props: ( F ) Text T "bit no:" Xerox/PressFonts/Helvetica [9.564138 0.0 57.837 0.0 9.564138 227.3573][1 1.0] F 1.0 props: ( F ) Text T "most significant bit" Xerox/PressFonts/Helvetica [9.564138 0.0 96.89057 0.0 9.564138 200.6574][1 1.0] F 1.0 props: ( F ) Text T "of word" Xerox/PressFonts/Helvetica [9.564138 0.0 99.28163 0.0 9.564138 191.0933][1 1.0] F 1.0 props: ( F ) Text T "of word" Xerox/PressFonts/Helvetica [9.564138 0.0 424.4623 0.0 9.564138 191.0933][1 1.0] F 1.0 props: ( F ) Text T "a" Xerox/PressFonts/HIPPO [12.75218 0.0 147.1023 0.0 12.75218 256.0497][1 1.0] F 1.0 props: ( F ) Text T "b" Xerox/PressFonts/HIPPO [12.75218 0.0 249.1198 0.0 12.75218 256.0497][1 1.0] F 1.0 props: ( F ) Text T "g" Xerox/PressFonts/HIPPO [12.75218 0.0 351.1372 0.0 12.75218 257.6438][1 1.0] F 1.0 props: ( F ) Text T "d" Xerox/PressFonts/HIPPO [12.75218 0.0 453.1547 0.0 12.75218 254.4557][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [133.4678,530.2368] (CubicSpline Type: Natural 1 [189.7101,455.5148] ) [285.3774,433.5741] fwd: T Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [221.728,554.7029] (CubicSpline Type: Natural 1 [202.9101,560.3148] ) [197.7061,573.0511] fwd: T –Ô172.3314 mm topLeading 172.3314 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–:0.0 mm xmin 0.0 mm ymin 170.8482 mm xmax 169.5091 mm ymax – Interpress–‘EInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄÐCãÄÿ|O· ¢ ¨ x jÄ¡® ¤Ä=z‹Äa3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Áappears on data line as– k¡¡¨ÄJ'?Ħª_™ÄÓŽkŽÄ.I¬ÄJ'?ŽÄ¦ª_¡¡¡¡™ x j k x jÄ‹= ¤Ä‡³MÄ_59 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ HIPPO-MRR£¡ “ •  —¡¡¨  Š¡²“Ád– k¡¡¨Ä|`mÄó ™Ähë^ÄÕl}—ÄDw=Äó —Ähë^ÄcD;—Ä|`mÄó —¡¡ ¡™ x j k¡¡¨Ä;5Ä[u6™ÄeµYŽÄ¤–aÄ;5ŽÄ[u6¡¡¡¡™ x j k¡¡¨ ¡ ¡™ x j k¡¡¨ÄJ'?Ä_O™ÄqK`ŽÄ¦ª_ÄJ'?ŽÄ_O¡¡¡¡™ x j k¡¡¨ÄðÕzÄ_O™ÄÓŽkŽÄ¦ª_ÄðÕzŽÄ_O¡¡¡¡™ x j k¡¡¨ÄJ'?Ä_O™ÄÓŽkŽÄA¡(ÄJ'?ŽÄ_O¡¡¡¡™ x j k¡¡¨Ä5%"ÄxI™ÄÃÆ}ŽÄ¦ª_Ä5%"ŽÄxI¡¡¡¡™ x j k x jÄ‹= ¤Ä€3^ÄmaA ¢ ¥ ¨ÅXeroxÅ PressFontsÅ HIPPO-MRR£¡ “ •  —¡¡¨  Š¡²“Ág– k x jÄ¡® ¤ÄJ'?Ä3u  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á15– k x jÄ¡® ¤ÄIÕ0Ä3u  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á8– k x jÄ¡® ¤Ä#y¹Ä3u  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á7– k x jÄ¡® ¤Ä¥­UÄ3u  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ¡® ¤Ä?ô?ÄÀìm ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Ábyte no:– k x jÄ¡® ¤ÄJ'?ÄÀìm ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á1– k x jÄ¡® ¤Ä5%"ÄÀìm ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ¡® ¤Ä=z‹Äˆ@I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á16-bit quantity– k x jÄ¡® ¤Ä^Ë;Äh*- ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Ámost significant byte– k¡¡¨Ä"kUħ€I™ÄÓŽkŽÄR·$Ä"kUŽÄ§€I¡¡¡¡™ x j k x jÄ¡® ¤Ä@GÄìyn ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Ámost significant bit– k x jÄ¡® ¤Ä2IĉI@ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Áleasts significant bit– k x jÄ‹= ¤ÄW¼ÁÄ‹É; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ HIPPO-MRR£¡ “ •  —¡¡¨  Š¡²“Áa– k x jÄ‹= ¤Äy©XÄ‹É; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ HIPPO-MRR£¡ “ •  —¡¡¨  Š¡²“Áb– k x jÄ‹= ¤ÄFÙHÄÚ‹\ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ HIPPO-MRR£¡ “ •  —¡¡¨  Š¡²“Ág– k x jÄ‹= ¤Ä(©DĬ€I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ HIPPO-MRR£¡ “ •  —¡¡¨  Š¡²“Ád– k x jÄ¡® ¤Ä2IÄz³: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Áof byte– k¡¡¨ ¡ ¡™ x j k¡¡¨ ¡ ¡™ x j k¡¡¨Ä¯1ÆÄP,%™ÄSiaÄwÜ7—ÄlD}ÄP,%—ÄSiaÄ’D—į1ÆÄP,%—¡¡ ¡™ x j k¡¡¨ÄL~YÄ! ™Ä(Ó.ŽÄŠ_¶ÄL~YŽÄ! ¡¡¡¡™ x j k¡¡¨ÄI/²Ä¢€I™ÄcÖñŽÄg‹.ÄI/²ŽÄ¢€I¡¡¡¡™ x j k¡¡¨ÄµL·Ä•¯D™Ä)AgÄzp7—ĵL·ÄŽ@—Ä%ÝYÄzp7—ĵL·Ä•¯D—¡¡ ¡™ x j k¡¡¨ÄI/²ÄUØ'™ÄcÖñŽÄou2ÄI/²ŽÄUØ'¡¡¡¡™ x j k x jÄ¡® ¤ÄŒÄYË% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Ábyte no:– k x jÄ¡® ¤Äõ%ÄYË% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á1– k x jÄ¡® ¤Ä+lÄYË% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ¡® ¤ÄX2IÄYË% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á2– k x jÄ¡® ¤Ä^Ë;ÄYË% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á3– k x jÄ¡® ¤ÄÚ"‹ÄÂÉV ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ¡® ¤ÄŒÄj¬/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Ábit no:– k¡¡¨Ä+lÄìub™ÄðÕzŽÄ}¡4Ä+lŽÄìub¡¡¡¡™ x j k¡¡¨Ä+lħ€I™Ä1l{ŽÄìubÄ+lŽÄ§€I¡¡¡¡™ x j k¡¡¨ÄðÕzħ€I™ÄÓŽkŽÄìubÄðÕzŽÄ§€I¡¡¡¡™ x j k x jÄ¡® ¤ÄlYŽÄÂÉV ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ¡® ¤Ä!RÄÂÉV ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á7– k x jÄ¡® ¤Äõ%ÄÂÉV ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á7– k x jÄ¡® ¤Ä³‹›ÄÂÉV ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ¡® ¤ÄX2IÄÂÉV ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á7– k x jÄ¡® ¤Ä^Ë;ÄÂÉV ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á7– k¡¡¨Ädtħ€I™ÄÛöŽÄìubÄdtŽÄ§€I¡¡¡¡™ x j k¡¡¨Ä‹ÇKħ€I™Ä"ÄŽÄìubÄ‹ÇKŽÄ§€I¡¡¡¡™ x j k¡¡¨Ä°õoÄIr™ÄÌu€ŽÄìubÄ°õoŽÄIr¡¡¡¡™ x j k x jÄ¡® ¤Ä@GÄz³: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Áof byte– k x jÄ¡® ¤ÄI/²Äh*- ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Áleast significant byte– k x jÄ¡® ¤ÄB"Ä¥I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ‹= ¤ÄFÙHÄ©–C ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á PC/AT Memory– k x jÄ‹= ¤ÄZy@ÄwÍA ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á PC/AT Bus– k x jÄ¡® ¤Äý»ŸÄ.W1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Áleast significant byte– k x jÄ¡® ¤ÄkBÄ.W1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Ámost significant byte– k x jÄ¡® ¤Äf>ÄT§l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Áleast significant bit– k¡¡¨Ä«èÄZ`a™Ä`Æ=ŽÄP_MÄ«èŽÄZ`a¡¡¡¡™ x j k¡¡¨Ä]šOÄ/33™Ä§€ŽÄP_MÄ]šOŽÄ/33¡¡¡¡™ x j k x jÄ‹= ¤Äc«^ÄeW ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁDynaBus– k¡¡¨Ä]$Ä.íq™Ä”=Äi»}—Ä]$ÄH5V—ÄVÐÓÄi»}—Ä]$Ä.íq—¡¡ ¡™ x j k¡¡¨ÄØ7ÄN¯`™ÄkBŽÄÞîÄØ7ŽÄN¯`¡¡¡¡™ x j k x jÄ¡® ¤Äý»ŸÄM8I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á3– k x jÄ¡® ¤Ä€kÄM8I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á2– k x jÄ¡® ¤ÄC{®ÄM8I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ¡® ¤Äý»ŸÄ<D ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á24– k x jÄ¡® ¤Ä€kÄ<D ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á16– k x jÄ¡® ¤ÄÆ]Ä<D ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á8– k x jÄ¡® ¤ÄC{®Ä<D ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x jÄ¡® ¤Äæ§wÄa¢ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á31– k x jÄ¡® ¤ÄTX7Ä<D ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á23– k x jÄ¡® ¤Ähf]Ä<D ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á15– k x jÄ¡® ¤Ä>*SÄ<D ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á7– k¡¡¨ÄC{®Ä/33™Ä6»ŒŽÄP_MÄC{®ŽÄ/33¡¡¡¡™ x j k¡¡¨ÄIT%Ä/33™ÄÈ{eŽÄP_MÄIT%ŽÄ/33¡¡¡¡™ x j k¡¡¨Älo‹Ä/33™Ä¹ŸíŽÄP_MÄlo‹ŽÄ/33¡¡¡¡™ x j k¡¡¨ÄC{®Ä/33™ÄmX7ŽÄ_¥gÄC{®ŽÄ/33¡¡¡¡™ x j k¡¡¨ÄC{®ÄP_M™ÄIT%ŽÄÔ…ËÄC{®ŽÄP_M¡¡¡¡™ x j k x jÄ¡® ¤ÄÆ]ÄM8I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á1– k¡¡¨ÄØ7ĺ¤Ý™ÄkBŽÄ?xIÄØ7ŽÄº¤Ý¡¡¡¡™ x j k¡¡¨ÄYHÄÞî™ÄƘeŽÄR^ÄYHŽÄÞî¡¡¡¡™ x j k¡¡¨Ä`D1ÄHÍ™Ä$ŽÄj}—Ä`D1Ä —Ä|Ž?Äj}—Ä`D1ÄHÍ—¡¡ ¡™ x j k¡¡¨ÄYHÄ“E³™ÄƘeŽÄ,QaÄYHŽÄ“E³¡¡¡¡™ x j k x jÄ¡® ¤Ä3IãÄM8I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Ábyte no:– k x jÄ¡® ¤Ä3IãÄ‹6½ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Ábit no:– k x jÄ¡® ¤ÄdL ÄT§l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Ámost significant bit– k x jÄ¡® ¤ÄC{®Ä7üK ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Áof word– k x jÄ¡® ¤Äš3]Ä7üK ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Áof word– k x jÄ‹= ¤Ä2‘XÄ¡¡ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ HIPPO-MRR£¡ “ •  —¡¡¨  Š¡²“Áa– k x jÄ‹= ¤Äº×ÀÄ¡¡ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ HIPPO-MRR£¡ “ •  —¡¡¨  Š¡²“Áb– k x jÄ‹= ¤ÄEô3ÄIxI ¢ ¥ ¨ÅXeroxÅ PressFontsÅ HIPPO-MRR£¡ “ •  —¡¡¨  Š¡²“Ág– k x jÄ‹= ¤Ä”±TÄN†O ¢ ¥ ¨ÅXeroxÅ PressFontsÅ HIPPO-MRR£¡ “ •  —¡¡¨  Š¡²“Ád– kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä S>ÄNµ&™Ä §8Ä·ñ^ÄBjgÄ»ífÄ3"EÄxÿD¡’Ä€§™Ä;_¸ÄFgHÄ~JÄ;5Ä[u6¡’˜ kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨ÄlD}ÄP,%™Äm®ƒÄž^IÄGòYÄ:¥ÄF‹YÄv16¡’Äo¿ÄŠ£?Ä&1Ä ÄÊWÄWM'¡’˜ k k k gš£3™3 ˜UšŸ ¤H™QU™—R˜R˜ ˜ šœ•˜•S–†0.2777778 the lineLength .mul 2.811678 .add topLeading 0.2777778 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeading–810.0 mm xmin 10.0 mm ymin 205.9 mm xmax 64.41667 mm ymax– Interpress–žInterpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ UndefLayer¥¡¡§¢•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ShadeLayer¥¡¡§£•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ErrorLayer¥¡¡§¤•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ BackGround¥¡¡§¥•ÅXeroxÅResearchÅ ChipNDaleÅCDÅOutline¥¡¡§¦•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ Selection¥¡¡§§•ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¨•ÅXeroxÅResearchÅ ChipNDaleÅCDÅBlue¥¡¡§©•ÅXeroxÅResearchÅ ChipNDaleÅCDÅRed¥¡¡§ª•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGreen¥¡¡§«•ÅXeroxÅResearchÅ ChipNDaleÅCDÅYellow¥¡¡§¬•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGray¥¡¡§­•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§®•ˆŽˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¯•¯” ç°•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNDif¥¡¡§±•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPDif¥¡¡§²•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWel¥¡¡§³•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWel¥¡¡§´•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWelCont¥¡¡§µ•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWelCont¥¡¡§¶•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPol¥¡¡§·•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet¥¡¡§¸•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet2¥¡¡§¹•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅOvg¥¡¡§º•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut¥¡¡§»•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut2¥¡¡§¼•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅImp¥¡¡§½•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅBur¥¡¡§¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Ä { ¤ ¨˜& ¢ ¨¨0H¡£ ¥“®”­“¨0H¡š¨”­“l0¸¤¡šlи¤¡š€0¤@¡š¸0¤@¡š¸0¸¤¡š¸Ð¸¤¡š`¤¡š è`P¤¡šP`¤¨¡šà€Ä¤¡šp𤸡š` ¤¡š°xˆ¤¡š¨à¤8¡šà¤8¡šàÐĤ¡š°à¤8¡šÐP¤¡š˜à¤8¡šH𤡚À°0¤¡šÀȤ¡šÀ`h¤¡šÀ8¤¡šØ8¤¡š X`¤¨¡š¸àˆ¤¡š¢°“¢·“ x j¨”­“¿ —ÐD ¢ ¨  ŠÁ0 1 0 0–p ü ¢ ¨ €4 ¢ ¨  ŠÁ22-bit Address–À  ¢ ¨à, ¢ ¨  ŠÁhalf-–`  ¢ ¨ÐÜ ¢ ¨  ŠÁ0 0 1 1 –p d ¢ ¨à  ¢ ¨  ŠÁword:–` 4 ¢ ¨Ð„ ¢ ¨  ŠÁ0 0 1 0–p ¼ ¢ ¨˜ü ¢ ¨  ŠÁ8–¨ D ¢ ¨à´ ¢ ¨  ŠÁbyte:–` Œ ¢ ¨˜¤ ¢ ¨  ŠÁ8–¨ œ ¢ ¨˜T ¢ ¨  ŠÁ8–¨ ì ¢ ¨Ph ¢ ¨¤¯“¢¢™2º—˜ð Ø ¢ ¨XT ¢ ¨  ŠÁ31–è ì ¢ ¨ øT ¢ ¨  ŠÁ30–H ì ¢ ¨ øü ¢ ¨  ŠÁ30–H D ¢ ¨ ˜T ¢ ¨  ŠÁ29–¨ ì ¢ ¨Xü ¢ ¨  ŠÁ31–è D ¢ ¨ À ¢ ¨  ŠÁ#Address and Half-Word/Word Ordering–€ $ ¢ ¨`„ ¢ ¨  ŠÁ31–à ¼ ¢ ¨Ÿ¡ ¦r ¢ ¥ ¨ ¯“ °™ÀÀ—¸°—À —¡¡ ¡™Ÿ¡ ¦ Π¢ ¥ ¨`¤ ¢ ¨  ŠÁ31–à œ ¢ ¨°„ ¢ ¨  ŠÁ4– ¼ ¢ ¨àl ¢ ¨  ŠÁword:–` Ô ¢ ¨ €Ü ¢ ¨  ŠÁ23-bit Address–À d ¢ ¨Ÿ¡ ¦ ¢ ¥ ¨ °™ÀÀ—¸°—À —¡¡ ¡™Ÿ¡ ¦ ~ ¢ ¥ ¨pР¢ ¨¤¯“¢™¢—˜Ð p ¢ ¨ ˆ| ¢ ¨  ŠÁ24-bit Address–¸ Ä ¢ ¨°„ ¢ ¨  ŠÁ0– ¼ ¢ ¨Ø  ¢ ¨  ŠÁMode–h 4 ¢ ¨Ð, ¢ ¨  ŠÁAccess –p  ¢ ¨ˆ„ ¢ ¨  ŠÁ3–¸ ¼ ¢ ¨˜„ ¢ ¨  ŠÁ8–¨ ¼ ¢ ¨p„ ¢ ¨  ŠÁ7–Ð ¼ ¢ ¨‚ ¢ ¨  ŠÁordering–0 ¾ ¢ ¨² ¢ ¨  ŠÁ sets byte–0 Ž ¢ ¨¸ ¢ ¨  ŠÁDeviceNo–ˆ $ ¢ ¨À$ ¢ ¨  ŠÁAccess–€  ¢ ¨È ¢ ¨  ŠÁMode:–x < ¢ ¨ k k g–TRUEš£;™;KšŸ ¤~˜‡Ršœ˜R˜—šœ/¤xœÏdœ¥œ¥œ¥œ ¥œ#¥œ˜œšœ˜Wšœ:˜:—W˜šœ˜W˜PWšœÏkœ"˜?W–codešœÐdk¦œ+˜/W–codešœ§¦œ+˜/Wšœ¥œ¥œ˜WšœD˜DW–codešœ§¦œ+˜/W–codešœ§¦œ+˜/Wšœ¥œ¥œ˜W–code˜—˜W˜RWšœ¦œ!˜CW–codešœ§¦œ-¦˜2W–codešœ§¦œ-˜1W–codešœ§¦œ-¦˜2W–codešœ§¦œ-˜1Wš œ¥œ¥œ¥œ¥œ˜"W˜WšœS¦˜TW–codešœ§¦œ-¦˜2W–codešœ§¦œ-˜1W–codešœ§¦œ-¦˜2W–codešœ§¦œ-˜1Wš œ¥œ¥œ¥œ¥œ˜"W˜Wšœ,¦œ¦œ!˜WW–codešœ§¦œ-¦˜3W–codešœ§¦œ-˜1W–codešœ§¦œ-¦˜2W–codešœ§¦œ-˜1Wš œ¥œ¥œ¥œ¥œ˜"WšœW˜WW–codešœ§¦œ-¦˜3W–codešœ§¦œ-˜1W–codešœ§¦œ-¦˜2W–codešœ§¦œ-˜1Wš œ¥œ¥œ¥œ¥œ˜"—— šœ:˜:Všœ˜Iindentšœ`¦œ…˜êVšœ˜Yšœ`¦œC¦œ4˜ßV˜—— ˜ šœŸ˜Ÿ –TRUE–ûInterpress/Xerox/3.0  f j   ˆ¤¡ˆ¡¡ÅXeroxÅResearchÅCMYK£¡¡¦ ç • ” ç¡•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ UndefLayer¥¡¡§¢•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ShadeLayer¥¡¡§£•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ ErrorLayer¥¡¡§¤•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ BackGround¥¡¡§¥•ÅXeroxÅResearchÅ ChipNDaleÅCDÅOutline¥¡¡§¦•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ Selection¥¡¡§§•ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§¨•ÅXeroxÅResearchÅ ChipNDaleÅCDÅBlue¥¡¡§©•ÅXeroxÅResearchÅ ChipNDaleÅCDÅRed¥¡¡§ª•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGreen¥¡¡§«•ÅXeroxÅResearchÅ ChipNDaleÅCDÅYellow¥¡¡§¬•ÅXeroxÅResearchÅ ChipNDaleÅCDÅGray¥¡¡§­•ÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§®•ˆŽˆ£¡ˆ¡¡ÅXeroxÅResearchÅ RGBLinear£¡¡¦ ç¯•¯” ç°•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNDif¥¡¡§±•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPDif¥¡¡§²•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWel¥¡¡§³•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWel¥¡¡§´•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPWelCont¥¡¡§µ•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅNWelCont¥¡¡§¶•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅPol¥¡¡§·•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet¥¡¡§¸•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅMet2¥¡¡§¹•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅOvg¥¡¡§º•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut¥¡¡§»•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅCut2¥¡¡§¼•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅImp¥¡¡§½•ÅXeroxÅResearchÅ ChipNDaleÅCMosBÅBur¥¡¡§¾•ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ”¿• k j¡¥“Äè ¤ ¨ªª ¢ ¨Äî  ¤ ¨& ¢ ¨° ˆF¡£ ¥“®”­“° ˆF¡š¨”­“ ˜Ä¤¡š ÀĤ¡š4 `¤¡š È ` ¤¡š È °8¤¡š € à¤8¡šÐ¤¡š € à¤8¡šè(¤¡šÀ àˆ¤¡š ` `¤¨¡š  à¤8¡š¸ à¤8¡š˜ à¤8¡š¸xˆ¤¡š и¤¡š 0¸¤¡š 0¤@¡š X 0¤@¡š D и¤¡š D 0¸¤¡š Ȥ¡š Ü(¤¡š È ø¤¡šX `¤À¡š€ è¤À¡šP 褡š¢°“¢·“ x j¨”­“¿ —` L ¢ ¨  ŠÁ31–àô ¢ ¨Ÿ¡ ¦: Š ¢ ¥ ¨ ¯“ °™ÀÀ—¸°—À —¡¡ ¡™Ÿ¡ ¦:¶ ¢ ¥ ¨Ÿ¡ ¦: ² ¢ ¥ ¨ °™ÀÀ—¸°—À —¡¡ ¡™Ÿ¡ ¦:Ž ¢ ¥ ¨X € ¢ ¨¤¯“¢¢™bº—˜èÀ ¢ ¨ N ¢ ¨  ŠÁ30–0ò ¢ ¨ € ¤ ¢ ¨  ŠÁ16–Àœ ¢ ¨ € ü ¢ ¨  ŠÁ16–ÀD ¢ ¨ ¨ Ü ¢ ¨  ŠÁ0 0 0 1–˜d ¢ ¨ ¸ ´ ¢ ¨  ŠÁbyte:–ˆŒ ¢ ¨ ˆ‚ ¢ ¨  ŠÁ12–¸¾ ¢ ¨ H‚ ¢ ¨  ŠÁ11–ø¾ ¢ ¨ ¸ l ¢ ¨  ŠÁword:–ˆÔ ¢ ¨ ¸  ¢ ¨  ŠÁword:–ˆ4 ¢ ¨ ¸ , ¢ ¨  ŠÁhalf-–ˆ ¢ ¨" ¢ ¨  ŠÁ0 0 0 0 0 0 1 0–( ¢ ¨ " ¢ ¨  ŠÁDeviceNo–  ¢ ¨   ¢ ¨  ŠÁMode:– < ¢ ¨˜ $ ¢ ¨  ŠÁAccess–¨ ¢ ¨  , ¢ ¨  ŠÁAccess–  ¢ ¨ ¨  ¢ ¨  ŠÁMode:–˜4 ¢ ¨ | ¢ ¨  ŠÁ16-bit Address–°Ä ¢ ¨h ¤ ¢ ¨  ŠÁ31–Øœ ¢ ¨ ¨ „ ¢ ¨  ŠÁ0 0 0 0 –˜¼ ¢ ¨ ¨ D ¢ ¨  ŠÁ0 0 1 0–˜ü ¢ ¨ € T ¢ ¨  ŠÁ16–Àì ¢ ¨ Ü ¢ ¨  ŠÁ16-bit Address–°d ¢ ¨ 4 ¢ ¨  ŠÁ16-bit Address–°  ¢ ¨ à ¢ ¨  ŠÁ#Address and Half-Word/Word Ordering–`$ ¢ ¨ @€ ¢ ¨  ŠÁ15–À ¢ ¨ € ¢ ¨  ŠÁ16–°À ¢ ¨h€ ¢ ¨  ŠÁ31–ØÀ ¢ ¨ € ¢ ¨  ŠÁ8– À ¢ ¨x€ ¢ ¨  ŠÁ7–ÈÀ ¢ ¨¸€ ¢ ¨  ŠÁ0–ˆÀ ¢ ¨ ú ¢ ¨  ŠÁ30–0F ¢ ¨ À N ¢ ¨  ŠÁ29–€ò ¢ ¨@ Š ¢ ¨  ŠÁ must be 00–¶ ¢ ¨@ º ¢ ¨  ŠÁ must be 0–† ¢ ¨d ú ¢ ¨  ŠÁ31–ÜF ¢ ¨€ À ¢ ¨¢Ê™:¢—˜À€ ¢ ¨ k k g– Interpress–710.0 mm xmin 10.0 mm ymin 205.9 mm xmax 62.3739 mm ymax–†0.2673502 the lineLength .mul 2.811678 .add topLeading 0.2673502 the lineLength .mul 2.811678 .add topIndent 1.405839 mm bottomLeadingš£;™;U™KšŸ ¤œJ¤P™¤——— ˜%RšœÏ˜ÏS–Ó3Gargoyle file for scene: stuffed from Gargoyle at February 26, 1988 9:53:04 am PST Produced by version 8802.04 Scripts: ///Users/bland.pa/gargoyle/bland880226-09-51-57.script Slope: [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 4.0 4] [F 2.0 2] [F 1.0 1] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.125 1/8] [F 0.1111111 1/9] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 0.0 0] Midpoints: F Heuristics: F ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: F GravityExtent: 0.3472222 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [10.0 10.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: F Entities: [26]: Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [580.036,33.77292] (Line ) [580.9405,33.77292] (Line ) [580.9405,64.52283] (Line ) [580.036,64.52283] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/InitialColor] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [28.34644,28.34647] (Line ) [583.6538,28.34647] (Line ) [583.6538,80.8022] (Line ) [28.34644,80.8022] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [580.036,64.52283] (Line ) [581.8449,64.52283] (Line ) [581.8449,65.42724] (Line ) [580.036,65.42724] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [206.5151,69.94928] (Line ) [410.9116,69.94928] (Line ) [410.9116,70.8537] (Line ) [206.5151,70.8537] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [30.15527,64.52283] (Line ) [487.7863,64.52283] (Line ) [487.7863,65.42724] (Line ) [30.15527,65.42724] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [138.6844,30.15527] (Line ) [139.5888,30.15527] (Line ) [139.5888,64.52283] (Line ) [138.6844,64.52283] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [30.15527,30.15527] (Line ) [31.05969,30.15527] (Line ) [31.05969,64.52283] (Line ) [30.15527,64.52283] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [487.7863,30.15527] (Line ) [488.6907,30.15527] (Line ) [488.6907,64.52283] (Line ) [487.7863,64.52283] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [31.96411,30.15527] (Line ) [489.5952,30.15527] (Line ) [489.5952,31.05969] (Line ) [31.96411,31.05969] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [41.00818,69.94928] (Line ) [129.6403,69.94928] (Line ) [129.6403,70.8537] (Line ) [41.00818,70.8537] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [191.1401,30.15527] (Line ) [192.0445,30.15527] (Line ) [192.0445,64.52283] (Line ) [191.1401,64.52283] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [151.3461,69.94928] (Line ) [176.6696,69.94928] (Line ) [176.6696,70.8537] (Line ) [151.3461,70.8537] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [426.2865,30.15527] (Line ) [427.1909,30.15527] (Line ) [427.1909,64.52283] (Line ) [426.2865,64.52283] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [446.1835,69.94928] (Line ) [473.3158,69.94928] (Line ) [473.3158,70.8537] (Line ) [446.1835,70.8537] (Line ) fwd: T Text T "0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" Xerox/PressFonts/Helvetica [10.85291 0.0 211.0371 0.0 10.85291 45.07803][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "Addr" Xerox/PressFonts/Helvetica [10.85291 0.0 442.5659 0.0 10.85291 45.07803][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "28" Xerox/PressFonts/Helvetica [10.85291 0.0 411.816 0.0 10.85291 66.78386][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "29" Xerox/PressFonts/Helvetica [10.85291 0.0 429.9042 0.0 10.85291 66.78386][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "0" Xerox/PressFonts/Helvetica [10.85291 0.0 30.15527 0.0 10.85291 66.33165][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "7" Xerox/PressFonts/Helvetica [10.85291 0.0 131.4491 0.0 10.85291 66.33165][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "8" Xerox/PressFonts/Helvetica [10.85291 0.0 140.4932 0.0 10.85291 66.33165][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "31" Xerox/PressFonts/Helvetica [10.85291 0.0 475.1246 0.0 10.85291 66.33165][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "DeviceNo" Xerox/PressFonts/Helvetica [10.85291 0.0 140.4932 0.0 10.85291 45.07803][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "0 0 0 0 0 0 1 0" Xerox/PressFonts/Helvetica [10.85291 0.0 51.86108 0.0 10.85291 45.07803][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "11" Xerox/PressFonts/Helvetica [10.85291 0.0 178.4784 0.0 10.85291 66.78386][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "12" Xerox/PressFonts/Helvetica [10.85291 0.0 192.949 0.0 10.85291 66.78386][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) –˜9.750382e-2 the lineLength .mul 2.822222 .add topLeading 9.750382e-2 the lineLength .mul 2.822222 .add topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–TRUE–:0.0 mm xmin 0.0 mm ymin 197.0259 mm xmax 19.21077 mm ymax – Interpress–”Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄï¡Ä±aà ¢ ¨ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§ • ”­“ļSÄ6å™Ä¾ŸTŽÄ1§ÅļSŽÄ6å¡¡¡¡™ x j kÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§¡•¡”­“ÄÄQà™Ä;GŽÄ¹[ÄŽÄQà¡¡¡¡™ x j k ”­“ļSÄ1§Å™ÄƒÓ:ŽÄRCļSŽÄ1§Å¡¡¡¡™ x j k ”­“ÄAŽÄ%µŠ™ÄµaqŽÄ ÎEÄAŽŽÄ%µŠ¡¡¡¡™ x j k ”­“Ä÷¡Ä1§Å™ÄÄBgŽÄRCÄ÷¡ŽÄ1§Å¡¡¡¡™ x j k ”­“ĘÅÄ÷¡™Ä:XkŽÄ1§ÅĘŎÄ÷¡¡¡¡¡™ x j k ”­“Ä÷¡Ä÷¡™Ä!CŽÄ1§ÅÄ÷¡ŽÄ÷¡¡¡¡¡™ x j k ”­“ÄÄBgÄ÷¡™Ä¹+aŽÄ1§ÅÄÄBgŽÄ÷¡¡¡¡¡™ x j k ”­“ÄYÃÄ÷¡™ÄPS*ŽÄ!CÄYÃŽÄ÷¡¡¡¡¡™ x j k ”­“Ä‹zÄ%µŠ™ÄFd‹ŽÄ ÎEÄ‹zŽÄ%µŠ¡¡¡¡™ x j k ”­“Äu9Ä÷¡™Ä!Â-ŽÄ1§ÅÄu9ŽÄ÷¡¡¡¡¡™ x j k ”­“Ä ËÁÄ%µŠ™ÄO]sŽÄ ÎEÄ ËÁŽÄ%µŠ¡¡¡¡™ x j k ”­“Ä(g²Ä÷¡™Ä”„YŽÄ1§ÅÄ(g²ŽÄ÷¡¡¡¡¡™ x j k ”­“ÄUg1Ä%µŠ™Ä#!ŽÄ ÎEÄUg1ŽÄ%µŠ¡¡¡¡™ x j k x jÄ(± ¤ÄBÄ<íZ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0– k x jÄ(± ¤Ä[ 5Ä<íZ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“ÁAddr– k x jÄ(± ¤ÄÉ}ÄZ†[ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á28– k x jÄ(± ¤Äz—IÄZ†[ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á29– k x jÄ(± ¤Ä÷¡Ä2ÉÄ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á0– k x jÄ(± ¤ÄUÀ§Ä2ÉÄ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á7– k x jÄ(± ¤Ä(IÄ2ÉÄ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á8– k x jÄ(± ¤ÄquQÄ2ÉÄ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á31– k x jÄ(± ¤Ä(IÄ<íZ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“ÁDeviceNo– k x jÄ(± ¤ÄÍŸ÷Ä<íZ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á0 0 0 0 0 0 1 0– k x jÄ(± ¤ÄáãDÄZ†[ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á11– k x jÄ(± ¤ÄIÝbÄZ†[ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á12– k k k gš£3™3KšŸ œJ¤ œR˜³ šœ/˜/šœ˜Wšœ»ÏiÏuœ¨œ¨œ³˜Š—šœ˜Wšœ—©œÝ˜ö—šœ ˜ W˜[—šœ˜Wšœ¢Ÿ§œ:˜ƒ—šœ ˜ Wšœ•˜•—šœ˜šœM˜MS–²-Gargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/Interrupt.gargoyle at March 14, 1988 9:35:23 am PST Produced by version 8803.08 Scripts: ///Users/bland.pa/gargoyle/bland880314-08-58-58.script, ///Users/bland.pa/gargoyle/bland880314-09-33-41.script Slope: [T 0.0] [F 30.0] [F 45.0] [F 60.0] [T 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 4.0 4] [F 2.0 2] [F 1.0 1] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.125 1/8] [F 0.1111111 1/9] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 0.0 0] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: F GravityExtent: 0.3472222 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [10.0 10.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: F Entities: [26]: Text T "Unused" Xerox/PressFonts/Helvetica [11.0334 0.0 399.784 0.0 11.0334 685.0608][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Broadcast" Xerox/PressFonts/Helvetica [11.0334 0.0 188.3105 0.0 11.0334 651.9606][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [182.7938,655.1786] (Line ) [182.7938,656.0982] fwd: T Text T "Interrupt" Xerox/PressFonts/Helvetica [11.0334 0.0 87.17096 0.0 11.0334 690.5775][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "Type" Xerox/PressFonts/Helvetica [11.0334 0.0 94.52655 0.0 11.0334 679.544][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "4" Xerox/PressFonts/Helvetica [11.0334 0.0 140.499 0.0 11.0334 707.1276][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [83.49316,710.3457] (Line ) [136.8213,710.3457] (Line ) [136.8213,711.2652] (Line ) [83.49316,711.2652] (Line ) fwd: T Text T "15" Xerox/PressFonts/Helvetica [11.0334 0.0 294.9667 0.0 11.0334 707.1276][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "16" Xerox/PressFonts/Helvetica [11.0334 0.0 311.5168 0.0 11.0334 707.1276][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [309.6779,669.8899] (Line ) [310.5973,669.8899] (Line ) [310.5973,704.829] (Line ) [309.6779,704.829] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [162.5659,669.8899] (Line ) [163.4853,669.8899] (Line ) [163.4853,704.829] (Line ) [162.5659,704.829] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [147.8547,669.8899] (Line ) [148.7741,669.8899] (Line ) [148.7741,704.829] (Line ) [147.8547,704.829] (Line ) fwd: T Text T "0" Xerox/PressFonts/Helvetica [11.0334 0.0 72.45978 0.0 11.0334 706.6678][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "31" Xerox/PressFonts/Helvetica [11.0334 0.0 524.8293 0.0 11.0334 706.6678][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [72.45978,704.829] (Line ) [537.7016,704.829] (Line ) [537.7016,705.7484] (Line ) [72.45978,705.7484] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [72.45978,669.8899] (Line ) [73.37921,669.8899] (Line ) [73.37921,704.829] (Line ) [72.45978,704.829] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [537.7016,669.8899] (Line ) [538.621,669.8899] (Line ) [538.621,704.829] (Line ) [537.7016,704.829] (Line ) fwd: T Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [74.29864,670.8093] (Line ) [74.29864,669.8899] (Line ) [539.5405,669.8899] (Line ) [539.5405,670.8093] (CubicSpline Type: Natural 0 ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [328.0669,708.5068] (Line ) [523.9098,708.5068] (Line ) [523.9098,709.4262] (Line ) [328.0669,709.4262] (Line ) fwd: T Text T "5" Xerox/PressFonts/Helvetica [11.0334 0.0 149.6936 0.0 11.0334 707.1276][1 1.0] F 1.0 props: ( F ) ls: 1.2 Text T "6" Xerox/PressFonts/Helvetica [11.0334 0.0 164.4048 0.0 11.0334 707.1276][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 1.0] ow: T Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [185.0,655.6778] (Line ) [177.6444,659.3556] (Line ) [179.4833,655.6778] (Line ) [177.6444,652.0] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [177.2771,655.1786] (Line ) [185.5521,655.1786] (Line ) [185.5521,656.0982] (Line ) [177.2771,656.0982] (Line ) fwd: T Outline fillColor: [1 1.0] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [175.4382,710.3457] (Line ) [291.2889,710.3457] (Line ) [291.2889,711.2652] (Line ) [175.4382,711.2652] (Line ) fwd: T Text T "DynaBusID" Xerox/PressFonts/Helvetica [11.0334 0.0 201.1828 0.0 11.0334 685.0608][1 1.0] F 1.0 props: ( F ) ls: 1.2 Outline fillColor: [1 0.5] ow: T Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T F [177.2771,655.1786] (CubicSpline Type: Natural 1 [159.5,661.0] ) [155.5,683.0] fwd: T –é30.16616 mm bigger topLeading 30.16616 mm bigger topIndent 1.411111 mm bigger bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–:0.0 mm xmin 0.0 mm ymin 168.6359 mm xmax 27.34394 mm ymax – Interpress–ÏInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄè¼WÄÿ.þS ¢ ¨ x jĥߠ¤Ä‰mXÄXO! ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁUnused– k x jĥߠ¤Ä¡ÛÄâ3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á Broadcast– k¡¡¨ ¡ ¡™ x j k x jĥߠ¤Ä'×uÄ¿‡G ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á Interrupt– k x jĥߠ¤ÄLoÏÄ—N9 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁType– k x jĥߠ¤Ä!;ÄÓ/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á4– k¡¡¨ÄÏIÄàÂQ™Än¢ÏŽÄˆ$1ÄÏIŽÄàÂQ¡¡¡¡™ x j k x jĥߠ¤Ä"‘ÄÓ/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á15– k x jĥߠ¤ÄlMYÄÓ/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á16– k¡¡¨ÄG_;Ä:m™Ä]lMŽÄÑ?LÄG_;ŽÄ:m¡¡¡¡™ x j k¡¡¨ÄQëÄ:m™Ä+mDŽÄÑ?LÄQëŽÄ:m¡¡¡¡™ x j k¡¡¨ÄC“uÄ:m™ÄÒõkŽÄÑ?LÄC“uŽÄ:m¡¡¡¡™ x j k x jĥߠ¤Ä WÄë ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á0– k x jĥߠ¤ÄT)Äë ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á31– k¡¡¨Ä WÄÑ?L™ÄŒºCŽÄ«O›Ä WŽÄÑ?L¡¡¡¡™ x j k¡¡¨Ä WÄ:m™Ä]»GŽÄÑ?LÄ WŽÄ:m¡¡¡¡™ x j k¡¡¨ÄŒºCÄ:m™ÄÇá_ŽÄÑ?LÄŒºCŽÄ:m¡¡¡¡™ x j k¡¡¨Ä@$ÝÄ7™Ä:mÄMû%ŽÄ7ÄK2Ä7ÄX÷Ä7Ä@$ÝÄ7¡’¡¡ ¡™ x j k¡¡¨ÄEþÄÊ I™Äù­zŽÄ© =ÄEþŽÄÊ I¡¡¡¡™ x j k x jĥߠ¤Ä$A>ÄÓ/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á5– k x jĥߠ¤Äù*ÄÓ/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á6– k¡¡¨YÄ—;™Ä"Á£Äsç-—Ä*<Ä—;—Ä"Á£,—YÄ—;—¡¡ ¡™ x j k¡¡¨Ä9zSÄG©™ÄE•`ŽÄ‚µ3Ä9zSŽÄG©¡¡¡¡™ x j k¡¡¨Ä<þYÄàÂQ™Ä34-ŽÄˆ$1Ä<þYŽÄàÂQ¡¡¡¡™ x j k x jĥߠ¤ÄI]ÄXO! ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á DynaBusID– kÄ¡¨ ¡ ¡™ x j¡¯“¢°“¢·“¡¡¨Ä9zSÄG©™ÄNyvÄ0²ÄÊ=ÄóÒ_Ä?5¡’Ä\%˜Ä‰Í5Ä!`7Ä‹š5Ä7K¡’˜ k k k gš£3™3UšŸ œ˜#U˜—Wšœ˜Wšœ/˜/šœ˜Wšœ-˜-—šœ ˜ WšœQ˜Q—šœ ˜ Wšœ˜—šœ˜Wšœz˜z——Wšœ ˜ Wšœ ˜ —— ˜! šœÔ˜Ô –µ(Gargoyle file for scene: stuffed from Gargoyle at February 26, 1988 10:26:54 am PST Produced by version 8802.04 Scripts: ///Users/bland.pa/gargoyle/bland880226-10-26-17.script Slope: [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 4.0 4] [F 2.0 2] [F 1.0 1] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.125 1/8] [F 0.1111111 1/9] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 0.0 0] Midpoints: F Heuristics: F ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: F GravityExtent: 0.3472222 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [10.0 10.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: F Entities: [19]: Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [580.9446,40.98761] (Line ) [581.8476,40.98761] (Line ) [581.8476,64.46399] (Line ) [580.9446,64.46399] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/InitialColor] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [28.34644,28.34647] (Line ) [583.6534,28.34647] (Line ) [583.6534,82.52276] (Line ) [28.34644,82.52276] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [40.98761,69.88162] (Line ) [237.8281,69.88162] (Line ) [237.8281,70.78458] (Line ) [40.98761,70.78458] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [268.528,69.88162] (Line ) [470.7862,69.88162] (Line ) [470.7862,70.78458] (Line ) [268.528,70.78458] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [190.8753,30.15234] (Line ) [191.7783,30.15234] (Line ) [191.7783,64.46399] (Line ) [190.8753,64.46399] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [31.95819,30.15234] (Line ) [488.8449,30.15234] (Line ) [488.8449,31.0553] (Line ) [31.95819,31.0553] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [487.039,30.15234] (Line ) [487.942,30.15234] (Line ) [487.942,64.46399] (Line ) [487.039,64.46399] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [30.15234,30.15234] (Line ) [31.05524,30.15234] (Line ) [31.05524,64.46399] (Line ) [30.15234,64.46399] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [138.5049,30.15234] (Line ) [139.4078,30.15234] (Line ) [139.4078,64.46399] (Line ) [138.5049,64.46399] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [30.15234,64.46399] (Line ) [487.039,64.46399] (Line ) [487.039,65.36694] (Line ) [30.15234,65.36694] (Line ) fwd: T Outline fillColor: [2 Xerox/Research/ChipNDale/CD/Comment] ow: F Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [252.2751,30.15234] (Line ) [253.1781,30.15234] (Line ) [253.1781,64.46399] (Line ) [252.2751,64.46399] (Line ) fwd: T Text T "Unused" Xerox/PressFonts/Helvetica [10.83526 0.0 351.5983 0.0 10.83526 45.05081][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "0 0 0 0 0 0 1 0" Xerox/PressFonts/Helvetica [10.83526 0.0 51.82284 0.0 10.83526 45.05081][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "DeviceNo" Xerox/PressFonts/Helvetica [10.83526 0.0 140.3108 0.0 10.83526 45.05081][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "31" Xerox/PressFonts/Helvetica [10.83526 0.0 474.3979 0.0 10.83526 66.26987][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "0" Xerox/PressFonts/Helvetica [10.83526 0.0 30.15234 0.0 10.83526 66.26987][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "0 0 1 1 " Xerox/PressFonts/Helvetica [10.83526 0.0 201.7106 0.0 10.83526 45.05081][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "15" Xerox/PressFonts/Helvetica [10.83526 0.0 237.8281 0.0 10.83526 68.52722][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) Text T "16" Xerox/PressFonts/Helvetica [10.83526 0.0 254.081 0.0 10.83526 68.52722][2 Xerox/Research/ChipNDale/CD/Comment] F 1.0 props: ( F ) –’0.100584 the lineLength .mul 2.822222 .add topLeading 0.100584 the lineLength .mul 2.822222 .add topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–TRUE–:0.0 mm xmin 0.0 mm ymin 197.0268 mm xmax 19.81775 mm ymax – Interpress–‘ Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄåÙıaà ¢ ¨ÅXeroxÅResearchÅ ChipNDaleÅCDÅComment¥¡¡§ • ”­“Ä(ÙÄ&¿ò™Ä†;ŽÄz}Ä(ÙŽÄ&¿ò¡¡¡¡™ x j kÅXeroxÅResearchÅ ChipNDaleÅCDÅ InitialColor¥¡¡§¡•¡”­“ÄÄQà™ÄªþKŽÄ°ù%ÄŽÄQà¡¡¡¡™ x j k ”­“Ä&¿òÄBáõ™Ä;u@ŽÄg÷xÄ&¿òŽÄBáõ¡¡¡¡™ x j k ”­“Ä][YÄBáõ™Ä$gŸŽÄg÷xÄ][YŽÄBáõ¡¡¡¡™ x j k ”­“Ä!qÄ'™Ä¬MæŽÄz}Ä!qŽÄ'¡¡¡¡™ x j k ”­“Ä#ÔÄ'™ÄnÁ:ŽÄSÙÄ#ÔŽÄ'¡¡¡¡™ x j k ”­“Äa3Ä'™Äƒ„EŽÄz}Äa3ŽÄ'¡¡¡¡™ x j k ”­“Ä'Ä'™ÄõµŽÄz}Ä'ŽÄ'¡¡¡¡™ x j k ”­“Ä6¥eÄ'™Ä)cLŽÄz}Ä6¥eŽÄ'¡¡¡¡™ x j k ”­“Ä'Äz}™Äa3ŽÄ?SøÄ'ŽÄz}¡¡¡¡™ x j k ”­“ĺ@½Ä'™ÄH2IŽÄz}ĺ@½ŽÄ'¡¡¡¡™ x j k x jÄ¥Z ¤Ä ±uÄL3± ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“ÁUnused– k x jÄ¥Z ¤Ä#m¯ÄL3± ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á0 0 0 0 0 0 1 0– k x jÄ¥Z ¤Ä(JÄL3± ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“ÁDeviceNo– k x jÄ¥Z ¤Ä¬W]ÄO? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á31– k x jÄ¥Z ¤Ä'ÄO? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á0– k x jÄ¥Z ¤Äñ&ÄL3± ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á 0 0 1 1 – k x jÄ¥Z ¤Ä;u@Ä]l] ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á15– k x jÄ¥Z ¤Ä$¹%Ä]l] ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “¢•¢ — ”­“  Š¡²“Á16– k k k gš£3™3KšŸ ¤œy˜ƒ——— šœ˜Ršœ¢˜¢ šœ]Ÿœ‡˜åcodešœ˜ZšœG˜GZšœG˜GZ˜——Ršœç˜ç—— ˜R˜Š ˜ šœƒ˜ƒRšœŒ˜ŒR˜˜ šœÏ˜ÏU˜S–ý Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  ­¡£b$ ¢ ¨ r j  » ¢ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈÄ%u ¢ ¨Ä ¼“ ¤ ¨âj ¢ ¨^ÖLL¡£¡¡¨ x j`  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDAddress– k x j`| ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnMemCS– k x j`D ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á nRDX/nWRX– kH ¸¤¡šH@Ф¡šHxÀ¤¡šH°À¤¡š x j`¬ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnIOCS– k x j`ä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁnRd/nWr– kHèÀ¤¡šÌ褤¡šxX¸¤¡š x j¡Ÿ ¦h| ¢ ¥ ¨ r j  Š ª  ¬Ä¡£¤¯“ °“¢·“¢¢ª¡¹ k é kpX¬¤¡š`x¬¤¡š x j¡Ÿ ¦| ¢ ¥ ¨ r j  Š ª  ¬Ä¡£¤¯“ °“¢·“¢Âª¢¡¹ k é k˜x¬¤¡šˆX¬¤¡šˆÈФ¡š x j¡Ÿ ¦xì ¢ ¥ ¨ r j  Š ª  ¬Ä¡£¤¯“ °“¢·“¢¢ª¡¹ k é k€È¬¤¡šp謤¡š x j¡Ÿ ¦´ ¢ ¥ ¨ r j  Š ª  ¬Ä¡£¤¯“ °“¢·“¢Âª¢¡¹ k é k˜°¬¤¡šˆ¬¤¡š x j¡Ÿ ¦h´ ¢ ¥ ¨ r j  Š ª  ¬Ä¡£¤¯“ °“¢·“¢¢ª¡¹ k é kp¬¤¡š`°¬¤¡š x j`  ¢ ¨ r j  Š ª  ¬Ä¡£¤¯“ °“¢·“¢¢ª¡¹ k é kh@¬¤¡šX ¬¤¡š x j˜  ¢ ¨ r j  Š ª  ¬Ä¡£¤¯“ °“¢·“¢Âª¢¡¹ k é k  ¬¤¡š@¬¤¡šp@À¤¡šx¸¤¡šh謤¡šˆ Ф¡š x j¸  ¢ ¨ r j  Š ª  ¬Ä¡£¤¯“ °“¢·“¢¢ª¡¹ k é kÀ@¬¤¡š° ¬¤¡šÈ@°¤¡š x jx  ¢ ¨ r j  Š ª  ¬Ä¡£¤¯“ °“¢·“¢Âª¢¡¹ k é k€ ¬¤¡šp@¬¤¡š x j¡Ÿ ¦¸ì ¢ ¥ ¨ r j  Š ª  ¬Ä¡£¤¯“ °“¢·“¢Âª¢¡¹ k é kÀ謤¡š°È¬¤¡šÐ@ؤ¡š x¤¡š °¤¡š¨ ¤¡šÐèؤ¡šhØ¢H¡š Ø¢H¡š k é k é k g– Interpress–:0.0 mm xmin 0.0 mm ymin 94.89722 mm xmax 40.21667 mm ymax –Ô43.03889 mm topLeading 43.03889 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoffš£3™3UšŸ ¤!˜*K˜K˜S–Ô33.86666 mm topLeading 33.86666 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–:0.0 mm xmin 0.0 mm ymin 99.83613 mm xmax 31.04443 mm ymax – Interpress–ŠInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  »ø¡£5· ¢ ¨ r jÄ ¤Ä¿ÄÖ2 ¢ ¥ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈÄu  ¢ ¨Ä &0 ¤ ¨êJ ¢ ¨Vöâ¡£¡¡¨ˆ¤¡š x jÈú ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ápage– k x jx` ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– kxÀ¤8¡šhÀ¤8¡š x jú £‚ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k€¤Ä¡šÀ¡¤¡š€À|¤¡šxX„¤¡šXÀ¤8¡š x j  J ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ábyte – k x j    ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áselector– k ØÀ¤8¡š x j b ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j b ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á29– k x j Øb ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á30– k p0¤¡š x j8b ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á3– k x jpb ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– kpˆ¤¡š x j ðú ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á byte offset– k Ø8¸¤¡š x j ð* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á23– k x j  * ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á22– k x j `* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á21– kX t¤¡š`ˆl¤¡š  ˆ¨¤¡š  ˆ¤8¡š x jú £ êJ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k ØH¤Ä¡š`ˆ¤8¡šˆ80¤¡šXˆ¤8¡š x jX( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k x jx* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k x j8* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á3– k x j¨ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ápage– k ØP¤¡š x j   ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ábyte – k (ˆ¤8¡š x j  Ò ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áselector– k 8P¤¡š x j  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á byte offset– k x j ˜: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á13– k x j0: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á3– k x j à: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á14– k x jh: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k x j0Ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á byte offset– k x j àâ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áselector– k x j à ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ábyte– k h¤¡š X¤°¡šˆ˜¤0¡šˆ˜|¤¡šX ¤(¡š à˜¤0¡š à˜°¤¡š x j°Ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ápage– k x jú £ 2R ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k P¤Ä¡š x jˆ: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k x j (: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á15– kˆ(x¤¡š `˜¤4¡š k é k é k gš£3™3KšŸ ¤¶˜ÀWšœ˜šœ˜U˜S–Ô177.4472 mm topLeading 177.4472 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–90.0 mm xmin 0.0 mm ymin 96.30834 mm xmax 174.625 mm ymax – Interpress–×LInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  ±¡£¸C ¢ ¨ r jÄ ¤Ä ÄW ¢ ¥ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈÄ+7 ¢ ¨ÄÛh ¤ ¨Âä‚ê ¢ ¨+Âﶼ¨¡£¡¡¨+(\h¤¡š x j+(ä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á20, 24, or 32 bits– k x j.À0 ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁDynaBus– k x j+00 ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁPC– k,¸XÀ¤¡š,ÈX¤ ¡š x jŸ¡ ¦/ÚJ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k/¸XĤ¡š.˜Xडš,8˜À¤¡š,xXÀ¤¡š,ˆX¤ ¡š,8XÀ¤¡š,HX¤à¡š,xØÀ¤¡š.ùj¢¢¡š.øh¢¢¡š.÷f¢¢¡š.öd¢¢¡š.õb¢¢¡š.ô`¢¢¡š.ó^¢¢¡š.ò\¢¢¡š.ñZ¢¢¡š.ðX¢¢¡š.ïV¢¢¡š.îT¢¢¡š.íR¢¢¡š.ìP¢¢¡š.ëN¢¢¡š.êL¢¢¡š.éJ¢¢¡š.èH¢¢¡š.èX´¤¡š x j.¸d ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á32– k x j,4 ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á24– k x j,Pô ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á20– k x j,Ð| ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á32– k,¸ XÀ¤¡š x jŸ¡ ¦,N ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k+ð\Ĥ¡š x j+,  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁAddress– k x j.Àä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á32 bits– k+an¢¢¡š+`l¢¢¡š+_j¢¢¡š+^h¢¢¡š+]f¢¢¡š+\d¢¢¡š+[b¢¢¡š+Z`¢¢¡š+Y^¢¢¡š+X\¢¢¡š+WZ¢¢¡š+VX¢¢¡š+UV¢¢¡š+TT¢¢¡š+SR¢¢¡š+RP¢¢¡š+QN¢¢¡š+PL¢¢¡š+P\´¤¡š x j.À  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁAddress– k x j+@ì ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “Р¤ ” •  —Á%DynaBus Address = Map[page] || offset– k x j/¨” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á31– k/´À¤¡š x j/¨ü ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á22– k,0ll¤¡š x jŸ¡ ¦/ŽÒ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k/làĤ¡š,0à褡š+øĤ°¡š+ø”¤°¡š x j+°” ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á16– k+ÌÔÀ¤¡š x j/¸` ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k x j+À¨ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k x j+°H ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á12– k+øH¤°¡š+Ì@À¤¡š.=~¢¢¡š.<|¢¢¡š.;z¢¢¡š.:x¢¢¡š.9v¢¢¡š.8t¢¢¡š.7r¢¢¡š.6p¢¢¡š.5n¢¢¡š.4l¢¢¡š.3j¢¢¡š.2h¢¢¡š.1f¢¢¡š.0d¢¢¡š./b¢¢¡š..`¢¢¡š.-^¢¢¡š.,\¢¢¡š.,l´¤¡š x j.x ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á22– k x j+$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Ábyte– k x j+ t ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Áselector– k+Ì À¤¡š x j-8€ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁSmall– k x j-<0 ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁRAM– k x j-@\ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁMap– k x jŸ¡ ¦,Ê^ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k,¨lĤ¡š- ¤`¡š- $¤¡š-œ ¤d¡š-Ì ¤¡š x j,ü  ¢ ¨ r j  Š ª  Äd¡£¤¯“ °“¢·“¢™¢—BÂb—˜ k é k-œlĤ¡š x jŸ¡ ¦-¸d ¢ ¥ ¨ r j  Š ª  ¬´¡£¤¯“ °“¢·“ª²™¢ª—ª¢—˜ k é k+Ì€À¤¡š/€À¤¡š/Ѐ¤ ¡š+̈À¤¡š,]~¢¢¡š,\|¢¢¡š,[z¢¢¡š,Zx¢¢¡š,Yv¢¢¡š,Xt¢¢¡š,Wr¢¢¡š,Vp¢¢¡š,Un¢¢¡š,Tl¢¢¡š,Sj¢¢¡š,Rh¢¢¡š,Qf¢¢¡š,Pd¢¢¡š,Ob¢¢¡š,N`¢¢¡š,M^¢¢¡š,L\¢¢¡š,Ll´¤¡š x j,<x ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k+Ú€¤¨¡š-ÀlP¤¡š x j+ ä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Áoffset– k.p𼤡š.pp¤$¡š/Â|À¤¡š x j/Œ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á0 is msb– k x j+À„ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k+ø°¤Сš+ø¤Сš+øx¤°¡š x j+¨è ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á0 is lsb– k+Úˆ¤ð¡š x j+$¤ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Áunused– k x j+èì ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á10– k x j+ôˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k x j+ð\ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k x j+𨠢 ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k x jŸ¡ ¦/Šâ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k/hðĤ¡š x j+$d ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Ápage no– k/´À¤¡š x j+$X ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Ápage no– k x jŸ¡ ¦/’Š ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k/p˜Ä¤¡š,0˜¤¡š x j+ð ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k+øD¤°¡š x j+ðX ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k.t˜œ¤¡š x j/¨ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á14– k x j/¸Ô ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k/ÂøÀ¤¡š x j+´H ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á20– k x j+Ä$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k.tp¤È¡š. ~¢¢¡š. |¢¢¡š. z¢¢¡š. x¢¢¡š. v¢¢¡š.t¢¢¡š.r¢¢¡š.p¢¢¡š.n¢¢¡š.l¢¢¡š.j¢¢¡š.h¢¢¡š.f¢¢¡š.d¢¢¡š-ÿb¢¢¡š-þ`¢¢¡š-ý^¢¢¡š-ü\¢¢¡š-ül´¤¡š x j-Øx ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á14– k x j+$ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Ábyte– k+ÌÀ¤¡š x j-<0 ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁRAM– k x j-@\ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁMap– k x jŸ¡ ¦,Ê^ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k,¨lĤ¡š- ¤`¡š- $¤¡š-œ ¤d¡š-Ì ¤¡š x j,ü  ¢ ¨ r j  Š ª  Äd¡£¤¯“ °“¢·“¢™¢—BÂb—˜ k é k-œlĤ¡š x jŸ¡ ¦-¸d ¢ ¥ ¨ r j  Š ª  ¬´¡£¤¯“ °“¢·“ª²™¢ª—ª¢—˜ k é k+ÌøÀ¤¡š+Úø¤0¡š/ÂøÀ¤¡š/Ðø¤¤¡š,]~¢¢¡š,\|¢¢¡š,[z¢¢¡š,Zx¢¢¡š,Yv¢¢¡š,Xt¢¢¡š,Wr¢¢¡š,Vp¢¢¡š,Un¢¢¡š,Tl¢¢¡š,Sj¢¢¡š,Rh¢¢¡š,Qf¢¢¡š,Pd¢¢¡š,Ob¢¢¡š,N`¢¢¡š,M^¢¢¡š,L\¢¢¡š,Ll´¤¡š x j,<x ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k+Ì„À¤¡š x j-8€ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁLarge– k-ÀlT¤¡š+Ì@À¤¡š x j+ ì ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Áselector– k x j+Ä ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k x j+ ¬ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Áoffset– k x j+   ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á0 is lsb– k+øt¤°¡š+ø$¤¡š x j+è  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á18– k+øȤ¡š,0ll¤¡š x jŸ¡ ¦/ŠŠ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k/h˜Ä¤¡š x j/`  ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á0 is msb– k x j/¨  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á31– k x j/¨ÂïÚ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á31– k x jŸ¡ ¦/Ž: ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k/lHĤ¡š.t(¤Ä¡š,…2¢¢¡š,„0¢¢¡š,ƒ.¢¢¡š,‚,¢¢¡š,*¢¢¡š,€(¢¢¡š,&¢¢¡š,~$¢¢¡š,}"¢¢¡š,| ¢¢¡š,{¢¢¡š,z¢¢¡š,y¢¢¡š,x¢¢¡š,w¢¢¡š,v¢¢¡š,u¢¢¡š,t¢¢¡š,t ´¤¡š x j,d, ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k,xडš,P ¤ü¡š,P P¤¡š,` @¤¡š+øŒ¤\¡š x j+ìh ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á26– k x j+ ` ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Áoffset– k+øŒ¤°¡š x j+ðp ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á4– k x j+ÄÂïü ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k x j+ÄÂïØ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k x j+$l ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Ápage no– k+ÌXÀ¤¡š+Ì”À¤¡š/ÐÂïФ¨¡š/ÂÂïÐÀ¤¡š+ÚÂïФȡš+ÌÂïÐÀ¤¡š x jŸ¡ ¦-¸ ¢ ¥ ¨ r j  Š ª  ¬´¡£¤¯“ °“¢·“ª²™¢ª—ª¢—˜ k é k-œ$Ĥ¡š x j,üÄ ¢ ¨ r j  Š ª  Äd¡£¤¯“ °“¢·“¢™¢—BÂb—˜ k é k-„ ¤¡š-œÄ¤d¡š-Ä$¤¡š-Ĥ`¡š x jŸ¡ ¦,Ê ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k,¨ Ĥ¡š x j-<è ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁRAM– k+ÌÂïðÀ¤¡š x j+ ÂïÄ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Áselector– k x j+$Âïà ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Ábyte– k x j-@ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁMap– k x j+¸` ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á28– k+øX¤°¡š+øÂð¤\¡š x j+ðÂïØ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á2– k/ÂtÀ¤¡š x j/´T ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á0– k/´À¤¡š x j/´ü ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k x j-88 ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —ÁExtra– k-À$T¤¡š x j-ø0 ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “À ¤ ” •  —Á6– k.6¢¢¡š.4¢¢¡š.2¢¢¡š.0¢¢¡š..¢¢¡š.,¢¢¡š.*¢¢¡š.(¢¢¡š.&¢¢¡š.$¢¢¡š."¢¢¡š. ¢¢¡š.¢¢¡š.¢¢¡š.¢¢¡š.¢¢¡š. ¢¢¡š. ¢¢¡š. $´¤¡š.tH´¤¡š x j+œ¨ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á0 is lsb– k x j/`ˆ ¢ ¨  ŠÅXeroxÅ PressFontsÅ HELVETICA-MIR£¡ “À ¤ ” •  —Á0 is msb– k,@`褡š x jŸ¡ ¦/ŽR ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k/l`Ĥ¡š k é k é k gš£3™3KšŸ ¤]˜gT–centered lastLineFormatting˜———šœ ˜ šœ„˜„U˜U˜S–Ô31.04444 mm topLeading 31.04444 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–:0.0 mm xmin 0.0 mm ymin 109.7139 mm xmax 28.22222 mm ymax – Interpress–ŠInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  ×ð¡£&  ¢ ¨ r jÄ ¤Ä¿ÄÖ2 ¢ ¥ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈÄu  ¢ ¨Ä &0 ¤ ¨êJ ¢ ¨Vöâ¡£¡¡¨ˆ¤¡š x jÈú ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ápage– k x jx` ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– kxÀ¤8¡šhÀ¤8¡š x jú £‚ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k€¤Ä¡šÀ¡¤¡š€À|¤¡šxX„¤¡šXÀ¤8¡š x j  J ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ábyte – k x j    ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áselector– k ØÀ¤8¡š x j b ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j b ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á29– k x j Øb ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á30– k p0¤¡š x j8b ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á3– k x jpb ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– kpˆ¤¡š x j ðú ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á byte offset– k Ø8¸¤¡š x j ð* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á23– k x j  * ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á22– k x j `* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á21– kX t¤¡š`ˆl¤¡š  ˆ¨¤¡š  ˆ¤8¡š x jú £ êJ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k ØH¤Ä¡š`ˆ¤8¡šˆ80¤¡šXˆ¤8¡š x jX( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k x jx* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k x j8* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á3– k x j¨ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ápage– k ØP¤¡š x j   ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ábyte – k (ˆ¤8¡š x j  Ò ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áselector– k 8P¤¡š x j  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á byte offset– k x j ˜: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á13– k x j0: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á3– k x j à: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á14– k x jh: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k x j0Ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á byte offset– k x j àâ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áselector– k x j à ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ábyte– k h¤¡š X¤°¡šˆ˜¤0¡šˆ˜|¤¡šX ¤(¡š à˜¤0¡š à˜°¤¡š x j°Ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ápage– k x jú £ 2R ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k P¤Ä¡š x jˆ: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k x j (: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á15– kˆ(x¤¡š `˜¤4¡š k é k é k gš£3™3UšŸ ¤+˜7Wšœ˜KšœÓ˜Ó——˜ šœ®˜®U˜U˜S–Ô28.92779 mm topLeading 28.92779 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–80.0 mm xmin 0.0 mm ymin 133.35 mm xmax 26.10557 mm ymax – Interpress–ŠInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  ê¡£V ¢ ¨ r jÄ ¤Ä¿ÄÖ2 ¢ ¥ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ĈÄu  ¢ ¨Ä &0 ¤ ¨êJ ¢ ¨Vöâ¡£¡¡¨ˆ¤¡š x jÈú ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ápage– k x jx` ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– kxÀ¤8¡šhÀ¤8¡š x jú £‚ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k€¤Ä¡šÀ¡¤¡š€À|¤¡šxX„¤¡šXÀ¤8¡š x j  J ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ábyte – k x j    ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áselector– k ØÀ¤8¡š x j b ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á31– k x j b ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á29– k x j Øb ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á30– k p0¤¡š x j8b ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á3– k x jpb ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– kpˆ¤¡š x j ðú ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á byte offset– k Ø8¸¤¡š x j ð* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á23– k x j  * ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á22– k x j `* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á21– kX t¤¡š`ˆl¤¡š  ˆ¨¤¡š  ˆ¤8¡š x jú £ êJ ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k ØH¤Ä¡š`ˆ¤8¡šˆ80¤¡šXˆ¤8¡š x jX( ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k x jx* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k x j8* ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á3– k x j¨ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ápage– k ØP¤¡š x j   ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ábyte – k (ˆ¤8¡š x j  Ò ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áselector– k 8P¤¡š x j  ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á byte offset– k x j ˜: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á13– k x j0: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á3– k x j à: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á14– k x jh: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á4– k x j0Ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á byte offset– k x j àâ ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Áselector– k x j à ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ábyte– k h¤¡š X¤°¡šˆ˜¤0¡šˆ˜|¤¡šX ¤(¡š à˜¤0¡š à˜°¤¡š x j°Ê ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Ápage– k x jú £ 2R ¢ ¥ ¨ r j  Š ª  ÀÀ¡£ °™ÀÀ—¸°—À —¡¡ ¡™ k é k P¤Ä¡š x jˆ: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á0– k x j (: ¢ ¨  ŠÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “Р¤ ” •  —Á15– kˆ(x¤¡š `˜¤4¡š k é k é k gš£3™3UšŸ ¤+˜5Kšœá˜á———R˜˜RšœÏ˜Ï—Všœ˜Ršœ·˜·R˜— ˜$Ršœ¯˜¯R˜”R˜Iragged–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšÏzœ ª>˜`[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœh˜h[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœf˜f[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœ¦˜¦[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœž˜ž[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœá˜á[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœÒ¦œ3¦œ¥ œ2˜Ë[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndent˜[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentš œÒ¦œ¦œ…¦œ¦œ¥ œ2˜§[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœ„˜„[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœ¤˜¤[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœi˜i[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœ›˜›[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœ½˜½[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœG˜G[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœÓŸ˜Ô[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœG˜G[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœû˜û[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœŒ˜Œ[–nclearTabStops 1.25 in flushLeft tabStop 2.67 in flushLeft tabStop 3.25 in flushLeft tabStop 3.25 in restIndentšœ…˜…—— ˜ šœ|˜|šœ˜Wšœ®˜®—˜ W˜Œ—šœ ˜ W˜q—˜W˜Ñ————T–centered lastLineFormatting˜ ˜% šœ˜ šœ@˜@Iunleaded–RclearTabStops 3.00 in flushLeft tabStop 3.5 in flushLeft tabStop 3.5 in restIndent˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšª˜–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœŒ˜Œ\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜'\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜—\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœh˜h\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÄ˜Ä\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ>˜>\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ=˜=\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœª˜ª\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœG˜G\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœr˜r\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ£˜£\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ2˜2\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ»˜»\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ9˜9\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœb˜b\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ2˜2\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ1˜1\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœH˜H\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ1˜1\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ(˜(\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœS˜S\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœe˜e\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜\–RclearTabStops 3.00 in flushLeft tabStop 3.5 in flushLeft tabStop 3.5 in restIndent˜—— šœ˜ šœ}˜}\–RclearTabStops 3.00 in flushLeft tabStop 3.5 in flushLeft tabStop 3.5 in restIndent˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšª˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœc˜c\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœu˜u\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ.˜.\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ#˜#\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ9˜9\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜—\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜— šœ˜ šœ“˜“\–RclearTabStops 3.00 in flushLeft tabStop 3.5 in flushLeft tabStop 3.5 in restIndent˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšª˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœv˜v\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ®˜®\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ´˜´\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ(˜(\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœï˜ï\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœŒ˜Œ\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ‰˜‰\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÓ˜Ó\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ\˜\\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœY˜Y\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÕ˜Õ\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÖ˜Ö\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ¥˜¥\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœŽ˜Ž\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ¨˜¨\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ¨˜¨\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ1˜1\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ~˜~\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ€˜€\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœH˜H\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœy˜y—\–RclearTabStops 2.00 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndent˜— ˜ šœ«˜«\–RclearTabStops 3.00 in flushLeft tabStop 3.5 in flushLeft tabStop 3.5 in restIndent˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšª˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ™˜™\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœD˜D\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœj˜j\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ9˜9\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœR˜R\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ`˜`—\–RclearTabStops 3.00 in flushLeft tabStop 3.5 in flushLeft tabStop 3.5 in restIndent˜— šœ˜ šœA˜A\–RclearTabStops 3.00 in flushLeft tabStop 3.5 in flushLeft tabStop 3.5 in restIndent˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšª˜\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœÜ˜Ü\–RclearTabStops 1.75 in flushLeft tabStop 2.5 in flushLeft tabStop 2.5 in restIndentšœ0˜0—T–centered lastLineFormatting˜—— šœ˜Ršœ{˜{ ˜J–YclearTabStops 3.00 in flushLeft tabStop 3.3 in flushLeft tabStop 5.0 in flushLeft tabStop˜Itight–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopšÐbz%˜%]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStop˜]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš˜]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš ˜ ]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš*˜*]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš ˜ ]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš˜]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš ˜ ]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš&˜&]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš ˜ ]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš#˜#]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopš ˜ ]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStop˜]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 4.9 in flushLeft tabStopšÑbsz˜]–rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStop˜]–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšl˜l]–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentš:˜:]–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšö˜ö]–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentšp˜p]–9clearTabStops 2.00 in flushLeft tabStop 2.0 in restIndentš ˜ T–centered lastLineFormatting˜—— –rclearTabStops 2.00 in flushLeft tabStop 4.0 in flushLeft tabStop 4.3 in flushLeft tabStop 5.2 in flushLeft tabStopšœ˜ šœ˜R–YclearTabStops 3.00 in flushLeft tabStop 3.3 in flushLeft tabStop 5.0 in flushLeft tabStop˜ –YclearTabStops 3.00 in flushLeft tabStop 3.3 in flushLeft tabStop 5.0 in flushLeft tabStop˜K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndent˜S–« Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄÙÄ1æy ¢ ¨¢¯“¢°“¢·“¡¡¨ÄÉ·}ÄR™Äš}˜¢¯“¢°“¢·“¡¡¨ÄÉ·}Äš}™ÄÛ·}ŽÄRÄí·}ŽÄš}˜¢¯“¢°“¢·“¡¡¨Äí·}Äš}™Äá„43ŽÄRÄ‹ŽÄš}˜ x jÄ} ¤Äñ‹ÄR ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁClock– k x jÄ} ¤Äñ‹Äëš} ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á DynabusIn– k¢¯“¢°“¢·“¡¡¨ÄúkÄðš}™Äá·}Äì}—˜¢¯“¢°“¢·“¡¡¨Äá·}Äì}™ÄúkÄÐ+ù—˜¢¯“¢°“¢·“¡¡¨ÄúkÄðš}™Äö·}Ž˜¢¯“¢°“¢·“¡¡¨ÄñÓ@Äçš}™Äö·}Ž˜¢¯“¢°“¢·“¡¡¨Äá·}Äì}™Ä˜k@Ž˜¢¯“¢°“¢·“¡¡¨Äö·}Äðš}™ÄÛ­§Äì}—Äö·}Äçš}—˜¢¯“¢°“¢·“¡¡¨ÄÛ­§Äì}™Ä§"{ÙŽ˜¡¯“¢°“¢·“¡¡¨ÄúkÄR™ÄÚZ}¤¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨Äí·}ÄR™ÄÚZ}¤¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨Äö·}ÄR™ÄÚZ}¤¨¢¡¢ ¡º x jÄ} ¤ú £ÄÙÜçÄÖZ} ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á{– k x jÄ} ¤ú £Äº*ÄÖZ} ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á{– k x jÄР¤Äû+Äк} ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁT– k x jÄР¤ÄÈ‹ÍÄÓ¯u ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁT– k x jÄР¤ÄêG}ÄÏ*} ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Ás– k x jÄР¤Äó7}ÄÏ:} ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Áh– k¢¯“¡¡¨ x j¡¯“ °“¢·“Äñ'ÄÎy™ÄÔĽŽÄÎyÄñ'Ž¡¸ k k k g– Interpress–:0.0 mm xmin 0.0 mm ymin 67.14067 mm xmax 52.20062 mm ymax –Ô55.02285 mm topLeading 55.02285 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–à"Gargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/timing.gargoyle at December 18, 1987 9:40:40 am PST Produced by version 8710.19 Scripts: ///Users/bland.pa/gargoyle/bland871215-09-58-30.script, ///Users/bland.pa/gargoyle/bland871217-14-54-57.script, ///Users/bland.pa/gargoyle/bland871217-15-00-27.script Slope: [T 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 4.0 4] [F 2.0 2] [F 1.0 1] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.125 1/8] [F 0.1111111 1/9] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 1.970643e-2 0.02] [F 0.0 0] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: F GravityExtent: 4.340278e-2 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [16.0 16.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: T [-61.0,-30.0] Entities: [22]: Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-111.176,13.52] (Line ) [-111.176,31.952] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-111.176,31.952] (Line ) [-74.312,31.952] (Line ) [-74.312,13.52] (Line ) [-37.448,13.52] (Line ) [-37.448,31.952] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [4] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-37.448,31.952] (Line ) [-0.5840006,31.952] (Line ) [-0.5840006,13.52] (Line ) [36.28,13.52] (Line ) [36.28,31.952] Text T "Clock" xerox/pressfonts/helvetica [8.192 0.0 -148.04 0.0 8.192 13.52][] F 1.0 props: ( F ) Text T "DynabusIn" xerox/pressfonts/helvetica [8.192 0.0 -148.04 0.0 8.192 -41.776][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-57.16,-31.536] (Line ) [-62.024,-40.752] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-62.024,-40.752] (Line ) [-57.16,-49.1767] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-57.16,-31.536] (Line ) [-19.016,-31.536] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-56.70314,-49.968] (Line ) [-19.016,-49.968] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-62.024,-40.752] (Line ) [-82.86563,-40.752] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-19.016,-31.536] (Line ) [-13.69514,-40.752] (Line ) [-19.016,-49.968] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-13.69514,-40.752] (Line ) [0.4399996,-40.752] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-57.16,13.52] (Line ) [-57.16,-77.104] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-37.448,13.52] (Line ) [-37.448,-77.104] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-19.016,13.52] (Line ) [-19.016,-77.104] Text T "{" xerox/pressfonts/helvetica [0.0 -16.384 -42.26839 16.384 0.0 -85.29601][] F 1.0 props: ( F ) Text T "{" xerox/pressfonts/helvetica [0.0 -16.384 -23.06839 16.384 0.0 -85.29601][] F 1.0 props: ( F ) Text T "T" xerox/pressfonts/helvetica [8.32 0.0 -49.48 0.0 8.32 -96.816][] F 1.0 props: ( F ) Text T "T" xerox/pressfonts/helvetica [8.32 0.0 -30.7961 0.0 8.32 -96.96584][] F 1.0 props: ( F ) Text T "s" xerox/pressfonts/helvetica [8.32 0.0 -44.488 0.0 8.32 -100.016][] F 1.0 props: ( F ) Text T "h" xerox/pressfonts/helvetica [8.32 0.0 -26.184 0.0 8.32 -99.888][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [] d: T F [-59.72,40.4] (Line ) [-46.28,40.4] šœ3™3K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndent˜Iartworkcaption–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentšŸ œ˜(K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentšœ_˜_K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentšœ]˜]—Y–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndent˜S–Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄQˆ}Ä %' ¢ ¨¢¯“¢°“¢·“¡¡¨\ÄhàC™Äq}ÄÓyaÄ-Ùs—Ä!³º˜¢¯“¢°“¢·“¡¡¨ÄÔ}Ä-Ùs™Ä!³º˜¢¯“¢°“¢·“¡¡¨Ä£Ä!³º™Ä-Ùs˜ x jÄР¤Ä°l}ÄJoW ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁClock– k x jÄР¤Ä°l}ÄõŒï ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á Dynabus Out– k¢¯“¢°“¢·“¡¡¨ÄÐŽ•Äöz)™ÄÖL}Äî…—˜¢¯“¢°“¢·“¡¡¨ÄÖL}Äî…™ÄÐŽ•Äáµ—ÄÝ/IŽ˜¢¯“¢°“¢·“¡¡¨ÄÖL}Äî…™ÄÝ?UŽ˜ x jÄР¤Äå[GÄÑgÌ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁT– k x jÄР¤Äÿ#ádÄÞb ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Ápd– k¢¯“¢°“¢·“¡¡¨ÄÞY>Äöz)™Äó¬}Äî…—˜¢¯“¢°“¢·“¡¡¨Äó¬}Äî…™Äçß^Ž˜¡¯“¢°“¢·“¡¡¨Äõ¼Äq}™Äܪˤ¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨ÄÐŽ•Äq}™Äܪˤ¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨ÄÓyaÄ!³º™ÄHQô¤¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨Ä)í ËÄg˜™ÄEp뤨¢¡¢ ¡º¡¡¨ÄMøýÄ¢A™Ä2ÐWÄ)\qÄÁ ÄnóoÄÝzÄ·¡’ÄúþËÄnóoÄäÄëÄ)\qÄëΧÄ¢A¡’ÄäÄëÄ4 “ÄüïŒÄž`ÄÝzÄD¹Ë¡’Ä ‚CÄž`Ä{‘Ä4 “ÄMøýÄ¢A¡’¡¡¡¡™ x jÄР¤Ä\ 1Ä/•… ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁT– k x jÄР¤ÄègÄ%i ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Ácycle– k¡¡¨ÄÇ”³Äë¹u™ÄùúÄÔàÄÆÉ Äß¿ºÄÒl}ÄÒ­ñ¡’ÄÖ¿oÄß¿ºÄÝÉSÄÔàĨ£ÓÄë¹u¡’ÄÝÉSÄÊ›ÄÖ¿oÄÀPuÄÒl}Äè±}¡’ÄÆÉ ÄÀPuÄùúÄÊ›ÄÇ”³Äë¹u¡’¡¡¡¡™¢¯“¢°“¢·“¡¡¨Äõ¼Äq}™ÄhàC˜¢¯“¢°“¢·“¡¡¨Äõ¼ÄhàC™\Ž˜¢¯“¢°“¢·“¡¡¨ÄÝ/IÄíC™Äó¬}Äî…—˜¡¯“¢°“¢·“¡¡¨ÄÓyaÄñ}™ÄÒà ¤¨¢¡¢ ¡º¡¯“¢°“¢·“¡¡¨Ä²9ÎÄ-™ÄÊô7¤¨¢¡¢ ¡º x jÄР¤ÄØ~=ÄÚ9¦ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁT– k x jÄР¤ÄÞY2Äâa} ¢ ¥ ¨ÅxeroxÅ pressfontsÅ helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Ám– k x jÄ} ¤ú £Äú27Äû= ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ Laurel-mrr£¡ “ •  —¡¡¨  Š¡²“Á{– k¢¯“¢°“¢·“¡¡¨ÄמÄõ™O™ÄÜéMŽ˜¢¯“¢°“¢·“¡¡¨ÄÓyaÄ!³º™Ä£Ž˜¢¯“¢°“¢·“¡¡¨Ä£Ä-Ùs™ÄÔ}Ž˜¢¯“¡¡¨ x j¡¯“ °“¢·“Ä®x}ÄõÛ'™Ä@Ü£ÄÎ}ŽÄõÛ'Ä®x}Ž¡¸ k k k g– Interpress–:0.0 mm xmin 0.0 mm ymin 73.93658 mm xmax 59.42711 mm ymax –Ô62.24934 mm topLeading 62.24934 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–°9Gargoyle file for scene: stuffed from ///Users/bland.pa/gargoyle/timing2.gargoyle at December 18, 1987 9:41:37 am PST Produced by version 8710.19 Scripts: ///Users/bland.pa/gargoyle/bland871215-09-58-30.script, ///Users/bland.pa/gargoyle/bland871215-11-07-46.script, ///Users/bland.pa/gargoyle/bland871215-11-24-01.script, ///Users/bland.pa/gargoyle/bland871217-14-30-08.script, ///Users/bland.pa/gargoyle/bland871217-14-31-14.script, ///Users/bland.pa/gargoyle/bland871217-15-06-01.script, ///Users/bland.pa/gargoyle/bland871217-15-11-19.script, ///Users/bland.pa/gargoyle/bland871218-09-27-42.script Slope: [T 0.0] [F 15.0] [F 30.0] [F 45.0] [F 60.0] [T 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 6.5 6.5] [F 4.0 4] [F 3.5 3.5] [F 3.0 3] [F 2.361783 2.36] [F 2.0 2] [F 1.75 1.75] [F 1.0 1] [F 0.8 0.8] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.2 0.2] [F 0.1574802 0.16] [F 0.15 0.15] [F 0.125 1/8] [F 0.1111111 1/9] [F 0.0625 0.06] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.25 0.25] [F 0.2 0.2] [F 0.15 0.15] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 1.970643e-2 0.02] [F 0.0 0] Midpoints: T Heuristics: T ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: T GravityExtent: 0.3472222 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [16.0 16.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: T [-68.0,13.0] Entities: [33]: Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [3] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-68.0,46.3696] (Line ) [-68.0,31.624] (Line ) [-32.29178,31.63612] (Line ) [-32.29178,46.38173] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [40.608,31.63612] (Line ) [40.608,46.38173] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [4.828222,46.38173] (Line ) [4.828222,31.63612] Text T "Clock" xerox/pressfonts/helvetica [8.32 0.0 -162.976 0.0 8.32 31.81135][] F 1.0 props: ( F ) Text T "Dynabus Out" xerox/pressfonts/helvetica [8.32 0.0 -162.976 0.0 8.32 -11.19665][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-81.5168,-4.408679] (Line ) [-85.408,-11.78149] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [2] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-85.408,-11.78149] (Line ) [-81.5168,-18.77724] (Line ) [-27.09118,-18.77724] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-85.408,-11.78149] (Line ) [-104.6706,-11.78149] Text T "T" xerox/pressfonts/helvetica [8.32 0.0 -96.0704 0.0 8.32 -58.47549][] F 1.0 props: ( F ) Text T "pd" xerox/pressfonts/helvetica [8.32 0.0 -92.0768 0.0 8.32 -61.03549][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-27.0912,-4.408679] (Line ) [-25.248,-11.78149] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-25.248,-11.78149] (Line ) [-17.64857,-11.78149] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-105.12,31.624] (Line ) [-105.12,-44.56159] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-81.5168,31.624] (Line ) [-81.5168,-44.56159] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-32.29178,46.38173] (Line ) [-32.29178,75.87296] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [40.16001,46.15133] (Line ) [40.16001,75.64256] Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [1 1.0] d: T F [39.21415,77.32309] (Bezier [37.9242,93.69912] [9.120668,77.39237] Tools ) [4.128004,87.8] (Bezier [-0.8644638,77.39237] [-29.66808,93.69912] Tools ) [-30.95809,77.32309] (Bezier [-29.66808,90.63944] [-0.8645372,75.50093] Tools ) [4.128004,86.66504] (Bezier [9.120741,75.50093] [37.92413,90.63944] Tools ) Text T "T" xerox/pressfonts/helvetica [8.32 0.0 2.323842 0.0 8.32 91.58646][] F 1.0 props: ( F ) Text T "cycle" xerox/pressfonts/helvetica [8.32 0.0 6.73249 0.0 8.32 90.50477][] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 0.0 c: T [1 1.0] d: T F [1.311623,64.28531] (Line Tools ) [1.311623,64.28531] Outline fillColor: [1 1.0] Trajectories: [1] Traj (open) [3] arrows: 0 j: round e: T round w: 0.0 c: T [1 1.0] d: T F [-55.95212,60.62901] (Line Tools ) [-62.67264,60.62901] (Line Tools ) [-59.31239,66.60276] (Line Tools ) [-55.95212,60.62901] Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [1 1.0] d: T F [-80.69272,-44.36752] (Bezier [-81.15791,-50.27233] [-91.54376,-44.39249] Tools ) [-93.34399,-48.14522] (Bezier [-95.14416,-44.39249] [-105.5301,-50.27233] Tools ) [-105.9953,-44.36752] (Bezier [-105.5301,-49.16906] [-95.14416,-43.71046] Tools ) [-93.34399,-47.736] (Bezier [-91.54376,-43.71046] [-81.15791,-49.16906] Tools ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-105.12,31.624] (Line ) [-105.12,46.3696] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-105.12,46.3696] (Line ) [-68.0,46.3696] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-27.09118,-18.52123] (Line ) [-25.248,-11.78149] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-32.29178,32.648] (Line ) [-32.29178,-43.5376] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 1.0 c: T [1 1.0] d: T T [4.0 8.0] 2.0 0.0 [-27.7312,32.52] (Line ) [-27.7312,-43.6656] Text T "T" xerox/pressfonts/helvetica [8.32 0.0 -31.90536 0.0 8.32 -58.25902][] F 1.0 props: ( F ) Text T "m" xerox/pressfonts/helvetica [8.32 0.0 -28.1536 0.0 8.32 -60.66401][] F 1.0 props: ( F ) Text T "{" xerox/pressfonts/Laurel [0.0 -8.192 -27.01818 8.192 0.0 -48.76][] F 1.0 props: ( F ) Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-81.4016,-4.505922] (Line ) [-26.97598,-4.505922] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [-32.29178,46.38173] (Line ) [4.828222,46.38173] Outline fillColor: [1 0.5] Trajectories: [1] Traj (open) [1] arrows: 0 j: round e: T round w: 2.0 c: T [1 1.0] d: T F [4.828222,31.63612] (Line ) [40.608,31.63612] šœ3™3^–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentšŸ œ˜)K–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentšœG˜GK–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentšœa˜aK–Q11.5 pt leading 11.5 pt bottomLeading 11.5 pt topLeading 10 pt bigger leftIndentšœj˜j— šœ ˜ –ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop šœ'˜'K–ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop šœÂ˜ÂK–ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop šœ¤˜T–ZclearTabStops 3.00 in flushLeft tabStop 4.0 in flushLeft tabStop 5.0 in flushLeft tabStop ˜———Q–10 pt smaller bottomLeading˜)S–¼§Interpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨  Fâ¡£2n ¢ ¨ r jıQ ¤Ä‘}Äø&! ¢ ¥ ¨¡¡¨ÄWB ¤ ¨ r j¡¥“ļ= ¤ ¨¡¡¨ x j k x j k x j k x j k x jÄ ·“ ¤Ä×?FijB ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁPCLK– k x jÄ ·“ ¤Ä]GBÄ—/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁResetDrv– k¡¡¨Ä7OÄÄ”h•™Ä3/ŽÄšÐ9Ä7OÄŽÄ”h•¡¡¡¡™ x j k¡¡¨Ä3»Ä†¥7™ÄJ `ŽÄšÐ9Ä3»ŽÄ†¥7¡¡¡¡™ x j k¡¡¨ÄQpQÄU×™ÄP•PŽÄ~©.ÄQpQŽÄUס¡¡¡™ x j k¡¡¨Ä7OÄÄ.Ç™ÄQpQŽÄ~©.Ä7OÄŽÄ.Ç¡¡¡¡™ x j k x jÄ ·“ ¤Ä\(/Ä¢¤C ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnRDXnIOR– k x jÄ ·“ ¤F £Ä¿Eĉ: ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á10K– k¡¡¨ÄgËJÄS\ñ™Ä^+.ŽÄrjIÄgËJŽÄS\ñ¡¡¡¡™ x j k x jÄ ·“ ¤ÄŒžÅÄ]K ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD0– k¡¡¨ÄgËJÄ5j‘™Ä^+.ŽÄdµÄgËJŽÄ5j‘¡¡¡¡™ x j k x jÄ ·“ ¤ÄÉ™dįB ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD1– k¡¡¨ÄgËJÄ;i˜™Ä^+.ŽÄVÛÄgËJŽÄ;i˜¡¡¡¡™ x j k x jÄ ·“ ¤Äj¶5ÄhF ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD2– k¡¡¨ÄgËJÄ«ó ™Ä^+.ŽÄ5ÄgËJŽÄ«ó ¡¡¡¡™ x j k x jÄ ·“ ¤Ä&@ÄPÜÁ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD3– k¡¡¨ÄgËJÄP1¸™Ä^+.ŽÄE˜ŸÄgËJŽÄP1¸¡¡¡¡™ x j k x jÄ ·“ ¤ÄJ}%Ä-éh ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD4– k¡¡¨ÄgËJÄAÿ™Ä^+.ŽÄÕCÄgËJŽÄAÿ¡¡¡¡™ x j k x jÄ ·“ ¤Ä«#UÄ-wb ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD5– k¡¡¨ÄgËJÄ@m†™Ä^+.ŽÄ*õYÄgËJŽÄ@m†¡¡¡¡™ x j k x jÄ ·“ ¤ÄzÏ=Ä"‰G ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD6– k¡¡¨ÄgËJÄ·1l™Ä^+.ŽÄª<QÄgËJŽÄ·1l¡¡¡¡™ x j k x jÄ ·“ ¤ÄvÍ;Ä8ÿp ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD7– k¡¡¨ÄgËJÄ"V;™Ä^+.ŽÄUÓ“ÄgËJŽÄ"V;¡¡¡¡™ x j k x jÄ ·“ ¤Ä% Ä%›@ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD8– k¡¡¨ÄgËJÄxIÇ™Ä^+.ŽÄVŽÄgËJŽÄxIÇ¡¡¡¡™ x j k x jÄ ·“ ¤ÄŽñGÄAGk ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD9– k¡¡¨ÄgËJÄ7ÌY™Ä^+.ŽÄHñtÄgËJŽÄ7ÌY¡¡¡¡™ x j k x jÄ ·“ ¤ÄB)!Ä } ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD10– k¡¡¨ÄgËJÄ1ë™Ä^+.ŽÄéŒÄgËJŽÄ1ë¡¡¡¡™ x j k x jÄ ·“ ¤Ä’IÄMów ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD11– k¡¡¨ÄgËJÄpᨙÄ^+.ŽÄŒ%ÐÄgËJŽÄpᨡ¡¡¡™ x j k x jÄ ·“ ¤Ärì¹ÄÖÆ= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD12– k¡¡¨ÄgËJÄhÚ—™Ä^+.ŽÄ,¯ÄgËJŽÄhÚ—¡¡¡¡™ x j k x jÄ ·“ ¤Ä¢bQÄæMI ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD13– k¡¡¨ÄgËJÄÉ™Ä^+.ŽÄîŸLÄgËJŽÄÉ¡¡¡¡™ x j k x jÄ ·“ ¤ÄvH;Äs™  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD14– k¡¡¨ÄgËJį÷î™Ä^+.ŽÄAøYÄgËJŽÄ¯÷î¡¡¡¡™ x j k x jÄ ·“ ¤Ä¦iSÄ]} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD15– k x jÄ ·“ ¤ÄŠöGÄûñ9 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁAddress– k¡¡¨ÄgËJÄrý‡™Ä^+.ŽÄ^ÁoÄgËJŽÄrý‡¡¡¡¡™ x j k x jÄ ·“ ¤Ä>mÄ\™l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA0– k¡¡¨ÄgËJÄŒÁ¡™Ä^+.ŽÄR[^ÄgËJŽÄŒÁ¡¡¡¡¡™ x j k x jÄ ·“ ¤ÄN¤'Ä@;I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA1– k¡¡¨ÄgËJįž™Ä^+.ŽÄ>çFÄgËJŽÄ¯ž¡¡¡¡™ x j k x jÄ ·“ ¤ÄŽüGÄš’Ç ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA2– k¡¡¨ÄgËJÄj¡t™Ä^+.ŽÄÙšÄgËJŽÄj¡t¡¡¡¡™ x j k x jÄ ·“ ¤ÄxÑ<Ä9W> ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA3– k¡¡¨ÄgËJÄdÃk™Ä^+.ŽÄVÏ\ÄgËJŽÄdÃk¡¡¡¡™ x j k x jÄ ·“ ¤Ä› MÄgBm ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA4– k¡¡¨ÄgËJÄ8ã;™Ä^+.ŽÄ`›dÄgËJŽÄ8ã;¡¡¡¡™ x j k x jÄ ·“ ¤Ä. Ä»,Á ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA5– k¡¡¨ÄgËJÄ™Ä^+.ŽÄK!LÄgËJŽÄ¡¡¡¡™ x j k x jÄ ·“ ¤ÄvÏ;Ävw ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA6– k¡¡¨ÄgËJÄ&Y&™Ä^+.ŽÄ×YÕÄgËJŽÄ&Y&¡¡¡¡™ x j k x jÄ ·“ ¤ÄNŒ'ÄJI ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA7– k¡¡¨ÄgËJÄ]ªW™Ä^+.ŽÄ0ˆ-ÄgËJŽÄ]ªW¡¡¡¡™ x j k x jÄ ·“ ¤ÄŽ÷GÄYÓS ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA8– k¡¡¨ÄgËJÄQUJ™Ä^+.ŽÄ1‹-ÄgËJŽÄQUJ¡¡¡¡™ x j k x jÄ ·“ ¤Äjº5Ä®‹ž ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA9– k¡¡¨ÄgËJÄA :™Ä^+.ŽÄÌÁ~ÄgËJŽÄA :¡¡¡¡™ x j k x jÄ ·“ ¤ÄÚ”mÄ^¯T ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA10– k¡¡¨ÄgËJÄeÒY™Ä^+.ŽÄCœ;ÄgËJŽÄeÒY¡¡¡¡™ x j k x jÄ ·“ ¤ÄVX+ÄiÅ\ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA11– k¡¡¨ÄgËJÄe}W™Ä^+.ŽÄÛ©¼ÄgËJŽÄe}W¡¡¡¡™ x j k x jÄ ·“ ¤Ä®yWÄÆ© ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA12– k¡¡¨ÄgËJÄOªC™Ä^+.ŽÄbØSÄgËJŽÄOªC¡¡¡¡™ x j k x jÄ ·“ ¤ÄP5(Ä—¸ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA13– k¡¡¨ÄgËJÄì>ÙÄ^+.ŽÄS¹EÄgËJŽÄì>á¡¡¡™ x j k x jÄ ·“ ¤ÄNߧÄnÂ[ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA14– k¡¡¨ÄgËJÄЋ©™Ä^+.ŽÄuh_ÄgËJŽÄЋ©¡¡¡¡™ x j k x jÄ ·“ ¤ÄdE2ÄTKD ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA15– k¡¡¨ÄgËJÄÏ™Ä^+.ŽÄT·AÄgËJŽÄÏ¡¡¡¡™ x j k x jÄ ·“ ¤Ä(ÄŽxm ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA16– k¡¡¨ÄgËJÄw'Z™Ä^+.ŽÄ‡;fÄgËJŽÄw'Z¡¡¡¡™ x j k x jÄ ·“ ¤ÄfI3Ä/Ý$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA17– k¡¡¨ÄgËJÄOp;™Ä^+.ŽÄx+ÄgËJŽÄOp;¡¡¡¡™ x j k x jÄ ·“ ¤ÄœgNÄ^ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA18– k¡¡¨ÄgËJÄH5™Ä^+.ŽÄŽhÄgËJŽÄH5¡¡¡¡™ x j k x jÄ ·“ ¤ÄJ2%ÄK™7 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA19– k¡¡¨ÄgËJÄ°ço™Ä^+.ŽÄµ1ÄgËJŽÄ°ço¡¡¡¡™ x j k x jÄ ·“ ¤ÄÚ”mÄŸïd ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA20– k¡¡¨ÄgËJÄ®O™Ä^+.ŽÄUÂ5ÄgËJŽÄ®O¡¡¡¡™ x j k x jÄ ·“ ¤ÄVX+Äq‡F ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA21– k¡¡¨ÄgËJÄ5¶½™Ä^+.ŽÄ[ß8ÄgËJŽÄ5¶½¡¡¡¡™ x j k x jÄ ·“ ¤Ä®yWÄý9š ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA22– k¡¡¨ÄgËJÄ“ØY™Ä^+.ŽÄEÙ*ÄgËJŽÄ“ØY¡¡¡¡™ x j k x jÄ ·“ ¤ÄP5(Ä~­L ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA23– k x jÄ ·“ ¤ÄHÝ%Ä- ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnMemCS– k x jÄ ·“ ¤Ä¤íSÄ[/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnIOCS– k¡¡¨Äqß\Äj47™Ä^+.ŽÄªXÄqß\ŽÄj47¡¡¡¡™ x j k¡¡¨Äqß\Äî9ý™Ä^+.ŽÄIÄqß\ŽÄî9ý¡¡¡¡™ x j k x jÄ ·“ ¤ÄŽIÄyÊ= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA28-A24– k¡¡¨ÄgËJćçC™Ä^+.ŽÄ:±›ÄgËJŽÄ‡çC¡¡¡¡™ x j k x jÄ ·“ ¤ÄNߧÄ„6A ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA24– k¡¡¨ÄgËJÄT)™Ä^+.ŽÄôGwÄgËJŽÄT)¡¡¡¡™ x j k x jÄ ·“ ¤ÄdE2ÄTQ) ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA25– k¡¡¨ÄgËJļ­[™Ä^+.ŽÄgÃ2ÄgËJŽÄ¼­[¡¡¡¡™ x j k x jÄ ·“ ¤Ä(Ä—ÄI ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA26– k¡¡¨ÄgËJÄËLa™Ä^+.ŽÄ†A@ÄgËJŽÄËLa¡¡¡¡™ x j k x jÄ ·“ ¤ÄfI3ÄT( ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA27– k¡¡¨ÄgËJÄ2×™Ä^+.ŽÄJ5#ÄgËJŽÄ2ס¡¡¡™ x j k x jÄ ·“ ¤ÄœgNÄ™ìÁ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA28– k¡¡¨ÄgËJÄ,õ™Ä^+.ŽÄžJÄgËJŽÄ,õ¡¡¡¡™ x j k x jÄ ·“ ¤ÄÊgÄOk% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA29nINTA– k¡¡¨ÄgËJăö=™Ä^+.ŽÄc™.ÄgËJŽÄƒö=¡¡¡¡™ x j k x jÄ ·“ ¤ÄdC3Ćy> ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA30DTnR– k¡¡¨ÄgËJÄJQ"™Ä^+.ŽÄ8áÄgËJŽÄJQ"¡¡¡¡™ x j k x jÄ ·“ ¤Ä“nKÄåÇ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA31nDEN– k¡¡¨ÄˆGMÄ–A™Ä^+.ŽÄˆ^;ĈGMŽÄ–A¡¡¡¡™ x j k x jÄ ·“ ¤Ä•ÂKÄ»…Q ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnBHE– k¡¡¨Ä8 Äå£;™Ä^+.ŽÄ”r?Ä8 ŽÄå£;¡¡¡¡™ x j k x jÄ ·“ ¤Ä^#/Ä«*µ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnWR– k¡¡¨Ä9+!ÄDî™Ä^+.ŽÄ~5Ä9+!ŽÄDî¡¡¡¡™ x j k x jÄ ·“ ¤ÄB5!Äy‚3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnRD– k¡¡¨Ä—duÄjN—™Ä^+.ŽÄ]¦'Ä—duŽÄjN—¡¡¡¡™ x j k x jÄ ·“ ¤Ä¿ubÄJŽ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnWRXnIOW– k¡¡¨Ä—duÄ”s§™Ä^+.ŽÄ. Ä—duŽÄ”s§¡¡¡¡™ x j k¡¡¨Ä—duÄ Ç™Ä^+.ŽÄ•8=Ä—duŽÄ Ç¡¡¡¡™ x j k x jÄ ·“ ¤Ä¤˜SÄÙ5 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnReady– k¡¡¨Ä?Ç4Äaq&™Ä^+.ŽÄi6)Ä?Ç4ŽÄaq&¡¡¡¡™ x j k x jÄ ·“ ¤Ä¿K`ÄËO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁnFault– k¡¡¨Ä?Ç4ÄzV‘™Ä^+.ŽÄ¾œIÄ?Ç4ŽÄzV‘¡¡¡¡™ x j k x jÄ ·“ ¤ÄìGÄËõN ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁBAck– k¡¡¨Ä?Ç4Äl™Ä^+.ŽÄ°sCÄ?Ç4ŽÄl¡¡¡¡™ x j k x jÄ ·“ ¤ÄQÄG| ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁBReq– k¡¡¨Ä7OÄÄhcÝ™ÄK”EŽÄ $_Ä7OÄŽÄhcÝ¡¡¡¡™ x j k¡¡¨Ä„vEÄIª%™Ä^+.ŽÄY­-Ä„vEŽÄIª%¡¡¡¡™ x j k¡¡¨Ä„vEÄIª%™ÄDÀ©ŽÄN;'Ä„vEŽÄIª%¡¡¡¡™ x j k¡¡¨ÄÒ˜oÄÝãn™ÄŽoKŽÄ†A@ÄÒ˜oŽÄÝãn¡¡¡¡™ x j k¡¡¨ÄK¿'Ä(k™ÄëIŽÄôGwÄK¿'ŽÄ(k¡¡¡¡™ x j k¡¡¨Ä,óÄ(k™ÄªÆ[ŽÄ_/Ä,óŽÄ(k¡¡¡¡™ x j k¡¡¨Äd33Ä(k™Ä¥1TŽÄ_/Äd33ŽÄ(k¡¡¡¡™ x j k¡¡¨ÄK¿'Ä(k™ÄëIŽÄ_/ÄK¿'ŽÄ(k¡¡¡¡™ x j k¡¡¨Ä„vEÄ(k™ÄDÀ©ŽÄ_/Ä„vEŽÄ(k¡¡¡¡™ x j k¡¡¨ÄÒ˜oÄ(k™ÄŽoKŽÄ_/ÄÒ˜oŽÄ(k¡¡¡¡™ x j k¡¡¨ÄKÕ±Ä(k™ÄªÆ[ŽÄ_/ÄKÕ±ŽÄ(k¡¡¡¡™ x j k¡¡¨Ä„vEÄN;'™ÄDÀ©ŽÄ ‡Ä„vEŽÄN;'¡¡¡¡™ x j k¡¡¨ÄÀTgÄ ‡™Äé~ŽÄ(kÄÀTgŽÄ ‡¡¡¡¡™ x j k¡¡¨ÄŽÎÄC£Þ™Ä•MŽÄõOÄŽÎŽÄC£Þ¡¡¡¡™ x j k¡¡¨ÄŽÎÄ/Λ™Ä•MŽÄ(m}ÄŽÎŽÄ/Λ¡¡¡¡™ x j k¡¡¨ÄŠ×FÄ#yj™ÄKq&ŽÄdµÄŠ×FŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä16Ä#yj™Äé~ŽÄ5Ä16ŽÄ#yj¡¡¡¡™ x j k¡¡¨Äî9ýÄ#yj™ÄIŽÄÕCÄî9ýŽÄ#yj¡¡¡¡™ x j k¡¡¨Äv?=Ä#yj™Äbõ3ŽÄª<QÄv?=ŽÄ#yj¡¡¡¡™ x j k¡¡¨Äˆ‘GÄ#yj™Äi÷¼ŽÄVŽÄˆ‘GŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä \Ä#yj™ÄJ'ŽÄéŒÄ \ŽÄ#yj¡¡¡¡™ x j k¡¡¨Äy/@Ä “&™Ä—׎Ä,¯Äy/@ŽÄ “&¡¡¡¡™ x j k¡¡¨Ä½DÄ#yj™Ä¿EŽÄAøYĽDŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄG«&Ä#yj™ÄS,ŽÄîŸLÄG«&ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä]&1Ä#yj™ÄeDŽÄŒ%ÐÄ]&1ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä¿™dÄ#yj™Ä?J!ŽÄHñtÄ¿™dŽÄ#yj¡¡¡¡™ x j k¡¡¨Äj47Ä#yj™ÄªXŽÄUÓ“Äj47ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄŽIÄ#yj™Ärì;ŽÄ*õYÄŽIŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄéœÄ#yj™ÄÐjŽÄE˜ŸÄ霎Ä#yj¡¡¡¡™ x j k¡¡¨Ä=AÄ#yj™Ä+ƒŽÄVÛÄ=AŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄIª%Ä#yj™ÄY­-ŽÄrjIÄIª%ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄªÆ[Ä#yj™Ä¿EŽÄAIÂĪÆ[ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄIª%Ä#yj™ÄY­-ŽÄAIÂÄIª%ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄŠ×FÄ#yj™ÄKq&ŽÄAIÂÄŠ×FŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä=AÄ#yj™Ä+ƒŽÄAIÂÄ=AŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä16Ä#yj™Äé~ŽÄAIÂÄ16ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄéœÄ#yj™ÄÐjŽÄAIÂÄ霎Ä#yj¡¡¡¡™ x j k¡¡¨Äî9ýÄ#yj™ÄIŽÄAIÂÄî9ýŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄŽIÄ#yj™Ärì;ŽÄAIÂÄŽIŽÄ#yj¡¡¡¡™ x j k¡¡¨Äv?=Ä#yj™Äbõ3ŽÄAIÂÄv?=ŽÄ#yj¡¡¡¡™ x j k¡¡¨Äj47Ä#yj™ÄªXŽÄAIÂÄj47ŽÄ#yj¡¡¡¡™ x j k¡¡¨Äˆ‘GÄ#yj™Äi÷¼ŽÄAIÂĈ‘GŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä¿™dÄ#yj™Ä?J!ŽÄAIÂÄ¿™dŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä \Ä#yj™ÄJ'ŽÄAIÂÄ \ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä]&1Ä#yj™ÄeDŽÄAIÂÄ]&1ŽÄ#yj¡¡¡¡™ x j k¡¡¨Äy/@Ä#yj™Ä—׎ÄAIÂÄy/@ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄG«&Ä#yj™ÄS,ŽÄAIÂÄG«&ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä½DÄ#yj™Ä¿EŽÄAIÂĽDŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄŽÎÄP<û™Ä•MŽÄu\mÄŽÎŽÄP<û¡¡¡¡™ x j k¡¡¨ÄWð/Äu\m™ÄyÊ=ŽÄ#yjÄWð/ŽÄu\m¡¡¡¡™ x j k¡¡¨Ä \Äòý0™Ä^+.ŽÄ7HEÄ \ŽÄòý0¡¡¡¡™ x j k¡¡¨Ä \Äòý0™ÄJ'ŽÄP‰bÄ \ŽÄòý0¡¡¡¡™ x j k¡¡¨ÄrÎ?Ä«ŠÍ™ÄŽINŽÄEÙ*ÄrÎ?ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄåŽÄ«ŠÍ™ÄhÕ9ŽÄUÂ5Ä厎Ä«ŠÍ¡¡¡¡™ x j k¡¡¨Äw;<Ä«ŠÍ™Äeq3ŽÄR[^Äw;<ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä:M©Ä«ŠÍ™Ä–ËQŽÄx+Ä:M©ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄKձīŠÍ™ÄªÆ[ŽÄT·AÄKÕ±ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄK—(Ä«ŠÍ™Äh 7ŽÄS¹EÄK—(ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä]U1Ä«ŠÍ™Ä¥àWŽÄÛ©¼Ä]U1ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä„vEÄ«ŠÍ™ÄDÀ©ŽÄÌÁ~Ä„vEŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄŽÎÄ«ŠÍ™Ä•MŽÄ0ˆ-ÄŽÎŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä­†YÄ«ŠÍ™Äq1:ŽÄK!LÄ­†YŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äd33Ä«ŠÍ™Ä¥1TŽÄVÏ\Äd33ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äº^Ä«ŠÍ™Ä#«ŽÄ>çFĺ^ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä}ª?Ä«ŠÍ™ÄyÊ=ŽÄ^ÁoÄ}ª?ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä@GÄ«ŠÍ™ÄŽINŽÄ¡ÜÁÄ@GŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä}ª?Ä«ŠÍ™ÄyÊ=ŽÄ¡ÜÁÄ}ª?ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äw;<Ä«ŠÍ™Äeq3ŽÄ¡ÜÁÄw;<ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äº^Ä«ŠÍ™Ä#«ŽÄ¡ÜÁĺ^ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä£±SÄ«ŠÍ™ÄLý'ŽÄ¡ÜÁÄ£±SŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äd33Ä«ŠÍ™Ä¥1TŽÄ¡ÜÁÄd33ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄŠöGÄ«ŠÍ™Ä-ŽÄ¡ÜÁÄŠöGŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä­†YÄ«ŠÍ™Äq1:ŽÄ¡ÜÁÄ­†YŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄK¿'Ä«ŠÍ™ÄëIŽÄ¡ÜÁÄK¿'ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄŽÎÄ«ŠÍ™Ä•MŽÄ¡ÜÁÄŽÎŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äðç}Ä«ŠÍ™ÄqÑ;ŽÄ¡ÜÁÄðç}ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä„vEÄ«ŠÍ™ÄDÀ©ŽÄ¡ÜÁÄ„vEŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄšäQÄ«ŠÍ™Ä·Á`ŽÄ¡ÜÁÄšäQŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä]U1Ä«ŠÍ™Ä¥àWŽÄ¡ÜÁÄ]U1ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄÒ˜oÄ«ŠÍ™ÄŽoKŽÄ¡ÜÁÄÒ˜oŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄK—(Ä«ŠÍ™Äh 7ŽÄ¡ÜÁÄK—(ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä£¾ßÄ«ŠÍ™Äà6wŽÄ¡ÜÁÄ£¾ßŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄKձīŠÍ™ÄªÆ[ŽÄ¡ÜÁÄKÕ±ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄÀTgÄ«ŠÍ™Ä9ïŽÄ¡ÜÁÄÀTgŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä:M©Ä«ŠÍ™Ä–ËQŽÄ¡ÜÁÄ:M©ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äµ#ìÄ«ŠÍ™Ä~DŽÄ¡ÜÁĵ#ìŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄíúÄ«ŠÍ™Äˆ§JŽÄ¡ÜÁÄíúŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄåŽÄ«ŠÍ™ÄhÕ9ŽÄ¡ÜÁÄ厎Ä«ŠÍ¡¡¡¡™ x j k¡¡¨Äož=Ä«ŠÍ™Ä›±UŽÄ¡ÜÁÄož=ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄrÎ?Ä«ŠÍ™ÄŽINŽÄ¡ÜÁÄrÎ?ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä \ÄP‰b™ÄJ'ŽÄÄÄ \ŽÄP‰b¡¡¡¡™ x j k¡¡¨Äe¡8ÄÄ™Ä6ŽÄ«ŠÍÄe¡8ŽÄÄ¡¡¡¡™ x j k¡¡¨Ä>ç²Ä<™ÄR‰ÅŽÄÝãnÄ>粎Ä<¡¡¡¡™ x j k¡¡¨ÄïãÄp8™Ä";XŽÄ<ÄïãŽÄp8¡¡¡¡™ x j k¡¡¨Ä_¢ ÄÝãn™Ä"Ó`ŽÄm6Ä_¢ ŽÄÝãn¡¡¡¡™ x j k¡¡¨Ä5j‘ÄÝãn™Ä»SŽÄm6Ä5j‘ŽÄÝãn¡¡¡¡™ x j k¡¡¨ÄõqÄÝãn™Äˆ9ŽÄm6ÄõqŽÄÝãn¡¡¡¡™ x j k¡¡¨Ä‰@ÄÝãn™Äfy ŽÄm6ĉ@ŽÄÝãn¡¡¡¡™ x j k¡¡¨Ä;i˜ÄÝãn™ÄA–§ŽÄm6Ä;i˜ŽÄÝãn¡¡¡¡™ x j k¡¡¨Äí-ÄÝãn™Ä=<™ŽÄm6Äí-ŽÄÝãn¡¡¡¡™ x j k¡¡¨ÄNTÁÄÝãn™Ä2÷}ŽÄm6ÄNTÁŽÄÝãn¡¡¡¡™ x j k¡¡¨Ä«ó ÄÝãn™Ä5ŽÄm6Ä«ó ŽÄÝãn¡¡¡¡™ x j k¡¡¨ÄKÀÓÄÝãn™Ä"Ó`ŽÄm6ÄKÀÓŽÄÝãn¡¡¡¡™ x j k¡¡¨Ä_¢ ÄÝãn™Ä"Ó`ŽÄ8áÄ_¢ ŽÄÝãn¡¡¡¡™ x j k¡¡¨ÄõqÄÝãn™Äˆ9ŽÄžJÄõqŽÄÝãn¡¡¡¡™ x j k¡¡¨Ä;i˜ÄÝãn™ÄA–§ŽÄ†A@Ä;i˜ŽÄÝãn¡¡¡¡™ x j k¡¡¨ÄNTÁÄÝãn™Ä2÷}ŽÄôGwÄNTÁŽÄÝãn¡¡¡¡™ x j k¡¡¨Ä2û‰Ä² ™Ä<ö£ŽÄEÙ*Ä2û‰ŽÄ² ¡¡¡¡™ x j k¡¡¨Ä?ïŸÄ² ™ÄÙ ŽÄUÂ5Ä?IJ ¡¡¡¡™ x j k¡¡¨ÄSdÁIJ ™ÄžÛ¼ŽÄ:ŸÈÄSdÁŽÄ² ¡¡¡¡™ x j k¡¡¨Ä<IJ ™Ä-wbŽÄR…6Ä<ŽÄ² ¡¡¡¡™ x j k¡¡¨Ä»SIJ ™Ä<ö£ŽÄA:+Ä»SŽÄ² ¡¡¡¡™ x j k¡¡¨Ä<IJ ™Ä-wbŽÄA:+Ä<ŽÄ² ¡¡¡¡™ x j k¡¡¨Ä<͈IJ ™ÄQBµŽÄA:+Ä<͈ŽÄ² ¡¡¡¡™ x j k¡¡¨ÄSdÁIJ ™ÄžÛ¼ŽÄA:+ÄSdÁŽÄ² ¡¡¡¡™ x j k¡¡¨Ä îIJ ™ÄR‰ÅŽÄA:+Ä îŽÄ² ¡¡¡¡™ x j k¡¡¨Ä?ïŸÄ² ™ÄÙ ŽÄA:+Ä?IJ ¡¡¡¡™ x j k¡¡¨ÄïãIJ ™Ä";XŽÄA:+ÄïãŽÄ² ¡¡¡¡™ x j k¡¡¨Ä2û‰Ä² ™Ä<ö£ŽÄA:+Ä2û‰ŽÄ² ¡¡¡¡™ x j k¡¡¨Ä îĦo™ÄR‰ÅŽÄ@•+Ä îŽÄ¦o¡¡¡¡™ x j k¡¡¨Ä8'šÄ@•+™Ä EEŽÄ² Ä8'šŽÄ@•+¡¡¡¡™ x j k x jÄ ·“ ¤Ä?1ÝÄuÍ‘ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA– k¡¡¨Ä7OÄÄF1W™ÄAÿŽÄ(o2Ä7OÄŽÄF1W¡¡¡¡™ x j k¡¡¨ÄAÿÄF1W™Ä-bŽÄNm_ÄAÿŽÄF1W¡¡¡¡™ x j k¡¡¨ÄO6ÄU™ÄhFŽÄx+ÄO6ŽÄU¡¡¡¡™ x j k¡¡¨Ä$ÝZÄU™ÄD·§ŽÄT·AÄ$ÝZŽÄU¡¡¡¡™ x j k¡¡¨Ä@ö™ÄU™Ä ^ŽÄS¹EÄ@ö™ŽÄU¡¡¡¡™ x j k¡¡¨Ä+õdÄU™Ä-éhŽÄÛ©¼Ä+õdŽÄU¡¡¡¡™ x j k¡¡¨Ä#éOÄU™Ä>ˆ‰ŽÄÌÁ~Ä#éOŽÄU¡¡¡¡™ x j k¡¡¨Ä+«]ÄU™Ä@ˆŽÄ0ˆ-Ä+«]ŽÄU¡¡¡¡™ x j k¡¡¨ÄFB‘ÄU™Ä"‰GŽÄK!LÄFB‘ŽÄU¡¡¡¡™ x j k¡¡¨ÄEïŒÄU™Ä!˜CŽÄVÏ\ÄEÄU¡¡¡¡™ x j k¡¡¨Ä0á_ÄU™Ä,íWŽÄ>çFÄ0á_ŽÄU¡¡¡¡™ x j k¡¡¨Ä-UÄU™ÄA\{ŽÄ^ÁoÄ-UŽÄU¡¡¡¡™ x j k¡¡¨Äfy ÄU™Ä";XŽÄ€ã™Äfy ŽÄU¡¡¡¡™ x j k¡¡¨Ä-UÄU™ÄA\{ŽÄ€ã™Ä-UŽÄU¡¡¡¡™ x j k¡¡¨ÄEó†ÄU™Ä;¹rŽÄ€ã™ÄEó†ŽÄU¡¡¡¡™ x j k¡¡¨Ä0á_ÄU™Ä,íWŽÄ€ã™Ä0á_ŽÄU¡¡¡¡™ x j k¡¡¨ÄHÄU™Ä8ÿpŽÄ€ã™ÄHŽÄU¡¡¡¡™ x j k¡¡¨ÄEïŒÄU™Ä!˜CŽÄ€ã™ÄEÄU¡¡¡¡™ x j k¡¡¨Ä MÄU™Ä,ò[ŽÄ€ã™Ä MŽÄU¡¡¡¡™ x j k¡¡¨ÄFB‘ÄU™Ä"‰GŽÄ€ã™ÄFB‘ŽÄU¡¡¡¡™ x j k¡¡¨ÄUd³ÄU™ÄM¡ŽÄ€ã™ÄUd³ŽÄU¡¡¡¡™ x j k¡¡¨Ä+«]ÄU™Ä@ˆŽÄ€ã™Ä+«]ŽÄU¡¡¡¡™ x j k¡¡¨Ä<ÄU™Ä-wbŽÄ€ã™Ä<ŽÄU¡¡¡¡™ x j k¡¡¨Ä#éOÄU™Ä>ˆ‰ŽÄ€ã™Ä#éOŽÄU¡¡¡¡™ x j k¡¡¨Ä<͈ÄU™ÄQBµŽÄ€ã™Ä<͈ŽÄU¡¡¡¡™ x j k¡¡¨Ä+õdÄU™Ä-éhŽÄ€ã™Ä+õdŽÄU¡¡¡¡™ x j k¡¡¨ÄSdÁÄU™ÄžÛ¼ŽÄ€ã™ÄSdÁŽÄU¡¡¡¡™ x j k¡¡¨Ä@ö™ÄU™Ä ^ŽÄ€ã™Ä@ö™ŽÄU¡¡¡¡™ x j k¡¡¨Ä îÄU™ÄR‰ÅŽÄ€ã™Ä îŽÄU¡¡¡¡™ x j k¡¡¨Ä$ÝZÄU™ÄD·§ŽÄ€ã™Ä$ÝZŽÄU¡¡¡¡™ x j k¡¡¨Ä?ïŸÄU™ÄÙ ŽÄ€ã™Ä?ÄU¡¡¡¡™ x j k¡¡¨ÄO6ÄU™ÄhFŽÄ€ã™ÄO6ŽÄU¡¡¡¡™ x j k¡¡¨ÄïãÄU™Ä";XŽÄ€ã™ÄïãŽÄU¡¡¡¡™ x j k¡¡¨ÄAÿÄNm_™Ä-bŽÄ(‹1ÄAÿŽÄNm_¡¡¡¡™ x j k¡¡¨ÄE¶Ä(‹1™ÄAIzŽÄUÄE¶ŽÄ(‹1¡¡¡¡™ x j k¡¡¨Ä»SÄ#yj™Ä<ö£ŽÄAIÂÄ»SŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄFB‘Ä#yj™Ä"‰GŽÄAIÂÄFB‘ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄUd³Ä#yj™ÄM¡ŽÄAIÂÄUd³ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä+«]Ä#yj™Ä@ˆŽÄAIÂÄ+«]ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä<Ä#yj™Ä-wbŽÄAIÂÄ<ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä#éOÄ#yj™Ä>ˆ‰ŽÄAIÂÄ#éOŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä<͈Ä#yj™ÄQBµŽÄAIÂÄ<͈ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä+õdÄ#yj™Ä-éhŽÄAIÂÄ+õdŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄSdÁÄ#yj™ÄžÛ¼ŽÄAIÂÄSdÁŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä@ö™Ä#yj™Ä ^ŽÄAIÂÄ@ö™ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä îÄ#yj™ÄR‰ÅŽÄAIÂÄ îŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä$ÝZÄ#yj™ÄD·§ŽÄAIÂÄ$ÝZŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä?ïŸÄ#yj™ÄÙ ŽÄAIÂÄ?Ä#yj¡¡¡¡™ x j k¡¡¨ÄO6Ä#yj™ÄhFŽÄAIÂÄO6ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄïãÄ#yj™Ä";XŽÄAIÂÄïãŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄE¶Ä#yj™ÄBa®ŽÄAIÂÄE¶ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä2û‰Ä#yj™Ä<ö£ŽÄAIÂÄ2û‰ŽÄ#yj¡¡¡¡™ x j k¡¡¨Äõ<ÄP<û™Ä7ŽÄu\mÄõ<ŽÄP<û¡¡¡¡™ x j k¡¡¨Ä8'šÄu\m™Ä1ÿfŽÄ#yjÄ8'šŽÄu\m¡¡¡¡™ x j k¡¡¨ÄFB‘Ä#yj™Ä"‰GŽÄrjIÄFB‘ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä+«]Ä#yj™Ä@ˆŽÄVÛÄ+«]ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä#éOÄ#yj™Ä>ˆ‰ŽÄE˜ŸÄ#éOŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä+õdÄ#yj™Ä-éhŽÄ*õYÄ+õdŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä@ö™Ä#yj™Ä ^ŽÄUÓ“Ä@ö™ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä$ÝZÄ#yj™ÄD·§ŽÄHñtÄ$ÝZŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄO6Ä#yj™ÄhFŽÄŒ%ÐÄO6ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄE¶Ä#yj™ÄBa®ŽÄîŸLÄE¶ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄíúÄ›ýG™Äˆ§JŽÄ§‹LÄíúŽÄ›ýG¡¡¡¡™ x j k¡¡¨ÄíúÄKù"™Äˆ§JŽÄyE6ÄíúŽÄKù"¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä—=RÄN1#™ÄhÄÄ»ÔÇ—Ä Ä¸~S—ÄhÄÄ%©—Ä ÄçíÝ—Ä—=RįÿÄ—˜ k¡¡¨Ä*XÄyE6™ÄDw%ŽÄE­Ä*XŽÄyE6¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄhÕ9ÄjA/ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á+– k¡¡¨Ä˜Ä›ýG™Ä‰KŽÄ§‹LĘŽÄ›ýG¡¡¡¡™ x j k¡¡¨Ä˜ÄKù"™Ä‰KŽÄyE6ĘŽÄKù"¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä•õRÄN1#™Äd÷ÄÄ»ÔÇ—Äß Ä¸~S—Äd÷ÄÄ%©—Äß ÄçíÝ—Ä•õRįÿÄ—˜ k¡¡¨ÄrÎ?ÄyE6™Ä›±UŽÄE­ÄrÎ?ŽÄyE6¡¡¡¡™ x j k x jÄ ·“ ¤F £Ä@GÄjA/ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á+– k¡¡¨Ä]-2Ä›ýG™Äu…?ŽÄ§‹LÄ]-2ŽÄ›ýG¡¡¡¡™ x j k¡¡¨Ä]-2ÄKù"™Äu…?ŽÄyE6Ä]-2ŽÄKù"¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä˜×RÄN1#™ÄkÛÄÄ»ÔÇ—ÄT ĸ~S—ÄkÛÄÄ%©—ÄT ÄçíݗĘ×RįÿÄ—˜ k¡¡¨Ä:M©ÄyE6™Ä9ïŽÄE­Ä:M©ŽÄyE6¡¡¡¡™ x j k x jÄ ·“ ¤F £Ä°€_ÄjA/ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á+– k¡¡¨ÄdLOÄa‹:™Ä'ˆŽÄ~ŽKÄdLOŽÄa‹:¡¡¡¡™ x j k¡¡¨Äo@OÄa‹:™Äg6IŽÄ~ŽKÄo@OŽÄa‹:¡¡¡¡™ x j k¡¡¨Äw'ZÄBÐA™Ä‡;fŽÄ*‡)Äw'ZŽÄBÐA¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨ÄÄÄä™ÝÄm#RÄËyÄ¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä%°ÝÄÌ=ÄÄ»ÄÄh}e¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä$ÓÝÄÌ=ÄÄ÷ÄÄh}e¡¹ k¡¡¨Ä£|ÄÇÔÁ™ÄgÿNŽÄ*‡)Ä£|ŽÄÇÔÁ¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä#öÝÄÌ=ÄÄ3ÄÄh}e¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä#öÝÄÌ=ÄÄ3ÄÄh}e¡¹ k x jÄ ·“ ¤Ä]NGÄcÍQ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/G– k¡¡¨ÄGŸ8Ä¡™Ä‡ßaŽÄøëÇÄGŸ8ŽÄ¡¡¡¡¡™ x j k¡¡¨Äw'ZÄøëǙć;fŽÄAo4Äw'ZŽÄøëÇ¡¡¡¡™ x j k¡¡¨ÄGŸ8Ä<ƒ9™Ä‡ßaŽÄ –—ÄGŸ8ŽÄ<ƒ9¡¡¡¡™ x j k x jÄ ·“ ¤Ä%QÄðu ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB0– k x jÄ ·“ ¤ÄXØEÄ-å& ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB1– k x jÄ ·“ ¤Ä<|/ÄL ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB2– k x jÄ ·“ ¤Ä‹3Ä|kk ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB3– k x jÄ ·“ ¤Ä'òÄÎeµ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB4– k x jÄ ·“ ¤ÄFÇ7Ä"§ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB5– k x jÄ ·“ ¤Ä)- ÄK”E ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB6– k x jÄ ·“ ¤ÄýÅÄu ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB7– k x jÄ ·“ ¤Ä‡!bÄu ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA7– k x jÄ ·“ ¤Ä™×ãÄK”E ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA6– k x jÄ ·“ ¤ÄCŽ1Ä"§ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA5– k x jÄ ·“ ¤Äu,UÄÎeµ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA4– k x jÄ ·“ ¤Ä;F+Ä|kk ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA3– k x jÄ ·“ ¤Ä¤wÄL ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA2– k x jÄ ·“ ¤Ä–mÄ-å& ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA1– k x jÄ ·“ ¤Ä½HCÄðu ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA0– k¡¡¨Ä‡ßaÄ]ªW™Äo@OŽÄ0ˆ-ćßaŽÄ]ªW¡¡¡¡™ x j k¡¡¨Ä‡ßaÄQUJ™Äo@OŽÄ1‹-ćßaŽÄQUJ¡¡¡¡™ x j k¡¡¨Ä‡ßaÄA :™Äo@OŽÄÌÁ~ćßaŽÄA :¡¡¡¡™ x j k¡¡¨Ä‡ßaÄeÒY™Äo@OŽÄCœ;ćßaŽÄeÒY¡¡¡¡™ x j k¡¡¨Ä‡ßaÄe}W™Äo@OŽÄÛ©¼Ä‡ßaŽÄe}W¡¡¡¡™ x j k¡¡¨Ä‡ßaÄOªC™Äo@OŽÄbØSćßaŽÄOªC¡¡¡¡™ x j k¡¡¨Ä‡ßaÄì>ÙÄo@OŽÄS¹EćßaŽÄì>á¡¡¡™ x j k¡¡¨Ä‡ßaÄЋ©™Äo@OŽÄuh_ćßaŽÄЋ©¡¡¡¡™ x j k¡¡¨ÄzÝ[ÄøëÇ™Ä^ŽÄAo4ÄzÝ[ŽÄøëÇ¡¡¡¡™ x j k¡¡¨ÄR¥AÄ]ªW™ÄGŸ8ŽÄ0ˆ-ÄR¥AŽÄ]ªW¡¡¡¡™ x j k¡¡¨ÄR¥AÄQUJ™ÄGŸ8ŽÄ1‹-ÄR¥AŽÄQUJ¡¡¡¡™ x j k¡¡¨ÄR¥AÄA :™ÄGŸ8ŽÄÌÁ~ÄR¥AŽÄA :¡¡¡¡™ x j k¡¡¨ÄR¥AÄeÒY™ÄGŸ8ŽÄCœ;ÄR¥AŽÄeÒY¡¡¡¡™ x j k¡¡¨ÄR¥AÄe}W™ÄGŸ8ŽÄÛ©¼ÄR¥AŽÄe}W¡¡¡¡™ x j k¡¡¨ÄR¥AÄOªC™ÄGŸ8ŽÄbØSÄR¥AŽÄOªC¡¡¡¡™ x j k¡¡¨ÄR¥AÄì>ÙÄGŸ8ŽÄS¹EÄR¥AŽÄì>á¡¡¡™ x j k¡¡¨ÄR¥AÄЋ©™ÄGŸ8ŽÄuh_ÄR¥AŽÄЋ©¡¡¡¡™ x j k¡¡¨ÄGŸ8Ä<ƒ9™Ä]€IŽÄøëÇÄGŸ8ŽÄ<ƒ9¡¡¡¡™ x j k¡¡¨Ä3Â%Ä<ƒ9™Ä‡ßaŽÄøëÇÄ3Â%ŽÄ<ƒ9¡¡¡¡™ x j k x jÄ ·“ ¤Ä~9_Ä»‡„ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á245A– k x jÄ ·“ ¤Ä˜7qÄcÍQ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDir– k¡¡¨Äw'ZÄtºO™Ä‡;fŽÄb#BÄw'ZŽÄtºO¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨ÄÄÄH½ÝÄm#RÄ$IÄ¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä%°ÝÄ% ÄÄ»ÄÄ–Ae¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä$ÓÝÄ% ÄÄ÷ÄÄ–Ae¡¹ k¡¡¨Ä£|Ä“c™ÄgÿNŽÄb#BÄ£|ŽÄ“c¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä#öÝÄ% ÄÄ3ÄÄ–Ae¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä#öÝÄ% ÄÄ3ÄÄ–Ae¡¹ k x jÄ ·“ ¤Ä]GBÄ„6A ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁEA24– k¡¡¨Ä°á©Ä…$C™ÄtboŽÄ!¾Ä°á©ŽÄ…$C¡¡¡¡™ x j k¡¡¨Ä'$ÄVÝ#™Ä›ŠmŽÄoÄ-Ä'$ŽÄVÝ#¡¡¡¡™ x j k¡¡¨Ä5r©Ärc:™ÄSãŽÄ©ƒJÄ5r©ŽÄrc:¡¡¡¡™ x j k¡¡¨Ärë¢Ä­†Y™Ä$F3ŽÄÞIbÄr뢎Ä­†Y¡¡¡¡™ x j k¡¡¨Ä1ëÄ]&1™Ä錎ÄVÝ#Ä1ëŽÄ]&1¡¡¡¡™ x j k x jÄ ·“ ¤Ä]GBĉe5 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemCS16– k¡¡¨ÄP5ÄKZa™Ä˜ÔeŽÄ–AÄP5ŽÄKZa¡¡¡¡™ x j k¡¡¨Ä÷æÄ,¶Q™Ä•qdŽÄÆ÷WÄ÷æŽÄ,¶Q¡¡¡¡™ x j k¡¡¨ÄvPÄjN—™Ä3›|ŽÄNÄvPŽÄjN—¡¡¡¡™ x j k¡¡¨Ä¦oÄ”s§™Ä„+XŽÄ¬×DĦoŽÄ”s§¡¡¡¡™ x j k¡¡¨Ä¶Ò}Ä*Â)™ÄFK0ŽÄ}ĶÒ}ŽÄ*Â)¡¡¡¡™ x j k¡¡¨ÄzÝ[Ä*Â)™ÄFK0ŽÄ€{ÄzÝ[ŽÄ*Â)¡¡¡¡™ x j k¡¡¨ÄzÝ[ij®™Ä^ŽÄ€{ÄzÝ[ŽÄ³®¡¡¡¡™ x j k¡¡¨Ä—duÄ}™ÄFK0ŽÄo 1Ä—duŽÄ}¡¡¡¡™ x j k¡¡¨Ä3/ÄyK-™Ä'y*ŽÄšÐ9Ä3/ŽÄyK-¡¡¡¡™ x j k¡¡¨ÄÀTgÄå£;™Ä9ïŽÄÛŒYÄÀTgŽÄå£;¡¡¡¡™ x j k¡¡¨Äož=ÄjN—™Ä›±UŽÄÛŒYÄož=ŽÄjN—¡¡¡¡™ x j k¡¡¨Ä—duÄå£;™ÄjgCŽÄ”r?Ä—duŽÄå£;¡¡¡¡™ x j k x jÄ ·“ ¤Ä]NGÄa‹: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/G– k¡¡¨ÄGŸ8Ä}³J™Ä‡ßaŽÄâ+…ÄGŸ8ŽÄ}³J¡¡¡¡™ x j k¡¡¨Äw'ZÄâ+…™Ä‡;fŽÄº“™Äw'ZŽÄâ+…¡¡¡¡™ x j k¡¡¨ÄGŸ8ÄP5™Ä‡ßaŽÄ˜ÔeÄGŸ8ŽÄP5¡¡¡¡™ x j k x jÄ ·“ ¤Ä%QÄz¢I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB0– k x jÄ ·“ ¤ÄXØEÄ Åa ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB1– k x jÄ ·“ ¤Ä<|/ÄK5. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB2– k x jÄ ·“ ¤Ä‹3Ä€ÿP ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB3– k x jÄ ·“ ¤Ä'òÄ•u^ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB4– k x jÄ ·“ ¤ÄFÇ7Ĥ–i ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB5– k x jÄ ·“ ¤Ä)- Ä—ib ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB6– k x jÄ ·“ ¤ÄýÅÄâ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB7– k x jÄ ·“ ¤Ä‡!bÄâ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA7– k x jÄ ·“ ¤Ä™×ãÄ—ib ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA6– k x jÄ ·“ ¤ÄCŽ1Ĥ–i ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA5– k x jÄ ·“ ¤Äu,UÄ•u^ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA4– k x jÄ ·“ ¤Ä;F+Ä€ÿP ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA3– k x jÄ ·“ ¤Ä¤wÄK5. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA2– k x jÄ ·“ ¤Ä–mÄ Åa ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA1– k x jÄ ·“ ¤Ä½HCÄz¢I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA0– k¡¡¨Ä‡ßaÄ,C™Äo@OŽÄR…6ćßaŽÄ,C¡¡¡¡™ x j k¡¡¨Ä‡ßaľ{™Äo@OŽÄKû1ćßaŽÄ¾{¡¡¡¡™ x j k¡¡¨Ä‡ßaĶ™Äo@OŽÄ:ŸÈćßaŽÄ¶¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ°ço™Äo@OŽÄµ1ćßaŽÄ°ço¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ®O™Äo@OŽÄUÂ5ćßaŽÄ®O¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ5¶½™Äo@OŽÄ[ß8ćßaŽÄ5¶½¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ“ØY™Äo@OŽÄEÙ*ćßaŽÄ“ØY¡¡¡¡™ x j k¡¡¨Ä‡ßaÄwŠG™Äo@OŽÄ…(OćßaŽÄwŠG¡¡¡¡™ x j k¡¡¨ÄzÝ[Äâ+…™Ä^ŽÄº“™ÄzÝ[ŽÄâ+…¡¡¡¡™ x j k¡¡¨ÄR¥AÄ,C™ÄGŸ8ŽÄR…6ÄR¥AŽÄ,C¡¡¡¡™ x j k¡¡¨ÄR¥Aľ{™ÄGŸ8ŽÄKû1ÄR¥AŽÄ¾{¡¡¡¡™ x j k¡¡¨ÄR¥AĶ™ÄGŸ8ŽÄ:ŸÈÄR¥AŽÄ¶¡¡¡¡™ x j k¡¡¨ÄR¥AÄ°ço™ÄGŸ8ŽÄµ1ÄR¥AŽÄ°ço¡¡¡¡™ x j k¡¡¨ÄR¥AÄ®O™ÄGŸ8ŽÄUÂ5ÄR¥AŽÄ®O¡¡¡¡™ x j k¡¡¨ÄR¥AÄ5¶½™ÄGŸ8ŽÄ[ß8ÄR¥AŽÄ5¶½¡¡¡¡™ x j k¡¡¨ÄR¥AÄ“ØY™ÄGŸ8ŽÄEÙ*ÄR¥AŽÄ“ØY¡¡¡¡™ x j k¡¡¨ÄR¥AÄwŠG™ÄGŸ8ŽÄ…(OÄR¥AŽÄwŠG¡¡¡¡™ x j k¡¡¨ÄGŸ8ÄP5™Ä]€IŽÄâ+…ÄGŸ8ŽÄP5¡¡¡¡™ x j k¡¡¨Ä3Â%ÄP5™Ä‡ßaŽÄâ+…Ä3Â%ŽÄP5¡¡¡¡™ x j k x jÄ ·“ ¤Ä~9_Ä- ½ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á245A– k x jÄ ·“ ¤Ä˜7qÄa‹: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDir– k¡¡¨ÄzÝ[ÄKZa™Ä˜ÔeŽÄ?QÄzÝ[ŽÄKZa¡¡¡¡™ x j k¡¡¨ÄzÝ[ÄO;h™Ä^ŽÄ?QÄzÝ[ŽÄO;h¡¡¡¡™ x j k¡¡¨Äw'ZÄO;h™Ä‡;fŽÄŒY°Äw'ZŽÄO;h¡¡¡¡™ x j k¡¡¨Äw'ZÄQ~›™Ä‡;fŽÄKá‰Äw'ZŽÄQ~›¡¡¡¡™ x j k¡¡¨Ä—duÄÆ÷W™Ä•qdŽÄKˆ!Ä—duŽÄÆ÷W¡¡¡¡™ x j k¡¡¨Ä—duÄ–A™Ä˜ÔeŽÄˆ^;Ä—duŽÄ–A¡¡¡¡™ x j k¡¡¨Ä?Ç4Ä(™ÄdÉ>ŽÄ¨ƒ?Ä?Ç4ŽÄ(¡¡¡¡™ x j k¡¡¨Ä MÄP³:™ÄR¥AŽÄ¹M…Ä MŽÄP³:¡¡¡¡™ x j k¡¡¨Ä7OÄÄf^+™Ä2ûAŽÄy‚3Ä7OÄŽÄf^+¡¡¡¡™ x j k¡¡¨Ä7OÄÄxD3™Ä2ûAŽÄ«*µÄ7OÄŽÄxD3¡¡¡¡™ x j k¡¡¨Ä:½sÄg6I™Ä$éHŽÄ©ƒJÄ:½sŽÄg6I¡¡¡¡™ x j k¡¡¨Ä:½sÄg6I™Ä'ˆŽÄ8¡(Ä:½sŽÄg6I¡¡¡¡™ x j k¡¡¨Äu4ħ«W™Ä%›@ŽÄ²|EÄu4ŽÄ§«W¡¡¡¡™ x j k¡¡¨Äu4ħ«W™Ä$Y ŽÄqÑ;Äu4ŽÄ§«W¡¡¡¡™ x j k¡¡¨ÄFB‘IJ|E™ÄüzëŽÄ£?ÄFB‘ŽÄ²|E¡¡¡¡™ x j k¡¡¨Äiü‡ÄΫV™Ä@ŸRŽÄJŽÄiü‡ŽÄΫV¡¡¡¡™ x j k¡¡¨Ä7OÄÄl™ÄüzëŽÄ°sCÄ7OÄŽÄl¡¡¡¡™ x j k¡¡¨Ä7OÄÄ6Šu™ÄüzëŽÄ¦PŸÄ7OÄŽÄ6Šu¡¡¡¡™ x j k¡¡¨Ä7OÄÄRú™ÄüzëŽÄ‡’Ä7OÄŽÄRú¡¡¡¡™ x j k¡¡¨Ä7OÄĨ+H™Ä2ûAŽÄ[*'Ä7OĎĨ+H¡¡¡¡™ x j k¡¡¨Ä7OÄÄÞIb™Ä2ûAŽÄäÄ7OÄŽÄÞIb¡¡¡¡™ x j k¡¡¨Ä7OÄÄo ÙÄO;hŽÄë„}Ä7OÄŽÄo á¡¡¡™ x j k x jÄ ·“ ¤Ä]GBÄS, ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁBALE– k¡¡¨Ä@^IÄ|mD™Ä^ŒkŽÄWð/Ä@^IŽÄ|mD¡¡¡¡™ x j k¡¡¨ÄJ#PÄSã/™Ä[îcŽÄa4ÄJ#PŽÄSã/¡¡¡¡™ x j k¡¡¨Ä×ñÄ]ªW™ÄO½ŽÄ]-2Ä×ñŽÄ]ªW¡¡¡¡™ x j k¡¡¨ÄO;hÄב™Ä-;ŽÄë„}ÄO;hŽÄב¡¡¡¡™ x j k¡¡¨ÄSÄH5™ÄÙߎÄa4ÄSŽÄH5¡¡¡¡™ x j k¡¡¨ÄxûwÄw'Z™ÄNmMŽÄa4ÄxûwŽÄw'Z¡¡¡¡™ x j k¡¡¨Ä<ƒ9ÄЋ©™Ä –—ŽÄa4Ä<ƒ9ŽÄЋ©¡¡¡¡™ x j k¡¡¨ÄJ$CÄOªC™Ä*&ŽÄa4ÄJ$CŽÄOªC¡¡¡¡™ x j k¡¡¨ÄŒ}zÄeÒY™ÄÞœÁŽÄa4ÄŒ}zŽÄeÒY¡¡¡¡™ x j k¡¡¨ÄJ/>ÄQUJ™Ä¾‹ŸŽÄa4ÄJ/>ŽÄQUJ¡¡¡¡™ x j k¡¡¨Ä9+!Ä‹Sa™Äô‡ŽÄ~5Ä9+!ŽÄ‹Sa¡¡¡¡™ x j k¡¡¨ÄgËJÄ‹Sa™Äô‡ŽÄgHÄgËJŽÄ‹Sa¡¡¡¡™ x j k¡¡¨Ä8 Äg6I™ÄP£.ŽÄ”r?Ä8 ŽÄg6I¡¡¡¡™ x j k¡¡¨ÄgËJÄg6I™ÄP£.ŽÄ8¡(ÄgËJŽÄg6I¡¡¡¡™ x j k¡¡¨ÄgËJÄP³:™Äl=ŽÄ¹M…ÄgËJŽÄP³:¡¡¡¡™ x j k¡¡¨Ä°çoÄ°ço™Äµ1ŽÄM‹,Ä°çoŽÄ°ço¡¡¡¡™ x j k¡¡¨Ä7OÄÄH5™ÄR¥AŽÄŽhÄ7OÄŽÄH5¡¡¡¡™ x j k¡¡¨Ä7OÄÄOp;™ÄR¥AŽÄx+Ä7OÄŽÄOp;¡¡¡¡™ x j k¡¡¨Ä7OÄÄA :™ÄR¥AŽÄÌÁ~Ä7OÄŽÄA :¡¡¡¡™ x j k¡¡¨Ä7OÄÄeÒY™ÄR¥AŽÄCœ;Ä7OÄŽÄeÒY¡¡¡¡™ x j k¡¡¨Ä7OÄÄe}W™ÄR¥AŽÄÛ©¼Ä7OÄŽÄe}W¡¡¡¡™ x j k¡¡¨Ä7OÄÄOªC™ÄR¥AŽÄbØSÄ7OÄŽÄOªC¡¡¡¡™ x j k¡¡¨Ä7OÄÄì>ÙÄR¥AŽÄS¹EÄ7OÄŽÄì>á¡¡¡™ x j k¡¡¨Ä7OÄÄЋ©™ÄR¥AŽÄuh_Ä7OÄŽÄЋ©¡¡¡¡™ x j k¡¡¨Ä7OÄÄÏ™ÄR¥AŽÄT·AÄ7OÄŽÄÏ¡¡¡¡™ x j k¡¡¨Ä7OÄÄw'Z™ÄR¥AŽÄ‡;fÄ7OÄŽÄw'Z¡¡¡¡™ x j k x jÄ ·“ ¤Ä]GBÄ®‹ž ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA9– k¡¡¨Ä7OÄÄ&Y&™ÄR¥AŽÄ×YÕÄ7OÄŽÄ&Y&¡¡¡¡™ x j k x jÄ ·“ ¤Ä]GBÄJI ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA7– k x jÄ ·“ ¤Ä]GBÄvw ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA6– k x jÄ ·“ ¤Ä]GBÄ»,Á ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA5– k x jÄ ·“ ¤Ä]GBÄgBm ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA4– k x jÄ ·“ ¤Ä]GBÄ9W> ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA3– k x jÄ ·“ ¤Ä]GBÄš’Ç ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA2– k x jÄ ·“ ¤Ä]GBÄ@;I ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA1– k x jÄ ·“ ¤Ä]GBÄ\™l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA0– k¡¡¨Ä7OÄÄ"V;™ÄR¥AŽÄUÓ“Ä7OÄŽÄ"V;¡¡¡¡™ x j k¡¡¨Ä7OÄÄxIÇ™ÄR¥AŽÄVŽÄ7OÄŽÄxIÇ¡¡¡¡™ x j k¡¡¨Ä7OÄÄ7ÌY™ÄR¥AŽÄHñtÄ7OÄŽÄ7ÌY¡¡¡¡™ x j k¡¡¨Ä7OÄÄ1ë™ÄR¥AŽÄéŒÄ7OÄŽÄ1ë¡¡¡¡™ x j k¡¡¨Ä7OÄÄpᨙÄR¥AŽÄŒ%ÐÄ7OÄŽÄpᨡ¡¡¡™ x j k¡¡¨Ä7OÄÄhÚ—™ÄR¥AŽÄ,¯Ä7OÄŽÄhÚ—¡¡¡¡™ x j k¡¡¨Ä7OÄÄÉ™ÄR¥AŽÄîŸLÄ7OÄŽÄÉ¡¡¡¡™ x j k¡¡¨Ä7OÄį÷î™ÄR¥AŽÄAøYÄ7OĎį÷î¡¡¡¡™ x j k x jÄ ·“ ¤Ä×?FÄ8ÿp ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD7– k x jÄ ·“ ¤Ä×?FÄ"‰G ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD6– k x jÄ ·“ ¤Ä×?FÄ-wb ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD5– k x jÄ ·“ ¤Ä×?FÄ-éh ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD4– k x jÄ ·“ ¤Ä×?FÄPÜÁ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD3– k x jÄ ·“ ¤Ä×?FÄhF ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD2– k x jÄ ·“ ¤Ä×?FįB ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD1– k¡¡¨Ä7OÄÄ·1l™ÄR¥AŽÄª<QÄ7OÄŽÄ·1l¡¡¡¡™ x j k¡¡¨Ä7OÄÄ@m†™ÄR¥AŽÄ*õYÄ7OÄŽÄ@m†¡¡¡¡™ x j k¡¡¨Ä7OÄÄAÿ™ÄR¥AŽÄÕCÄ7OÄŽÄAÿ¡¡¡¡™ x j k¡¡¨Ä7OÄÄP1¸™ÄR¥AŽÄE˜ŸÄ7OÄŽÄP1¸¡¡¡¡™ x j k¡¡¨Ä7OÄÄ«ó ™ÄR¥AŽÄ5Ä7OÄŽÄ«ó ¡¡¡¡™ x j k¡¡¨Ä7OÄÄ;i˜™ÄR¥AŽÄVÛÄ7OÄŽÄ;i˜¡¡¡¡™ x j k¡¡¨Ä7OÄÄ5j‘™ÄR¥AŽÄdµÄ7OÄŽÄ5j‘¡¡¡¡™ x j k x jÄ ·“ ¤Ä×?FÄ]K ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD0– k¡¡¨Ä7OÄÄS\ñ™ÄR¥AŽÄrjIÄ7OÄŽÄS\ñ¡¡¡¡™ x j k x jÄ ·“ ¤Ä×?FÄ%›@ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD8– k x jÄ ·“ ¤Ä×?FÄAGk ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD9– k x jÄ ·“ ¤Ä×?FÄ } ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD10– k x jÄ ·“ ¤Ä×?FÄMów ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD11– k x jÄ ·“ ¤Ä×?FÄÖÆ= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD12– k x jÄ ·“ ¤Ä×?FÄæMI ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD13– k x jÄ ·“ ¤Ä×?FÄs™  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD14– k x jÄ ·“ ¤Ä×?FÄ]} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD15– k¡¡¨Ä7OÄÄ™ÄR¥AŽÄK!LÄ7OÄŽÄ¡¡¡¡™ x j k¡¡¨Ä7OÄÄ8ã;™ÄR¥AŽÄ`›dÄ7OÄŽÄ8ã;¡¡¡¡™ x j k¡¡¨Ä7OÄÄdÃk™ÄR¥AŽÄVÏ\Ä7OÄŽÄdÃk¡¡¡¡™ x j k¡¡¨Ä7OÄÄj¡t™ÄR¥AŽÄÙšÄ7OÄŽÄj¡t¡¡¡¡™ x j k¡¡¨Ä7OÄįž™ÄR¥AŽÄ>çFÄ7OĎįž¡¡¡¡™ x j k¡¡¨Ä7OÄÄŒÁ¡™ÄR¥AŽÄR[^Ä7OÄŽÄŒÁ¡¡¡¡¡™ x j k¡¡¨Ä7OÄÄrý‡™ÄR¥AŽÄ^ÁoÄ7OÄŽÄrý‡¡¡¡¡™ x j k¡¡¨Ä7OÄÄ]ªW™ÄR¥AŽÄ0ˆ-Ä7OÄŽÄ]ªW¡¡¡¡™ x j k¡¡¨Ä7OÄÄQUJ™ÄR¥AŽÄ1‹-Ä7OÄŽÄQUJ¡¡¡¡™ x j k x jÄ ·“ ¤Ä]GBÄ^¯T ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA10– k x jÄ ·“ ¤Ä]GBÄiÅ\ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA11– k x jÄ ·“ ¤Ä]GBÄÆ© ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA12– k x jÄ ·“ ¤Ä]GBÄ—¸ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA13– k x jÄ ·“ ¤Ä]GBÄnÂ[ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA14– k x jÄ ·“ ¤Ä]GBÄTKD ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA15– k x jÄ ·“ ¤Ä]GBÄŽxm ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA16– k x jÄ ·“ ¤Ä]GBÄ/Ý$ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA17– k x jÄ ·“ ¤Ä]GBÄ^ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA18– k x jÄ ·“ ¤Ä]GBÄK™7 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA19– k¡¡¨Ä7OÄÄ,C™ÄR¥AŽÄR…6Ä7OÄŽÄ,C¡¡¡¡™ x j k¡¡¨ÄxIÇÄ5¶½™ÄVŽŽÄŽÇOÄxIÇŽÄ5¶½¡¡¡¡™ x j k¡¡¨Ä,?GÄ®O™ÄTb‡ŽÄSã/Ä,?GŽÄ®O¡¡¡¡™ x j k¡¡¨Äx »Ä°ço™Ä\ŽÄM‹,Äx »ŽÄ°ço¡¡¡¡™ x j k¡¡¨ÄR•}Ķ™ÄV!‚ŽÄc,9ÄR•}ŽÄ¶¡¡¡¡™ x j k¡¡¨Äü¹jÄ,C™ÄæMIŽÄ>¶%Äü¹jŽÄ,C¡¡¡¡™ x j k¡¡¨Äu4Ä“ØY™Ä%›@ŽÄ|mDÄu4ŽÄ“ØY¡¡¡¡™ x j k¡¡¨Ä7OÄľ{™ÄR¥AŽÄKû1Ä7OĎľ{¡¡¡¡™ x j k¡¡¨Ä7OÄĶ™ÄR¥AŽÄ:ŸÈÄ7OĎĶ¡¡¡¡™ x j k¡¡¨Ä7OÄÄ“ØY™ÄR¥AŽÄEÙ*Ä7OÄŽÄ“ØY¡¡¡¡™ x j k¡¡¨Ä7OÄÄ5¶½™ÄR¥AŽÄ[ß8Ä7OÄŽÄ5¶½¡¡¡¡™ x j k¡¡¨Ä7OÄÄ°ço™ÄR¥AŽÄµ1Ä7OÄŽÄ°ço¡¡¡¡™ x j k¡¡¨Ä7OÄÄ®O™ÄR¥AŽÄUÂ5Ä7OÄŽÄ®O¡¡¡¡™ x j k x jÄ ·“ ¤Ä]GBÄŸïd ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁLA20– k x jÄ ·“ ¤Ä]GBÄq‡F ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁLA21– k x jÄ ·“ ¤Ä]GBÄý9š ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁLA22– k x jÄ ·“ ¤Ä]GBÄ…­V ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁLA18– k x jÄ ·“ ¤Ä]GBÄCÎ+ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁLA19– k x jÄ ·“ ¤Ä]GBÄAß+ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁLA17– k¡¡¨Äü¹jÄ>¶%™ÄÉŽÄû”Äü¹jŽÄ>¶%¡¡¡¡™ x j k¡¡¨Ä$5Ä—!X™Äª+ŽÄ^7Ä$5ŽÄ—!X¡¡¡¡™ x j k¡¡¨Ä$5ľ{™ÄCrcŽÄ—!XÄ$5ŽÄ¾{¡¡¡¡™ x j k¡¡¨ÄR•}Äc,9™ÄɎĆMÄR•}ŽÄc,9¡¡¡¡™ x j k¡¡¨Äx »ÄM‹,™ÄÉŽÄ?ƒ$Äx »ŽÄM‹,¡¡¡¡™ x j k¡¡¨Ä,?GÄSã/™ÄÉŽÄÂÀmÄ,?GŽÄSã/¡¡¡¡™ x j k¡¡¨ÄxIÇÄŽÇO™ÄÉŽÄðŸ…ÄxIÇŽÄŽÇO¡¡¡¡™ x j k¡¡¨Äu4Ä|mD™ÄÉŽÄ›±UÄu4ŽÄ|mD¡¡¡¡™ x j k¡¡¨ÄizKÄ,C™Ä‰‹VŽÄR…6ÄizKŽÄ,C¡¡¡¡™ x j k¡¡¨ÄeQÄw'Z™Ä‰‹VŽÄ,CÄeQŽÄw'Z¡¡¡¡™ x j k¡¡¨ÄgËJľ{™ÄUÂ5ŽÄKû1ÄgËJŽÄ¾{¡¡¡¡™ x j k¡¡¨Ä®OÄOp;™ÄUÂ5ŽÄ¾{Ä®OŽÄOp;¡¡¡¡™ x j k¡¡¨ÄgËJĶ™ÄŽgWŽÄ:ŸÈÄgËJŽÄ¶¡¡¡¡™ x j k¡¡¨ÄK5.ÄH5™ÄŽgWŽÄ¶ÄK5.ŽÄH5¡¡¡¡™ x j k¡¡¨ÄWÙÄM‹,™Äµ1ŽÄ?ƒ$ÄWÙŽÄM‹,¡¡¡¡™ x j k¡¡¨ÄWÙÄSã/™ÄŠÕVŽÄÂÀmÄWÙŽÄSã/¡¡¡¡™ x j k¡¡¨Ä€ÿPÄ®O™ÄŠÕVŽÄSã/Ä€ÿPŽÄ®O¡¡¡¡™ x j k¡¡¨ÄdêwÄŽÇO™Äfâ?ŽÄðŸ…ÄdêwŽÄŽÇO¡¡¡¡™ x j k¡¡¨Ä¤ÀeÄ5¶½™Äfâ?ŽÄŽÇOĤÀeŽÄ5¶½¡¡¡¡™ x j k¡¡¨ÄWÙÄ|mD™Ä™ž]ŽÄ›±UÄWÙŽÄ|mD¡¡¡¡™ x j k¡¡¨Äu%GÄ“ØY™Ä™ž]ŽÄ|mDÄu%GŽÄ“ØY¡¡¡¡™ x j k x jÄ ·“ ¤Ä]GBÄ~­L ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁLA23– k¡¡¨ÄgËJÄwŠG™ÄdGŽÄ…(OÄgËJŽÄwŠG¡¡¡¡™ x j k x jÄ ·“ ¤Ä]GBÄYÓS ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA8– k¡¡¨ÄQEÄA :™Ä&Î!ŽÄ]-2ÄQEŽÄA :¡¡¡¡™ x j k¡¡¨Ä9•3Äe}W™ÄwájŽÄa4Ä9•3ŽÄe}W¡¡¡¡™ x j k¡¡¨Ä'$Äì>ÙÄ‘…†ŽÄa4Ä'$ŽÄì>á¡¡¡™ x j k¡¡¨ÄÐ{ÄÏ™Ä}öyŽÄ]-2ÄÐ{ŽÄÏ¡¡¡¡™ x j k¡¡¨ÄffgÄOp;™Ä?¿@ŽÄa4ÄffgŽÄOp;¡¡¡¡™ x j k x jÄ ·“ ¤Ä)µ7ÄDw% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁE– k x jÄ ·“ ¤ÄL¿bÄDw% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/OE– k¡¡¨ÄH[ÄRuÇ™ÄIÐ]ŽÄªÆ[ÄH[ŽÄRuÇ¡¡¡¡™ x j k¡¡¨ÄO;hÄRuÇ™Ä-;ŽÄªÆ[ÄO;hŽÄRuÇ¡¡¡¡™ x j k¡¡¨Ä=ùVÄa4™Ä€ã™ŽÄRuÇÄ=ùVŽÄa4¡¡¡¡™ x j k¡¡¨Ä=ùVÄz¢I™Ä€ã™ŽÄa‹:Ä=ùVŽÄz¢I¡¡¡¡™ x j k¡¡¨Ä€ã™Ä>¶%™Ä˜û´ŽÄû”Ā㙎Ä>¶%¡¡¡¡™ x j k¡¡¨Ä€ã™Ä—!X™Ä˜û´ŽÄ^7Ā㙎ė!X¡¡¡¡™ x j k¡¡¨Ä€ã™Äc,9™Ä˜û´ŽÄ†MĀ㙎Äc,9¡¡¡¡™ x j k¡¡¨Ä€ã™ÄM‹,™Ä˜û´ŽÄ?ƒ$Ā㙎ÄM‹,¡¡¡¡™ x j k¡¡¨Ä€ã™ÄSã/™Ä˜û´ŽÄÂÀmĀ㙎ÄSã/¡¡¡¡™ x j k¡¡¨Ä€ã™ÄŽÇO™Ä˜û´ŽÄðŸ…Ā㙎ĎÇO¡¡¡¡™ x j k¡¡¨Ä€ã™Ä|mD™Ä˜û´ŽÄ›±UĀ㙎Ä|mD¡¡¡¡™ x j k¡¡¨Ä€ã™ÄX#D™Ä˜û´ŽÄ~DĀ㙎ÄX#D¡¡¡¡™ x j k¡¡¨Äª+Ä>¶%™Ä=ùVŽÄû”Ī+ŽÄ>¶%¡¡¡¡™ x j k¡¡¨Äª+Ä—!X™Ä=ùVŽÄ^7Ī+ŽÄ—!X¡¡¡¡™ x j k¡¡¨Äª+Äc,9™Ä=ùVŽÄ†MĪ+ŽÄc,9¡¡¡¡™ x j k¡¡¨Äª+ÄM‹,™Ä=ùVŽÄ?ƒ$Ī+ŽÄM‹,¡¡¡¡™ x j k¡¡¨Äª+ÄSã/™Ä=ùVŽÄÂÀmĪ+ŽÄSã/¡¡¡¡™ x j k¡¡¨Äª+ÄŽÇO™Ä=ùVŽÄðŸ…Ī+ŽÄŽÇO¡¡¡¡™ x j k¡¡¨Äª+Ä|mD™Ä=ùVŽÄ›±UĪ+ŽÄ|mD¡¡¡¡™ x j k¡¡¨Äª+ÄX#D™Ä=ùVŽÄ~DĪ+ŽÄX#D¡¡¡¡™ x j k¡¡¨Ä=ùVÄz¢I™Ä 'oŽÄRuÇÄ=ùVŽÄz¢I¡¡¡¡™ x j k¡¡¨ÄUÄz¢I™Ä€ã™ŽÄRuÇÄUŽÄz¢I¡¡¡¡™ x j k x jÄ ·“ ¤ÄLxiÄ–ƒY ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD7– k x jÄ ·“ ¤Ä\±ßÄhˆ= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD6– k x jÄ ·“ ¤ÄÔ™$Ä8§Û ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD5– k x jÄ ·“ ¤ÄIµeÄË ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD4– k x jÄ ·“ ¤Ä¦®åÄP&- ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD3– k x jÄ ·“ ¤Ä@XÄ]É4 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD2– k x jÄ ·“ ¤Ä'[6Ę ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD1– k x jÄ ·“ ¤ÄEã`ÄC~¯ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁD0– k x jÄ ·“ ¤ÄC+RÄ–ƒY ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁQ7– k x jÄ ·“ ¤Ä.¬9Ähˆ= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁQ6– k x jÄ ·“ ¤Ä0Q;Ä8§Û ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁQ5– k x jÄ ·“ ¤ÄÊ;÷ÄË ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁQ4– k x jÄ ·“ ¤ÄI¯ZÄP&- ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁQ3– k x jÄ ·“ ¤ÄDËTÄ]É4 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁQ2– k x jÄ ·“ ¤ÄTžgĘ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁQ1– k x jÄ ·“ ¤ÄL%ÄC~¯ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁQ0– k x jÄ ·“ ¤Äè}-ÄAs% ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á573– k¡¡¨ÄŒ{”ÄM‹,™ÄFaJŽÄa4ÄŒ{”ŽÄM‹,¡¡¡¡™ x j k¡¡¨ÄK SÄŽÇO™ÄŽÄWð/ÄK SŽÄŽÇO¡¡¡¡™ x j k¡¡¨Ä7OÄÄ©ƒJ™Ä2ûAŽÄž0EÄ7OÄŽÄ©ƒJ¡¡¡¡™ x j k¡¡¨Ä5r©Ärc:™Ä$Y ŽÄLý'Ä5r©ŽÄrc:¡¡¡¡™ x j k¡¡¨Ärë¢Ä­†Y™Ä$Y ŽÄq1:Är뢎Ä­†Y¡¡¡¡™ x j k¡¡¨Ä7OÄÄ‘»?™Ä2ûAŽÄ»…QÄ7OÄŽÄ‘»?¡¡¡¡™ x j k¡¡¨Ä˜®™ÄÛŒY™ÄXûYŽÄÅ‹OĘ®™ŽÄÛŒY¡¡¡¡™ x j k¡¡¨Ä'$ÄÛŒY™Ä‘…†ŽÄÅ‹OÄ'$ŽÄÛŒY¡¡¡¡™ x j k¡¡¨Ä7OÄIJ|E™ÄŸ¿ÆŽÄ£?Ä7OĎIJ|E¡¡¡¡™ x j k¡¡¨Ä7OÄÄzV‘™ÄŸ¿ÆŽÄ¾œIÄ7OÄŽÄzV‘¡¡¡¡™ x j k¡¡¨Ä7OÄÄN™ÄŸ¿ÆŽÄ…Ÿ5Ä7OÄŽÄN¡¡¡¡™ x j k¡¡¨Ä7OÄÄaq&™ÄüzëŽÄi6)Ä7OÄŽÄaq&¡¡¡¡™ x j k¡¡¨Ä7OÄĬ×D™ÄüzëŽÄÁQLÄ7OĎĬ×D¡¡¡¡™ x j k¡¡¨ÄˆGMÄP³:™Äl=ŽÄˆ^;ĈGMŽÄP³:¡¡¡¡™ x j k¡¡¨Ä-UÄ‹Sa™Ä'ˆŽÄgHÄ-UŽÄ‹Sa¡¡¡¡™ x j k¡¡¨Ä-UÄ‹Sa™ÄA\{ŽÄÞIbÄ-UŽÄ‹Sa¡¡¡¡™ x j k¡¡¨Äiü‡Ärý‡™ÄJ©…ŽÄΫVÄiü‡ŽÄrý‡¡¡¡¡™ x j k x jÄ ·“ ¤Ä]GBÄé ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOChRdy– k¡¡¨Ä MÄP³:™Ä,ò[ŽÄf^+Ä MŽÄP³:¡¡¡¡™ x j k¡¡¨Ä?Ç4Ĭ×D™Ä„+XŽÄÁQLÄ?Ç4ŽÄ¬×D¡¡¡¡™ x j k¡¡¨Ä?Ç4ÄN™Ä3›|ŽÄ…Ÿ5Ä?Ç4ŽÄN¡¡¡¡™ x j k¡¡¨Ä}&aÄQž#™ÄAß+ŽÄ¥³GÄ}&aŽÄQž#¡¡¡¡™ x j k x jÄ ·“ ¤Ä]NGÄCÙ\ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/G– k¡¡¨ÄGŸ8Ä_͙ćßaŽÄKŸdÄGŸ8ŽÄ_Í¡¡¡¡™ x j k¡¡¨Äw'ZÄKŸd™Ä‡;fŽÄ-;Äw'ZŽÄKŸd¡¡¡¡™ x j k¡¡¨ÄGŸ8Ä70™Ä‡ßaŽÄ³0;ÄGŸ8ŽÄ70¡¡¡¡™ x j k x jÄ ·“ ¤Ä%QÄ%„3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB0– k x jÄ ·“ ¤ÄXØEĪ+ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB1– k x jÄ ·“ ¤Ä<|/ÄsV§ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB2– k x jÄ ·“ ¤Ä‹3Ä€ôÁ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB3– k x jÄ ·“ ¤Ä'òÄ#ƒ7 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB4– k x jÄ ·“ ¤ÄFÇ7ÄG r ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB5– k x jÄ ·“ ¤Ä)- Ä(ÙD ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB6– k x jÄ ·“ ¤ÄýÅÄzÓ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB7– k x jÄ ·“ ¤Ä‡!bÄzÓ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA7– k x jÄ ·“ ¤Ä™×ãÄ(ÙD ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA6– k x jÄ ·“ ¤ÄCŽ1ÄG r ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA5– k x jÄ ·“ ¤Äu,UÄ#ƒ7 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA4– k x jÄ ·“ ¤Ä;F+Ä€ôÁ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA3– k x jÄ ·“ ¤Ä¤wÄsV§ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA2– k x jÄ ·“ ¤Ä–mĪ+ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA1– k x jÄ ·“ ¤Ä½HCÄ%„3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA0– k¡¡¨Ä‡ßaÄ"V;™Äo@OŽÄUӓćßaŽÄ"V;¡¡¡¡™ x j k¡¡¨Ä‡ßaÄxIÇ™Äo@OŽÄVŽÄ‡ßaŽÄxIÇ¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ7ÌY™Äo@OŽÄHñtćßaŽÄ7ÌY¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ1ë™Äo@OŽÄéŒÄ‡ßaŽÄ1ë¡¡¡¡™ x j k¡¡¨Ä‡ßaÄpᨙÄo@OŽÄŒ%ÐćßaŽÄpᨡ¡¡¡™ x j k¡¡¨Ä‡ßaÄhÚ—™Äo@OŽÄ,¯Ä‡ßaŽÄhÚ—¡¡¡¡™ x j k¡¡¨Ä‡ßaÄÉ™Äo@OŽÄîŸLćßaŽÄÉ¡¡¡¡™ x j k¡¡¨Ä‡ßaį÷î™Äo@OŽÄAøYćßaŽÄ¯÷î¡¡¡¡™ x j k¡¡¨ÄzÝ[ÄKŸd™Ä^ŽÄ-;ÄzÝ[ŽÄKŸd¡¡¡¡™ x j k¡¡¨ÄR¥AÄ"V;™ÄGŸ8ŽÄUÓ“ÄR¥AŽÄ"V;¡¡¡¡™ x j k¡¡¨ÄR¥AÄxIÇ™ÄGŸ8ŽÄVŽÄR¥AŽÄxIÇ¡¡¡¡™ x j k¡¡¨ÄR¥AÄ7ÌY™ÄGŸ8ŽÄHñtÄR¥AŽÄ7ÌY¡¡¡¡™ x j k¡¡¨ÄR¥AÄ1ë™ÄGŸ8ŽÄéŒÄR¥AŽÄ1ë¡¡¡¡™ x j k¡¡¨ÄR¥AÄpᨙÄGŸ8ŽÄŒ%ÐÄR¥AŽÄpᨡ¡¡¡™ x j k¡¡¨ÄR¥AÄhÚ—™ÄGŸ8ŽÄ,¯ÄR¥AŽÄhÚ—¡¡¡¡™ x j k¡¡¨ÄR¥AÄÉ™ÄGŸ8ŽÄîŸLÄR¥AŽÄÉ¡¡¡¡™ x j k¡¡¨ÄR¥Aį÷î™ÄGŸ8ŽÄAøYÄR¥AŽÄ¯÷î¡¡¡¡™ x j k¡¡¨ÄGŸ8Ä70™Ä]€IŽÄKŸdÄGŸ8ŽÄ70¡¡¡¡™ x j k¡¡¨Ä3Â%Ä70™Ä‡ßaŽÄKŸdÄ3Â%ŽÄ70¡¡¡¡™ x j k x jÄ ·“ ¤Ä~9_Ä>A` ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á245A– k x jÄ ·“ ¤Ä˜7qÄCÙ\ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDir– k x jÄ ·“ ¤Ä]NGÄ!˜C ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/G– k¡¡¨ÄGŸ8Ä»(™Ä‡ßaŽÄ^%µÄGŸ8ŽÄ»(¡¡¡¡™ x j k¡¡¨Äw'ZÄ^%µ™Ä‡;fŽÄO%–Äw'ZŽÄ^%µ¡¡¡¡™ x j k¡¡¨ÄGŸ8Ä “&™Ä‡ßaŽÄ6>£ÄGŸ8ŽÄ “&¡¡¡¡™ x j k x jÄ ·“ ¤Ä%QÄE¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB0– k x jÄ ·“ ¤ÄXØEÄ19 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB1– k x jÄ ·“ ¤Ä<|/Ä#éO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB2– k x jÄ ·“ ¤Ä‹3ÄSdÁ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB3– k x jÄ ·“ ¤Ä'òÄ$ÝZ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB4– k x jÄ ·“ ¤ÄFÇ7Ä ß ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB5– k x jÄ ·“ ¤Ä)- Ä8'š ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB6– k x jÄ ·“ ¤ÄýÅÄd—& ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB7– k x jÄ ·“ ¤Ä‡!bÄd—& ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA7– k x jÄ ·“ ¤Ä™×ãÄ8'š ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA6– k x jÄ ·“ ¤ÄCŽ1Ä ß ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA5– k x jÄ ·“ ¤Äu,UÄ$ÝZ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA4– k x jÄ ·“ ¤Ä;F+ÄSdÁ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA3– k x jÄ ·“ ¤Ä¤wÄ#éO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA2– k x jÄ ·“ ¤Ä–mÄ19 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA1– k x jÄ ·“ ¤Ä½HCÄE¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA0– k¡¡¨Ä‡ßaÄS\ñ™Äo@OŽÄrjIćßaŽÄS\ñ¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ5j‘™Äo@OŽÄdµÄ‡ßaŽÄ5j‘¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ;i˜™Äo@OŽÄVÛćßaŽÄ;i˜¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ«ó ™Äo@OŽÄ5ćßaŽÄ«ó ¡¡¡¡™ x j k¡¡¨Ä‡ßaÄP1¸™Äo@OŽÄE˜ŸÄ‡ßaŽÄP1¸¡¡¡¡™ x j k¡¡¨Ä‡ßaÄAÿ™Äo@OŽÄÕCćßaŽÄAÿ¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ@m†™Äo@OŽÄ*õYćßaŽÄ@m†¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ·1l™Äo@OŽÄª<QćßaŽÄ·1l¡¡¡¡™ x j k¡¡¨ÄzÝ[Ä^%µ™Ä^ŽÄO%–ÄzÝ[ŽÄ^%µ¡¡¡¡™ x j k¡¡¨ÄR¥AÄS\ñ™ÄGŸ8ŽÄrjIÄR¥AŽÄS\ñ¡¡¡¡™ x j k¡¡¨ÄR¥AÄ5j‘™ÄGŸ8ŽÄdµÄR¥AŽÄ5j‘¡¡¡¡™ x j k¡¡¨ÄR¥AÄ;i˜™ÄGŸ8ŽÄVÛÄR¥AŽÄ;i˜¡¡¡¡™ x j k¡¡¨ÄR¥AÄ«ó ™ÄGŸ8ŽÄ5ÄR¥AŽÄ«ó ¡¡¡¡™ x j k¡¡¨ÄR¥AÄP1¸™ÄGŸ8ŽÄE˜ŸÄR¥AŽÄP1¸¡¡¡¡™ x j k¡¡¨ÄR¥AÄAÿ™ÄGŸ8ŽÄÕCÄR¥AŽÄAÿ¡¡¡¡™ x j k¡¡¨ÄR¥AÄ@m†™ÄGŸ8ŽÄ*õYÄR¥AŽÄ@m†¡¡¡¡™ x j k¡¡¨ÄR¥AÄ·1l™ÄGŸ8ŽÄª<QÄR¥AŽÄ·1l¡¡¡¡™ x j k¡¡¨ÄGŸ8Ä “&™Ä]€IŽÄ^%µÄGŸ8ŽÄ “&¡¡¡¡™ x j k¡¡¨Ä3Â%Ä “&™Ä‡ßaŽÄ^%µÄ3Â%ŽÄ “&¡¡¡¡™ x j k x jÄ ·“ ¤Ä~9_Ä`é ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á245A– k x jÄ ·“ ¤Ä˜7qÄ!˜C ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDir– k¡¡¨ÄzÝ[ÄQ~›™Ä^ŽÄMÄzÝ[ŽÄQ~›¡¡¡¡™ x j k¡¡¨ÄzÝ[Äg¤Á™ÄAß+ŽÄMÄzÝ[ŽÄg¤Á¡¡¡¡™ x j k¡¡¨Äw'ZÄ,¶Q™Ä÷æŽÄKá‰Äw'ZŽÄ,¶Q¡¡¡¡™ x j k¡¡¨Äw'ZÄ?¥P™Ä÷æŽÄŒY°Äw'ZŽÄ?¥P¡¡¡¡™ x j k x jÄ ·“ ¤Ä]NGÄ‹Š ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/G– k¡¡¨ÄGŸ8ÄDžC™Ä‡ßaŽÄW6UÄGŸ8ŽÄDžC¡¡¡¡™ x j k¡¡¨Äw'ZÄW6U™Ä‡;fŽÄd@aÄw'ZŽÄW6U¡¡¡¡™ x j k¡¡¨ÄGŸ8Ä«ŠÍ™Ä‡ßaŽÄ¡ÜÁÄGŸ8ŽÄ«ŠÍ¡¡¡¡™ x j k x jÄ ·“ ¤Ä%QÄQpQ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB0– k x jÄ ·“ ¤ÄXØEÄAÛC ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB1– k x jÄ ·“ ¤Ä<|/Äae ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB2– k x jÄ ·“ ¤Ä‹3Ä3/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB3– k x jÄ ·“ ¤Ä'òÄh]r ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB4– k x jÄ ·“ ¤ÄFÇ7ÄZ1e ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB5– k x jÄ ·“ ¤Ä)- Ä~9‘ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB6– k x jÄ ·“ ¤ÄýÅÄdêw ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB7– k x jÄ ·“ ¤Ä‡!bÄdêw ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA7– k x jÄ ·“ ¤Ä™×ãÄ~9‘ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA6– k x jÄ ·“ ¤ÄCŽ1ÄZ1e ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA5– k x jÄ ·“ ¤Äu,UÄh]r ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA4– k x jÄ ·“ ¤Ä;F+Ä3/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA3– k x jÄ ·“ ¤Ä¤wÄae ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA2– k x jÄ ·“ ¤Ä–mÄAÛC ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA1– k x jÄ ·“ ¤Ä½HCÄQpQ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA0– k¡¡¨Ä‡ßaÄrý‡™Äo@OŽÄ^ÁoćßaŽÄrý‡¡¡¡¡™ x j k¡¡¨Ä‡ßaÄŒÁ¡™Äo@OŽÄR[^ćßaŽÄŒÁ¡¡¡¡¡™ x j k¡¡¨Ä‡ßaįž™Äo@OŽÄ>çFćßaŽÄ¯ž¡¡¡¡™ x j k¡¡¨Ä‡ßaÄj¡t™Äo@OŽÄٚćßaŽÄj¡t¡¡¡¡™ x j k¡¡¨Ä‡ßaÄdÃk™Äo@OŽÄVÏ\ćßaŽÄdÃk¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ8ã;™Äo@OŽÄ`›dćßaŽÄ8ã;¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ™Äo@OŽÄK!LćßaŽÄ¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ&Y&™Äo@OŽÄ×YÕćßaŽÄ&Y&¡¡¡¡™ x j k¡¡¨ÄzÝ[ÄW6U™Ä^ŽÄd@aÄzÝ[ŽÄW6U¡¡¡¡™ x j k¡¡¨ÄR¥AÄrý‡™ÄGŸ8ŽÄ^ÁoÄR¥AŽÄrý‡¡¡¡¡™ x j k¡¡¨ÄR¥AÄŒÁ¡™ÄGŸ8ŽÄR[^ÄR¥AŽÄŒÁ¡¡¡¡¡™ x j k¡¡¨ÄR¥Aįž™ÄGŸ8ŽÄ>çFÄR¥AŽÄ¯ž¡¡¡¡™ x j k¡¡¨ÄR¥AÄj¡t™ÄGŸ8ŽÄÙšÄR¥AŽÄj¡t¡¡¡¡™ x j k¡¡¨ÄR¥AÄdÃk™ÄGŸ8ŽÄVÏ\ÄR¥AŽÄdÃk¡¡¡¡™ x j k¡¡¨ÄR¥AÄ8ã;™ÄGŸ8ŽÄ`›dÄR¥AŽÄ8ã;¡¡¡¡™ x j k¡¡¨ÄR¥AÄ™ÄGŸ8ŽÄK!LÄR¥AŽÄ¡¡¡¡™ x j k¡¡¨ÄR¥AÄ&Y&™ÄGŸ8ŽÄ×YÕÄR¥AŽÄ&Y&¡¡¡¡™ x j k¡¡¨ÄGŸ8Ä«ŠÍ™Ä]€IŽÄW6UÄGŸ8ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä3Â%Ä«ŠÍ™Ä‡ßaŽÄW6UÄ3Â%ŽÄ«ŠÍ¡¡¡¡™ x j k x jÄ ·“ ¤Ä~9_Ä\¿e ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á245A– k x jÄ ·“ ¤Ä˜7qÄ‹Š ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDir– k x jÄ ·“ ¤Ä]NGÄ~ÁW ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/G– k¡¡¨ÄGŸ8Ä›1™Ä‡ßaŽÄN65ÄGŸ8ŽÄ›1¡¡¡¡™ x j k¡¡¨Äw'ZÄN65™Ä‡;fŽÄ3›|Äw'ZŽÄN65¡¡¡¡™ x j k¡¡¨ÄGŸ8ÄmYU™Ä‡ßaŽÄr©YÄGŸ8ŽÄmYU¡¡¡¡™ x j k x jÄ ·“ ¤Ä%QĽ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB0– k x jÄ ·“ ¤ÄXØEÄ«éx ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB1– k x jÄ ·“ ¤Ä<|/ÄdG ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB2– k x jÄ ·“ ¤Ä‹3Ä®×~ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB3– k x jÄ ·“ ¤Ä'òÄP‹; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB4– k x jÄ ·“ ¤ÄFÇ7Ä*÷  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB5– k x jÄ ·“ ¤Ä)- Ä#¥ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB6– k x jÄ ·“ ¤ÄýÅÄjiR ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB7– k x jÄ ·“ ¤Ä‡!bÄjiR ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA7– k x jÄ ·“ ¤Ä™×ãÄ#¥ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA6– k x jÄ ·“ ¤ÄCŽ1Ä*÷  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA5– k x jÄ ·“ ¤Äu,UÄP‹; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA4– k x jÄ ·“ ¤Ä;F+Ä®×~ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA3– k x jÄ ·“ ¤Ä¤wÄdG ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA2– k x jÄ ·“ ¤Ä–mÄ«éx ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA1– k x jÄ ·“ ¤Ä½HCĽ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA0– k¡¡¨Ä‡ßaÄÏ™Äo@OŽÄT·AćßaŽÄÏ¡¡¡¡™ x j k¡¡¨Ä‡ßaÄw'Z™Äo@OŽÄ‡;fćßaŽÄw'Z¡¡¡¡™ x j k¡¡¨Ä‡ßaÄOp;™Äo@OŽÄx+ćßaŽÄOp;¡¡¡¡™ x j k¡¡¨Ä‡ßaÄH5™Äo@OŽÄŽhćßaŽÄH5¡¡¡¡™ x j k¡¡¨Ä‡ßaÄP³:™Äo@OŽÄ¹M…ćßaŽÄP³:¡¡¡¡™ x j k¡¡¨Ä‡ßaÄg6I™Äo@OŽÄ8¡(ćßaŽÄg6I¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ‹Sa™Äo@OŽÄgHćßaŽÄ‹Sa¡¡¡¡™ x j k¡¡¨Ä‡ßaÄC.™Äo@OŽÄ\?ćßaŽÄC.¡¡¡¡™ x j k¡¡¨ÄzÝ[ÄN65™Ä^ŽÄ3›|ÄzÝ[ŽÄN65¡¡¡¡™ x j k¡¡¨ÄR¥AÄÏ™ÄGŸ8ŽÄT·AÄR¥AŽÄÏ¡¡¡¡™ x j k¡¡¨ÄR¥AÄw'Z™ÄGŸ8ŽÄ‡;fÄR¥AŽÄw'Z¡¡¡¡™ x j k¡¡¨ÄR¥AÄOp;™ÄGŸ8ŽÄx+ÄR¥AŽÄOp;¡¡¡¡™ x j k¡¡¨ÄR¥AÄH5™ÄGŸ8ŽÄŽhÄR¥AŽÄH5¡¡¡¡™ x j k¡¡¨ÄR¥AÄP³:™ÄGŸ8ŽÄ¹M…ÄR¥AŽÄP³:¡¡¡¡™ x j k¡¡¨ÄR¥AÄg6I™ÄGŸ8ŽÄ8¡(ÄR¥AŽÄg6I¡¡¡¡™ x j k¡¡¨ÄR¥AÄ‹Sa™ÄGŸ8ŽÄgHÄR¥AŽÄ‹Sa¡¡¡¡™ x j k¡¡¨ÄR¥AÄC.™ÄGŸ8ŽÄ\?ÄR¥AŽÄC.¡¡¡¡™ x j k¡¡¨ÄGŸ8ÄmYU™Ä]€IŽÄN65ÄGŸ8ŽÄmYU¡¡¡¡™ x j k¡¡¨Ä3Â%ÄmYU™Ä‡ßaŽÄN65Ä3Â%ŽÄmYU¡¡¡¡™ x j k x jÄ ·“ ¤Ä~9_Ä[§C ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á245A– k x jÄ ·“ ¤Ä˜7qÄ~ÁW ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDir– k¡¡¨Ä•øÄ Ç™Ä”ëSŽÄÛŒYÄ•øŽÄ Ç¡¡¡¡™ x j k¡¡¨Ä—duÄDî™ÄE+ŽÄ~5Ä—duŽÄDî¡¡¡¡™ x j k¡¡¨Ä„5IÄ”s§™Ä„XIŽÄÛŒYÄ„5IŽÄ”s§¡¡¡¡™ x j k¡¡¨ÄC~¯ÄDî™ÄDw%ŽÄÛŒYÄC~¯ŽÄDî¡¡¡¡™ x j k¡¡¨Äw'ZÄ9+!™ÄˆÏ`ŽÄô‡Äw'ZŽÄ9+!¡¡¡¡™ x j k¡¡¨Äw'ZÄà·„™Ä‡;fŽÄ9+!Äw'ZŽÄà·„¡¡¡¡™ x j k¡¡¨ÄzÝ[Ä$p™Ä^ŽÄdLOÄzÝ[ŽÄ$p¡¡¡¡™ x j k¡¡¨ÄzÝ[ÄÓµ§™Ä¶Ò}ŽÄdLOÄzÝ[ŽÄÓµ§¡¡¡¡™ x j k¡¡¨ÄzÝ[ÄtºO™Ä^ŽÄ•qdÄzÝ[ŽÄtºO¡¡¡¡™ x j k¡¡¨ÄzÝ[ÄÆ‚…™Ä¶Ò}ŽÄ•qdÄzÝ[ŽÄÆ‚…¡¡¡¡™ x j k¡¡¨Ä[Í<Äg¤Á™ÄAß+ŽÄQž#Ä[Í<ŽÄg¤Á¡¡¡¡™ x j k x jÄ ·“ ¤Ä&Î!ħ«W ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOCS– k x jÄ ·“ ¤ÄŒ}zÄ­†Y ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemCS– k¡¡¨Ä~9‘ÄŠ×F™Äuh_ŽÄKq&Ä~9‘ŽÄŠ×F¡¡¡¡™ x j k¡¡¨Änw€Ärc:™Ä~9‘ŽÄLý'Änw€ŽÄrc:¡¡¡¡™ x j k¡¡¨Änw€Ä­†Y™Ä~9‘ŽÄq1:Änw€ŽÄ­†Y¡¡¡¡™ x j k x jÄ ·“ ¤Äg]gÄ¥1T ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/SlaveCS– k¡¡¨Äuh_Äj47™Ä–ryŽÄªXÄuh_ŽÄj47¡¡¡¡™ x j k¡¡¨Äuh_Äî9ý™Ä–ryŽÄIÄuh_ŽÄî9ý¡¡¡¡™ x j k¡¡¨Änw€Ä§«W™Ä~9‘ŽÄqÑ;Änw€ŽÄ§«W¡¡¡¡™ x j k¡¡¨Ä°á©ÄKq&™ÄtboŽÄY­-Ä°á©ŽÄKq&¡¡¡¡™ x j k¡¡¨Ä@^IÄ]-2™Ä^ŒkŽÄWð/Ä@^IŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄÃËßÄ \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA23– k¡¡¨ÄK SÄ]-2™ÄŽÄWð/ÄK SŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £Ä‹“›Ä \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA22– k¡¡¨ÄJ#PÄ]-2™Ä[îcŽÄWð/ÄJ#PŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄY‡aĺÙb ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA21– k¡¡¨ÄŒ{”Ä]-2™ÄFaJŽÄWð/ÄŒ{”ŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄŠû“Ä \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA20– k¡¡¨ÄSÄ]-2™ÄÙߎÄWð/ÄSŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £Ä…“ŠÄ \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA19– k¡¡¨ÄffgÄ]-2™Ä?¿@ŽÄWð/ÄffgŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £Ä å Ä \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA18– k¡¡¨ÄxûwÄ]-2™ÄNmMŽÄWð/ÄxûwŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄIñIÄ \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA17– k¡¡¨ÄÐ{Ä]-2™Ä}öyŽÄWð/ÄÐ{ŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄÇÔÁÄ \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA16– k¡¡¨Ä<ƒ9Ä]-2™Ä –—ŽÄWð/Ä<ƒ9ŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £Ä+`Ä \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA15– k¡¡¨Ä'$Ä]-2™Ä‘…†ŽÄWð/Ä'$ŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £Äf¢_ÄJ' ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA14– k¡¡¨ÄJ$CÄ]-2™Ä*&ŽÄWð/ÄJ$CŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄÈ·¶Ä \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA13– k¡¡¨Ä9•3Ä]-2™ÄwájŽÄWð/Ä9•3ŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £Ä"Ä \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA12– k¡¡¨ÄŒ}zÄ]-2™ÄÞœÁŽÄWð/ÄŒ}zŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄLçCĺÙb ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA11– k¡¡¨ÄQEÄ]-2™Ä&Î!ŽÄWð/ÄQEŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄlÖ]Ä \ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA10– k¡¡¨ÄJ/>Ä]-2™Ä¾‹ŸŽÄWð/ÄJ/>ŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄUáHÄu¡> ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA9– k¡¡¨Ä×ñÄ]-2™ÄO½ŽÄWð/Ä×ñŽÄ]-2¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄR£DÄu¡> ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA8– k¡¡¨Ä~9‘ÄWð/™Äuh_ŽÄ,óÄ~9‘ŽÄWð/¡¡¡¡™ x j k¡¡¨Ä~9‘ÄWð/™Äm }ŽÄKq&Ä~9‘ŽÄWð/¡¡¡¡™ x j k¡¡¨ÄЋ©ÄWð/™Äuh_ŽÄKq&ÄЋ©ŽÄWð/¡¡¡¡™ x j k x jÄ ·“ ¤Äp¥Ä„vE ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemCS16– k x jÄ ·“ ¤Äp¥ÄK¿' ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemWX– k x jÄ ·“ ¤Äp¥Äd33 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemRX– k x jÄ ·“ ¤Ä2ù2ÄpC ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“ÁAddrPAL– k¡¡¨Ä3»Ä†¥7™Ä@ŸRŽÄÜZÄ3»ŽÄ†¥7¡¡¡¡™ x j k x jÄ ·“ ¤Äµ+½ÄZ_% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/EnPCM– k x jÄ ·“ ¤ÄupÄZ_% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/EnIOBM– k x jÄ ·“ ¤Ä?¥PÄhò+ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁClock– k x jÄ ·“ ¤Ä?¥PÄg+ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSA0– k x jÄ ·“ ¤ÄcÍQÄjA/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁAXMit– k¡¡¨ÄH[Ä3Ó™Äz¿_ŽÄQ/$ÄH[ŽÄ3Ó¡¡¡¡™ x j k x jÄ ·“ ¤ÄJ/>ÄÑT ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/DDrvEnL– k x jÄ ·“ ¤ÄcÍQÄ m‘ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDXMit– k¡¡¨Ä˜®™Ä$ë™ÄXûYŽÄ¢ïBĘ®™ŽÄ$ë¡¡¡¡™ x j k¡¡¨ÄH[Äq!.™Äz¿_ŽÄ$ëÄH[ŽÄq!.¡¡¡¡™ x j k¡¡¨Ä'$Ä$ë™Ä‘…†ŽÄ¢ïBÄ'$ŽÄ$ë¡¡¡¡™ x j k x jÄ ·“ ¤ÄXûYÄ»|S ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/SlaveCS– k¡¡¨Ä}&aÄ3Ó™Äz¿_ŽÄ$ëÄ}&aŽÄ3Ó¡¡¡¡™ x j k¡¡¨Ä°á©ÄyE6™ÄtboŽÄ3ÓÄ°á©ŽÄyE6¡¡¡¡™ x j k x jÄ ·“ ¤Ä‹øsÄhò+ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/Ready– k¡¡¨Äz¿_Ä Ç™Ä€¨cŽÄ•8=Äz¿_ŽÄ Ç¡¡¡¡™ x j k¡¡¨Äz¿_Äå£;™Ä€¨cŽÄ”r?Äz¿_ŽÄå£;¡¡¡¡™ x j k¡¡¨Äz¿_ÄDî™Ä€¨cŽÄ~5Äz¿_ŽÄDî¡¡¡¡™ x j k x jÄ ·“ ¤ÄTKDĉÕ9 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/RDX– k¡¡¨Äz¿_Ä”s§™Ä€¨cŽÄ. Äz¿_ŽÄ”s§¡¡¡¡™ x j k x jÄ ·“ ¤ÄcÍQÄg+ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/WRX– k¡¡¨Äz¿_ÄjN—™Ä€¨cŽÄ]¦'Äz¿_ŽÄjN—¡¡¡¡™ x j k¡¡¨Äz¿_ÄÆ÷W™Ä€¨cŽÄKˆ!Äz¿_ŽÄÆ÷W¡¡¡¡™ x j k¡¡¨Äz¿_Ä–A™Ä€¨cŽÄˆ^;Äz¿_ŽÄ–A¡¡¡¡™ x j k¡¡¨Äz¿_ÄQž#™Ä€¨cŽÄ¥³GÄz¿_ŽÄQž#¡¡¡¡™ x j k¡¡¨Ä2ûAÄΫV™ÄH[ŽÄJŽÄ2ûAŽÄΫV¡¡¡¡™ x j k x jÄ ·“ ¤Ä?¥PÄýík ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSBHE– k¡¡¨Ä2ûAÄf^+™ÄH[ŽÄy‚3Ä2ûAŽÄf^+¡¡¡¡™ x j k x jÄ ·“ ¤Ä?¥PÄe+ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOChRdy– k¡¡¨Ä2ûAÄxD3™ÄH[ŽÄ«*µÄ2ûAŽÄxD3¡¡¡¡™ x j k x jÄ ·“ ¤Ä?¥PÄÑT ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemR– k¡¡¨Ä2ûAĨ+H™ÄH[ŽÄ[*'Ä2ûAŽÄ¨+H¡¡¡¡™ x j k x jÄ ·“ ¤Ä?¥PÄYì' ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemW– k¡¡¨Ä2ûAÄ‘»?™ÄH[ŽÄ»…QÄ2ûAŽÄ‘»?¡¡¡¡™ x j k x jÄ ·“ ¤Ä?¥PÄ m‘ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemRX– k¡¡¨Ä2ûAÄ©ƒJ™ÄH[ŽÄž0EÄ2ûAŽÄ©ƒJ¡¡¡¡™ x j k x jÄ ·“ ¤Ä?¥PÄjA/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemWX– k¡¡¨Ä2ûAÄÞIb™ÄH[ŽÄäÄ2ûAŽÄÞIb¡¡¡¡™ x j k x jÄ ·“ ¤Ä—¸ÄYì' ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/DDrvEnH– k¡¡¨ÄH[Ä3Ó™ÄIÐ]ŽÄ$ëÄH[ŽÄ3Ó¡¡¡¡™ x j k x jÄ ·“ ¤ÄTKDÄe+ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDT/R– k x jÄ ·“ ¤Ä’=DÄýík ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/DEN– k¡¡¨Äz¿_Ä}™Ä€¨cŽÄo 1Äz¿_ŽÄ}¡¡¡¡™ x j k¡¡¨Ä2ûAĆ¥7™ÄH[ŽÄÜZÄ2ûAŽÄ†¥7¡¡¡¡™ x j k x jÄ ·“ ¤ÄIÜKÄxã3 ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á BufferCtlPAL– k¡¡¨Ä1ëÄVÝ#™Ä˜®™ŽÄoÄ-Ä1ëŽÄVÝ#¡¡¡¡™ x j k¡¡¨Ä1ëÄ]&1™ÄIÐ]ŽÄeDÄ1ëŽÄ]&1¡¡¡¡™ x j k¡¡¨ÄH[ÄWð/™ÄIÐ]ŽÄ]&1ÄH[ŽÄWð/¡¡¡¡™ x j k¡¡¨ÄW>7ÄJQ"™ÄjgCŽÄå£;ÄW>7ŽÄJQ"¡¡¡¡™ x j k¡¡¨Äaç=ăö=™ÄE+ŽÄDîÄaç=ŽÄƒö=¡¡¡¡™ x j k¡¡¨ÄˆÏ`Ä9+!™Ä›ŠmŽÄVÝ#ĈÏ`ŽÄ9+!¡¡¡¡™ x j k¡¡¨Äw'ZÄĉY™Ä‡;fŽÄË®[Äw'ZŽÄĉY¡¡¡¡™ x j k¡¡¨Äw'ZÄË®[™ÄˆÏ`ŽÄG¯ Äw'ZŽÄË®[¡¡¡¡™ x j k¡¡¨Ä]-2Ä,õ™Äu…?ŽÄ›ýGÄ]-2ŽÄ,õ¡¡¡¡™ x j k¡¡¨Ä˜ÄJQ"™Ä‰KŽÄ›ýGĘŽÄJQ"¡¡¡¡™ x j k¡¡¨Ä7OÄćçC™ÄR¥AŽÄ:±›Ä7OĎćçC¡¡¡¡™ x j k¡¡¨Ä7OÄÄT)™ÄR¥AŽÄôGwÄ7OÄŽÄT)¡¡¡¡™ x j k¡¡¨Ä7OÄļ­[™ÄR¥AŽÄgÃ2Ä7OĎļ­[¡¡¡¡™ x j k¡¡¨Ä7OÄÄËLa™ÄR¥AŽÄ†A@Ä7OÄŽÄËLa¡¡¡¡™ x j k¡¡¨Ä7OÄÄ2×™ÄR¥AŽÄJ5#Ä7OÄŽÄ2ס¡¡¡™ x j k¡¡¨Ä7OÄÄ,õ™ÄR¥AŽÄžJÄ7OÄŽÄ,õ¡¡¡¡™ x j k¡¡¨Ä7OÄăö=™ÄR¥AŽÄc™.Ä7OĎăö=¡¡¡¡™ x j k¡¡¨Ä7OÄÄJQ"™ÄR¥AŽÄ8áÄ7OÄŽÄJQ"¡¡¡¡™ x j k x jÄ ·“ ¤Ä]GBÄTQ) ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁEA25– k x jÄ ·“ ¤Ä]GBÄ—ÄI ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁEA26– k x jÄ ·“ ¤Ä]GBÄT( ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁEA27– k x jÄ ·“ ¤Ä]GBÄ™ìÁ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁEA28– k x jÄ ·“ ¤Ä]GBÄOk% ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁEA29– k x jÄ ·“ ¤Ä]GBĆy> ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁEA30– k¡¡¨Äíúăö=™Äˆ§JŽÄ›ýGÄíúŽÄƒö=¡¡¡¡™ x j k x jÄ ·“ ¤Ä]GBÄåÇ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁEA31– k x jÄ ·“ ¤Ä]NGĉ–? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/G– k¡¡¨ÄGŸ8Äi£0™Ä‡ßaŽÄº»ÉÄGŸ8ŽÄi£0¡¡¡¡™ x j k¡¡¨Äw'Zĺ»É™Ä‡;fŽÄK%"Äw'ZŽÄº»É¡¡¡¡™ x j k¡¡¨ÄGŸ8Ä¿F_™Ä‡ßaŽÄZ°-ÄGŸ8ŽÄ¿F_¡¡¡¡™ x j k x jÄ ·“ ¤Ä%QÄ]3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB0– k x jÄ ·“ ¤ÄXØEÄE  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB1– k x jÄ ·“ ¤Ä<|/ÄH©" ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB2– k x jÄ ·“ ¤Ä‹3Äî­c ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB3– k x jÄ ·“ ¤Ä'òÄ‹h½ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB4– k x jÄ ·“ ¤ÄFÇ7ÄŠªC ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB5– k x jÄ ·“ ¤Ä)- Ä^+. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB6– k x jÄ ·“ ¤ÄýÅÄU * ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁB7– k x jÄ ·“ ¤Ä‡!bÄU * ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA7– k x jÄ ·“ ¤Ä™×ãÄ^+. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA6– k x jÄ ·“ ¤ÄCŽ1ÄŠªC ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA5– k x jÄ ·“ ¤Äu,UÄ‹h½ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA4– k x jÄ ·“ ¤Ä;F+Äî­c ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA3– k x jÄ ·“ ¤Ä¤wÄH©" ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA2– k x jÄ ·“ ¤Ä–mÄE  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA1– k x jÄ ·“ ¤Ä½HCÄ]3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁA0– k¡¡¨Ä‡ßaćçC™Äo@OŽÄ:±›Ä‡ßaŽÄ‡çC¡¡¡¡™ x j k¡¡¨Ä‡ßaÄT)™Äo@OŽÄôGwćßaŽÄT)¡¡¡¡™ x j k¡¡¨Ä‡ßaļ­[™Äo@OŽÄgÃ2ćßaŽÄ¼­[¡¡¡¡™ x j k¡¡¨Ä‡ßaÄËLa™Äo@OŽÄ†A@ćßaŽÄËLa¡¡¡¡™ x j k¡¡¨Ä‡ßaÄ2×™Äo@OŽÄJ5#ćßaŽÄ2ס¡¡¡™ x j k¡¡¨Ä‡ßaÄ,õ™Äo@OŽÄžJćßaŽÄ,õ¡¡¡¡™ x j k¡¡¨Ä‡ßaăö=™Äo@OŽÄc™.ćßaŽÄƒö=¡¡¡¡™ x j k¡¡¨Ä‡ßaÄJQ"™Äo@OŽÄ8áćßaŽÄJQ"¡¡¡¡™ x j k¡¡¨ÄzÝ[ĺ»É™Ä^ŽÄK%"ÄzÝ[ŽÄº»É¡¡¡¡™ x j k¡¡¨ÄR¥AćçC™ÄGŸ8ŽÄ:±›ÄR¥AŽÄ‡çC¡¡¡¡™ x j k¡¡¨ÄR¥AÄT)™ÄGŸ8ŽÄôGwÄR¥AŽÄT)¡¡¡¡™ x j k¡¡¨ÄR¥Aļ­[™ÄGŸ8ŽÄgÃ2ÄR¥AŽÄ¼­[¡¡¡¡™ x j k¡¡¨ÄR¥AÄËLa™ÄGŸ8ŽÄ†A@ÄR¥AŽÄËLa¡¡¡¡™ x j k¡¡¨ÄR¥AÄ2×™ÄGŸ8ŽÄJ5#ÄR¥AŽÄ2ס¡¡¡™ x j k¡¡¨ÄR¥AÄ,õ™ÄGŸ8ŽÄžJÄR¥AŽÄ,õ¡¡¡¡™ x j k¡¡¨ÄR¥Aăö=™ÄGŸ8ŽÄc™.ÄR¥AŽÄƒö=¡¡¡¡™ x j k¡¡¨ÄR¥AÄJQ"™ÄGŸ8ŽÄ8áÄR¥AŽÄJQ"¡¡¡¡™ x j k¡¡¨ÄGŸ8Ä¿F_™Ä]€IŽÄº»ÉÄGŸ8ŽÄ¿F_¡¡¡¡™ x j k¡¡¨Ä3Â%Ä¿F_™Ä‡ßaŽÄº»ÉÄ3Â%ŽÄ¿F_¡¡¡¡™ x j k x jÄ ·“ ¤Ä~9_Ä>m˜ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á245A– k x jÄ ·“ ¤Ä˜7qĉ–? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDir– k¡¡¨ÄÍ!Ä,õ™ÄdÉ>ŽÄ(ÄÍ!ŽÄ,õ¡¡¡¡™ x j k x jÄ ·“ ¤ÄÙßÄ]m$ ¢ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á BusCtlPAL– k x jÄ ·“ ¤Äupć‰6 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/EnIOBM– k¡¡¨ÄQpQÄ G ™ÄP•PŽÄš:÷ÄQpQŽÄ G ¡¡¡¡™ x j k¡¡¨ÄE7UÄMó™Ä£ŽÄ G ÄE7UŽÄMó¡¡¡¡™ x j k x jÄ ·“ ¤Äp—kÄ¢ï= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á /IntA8259A– k¡¡¨ÄK”EÄ G ™ÄBî=ŽÄš:÷ÄK”EŽÄ G ¡¡¡¡™ x j k¡¡¨ÄŸ¿ÆĬ×D™ÄE7UŽÄÁQLÄŸ¿ÆŽÄ¬×D¡¡¡¡™ x j k x jÄ ·“ ¤Ä,þ7Ä|’/ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDRQ– k¡¡¨ÄE7UĘÃ=™Ä5 AŽÄ G ÄE7UŽÄ˜Ã=¡¡¡¡™ x j k¡¡¨Ä˜®™Ä|×2™ÄXûYŽÄ˜Ã=Ę®™ŽÄ|×2¡¡¡¡™ x j k¡¡¨Ä'$Ä|×2™Ä‘…†ŽÄ˜Ã=Ä'$ŽÄ|×2¡¡¡¡™ x j k¡¡¨ÄŸ¿ÆÄN™ÄE7UŽÄ…Ÿ5ÄŸ¿ÆŽÄN¡¡¡¡™ x j k¡¡¨ÄŸ¿ÆÄaq&™ÄE7UŽÄi6)ÄŸ¿ÆŽÄaq&¡¡¡¡™ x j k¡¡¨ÄŸ¿ÆIJ|E™ÄE7UŽÄ£?ÄŸ¿ÆŽÄ²|E¡¡¡¡™ x j k x jÄ ·“ ¤Ä,þ7ÄÉyN ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemCS16– k¡¡¨ÄŸ¿ÆÄzV‘™ÄE7UŽÄ¾œIÄŸ¿ÆŽÄzV‘¡¡¡¡™ x j k x jÄ ·“ ¤Ä,þ7Ä«Áf ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOCS16– k¡¡¨ÄŸ¿ÆÄl™ÄE7UŽÄ°sCÄŸ¿ÆŽÄl¡¡¡¡™ x j k x jÄ ·“ ¤Ä,þ7Ä€Å1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/DAck– k¡¡¨ÄŸ¿ÆÄ6Šu™ÄE7UŽÄ¦PŸÄŸ¿ÆŽÄ6Šu¡¡¡¡™ x j k¡¡¨Ä3/Ä G ™Ä'y*ŽÄš:÷Ä3/ŽÄ G ¡¡¡¡™ x j k¡¡¨Ä£Ä(™ÄcÍQŽÄ¨ƒ?Ä£ŽÄ(¡¡¡¡™ x j k¡¡¨Ä£ÄN™ÄcÍQŽÄ…Ÿ5Ä£ŽÄN¡¡¡¡™ x j k¡¡¨Ä£Ä¬×D™ÄcÍQŽÄÁQLÄ£ŽÄ¬×D¡¡¡¡™ x j k¡¡¨Ä£Äaq&™ÄcÍQŽÄi6)Ä£ŽÄaq&¡¡¡¡™ x j k¡¡¨Ä£ÄzV‘™ÄcÍQŽÄ¾œIÄ£ŽÄzV‘¡¡¡¡™ x j k¡¡¨Ä£Äl™ÄcÍQŽÄ°sCÄ£ŽÄl¡¡¡¡™ x j k¡¡¨ÄE7UĘÃ=™Ä£ŽÄ e@ÄE7UŽÄ˜Ã=¡¡¡¡™ x j k¡¡¨Äq·]ĘÃ=™Ä£ŽÄ G Äq·]ŽÄ˜Ã=¡¡¡¡™ x j k¡¡¨ÄŸ¿ÆÄRú™ÄE7UŽÄ‡’ÄŸ¿ÆŽÄRú¡¡¡¡™ x j k x jÄ ·“ ¤Ä,þ7Ä( ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/Master– k x jÄ ·“ ¤Ä,þ7Ähû) ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOChCk– k x jÄ ·“ ¤Ä,þ7Äi§* ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOWPC– k x jÄ ·“ ¤Ä,þ7ÄŽ!8 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IORPC– k x jÄ ·“ ¤Äf!ˆÄ¢ï= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁClock– k x jÄ ·“ ¤Ä]3_Ä¢ï= ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁReset– k x jÄ ·“ ¤ÄQEÄ€Å1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁBReq– k x jÄ ·“ ¤ÄQEÄ«Áf ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁBAck– k x jÄ ·“ ¤Äe}WÄ{À ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/INTA– k x jÄ ·“ ¤Äf)XÄhû) ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/Fault– k x jÄ ·“ ¤ÄuÇdÄŽ!8 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOR– k x jÄ ·“ ¤ÄlÖ]Äi§* ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOW– k x jÄ ·“ ¤Ä·SÀć‰6 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/EnPCM– k¡¡¨ÄzÝ[ÄĉY™Ä^ŽÄÐu^ÄzÝ[ŽÄĉY¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä ÛÄÄê,ÝÄoaRijuÄ¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä+»ÝÄ´9ÄÄ ÄÄàe¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä*ÞÝÄ´9ÄÄSÄÄàe¡¹ k¡¡¨Ä=­.ÄBy™Ä&ŽÄÐu^Ä=­.ŽÄBy¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä)$ÝÄ´9ÄÄËÄÄàe¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä*ÝÄ´9ÄÄÄÄàe¡¹ k¡¡¨ÄzÝ[Ä}³J™Ä^ŽÄ—!XÄzÝ[ŽÄ}³J¡¡¡¡™ x j k¡¡¨Ä*÷ Ä—!X™Ä&ŽÄ^7Ä*÷ ŽÄ—!X¡¡¡¡™ x j k x jÄ ·“ ¤F £Ä›÷tÄ9+! ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á+– k¡¡¨Äw'ZÄfG™Ä‡;fŽÄkGUÄw'ZŽÄfG¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨ÄÄÄ«ÝÄm#RÄ÷áÄ¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä%°ÝÄø¥ÄÄ»ÄÄ_e¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä$ÓÝÄø¥ÄÄ÷ÄÄ_e¡¹ k¡¡¨Ä£|ÄX7F™ÄgÿNŽÄkGUÄ£|ŽÄX7F¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä#öÝÄø¥ÄÄ3ÄÄ_e¡¹ k x jĈG¯“ °“¢·“¡¡¨Ä#öÝÄø¥ÄÄ3ÄÄ_e¡¹ k¡¡¨ÄdLOÄ~ÁW™Ä'ˆŽÄ“¸eÄdLOŽÄ~ÁW¡¡¡¡™ x j k¡¡¨Äo@OÄ~ÁW™Äg6IŽÄ“¸eÄo@OŽÄ~ÁW¡¡¡¡™ x j k¡¡¨Ä˜û´ÄDw%™ÄLÿZŽÄÃUĘû´ŽÄDw%¡¡¡¡™ x j k¡¡¨Ä˜û´Ä¶}i™ÄLÿZŽÄž«[Ęû´ŽÄ¶}i¡¡¡¡™ x j k¡¡¨Ä˜û´ÄÖp}™ÄLÿZŽÄ01Ęû´ŽÄÖp}¡¡¡¡™ x j k¡¡¨Ä˜û´Ä‡qP™ÄLÿZŽÄ}³JĘû´ŽÄ‡qP¡¡¡¡™ x j k¡¡¨Ä<¯VÄX#D™Ä%å5ŽÄ~DÄ<¯VŽÄX#D¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨ÄœmÝÄlŸÄÄxe«Ä˜³R¡¹ k x jĈG¯“ °“¢·“¡¡¨Äwº«Ä›ÝÄGyeÄkÛÄ¡¹ k x jĈG¯“ °“¢·“¡¡¨Äwº«Äš;ÝÄGyeÄkÄ¡¹ k¡¡¨Ä<¯VÄD0%™ÄjÕ—ŽÄ–ËQÄ<¯VŽÄD0%¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Äwº«Ä˜ÝÄGyeÄiÄ¡¹ k x jĈG¯“ °“¢·“¡¡¨Äwº«Ä™^ÝÄGyeÄjSÄ¡¹ k x jÄ ·“ ¤Ä×?FÄd9* ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSBHE– k x jÄ ·“ ¤Ä]GBÄk³. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemR– k x jÄ ·“ ¤Ä]GBÄf, ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemW– k x jÄ ·“ ¤Ä]GBĤ:· ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemRX– k x jÄ ·“ ¤Ä]GBÄok1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/MemWX– k x jÄ ·“ ¤Ä]GBÄØ° ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/Master– k x jÄ ·“ ¤Ä×?FÄB  ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁDRQ2– k x jÄ ·“ ¤Ä]GBÄG| ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/DAck2– k x jÄ ·“ ¤Ä]GBÄËO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOChCk– k x jÄ ·“ ¤Ä]GBÄ:— ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IORPC– k x jÄ ·“ ¤Ä?1ÝÄù‰“ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOWPC– k¡¡¨ÄÀTgÄq!.™Ä9ïŽÄÛŒYÄÀTgŽÄq!.¡¡¡¡™ x j k¡¡¨ÄÀTgÄ|×2™Ä9ïŽÄ‚k4ÄÀTgŽÄ|×2¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä™)RÄW}#™ÄlŸÄÄð°Ç—Äa ĈÝ7—ÄlŸÄÄ*-—Äa Ä"¡Ý—Ä™)RÄäÄ—˜ k¡¡¨Ä]-2Ä‚k4™Ä,óŽÄ‡‰6Ä]-2ŽÄ‚k4¡¡¡¡™ x j k x jÄ ·“ ¤F £Ä–ËQÄÈ«µ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á+– k¡¡¨ÄC~¯Äq!.™ÄDw%ŽÄÛŒYÄC~¯ŽÄq!.¡¡¡¡™ x j k¡¡¨ÄC~¯Ä|×2™ÄDw%ŽÄ‚k4ÄC~¯ŽÄ|×2¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä—RÄW}#™ÄhËÄÄð°Ç—Ä ÄˆÝ7—ÄhËÄÄ*-—Ä Ä"¡Ý—Ä—RÄäÄ—˜ k¡¡¨ÄíúÄ‚k4™Ä~DŽÄ‡‰6ÄíúŽÄ‚k4¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄD0%ÄÈ«µ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á+– k¡¡¨Äož=Äq!.™Ä›±UŽÄÛŒYÄož=ŽÄq!.¡¡¡¡™ x j k¡¡¨Äož=Ä|×2™Ä›±UŽÄ‚k4Äož=ŽÄ|×2¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä–GRÄW}#™Äe»ÄÄð°Ç—Äì ĈÝ7—Äe»ÄÄ*-—Äì Ä"¡Ý—Ä–GRÄäÄ—˜ k¡¡¨Ä˜Ä‚k4™Ä_q4ŽÄ‡‰6ĘŽÄ‚k4¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄŽINÄÈ«µ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á+– k¡¡¨Ä•øÄq!.™Ä”ëSŽÄÛŒYÄ•øŽÄq!.¡¡¡¡™ x j k¡¡¨Ä•øÄ|×2™Ä”ëSŽÄ‚k4Ä•øŽÄ|×2¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä“RÄW}#™Ä^ÄÄð°Ç—Äj ĈÝ7—Ä^ÄÄ*-—Äj Ä"¡Ý—Ä“RÄäÄ—˜ k¡¡¨Ä—Ä‚k4™ÄáÙ ŽÄ‡‰6Ä—ŽÄ‚k4¡¡¡¡™ x j k x jÄ ·“ ¤F £ÄCå&ÄÈ«µ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á+– k¡¡¨Ä„5IÄq!.™Ä„XIŽÄÛŒYÄ„5IŽÄq!.¡¡¡¡™ x j k¡¡¨Ä„5IÄ|×2™Ä„XIŽÄ‚k4Ä„5IŽÄ|×2¡¡¡¡™ x j k x jĈG¯“ °“¢·“¡¡¨Ä”­RÄW}#™ÄaçÄÄð°Ç—Ä« ĈÝ7—ÄaçÄÄ*-—Ä« Ä"¡Ý—Ä”­RÄäÄ—˜ k¡¡¨ÄŽÇOÄ‚k4™Ä4¯ŽÄ‡‰6ÄŽÇOŽÄ‚k4¡¡¡¡™ x j k x jÄ ·“ ¤F £Ä ¯YÄÈ«µ ¢ ¥ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á+– k x jÄ ·“ ¤F £Ä¿EÄÆqY ¢ ¥ ¥ ¨ÅxeroxÅ pressfontsÅ HELVETICA-mir£¡ “ •  —¡¡¨  Š¡²“Á10K– k¡¡¨Ä2û‰Ä#yj™Ä<ö£ŽÄAøYÄ2û‰ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄïãÄ “&™Ä";XŽÄ,¯ÄïãŽÄ “&¡¡¡¡™ x j k¡¡¨Ä?ïŸÄ#yj™ÄÙ ŽÄéŒÄ?Ä#yj¡¡¡¡™ x j k¡¡¨Ä îÄ#yj™ÄR‰ÅŽÄVŽÄ îŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄSdÁÄ#yj™ÄžÛ¼ŽÄª<QÄSdÁŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä<͈Ä#yj™ÄQBµŽÄÕCÄ<͈ŽÄ#yj¡¡¡¡™ x j k¡¡¨Ä<Ä#yj™Ä-wbŽÄ5Ä<ŽÄ#yj¡¡¡¡™ x j k¡¡¨ÄUd³Ä#yj™ÄM¡ŽÄdµÄUd³ŽÄ#yj¡¡¡¡™ x j k¡¡¨Äõ<Ä/Λ™Ä7ŽÄ(m}Äõ<ŽÄ/Λ¡¡¡¡™ x j k¡¡¨Ä7OÄÄ/Λ™Äõ<ŽÄ,þ‘Ä7OÄŽÄ/Λ¡¡¡¡™ x j k¡¡¨ÄEó†ÄU™Ä;¹rŽÄR[^ÄEó†ŽÄU¡¡¡¡™ x j k¡¡¨ÄHÄU™Ä8ÿpŽÄÙšÄHŽÄU¡¡¡¡™ x j k¡¡¨Ä MÄU™Ä,ò[ŽÄ`›dÄ MŽÄU¡¡¡¡™ x j k¡¡¨ÄUd³ÄU™ÄM¡ŽÄ×YÕÄUd³ŽÄU¡¡¡¡™ x j k¡¡¨Ä<ÄU™Ä-wbŽÄ1‹-Ä<ŽÄU¡¡¡¡™ x j k¡¡¨Ä<͈ÄU™ÄQBµŽÄCœ;Ä<͈ŽÄU¡¡¡¡™ x j k¡¡¨ÄSdÁÄU™ÄžÛ¼ŽÄbØSÄSdÁŽÄU¡¡¡¡™ x j k¡¡¨Ä îÄU™ÄR‰ÅŽÄuh_Ä îŽÄU¡¡¡¡™ x j k¡¡¨Ä?ïŸÄU™ÄÙ ŽÄ‡;fÄ?ÄU¡¡¡¡™ x j k¡¡¨ÄïãÄU™Ä";XŽÄŽhÄïãŽÄU¡¡¡¡™ x j k¡¡¨Ä<͈IJ ™ÄQBµŽÄKû1Ä<͈ŽÄ² ¡¡¡¡™ x j k¡¡¨Ä îIJ ™ÄR‰ÅŽÄµ1Ä îŽÄ² ¡¡¡¡™ x j k¡¡¨ÄïãÄP5™Ä";XŽÄ[ß8ÄïãŽÄP5¡¡¡¡™ x j k¡¡¨Ä îÄtºO™ÄR‰ÅŽÄ^½?Ä îŽÄtºO¡¡¡¡™ x j k¡¡¨Ä7OÄÄtºO™Ä îŽÄ•leÄ7OÄŽÄtºO¡¡¡¡™ x j k x jÄ ·“ ¤Ä?1ÝÄ3›| ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁLA– k¡¡¨Ä«ó ÄÝãn™Ä5ŽÄ:±›Ä«ó ŽÄÝãn¡¡¡¡™ x j k¡¡¨Äí-ÄÝãn™Ä=<™ŽÄgÃ2Äí-ŽÄÝãn¡¡¡¡™ x j k¡¡¨Ä‰@ÄÝãn™Äfy ŽÄJ5#ĉ@ŽÄÝãn¡¡¡¡™ x j k¡¡¨Ä5j‘ÄÝãn™Ä»SŽÄc™.Ä5j‘ŽÄÝãn¡¡¡¡™ x j k¡¡¨ÄïãÄŠ×F™Ä";XŽÄp8ÄïãŽÄŠ×F¡¡¡¡™ x j k¡¡¨Ä7OÄÄŠ×F™ÄïãŽÄKq&Ä7OÄŽÄŠ×F¡¡¡¡™ x j k x jÄ ·“ ¤Ä?1ÝÄeq3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁEA– k¡¡¨Ä£±SÄ«ŠÍ™ÄLý'ŽÄٚģ±SŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄŠöGÄ«ŠÍ™Ä-ŽÄ`›dÄŠöGŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄK¿'Ä«ŠÍ™ÄëIŽÄ×YÕÄK¿'ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äðç}Ä«ŠÍ™ÄqÑ;ŽÄ1‹-Äðç}ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄšäQÄ«ŠÍ™Ä·Á`ŽÄCœ;ÄšäQŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄÒ˜oÄ«ŠÍ™ÄŽoKŽÄbØSÄÒ˜oŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Ä£¾ßÄ«ŠÍ™Äà6wŽÄuh_Ä£¾ßŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄÀTgÄ«ŠÍ™Ä9ïŽÄ‡;fÄÀTgŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äµ#ìÄ«ŠÍ™Ä~DŽÄŽhĵ#ìŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨ÄíúÄ«ŠÍ™Äˆ§JŽÄµ1ÄíúŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äož=Ä«ŠÍ™Ä›±UŽÄ[ß8Äož=ŽÄ«ŠÍ¡¡¡¡™ x j k¡¡¨Äd33Ä(k™Ä¥1TŽÄ:±›Äd33ŽÄ(k¡¡¡¡™ x j k¡¡¨Ä„vEÄ(k™ÄDÀ©ŽÄgÃ2Ä„vEŽÄ(k¡¡¡¡™ x j k¡¡¨ÄKÕ±Ä(k™ÄªÆ[ŽÄJ5#ÄKÕ±ŽÄ(k¡¡¡¡™ x j k¡¡¨ÄK”EÄU×™ÄBî=ŽÄ $_ÄK”EŽÄUס¡¡¡™ x j k x jÄ ·“ ¤Ä×?FÄAds ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á /INTA8259A– k x jÄ ·“ ¤Ä]GBÄ/†£ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁSD– k¡¡¨ÄŽÎÄC£Þ™Ä^+.ŽÄ+9ÄŽÎŽÄC£Þ¡¡¡¡™ x j k x jÄ ·“ ¤Ä}ª?Ä7ŒÁ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“ÁData– k x jÄ ·b ¤Ä]GBÄËõN ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á/IOCS16– k x jª ¤ŒL ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Áa– k x j¬ ¤ÄJ.yĆ³/ ¢ ¥ ¨ÅxeroxÅ pressfontsÅTimesRoman-mrr£¡ “ •  —¡¡¨  Š¡²“Á(8.0 Application Schematic of the Circuit– k x j¢¯“¢°“¡¡¨   ¸¡¹¢¯“¢°“¡¡¨ ¸¸¡¹¢¯“¢°“¡¡¨¸ ¡¹¢¯“¢°“¡¡¨   ¡¹ k x jª ¤Ø\ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-mrr£¡ “ •  —¡¡¨  Š¡²“Á – k k é k é k g– Interpress–:0.0 mm xmin 0.0 mm ymin 148.8722 mm xmax 203.9056 mm ymax –é206.7278 mm bigger topLeading 206.7278 mm bigger topIndent 1.411111 mm bigger bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoffš£3™3 ˜% ˜ ˜Ï[–fclearTabStops 0 6 {20 pt .add .dup flushLeft tabStop 90 pt .add .dup flushLeft tabStop}.cvx .rept .popšÐsz0˜0]–fclearTabStops 0 6 {20 pt .add .dup flushLeft tabStop 90 pt .add .dup flushLeft tabStop}.cvx .rept .popšË˜Ë—RšœY˜Y—— šœ˜S–“ªInterpress/Xerox/3.0  f j k j¡¥“ļ= ¤ ¨ x jÄãHÄÿG5½ ¢ ¨ x jª ¤ÄçƒÄô ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁLegend:– k x jª ¤Ä@µhÄ Y÷ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁVcc– k x jÀ ¤Ä2<ÄL¯š ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä2<Ä9< ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä(Ó0ÄÈ‚Í ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jª ¤ÄNcOÄ3 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁView from top of Package– k x jª ¤Ä@µhÄô ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“ÁGround– k x jÀ ¤Ä)‰Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä<[ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä’¹: ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Äw`3 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Äh¶+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄU{¦ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄB»" ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄKO# ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄÄ} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Äøu… ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄcS8 ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄeÆ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄÇÓw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Äqy ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä7. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄU"= ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä7#% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&ÄAž; ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä3} ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä9.E ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄL&Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä@ðÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä;Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä’·QÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3 Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä3ÉÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äœ9[Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä¥yfÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄTíÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄµËGÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äm{Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Äg†Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄÝ©Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄC%WÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä2ì5Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄíÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä>Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄLÂ;Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤ÄøÄ"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k x jÀ ¤Ä)‰Ä"(% ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Ái– k¡¡¨Ä<µRÄœ£D™Ä£yaŽÄˆ$;Ä<µRŽÄœ£D¡¡¡¡™¡¡¨Ä£yaÄ—:o™Ä£ÜaŽÄŠq<Ä£yaŽÄ—:o¡¡¡¡™¡¡¨Ä<µRÄMn9™Ä£ÜaŽÄ—:oÄ<µRŽÄMn9¡¡¡¡™¡¡¨Ä<µRÄMn9™ÄtœŽÄŠq<Ä<µRŽÄMn9¡¡¡¡™¡¡¨Äzé™ÄÂVəĥyfŽÄ Äz陎ÄÂVÉ¡¡¡¡™¡¡¨Ä¥yfÄJ4™Ä<,%ŽÄÎ{\Ä¥yfŽÄJ4¡¡¡¡™¡¡¨Äzé™Ä’hg™Ä<,%ŽÄJ4Äz陎Ä’hg¡¡¡¡™¡¡¨Äzé™Ä’hg™Ä%#.ŽÄÎ{\Äz陎Ä’hg¡¡¡¡™¡¡¨ÄhY}ÄÎ{\™Ä2<ŽÄŠq<ÄhY}ŽÄÎ{\¡¡¡¡™¡¡¨Ä(Ó0ÄÎ{\™ÄgxŽÄŠq<Ä(Ó0ŽÄÎ{\¡¡¡¡™¡¡¨ÄíÄÎ{\™ÄoŽÄŠq<ÄíŽÄÎ{\¡¡¡¡™¡¡¨Äœ ±ÄÎ{\™Ä"µ'ŽÄŠq<Äœ ±ŽÄÎ{\¡¡¡¡™¡¡¨Äz¼ÃÄÎ{\™Ä’·¢ŽÄŠq<Äz¼ÃŽÄÎ{\¡¡¡¡™¡¡¨ÄmŸxÄÎ{\™ÄˆªŽÄŠq<ÄmŸxŽÄÎ{\¡¡¡¡™¡¡¨Ä_¶gÄÎ{\™ÄH(MŽÄŠq<Ä_¶gŽÄÎ{\¡¡¡¡™¡¡¨ÄhçoÄÎ{\™ÄqfwŽÄŠq<ÄhçoŽÄÎ{\¡¡¡¡™¡¡¨Ä]/WÄÎ{\™ÄSMŽÄŠq<Ä]/WŽÄÎ{\¡¡¡¡™¡¡¨Äg†ÄÎ{\™Ä•ˆŽÄŠq<Äg†ŽÄÎ{\¡¡¡¡™¡¡¨ÄkgÄÎ{\™Äºo²ŽÄŠq<ÄkgŽÄÎ{\¡¡¡¡™¡¡¨Äà6ÛÄÎ{\™Ä€õ}ŽÄŠq<Äà6ÛŽÄÎ{\¡¡¡¡™¡¡¨Ä‰ˆÄÎ{\™Ä§¡¥ŽÄŠq<ĉˆŽÄÎ{\¡¡¡¡™¡¡¨ÄNcOÄÎ{\™ÄwwŽÄŠq<ÄNcOŽÄÎ{\¡¡¡¡™¡¡¨ÄM%OÄÎ{\™œŽÄŠq<ÄM%OŽÄÎ{\¡¡¡¡™¡¡¨Ä2ì5ÄÎ{\™ÄsEwŽÄŠq<Ä2ì5ŽÄÎ{\¡¡¡¡™¡¡¨ÄIçDÄÎ{\™Ä‘—…ŽÄŠq<ÄIçDŽÄÎ{\¡¡¡¡™¡¡¨ÄÀñ¯ÄÎ{\™Ä…?xŽÄŠq<ÄÀñ¯ŽÄÎ{\¡¡¡¡™¡¡¨Ä5­0ÄÎ{\™ÄKsCŽÄŠq<Ä5­0ŽÄÎ{\¡¡¡¡™¡¡¨Ä)ö%ÄÎ{\™Äe¢YŽÄŠq<Ä)ö%ŽÄÎ{\¡¡¡¡™¡¡¨Äm{ÄÎ{\™ÄC%:ŽÄŠq<Äm{ŽÄÎ{\¡¡¡¡™¡¡¨Ä¢×CÄÎ{\™Ä]ßPŽÄŠq<Ä¢×CŽÄÎ{\¡¡¡¡™¡¡¨ÄèÄÎ{\™ÄJê?ŽÄŠq<ÄèŽÄÎ{\¡¡¡¡™¡¡¨ÄtaÄÎ{\™Ä|gŽÄŠq<ÄtaŽÄÎ{\¡¡¡¡™¡¡¨Äh„OÄÎ{\™Äi#OŽÄŠq<Äh„OŽÄÎ{\¡¡¡¡™¡¡¨ÄgFOÄÎ{\™ÄgåOŽÄŠq<ÄgFOŽÄÎ{\¡¡¡¡™¡¡¨ÄŒÇmÄÎ{\™Ä¥ŽÄŠq<ÄŒÇmŽÄÎ{\¡¡¡¡™¡¡¨ÄA3ÄÎ{\™ÄúQÃŽÄŠq<ÄA3ŽÄÎ{\¡¡¡¡™¡¡¨Ä ÄÎ{\™Ä5A*ŽÄŠq<Ä ŽÄÎ{\¡¡¡¡™¡¡¨ÄTíÄÎ{\™ÄXUŽÄŠq<ÄTíŽÄÎ{\¡¡¡¡™¡¡¨ÄœÄÎ{\™Äpƒ[ŽÄŠq<ÄœŽÄÎ{\¡¡¡¡™¡¡¨ÄVGÄÎ{\™ÄE”9ŽÄŠq<ÄVGŽÄÎ{\¡¡¡¡™¡¡¨ÄµËGÄÎ{\™ÄL^sŽÄŠq<ĵËGŽÄÎ{\¡¡¡¡™¡¡¨ÄÁ³ÄÎ{\™Ä—:oŽÄŠq<ÄÁ³ŽÄÎ{\¡¡¡¡™¡¡¨Ä@g/ÄÎ{\™ÄäŽÄŠq<Ä@g/ŽÄÎ{\¡¡¡¡™¡¡¨Ä-ÄÎ{\™Ä‘gŽÄŠq<Ä-ŽÄÎ{\¡¡¡¡™¡¡¨ÄpÄÎ{\™Ä.…!ŽÄŠq<ÄpŽÄÎ{\¡¡¡¡™¡¡¨ÄA5.ÄÎ{\™ÄJ4ŽÄŠq<ÄA5.ŽÄÎ{\¡¡¡¡™¡¡¨Ä3 ÄÎ{\™Ä¢ÙqŽÄŠq<Ä3 ŽÄÎ{\¡¡¡¡™¡¡¨Ä•?gÄÎ{\™ÄÅŽÄŠq<Ä•?gŽÄÎ{\¡¡¡¡™¡¡¨ÄàÄÎ{\™ÄJe/ŽÄŠq<ÄàŽÄÎ{\¡¡¡¡™¡¡¨Ä ›gÄÎ{\™ÄŽÄŠq<Ä ›gŽÄÎ{\¡¡¡¡™¡¡¨Ä¥)kÄÎ{\™Ä9g%ŽÄŠq<Ä¥)kŽÄÎ{\¡¡¡¡™¡¡¨Ä3ÉÄÎ{\™ÄpIŽÄŠq<Ä3ÉŽÄÎ{\¡¡¡¡™¡¡¨ÄÀÄÎ{\™Ä= ŽÄŠq<ÄÀŽÄÎ{\¡¡¡¡™¡¡¨Ä&ÄÅÄÎ{\™ÄšígŽÄŠq<Ä&ÄÅŽÄÎ{\¡¡¡¡™¡¡¨ÄHŒ1ÄÎ{\™Ä´yŽÄŠq<ÄHŒ1ŽÄÎ{\¡¡¡¡™¡¡¨Ä6‹ÔÄÎ{\™Ä¹~ŽÄŠq<Ä6‹ÔŽÄÎ{\¡¡¡¡™¡¡¨Äj–CÄÎ{\™Ä®BmŽÄŠq<Äj–CŽÄÎ{\¡¡¡¡™¡¡¨Äj–CÄ—:o™Ä®BmŽÄJ4Äj–CŽÄ—:o¡¡¡¡™¡¡¨Ä6‹ÔÄ—:o™Ä¹~ŽÄJ4Ä6‹ÔŽÄ—:o¡¡¡¡™¡¡¨ÄHŒ1Ä—:o™Ä´yŽÄJ4ÄHŒ1ŽÄ—:o¡¡¡¡™¡¡¨Ä&ÄÅÄ—:o™ÄšígŽÄJ4Ä&ÄÅŽÄ—:o¡¡¡¡™¡¡¨ÄÀÄ—:o™Ä= ŽÄJ4ÄÀŽÄ—:o¡¡¡¡™¡¡¨Ä3ÉÄ—:o™ÄpIŽÄJ4Ä3ÉŽÄ—:o¡¡¡¡™¡¡¨Ä¥)kÄ—:o™Ä9g%ŽÄJ4Ä¥)kŽÄ—:o¡¡¡¡™¡¡¨Ä ›gÄ—:o™ÄŽÄJ4Ä ›gŽÄ—:o¡¡¡¡™¡¡¨ÄàÄ—:o™ÄJe/ŽÄJ4ÄàŽÄ—:o¡¡¡¡™¡¡¨Ä•?gÄ—:o™ÄÅŽÄJ4Ä•?gŽÄ—:o¡¡¡¡™¡¡¨Ä3 Ä—:o™Ä¢ÙqŽÄJ4Ä3 ŽÄ—:o¡¡¡¡™¡¡¨ÄA5.Ä—:o™ÄJ4ŽÄJ4ÄA5.ŽÄ—:o¡¡¡¡™¡¡¨ÄpÄ—:o™Ä.…!ŽÄJ4ÄpŽÄ—:o¡¡¡¡™¡¡¨Ä-Ä—:o™Ä‘gŽÄJ4Ä-ŽÄ—:o¡¡¡¡™¡¡¨Ä@g/Ä—:o™ÄäŽÄJ4Ä@g/ŽÄ—:o¡¡¡¡™¡¡¨ÄÁ³Ä—:o™Ä—:oŽÄJ4ÄÁ³ŽÄ—:o¡¡¡¡™¡¡¨ÄµËGÄ—:o™ÄL^sŽÄJ4ĵËGŽÄ—:o¡¡¡¡™¡¡¨ÄVGÄ—:o™ÄE”9ŽÄJ4ÄVGŽÄ—:o¡¡¡¡™¡¡¨ÄœÄ—:o™Äpƒ[ŽÄJ4ÄœŽÄ—:o¡¡¡¡™¡¡¨ÄTíÄ—:o™ÄXUŽÄJ4ÄTíŽÄ—:o¡¡¡¡™¡¡¨Ä Ä—:o™Ä5A*ŽÄJ4Ä ŽÄ—:o¡¡¡¡™¡¡¨ÄA3Ä—:o™ÄúQÃŽÄJ4ÄA3ŽÄ—:o¡¡¡¡™¡¡¨ÄŒÇmÄ—:o™Ä¥ŽÄJ4ÄŒÇmŽÄ—:o¡¡¡¡™¡¡¨ÄgFOÄ—:o™ÄgåOŽÄJ4ÄgFOŽÄ—:o¡¡¡¡™¡¡¨Äh„OÄ—:o™Äi#OŽÄJ4Äh„OŽÄ—:o¡¡¡¡™¡¡¨ÄtaÄ—:o™Ä|gŽÄJ4ÄtaŽÄ—:o¡¡¡¡™¡¡¨ÄèÄ—:o™ÄJê?ŽÄJ4ÄèŽÄ—:o¡¡¡¡™¡¡¨Ä¢×CÄ—:o™Ä]ßPŽÄJ4Ä¢×CŽÄ—:o¡¡¡¡™¡¡¨Äm{Ä—:o™ÄC%:ŽÄJ4Äm{ŽÄ—:o¡¡¡¡™¡¡¨Ä)ö%Ä—:o™Äe¢YŽÄJ4Ä)ö%ŽÄ—:o¡¡¡¡™¡¡¨Ä5­0Ä—:o™ÄKsCŽÄJ4Ä5­0ŽÄ—:o¡¡¡¡™¡¡¨ÄÀñ¯Ä—:o™Ä…?xŽÄJ4ÄÀñ¯ŽÄ—:o¡¡¡¡™¡¡¨ÄIçDÄ—:o™Ä‘—…ŽÄJ4ÄIçDŽÄ—:o¡¡¡¡™¡¡¨Ä2ì5Ä—:o™ÄsEwŽÄJ4Ä2ì5ŽÄ—:o¡¡¡¡™¡¡¨ÄM%OÄ—:o™œŽÄJ4ÄM%OŽÄ—:o¡¡¡¡™¡¡¨ÄNcOÄ—:o™ÄwwŽÄJ4ÄNcOŽÄ—:o¡¡¡¡™¡¡¨Ä‰ˆÄ—:o™Ä§¡¥ŽÄJ4ĉˆŽÄ—:o¡¡¡¡™¡¡¨Äà6ÛÄ—:o™Ä€õ}ŽÄJ4Äà6ÛŽÄ—:o¡¡¡¡™¡¡¨ÄkgÄ—:o™Äºo²ŽÄJ4ÄkgŽÄ—:o¡¡¡¡™¡¡¨Äg†Ä—:o™Ä•ˆŽÄJ4Äg†ŽÄ—:o¡¡¡¡™¡¡¨Ä]/WÄ—:o™ÄSMŽÄJ4Ä]/WŽÄ—:o¡¡¡¡™¡¡¨ÄhçoÄ—:o™ÄqfwŽÄJ4ÄhçoŽÄ—:o¡¡¡¡™¡¡¨Ä_¶gÄ—:o™ÄH(MŽÄJ4Ä_¶gŽÄ—:o¡¡¡¡™¡¡¨ÄmŸxÄ—:o™ÄˆªŽÄJ4ÄmŸxŽÄ—:o¡¡¡¡™¡¡¨Äz¼ÃÄ—:o™Ä’·¢ŽÄJ4Äz¼ÃŽÄ—:o¡¡¡¡™¡¡¨Äœ ±Ä—:o™Ä"µ'ŽÄJ4Äœ ±ŽÄ—:o¡¡¡¡™¡¡¨ÄíÄ—:o™ÄoŽÄJ4ÄíŽÄ—:o¡¡¡¡™¡¡¨Ä(Ó0Ä—:o™ÄgxŽÄJ4Ä(Ó0ŽÄ—:o¡¡¡¡™¡¡¨ÄhY}Ä—:o™Ä2<ŽÄJ4ÄhY}ŽÄ—:o¡¡¡¡™¡¡¨Ä¥yfÄ‚;™Ä£yaŽÄ0{Ä¥yfŽÄ‚;¡¡¡¡™¡¡¨Ä¥yfĸəģyaŽÄуÄ¥yfŽÄ¸É¡¡¡¡™¡¡¨Ä¥yfĈî?™Ä£yaŽÄWA(Ä¥yfŽÄˆî?¡¡¡¡™¡¡¨Ä¥yfĬŸP™Ä£yaŽÄ ÔÄ¥yfŽÄ¬ŸP¡¡¡¡™¡¡¨Ä¥yfÄ|=:™Ä£yaŽÄ3Ä¥yfŽÄ|=:¡¡¡¡™¡¡¨Ä¥yfÄPw'™Ä£yaŽÄ8»—Ä¥yfŽÄPw'¡¡¡¡™¡¡¨Ä¥yfă…™Ä£yaŽÄvô9Ä¥yfŽÄƒ…¡¡¡¡™¡¡¨Ä¥yfÄ@ð™Ä£yaŽÄdí0Ä¥yfŽÄ@ð¡¡¡¡™¡¡¨Ä¥yfÄgC™Ä£yaŽÄAý˜Ä¥yfŽÄgC¡¡¡¡™¡¡¨Ä¥yfÄ•D™Ä£yaŽÄ;ÁÄ¥yfŽÄ•D¡¡¡¡™¡¡¨Ä¥yfÄû×{™Ä£yaŽÄ+ýÄ¥yfŽÄû×{¡¡¡¡™¡¡¨Ä¥yfÄi§²™Ä£yaŽÄÄ¥yfŽÄi§²¡¡¡¡™¡¡¨Ä¥yfÄ`Å0™Ä£yaŽÄyo<Ä¥yfŽÄ`Å0¡¡¡¡™¡¡¨Ä¥yfÄîw™Ä£yaŽÄÿÄ¥yfŽÄîw¡¡¡¡™¡¡¨Ä¥yfÄOa(™Ä£yaŽÄeOÄ¥yfŽÄOa(¡¡¡¡™¡¡¨Ä¥yfÄ;™Ä£yaŽÄÅgÄ¥yfŽÄ;¡¡¡¡™¡¡¨Ä¥yfÄ“ôM™Ä£yaŽÄ¦†ÛÄ¥yfŽÄ“ôM¡¡¡¡™¡¡¨Ä¥yfÄæŠw™Ä£yaŽÄg5Ä¥yfŽÄæŠw¡¡¡¡™¡¡¨Ä¥yfÄN(™Ä£yaŽÄšéOÄ¥yfŽÄN(¡¡¡¡™¡¡¨Ä¥yf˜™Ä£yaŽÄœ'OÄ¥yfŽ˜¡¡¡¡™¡¡¨Ä¥yfÄ2/¢™Ä£yaŽÄã¿xÄ¥yfŽÄ2/¢¡¡¡¡™¡¡¨Ä¥yfÄI'™Ä£yaŽÄ2°ÃÄ¥yfŽÄI'¡¡¡¡™¡¡¨Ä¥yfć«I™Ä£yaŽÄn;Ä¥yfŽÄ‡«I¡¡¡¡™¡¡¨Ä¥yfĈՙģyaŽÄi|9Ä¥yfŽÄˆÕ¡¡¡¡™¡¡¨Ä¥yfÄziC™Ä£yaŽÄX0Ä¥yfŽÄziC¡¡¡¡™¡¡¨Ä¥yfÄ_həģyaŽÄF?(Ä¥yfŽÄ_hÉ¡¡¡¡™¡¡¨Ä¥yfÄo"?™Ä£yaŽÄÜÄ¥yfŽÄo"?¡¡¡¡™¡¡¨Ä¥yfÄŽaP™Ä£yaŽÄ CÄ¥yfŽÄŽaP¡¡¡¡™¡¡¨Ä¥yfÄh#:™Ä£yaŽÄÝÏ{Ä¥yfŽÄh#:¡¡¡¡™¡¡¨Ä¥yfÄ’·Q™Ä£yaŽÄ²GbÄ¥yfŽÄ’·Q¡¡¡¡™¡¡¨Ä¥yfÄbÀ9™Ä£yaŽÄ£—^Ä¥yfŽÄbÀ9¡¡¡¡™¡¡¨Ä¥yfÄœ9[™Ä£yaŽÄÛÄ¥yfŽÄœ9[¡¡¡¡™¡¡¨Ä¥yfÄ(әģyaŽÄBú½Ä¥yfŽÄ(Ó¡¡¡¡™¡¡¨Ä¥yfÄ֙ģyaŽÄŒˆSÄ¥yfŽÄÖ¡¡¡¡™¡¡¨Ä¥yfÄ´Ml™Ä£yaŽÄU‹3Ä¥yfŽÄ´Ml¡¡¡¡™¡¡¨Ä¥yfÄ°’o™Ä£yaŽÄä™Ä¥yfŽÄ°’o¡¡¡¡™¡¡¨Ä¥yfÄï>s™Ä£yaŽÄáGÄ¥yfŽÄï>s¡¡¡¡™¡¡¨Ä¥yfÄ¥yf™Ä£yaŽÄ€ÈOÄ¥yfŽÄ¥yf¡¡¡¡™¡¡¨Ä¥yfÄgO™Ä£yaŽÄ‚OÄ¥yfŽÄgO¡¡¡¡™¡¡¨Ä¥yfÄ‚¥O™Ä£yaŽÄƒDOÄ¥yfŽÄ‚¥O¡¡¡¡™¡¡¨Ä¥yfÄà™Ä£yaŽÄJe/Ä¥yfŽÄà¡¡¡¡™¡¡¨Ä¥yfÄ ›g™Ä£yaŽÄÄ¥yfŽÄ ›g¡¡¡¡™¡¡¨Ä¥yfÄ¥)k™Ä£yaŽÄ9g%Ä¥yfŽÄ¥)k¡¡¡¡™¡¡¨Ä¥yfÄOq4™Ä£yaŽÄF£.Ä¥yfŽÄOq4¡¡¡¡™¡¡¨Ä¥yfÄÀ™Ä£yaŽÄ= Ä¥yfŽÄÀ¡¡¡¡™¡¡¨Ä¥yfÄ•?g™Ä£yaŽÄÅÄ¥yfŽÄ•?g¡¡¡¡™¡¡¨Ä¥yfÄ…J[™Ä£yaŽÄH(1Ä¥yfŽÄ…J[¡¡¡¡™¡¡¨Ä¥yfÄHŒ1™Ä£yaŽÄ´yÄ¥yfŽÄHŒ1¡¡¡¡™¡¡¨Ä¥yfÄ&ÄřģyaŽÄšígÄ¥yfŽÄ&ÄÅ¡¡¡¡™¡¡¨Ä<µRÄ&ÄÅ™Äz陎ÄšígÄ<µRŽÄ&ÄÅ¡¡¡¡™¡¡¨Ä<µRÄHŒ1™Äz陎Ä´yÄ<µRŽÄHŒ1¡¡¡¡™¡¡¨Ä<µRÄ…J[™Äz陎ÄH(1Ä<µRŽÄ…J[¡¡¡¡™¡¡¨Ä<µRÄ•?g™Äz陎ÄÅÄ<µRŽÄ•?g¡¡¡¡™¡¡¨Ä<µRÄÀ™Äz陎Ä= Ä<µRŽÄÀ¡¡¡¡™¡¡¨Ä<µRÄOq4™Äz陎ÄF£.Ä<µRŽÄOq4¡¡¡¡™¡¡¨Ä<µRÄ¥)k™Äz陎Ä9g%Ä<µRŽÄ¥)k¡¡¡¡™¡¡¨Ä<µRÄ ›g™Äz陎ÄÄ<µRŽÄ ›g¡¡¡¡™¡¡¨Ä<µRÄà™Äz陎ÄJe/Ä<µRŽÄà¡¡¡¡™¡¡¨Ä<µRÄ‚¥O™Äz陎ăDOÄ<µRŽÄ‚¥O¡¡¡¡™¡¡¨Ä<µRÄgO™Äz陎Ä‚OÄ<µRŽÄgO¡¡¡¡™¡¡¨Ä<µRÄ¥yf™Äz陎Ä€ÈOÄ<µRŽÄ¥yf¡¡¡¡™¡¡¨Ä<µRÄï>s™Äz陎ÄáGÄ<µRŽÄï>s¡¡¡¡™¡¡¨Ä<µRÄ°’o™Äz陎Ää™Ä<µRŽÄ°’o¡¡¡¡™¡¡¨Ä<µRÄ´Ml™Äz陎ÄU‹3Ä<µRŽÄ´Ml¡¡¡¡™¡¡¨Ä<µRÄÖ™Äz陎ÄŒˆSÄ<µRŽÄÖ¡¡¡¡™¡¡¨Ä<µRÄ(Ó™Äz陎ÄBú½Ä<µRŽÄ(Ó¡¡¡¡™¡¡¨Ä<µRÄœ9[™Äz陎ÄÛÄ<µRŽÄœ9[¡¡¡¡™¡¡¨Ä<µRÄbÀ9™Äz陎Ä£—^Ä<µRŽÄbÀ9¡¡¡¡™¡¡¨Ä<µRÄ’·Q™Äz陎IJGbÄ<µRŽÄ’·Q¡¡¡¡™¡¡¨Ä<µRÄh#:™Äz陎ÄÝÏ{Ä<µRŽÄh#:¡¡¡¡™¡¡¨Ä<µRÄŽaP™Äz陎Ä CÄ<µRŽÄŽaP¡¡¡¡™¡¡¨Ä<µRÄo"?™Äz陎ÄÜÄ<µRŽÄo"?¡¡¡¡™¡¡¨Ä<µRÄ_hÉ™Äz陎ÄF?(Ä<µRŽÄ_hÉ¡¡¡¡™¡¡¨Ä<µRÄziC™Äz陎ÄX0Ä<µRŽÄziC¡¡¡¡™¡¡¨Ä<µRĈՙÄz陎Äi|9Ä<µRŽÄˆÕ¡¡¡¡™¡¡¨Ä<µRć«I™Äz陎Än;Ä<µRŽÄ‡«I¡¡¡¡™¡¡¨Ä<µRÄI'™Äz陎Ä2°ÃÄ<µRŽÄI'¡¡¡¡™¡¡¨Ä<µRÄ2/¢™Äz陎Äã¿xÄ<µRŽÄ2/¢¡¡¡¡™¡¡¨Ä<µR˜™Äz陎Äœ'OÄ<µRŽ˜¡¡¡¡™¡¡¨Ä<µRÄN(™Äz陎ÄšéOÄ<µRŽÄN(¡¡¡¡™¡¡¨Ä<µRÄæŠw™Äz陎Äg5Ä<µRŽÄæŠw¡¡¡¡™¡¡¨Ä<µRÄ“ôM™Äz陎Ħ†ÛÄ<µRŽÄ“ôM¡¡¡¡™¡¡¨Ä<µRÄ;™Äz陎ÄÅgÄ<µRŽÄ;¡¡¡¡™¡¡¨Ä<µRÄOa(™Äz陎ÄeOÄ<µRŽÄOa(¡¡¡¡™¡¡¨Ä<µRÄîw™Äz陎ÄÿÄ<µRŽÄîw¡¡¡¡™¡¡¨Ä<µRÄ`Å0™Äz陎Äyo<Ä<µRŽÄ`Å0¡¡¡¡™¡¡¨Ä<µRÄi§²™Äz陎ÄÄ<µRŽÄi§²¡¡¡¡™¡¡¨Ä<µRÄû×{™Äz陎Ä+ýÄ<µRŽÄû×{¡¡¡¡™¡¡¨Ä<µRÄ•D™Äz陎Ä;ÁÄ<µRŽÄ•D¡¡¡¡™¡¡¨Ä<µRÄgC™Äz陎ÄAý˜Ä<µRŽÄgC¡¡¡¡™¡¡¨Ä<µRÄ@ð™Äz陎Ädí0Ä<µRŽÄ@ð¡¡¡¡™¡¡¨Ä<µRă…™Äz陎Ävô9Ä<µRŽÄƒ…¡¡¡¡™¡¡¨Ä<µRÄPw'™Äz陎Ä8»—Ä<µRŽÄPw'¡¡¡¡™¡¡¨Ä<µRÄ|=:™Äz陎Ä3Ä<µRŽÄ|=:¡¡¡¡™¡¡¨Ä<µRĬŸP™Äz陎Ä ÔÄ<µRŽÄ¬ŸP¡¡¡¡™¡¡¨Ä<µRĈî?™Äz陎ÄWA(Ä<µRŽÄˆî?¡¡¡¡™¡¡¨Ä<µRĸəÄz陎ÄуÄ<µRŽÄ¸É¡¡¡¡™¡¡¨Ä<µRÄ‚;™Äz陎Ä0{Ä<µRŽÄ‚;¡¡¡¡™¡¡¨ÄhY}ÄÊ[™Äj†ŽÄÎ{\ÄhY}ŽÄÊ[¡¡¡¡™¡¡¨Ä®BmĈ™ÄûŸŽÄ5­Ä®BmŽÄˆ¡¡¡¡™¡¡¨Ä®BmÄ$yƒ™ÄûŸŽÄ Ä®BmŽÄ$yƒ¡¡¡¡™¡¡¨Äzé™ÄÉ[™Äp6‰ŽÄ0{Äz陎ÄÉ[¡¡¡¡™¡¡¨Äp6‰Ä|=:™Äe<{ŽÄ0{Äp6‰ŽÄ|=:¡¡¡¡™¡¡¨Äp6‰Ä¨èO™Äœ ±ŽÄ|=:Äp6‰ŽÄ¨èO¡¡¡¡™ x jª ¤Ä’·¢ÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á268– k¡¡¨ÄhY}Ĉ™ÄoŽÄÊ[ÄhY}ŽÄˆ¡¡¡¡™ x jª ¤Ä"µ'Ä ½ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á1– k¡¡¨Ä9g%Ĉ™ÄÀOxŽÄÊ[Ä9g%ŽÄˆ¡¡¡¡™ x jª ¤Ä&ÄÅÄ ½ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á67– k¡¡¨Äb=ÄÉ[™Ä<,%ŽÄ0{Äb=ŽÄÉ[¡¡¡¡™¡¡¨Äb=Ä|=:™Ä¼ouŽÄ0{Äb=ŽÄ|=:¡¡¡¡™¡¡¨Ä¥)kĨèO™Ä¼ouŽÄ|=:Ä¥)kŽÄ¨èO¡¡¡¡™ x jª ¤Ä&ÄÅĨIO ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á68– k¡¡¨Äb=ÄM5™Ä<,%ŽÄT:Äb=ŽÄM5¡¡¡¡™¡¡¨Äb=ÄM5™Ä¼ouŽÄ3ÉÄb=ŽÄM5¡¡¡¡™¡¡¨Ä¥)kÄI%0™Ä¼ouŽÄ3ÉÄ¥)kŽÄI%0¡¡¡¡™¡¡¨Äj–CÄ’hg™ÄtlIŽÄ¢ÙqÄj–CŽÄ’hg¡¡¡¡™¡¡¨Ä¥)kÄ:¼Û™ÄZæ9ŽÄ¢ÙqÄ¥)kŽÄ:¼Û¡¡¡¡™¡¡¨ÄhY}Ä’hg™Äj†ŽÄ¢ÙqÄhY}ŽÄ’hg¡¡¡¡™¡¡¨ÄhY}Ä:¼Û™Äz¼ÃŽÄ¢ÙqÄhY}ŽÄ:¼Û¡¡¡¡™¡¡¨Äzé™ÄM5™Äp6‰ŽÄT:Äz陎ÄM5¡¡¡¡™¡¡¨Äp6‰ÄM5™Äe<{ŽÄ3ÉÄp6‰ŽÄM5¡¡¡¡™¡¡¨Äp6‰ÄI%0™Äœ ±ŽÄ3ÉÄp6‰ŽÄI%0¡¡¡¡™ x jª ¤Äz¼Ãijtw ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á202– k x jª ¤Ä’·¢Ä:¼Û ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á201– k x jª ¤ÄHŒ1Ä L¯ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á134– k x jª ¤ÄHŒ1Ä:¼Û ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á135– k¡¡¨ÄGÄq(™Äw6ŽÄ},ÄGŽÄq(¡¡¡¡™¡¡¨Ä‚;ÄhY}™Ä¹TŽÄ},Ä‚;ŽÄhY}¡¡¡¡™¡¡¨ÄGÄA¢O™ÄÉ[ŽÄhY}ÄGŽÄA¢O¡¡¡¡™¡¡¨ÄGÄA¢O™Ä‚ŽÄχIÄGŽÄA¢O¡¡¡¡™¡¡¨ÄGÄ…?0™Ä£—cŽÄµÃÆÄGŽÄ…?0¡¡¡¡™¡¡¨Ä£—cÄ…?0™Ä6žÉŽÄ},Ä£—cŽÄ…?0¡¡¡¡™ x jª ¤ÄWýÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á263– k x jª ¤ÄWýÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á261– k x jª ¤ÄWýÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á257– k x jª ¤ÄWýÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á252– k x jª ¤ÄWýĈ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á249– k x jª ¤Äû%Ä]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á247– k x jª ¤ÄWýÄ]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á243– k x jª ¤ÄWýÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á239– k x jª ¤ÄWýÄ€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á238– k x jª ¤ÄWýÄ)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á231– k x jª ¤ÄWýÄ_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á230– k x jª ¤ÄWýÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á226– k x jª ¤ÄWýÄ­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á223– k x jª ¤ÄWýĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á220– k x jª ¤ÄWýÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á217– k x jª ¤ÄWýÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á213– k x jª ¤ÄWýÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á212– k x jª ¤ÄWýÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á208– k x jª ¤ÄWýÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á196– k x jª ¤Ä)öoÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á260– k x jª ¤Ä)öoÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á255– k x jª ¤Ä)öoĈ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á251– k x jª ¤Ä)öoÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á248– k x jª ¤Ä)öoÄ]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á244– k x jª ¤Ä)öoÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á240– k x jª ¤Ä)öoÄ€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á235– k x jª ¤Ä)öoÄ)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á234– k x jª ¤Ä)öoÄ_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á229– k x jª ¤Ä)öoÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á225– k x jª ¤Ä)öoÄ­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á221– k x jª ¤Ä)öoĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á218– k x jª ¤Ä)öoÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á214– k x jª ¤Ä)öoÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á209– k x jª ¤Ä)öoÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á203– k x jª ¤Ä)öoÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á206– k x jª ¤Ä)öoÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á194– k x jª ¤ÄøÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á7– k x jª ¤ÄøÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á5– k x jª ¤Ä>Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á2– k x jª ¤Äm+çÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á265– k x jª ¤Äm+çÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á259– k x jª ¤Äm+çĈ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á254– k x jª ¤Äm+çÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á250– k x jª ¤Äm+çÄ]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á245– k x jª ¤Äm+çÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á241– k x jª ¤Äm+çÄ€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á236– k x jª ¤Äm+çÄ)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á233– k x jª ¤Äm+çÄ_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á228– k x jª ¤Äm+çÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á224– k x jª ¤Äm+çÄ­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á219– k x jª ¤Äm+çĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á215– k x jª ¤Äm+çÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á210– k x jª ¤Äm+çÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á204– k x jª ¤Äm+çÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á200– k x jª ¤Äm+çÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á199– k x jª ¤Äm+çÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á267– k x jª ¤Äm+çÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á190– k x jª ¤ÄLÂ;Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á8– k x jª ¤ÄLÂ;Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á3– k x jª ¤ÄLÂ;ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á1– k x jª ¤Äû%Ä ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á264– k x jª ¤Äû%Ĉ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á258– k x jª ¤Äû%ÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á253– k x jª ¤ÄWýÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á246– k x jª ¤Äû%ÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á242– k x jª ¤Äû%Ä€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á237– k x jª ¤Äû%Ä)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á232– k x jª ¤Äû%Ä_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á227– k x jª ¤Äû%ÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á222– k x jª ¤Äû%Ä­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á216– k x jª ¤Äû%ĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á211– k x jª ¤Äû%ÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á205– k x jª ¤Äû%Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á202– k x jª ¤Äû%Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á198– k x jª ¤Äû%Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á193– k x jª ¤Äû%Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á189– k x jª ¤ÄÝ©Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á9– k x jª ¤ÄÝ©ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á4– k x jª ¤ÄOaxÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á268– k x jª ¤ÄOaxĈ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á262– k x jª ¤ÄOaxĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á207– k x jª ¤ÄOaxÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á201– k x jª ¤ÄOaxÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á197– k x jª ¤ÄOaxÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á192– k x jª ¤ÄOaxÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á188– k x jª ¤ÄOaxÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á185– k x jª ¤ÄSìoÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á195– k x jª ¤ÄSìoÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á191– k x jª ¤ÄSìoÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á187– k x jª ¤ÄSìoÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á184– k x jª ¤ÄSìoÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á182– k x jª ¤Ä(Ó0Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á186– k x jª ¤Ä(Ó0Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á183– k x jª ¤Ä(Ó0Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á181– k x jª ¤Ä(Ó0Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á179– k x jª ¤ÄhçoÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á180– k x jª ¤ÄhçoÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á178– k x jª ¤ÄhçoÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á177– k x jª ¤ÄhçoÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á176– k x jª ¤ÄkgÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á175– k x jª ¤ÄkgÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á174– k x jª ¤ÄkgÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á173– k x jª ¤ÄkgÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á172– k x jª ¤Ä)ö%Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á171– k x jª ¤Ä)ö%Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á170– k x jª ¤Ä)ö%Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á168– k x jª ¤Ä)ö%Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á169– k x jª ¤ÄœÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á165– k x jª ¤ÄœÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á166– k x jª ¤ÄœÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á167– k x jª ¤ÄœÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á164– k x jª ¤Äh„OÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á160– k x jª ¤Äh„OÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á161– k x jª ¤Äh„OÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á162– k x jª ¤Äh„OÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á163– k x jª ¤ÄA5.Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á155– k x jª ¤ÄA5.Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á157– k x jª ¤ÄA5.Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á158– k x jª ¤ÄA5.Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á159– k x jª ¤ÄÀÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á149– k x jª ¤ÄÀÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á152– k x jª ¤ÄÀÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á154– k x jª ¤ÄÀÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á156– k x jª ¤Äb=ÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á140– k x jª ¤Äb=Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á144– k x jª ¤Äb=Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á148– k x jª ¤Äb=Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á151– k x jª ¤Äb=Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á153– k x jª ¤Ä(Óĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á128– k x jª ¤Ä(ÓÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á134– k x jª ¤Ä(ÓÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á138– k x jª ¤Ä(ÓÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á143– k x jª ¤Ä(ÓÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á147– k x jª ¤Ä(ÓÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á150– k x jª ¤ÄúÛÆÄ)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á103– k x jª ¤ÄúÛÆÄ_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á108– k x jª ¤ÄúÛÆÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á113– k x jª ¤ÄúÛÆÄ­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á119– k x jª ¤ÄúÛÆĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á124– k x jª ¤ÄúÛÆÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á130– k x jª ¤ÄúÛÆÄ%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á135– k x jª ¤ÄúÛÆÄj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á137– k x jª ¤ÄúÛÆÄ0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á142– k x jª ¤ÄúÛÆÄþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á146– k x jª ¤Ä2/¢Ä)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á102– k x jª ¤Ä2/¢Ä_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á107– k x jª ¤Ä2/¢ÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á111– k x jª ¤Ä2/¢Ä­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á116– k x jª ¤Ä2/¢Äµ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á120– k x jª ¤Ä2/¢ÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á125– k x jª ¤Ä2/¢Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á131– k x jª ¤Ä2/¢Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á133– k x jª ¤Ä2/¢Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á136– k x jª ¤Ä2/¢Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á145– k x jª ¤Äo#8Ä)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á101– k x jª ¤Äo#8Ä_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á106– k x jª ¤Äo#8ÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á110– k x jª ¤Äo#8Ä­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á114– k x jª ¤Äo#8ĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á117– k x jª ¤Äo#8ÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á121– k x jª ¤Äo#8Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á126– k x jª ¤Äo#8Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á132– k x jª ¤Äo#8Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á139– k x jª ¤Äo#8Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á141– k x jª ¤Äƒ…Ä)Ý ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á104– k x jª ¤Äƒ…Ä_±: ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á105– k x jª ¤Äƒ…ÄÓ…ˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á109– k x jª ¤Äƒ…Ä­×w ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á112– k x jª ¤Äƒ…ĵ·… ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á115– k x jª ¤Äƒ…ÄP ? ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á118– k x jª ¤Äƒ…Ä%l ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á122– k x jª ¤Äƒ…Äj ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á123– k x jª ¤Äƒ…Ä0n1 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á127– k x jª ¤Äƒ…Äþ\; ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á129– k x jª ¤ÄeÛÔÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á11– k x jª ¤ÄR6Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á12– k x jª ¤Ä6:QÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á16– k x jª ¤Ä6:QÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á13– k x jª ¤Ä™ŒÉÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á19– k x jª ¤Ä™ŒÉÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á17– k x jª ¤Ä™ŒÉÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á14– k x jª ¤Ä™ŒÉÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á10– k x jª ¤ÄC%WÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á6– k x jª ¤ÄgxÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á22– k x jª ¤ÄgxÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á20– k x jª ¤ÄgxÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á18– k x jª ¤ÄgxÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á15– k x jª ¤ÄqfwÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á25– k x jª ¤ÄqfwÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á24– k x jª ¤ÄqfwÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á23– k x jª ¤ÄqfwÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á21– k x jª ¤Äºo²Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á29– k x jª ¤Äºo²Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á28– k x jª ¤Äºo²Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á27– k x jª ¤Äºo²ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á26– k x jª ¤Äe¢YÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á30– k x jª ¤Äe¢YÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á33– k x jª ¤Äe¢YÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á32– k x jª ¤Äe¢YÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á31– k x jª ¤Äpƒ[Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á37– k x jª ¤Äpƒ[Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á34– k x jª ¤Äpƒ[Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á35– k x jª ¤Äpƒ[ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á36– k x jª ¤Ä©Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á38– k x jª ¤Ä©Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á39– k x jª ¤Ä©Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á40– k x jª ¤Ä©ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á41– k x jª ¤ÄJ4Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á42– k x jª ¤ÄJ4Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á43– k x jª ¤ÄJ4Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á44– k x jª ¤ÄJ4ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á46– k x jª ¤Ä= Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á45– k x jª ¤Ä= Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á47– k x jª ¤Ä= Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á49– k x jª ¤Ä= ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á52– k x jª ¤ÄóÇ—Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á48– k x jª ¤ÄóÇ—Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á50– k x jª ¤ÄóÇ—Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á53– k x jª ¤ÄóÇ—ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á57– k x jª ¤ÄóÇ—Ä ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á61– k x jª ¤ÄBú½Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á51– k x jª ¤ÄBú½Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á54– k x jª ¤ÄBú½Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á58– k x jª ¤ÄBú½ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á63– k x jª ¤ÄBú½Ä ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á67– k x jª ¤ÄBú½Äˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á73– k x jª ¤Ä÷‰Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á55– k x jª ¤Ä÷‰Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á59– k x jª ¤Ä÷‰Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á64– k x jª ¤Ä÷‰ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á68– k x jª ¤Ä÷‰Ä ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á71– k x jª ¤Ä÷‰ÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á82– k x jª ¤Ä÷‰Ä]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á88– k x jª ¤Ä÷‰ÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á93– k x jª ¤Ä÷‰Ä€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á98– k x jª ¤Äã¿xÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á56– k x jª ¤Äã¿xÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á65– k x jª ¤Äã¿xÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á66– k x jª ¤Äã¿xÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á70– k x jª ¤Äã¿xÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á76– k x jª ¤Äã¿xĈ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á81– k x jª ¤Äã¿xÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á85– k x jª ¤Äã¿xÄ]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á90– k x jª ¤Äã¿xÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á94– k x jª ¤Äã¿xÄ€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á99– k x jª ¤ÄùˆÄ`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á60– k x jª ¤ÄùˆÄ|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á72– k x jª ¤ÄùˆÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á69– k x jª ¤ÄùˆÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á75– k x jª ¤ÄùˆÄ ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á80– k x jª ¤ÄùˆÄˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á84– k x jª ¤ÄùˆÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á87– k x jª ¤ÄùˆÄ]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á91– k x jª ¤ÄùˆÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á95– k x jª ¤Äo#8Ä€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á100– k x jª ¤ÄM=Ä`Kƒ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á62– k x jª ¤ÄM=Ä|0 ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á74– k x jª ¤ÄM=Äì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á78– k x jª ¤ÄM=ÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á79– k x jª ¤ÄM=Ä ë} ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á83– k x jª ¤ÄM=Ĉ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á86– k x jª ¤ÄM=ÄW< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á89– k x jª ¤ÄM=Ä]G. ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á92– k x jª ¤ÄM=ÄÚwq ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á96– k x jª ¤ÄM=Ä€øs ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á97– k x jÀ ¤Äºo²ÄCÛ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄgxÄCÛ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Äpƒ[ÄCÛ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄJ4ÄCÛ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄBú½Ä_[. ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄBú½Ä g ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄBú½Äɲw ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄBú½Ä@Á+ ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä6:QÄõf ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä6:QÄ¡Q ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä6:QÄCÿ& ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä6:QÄ … ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä= Ä…?m ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Ä©Ä…?m ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤Äe¢YÄ…?m ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄqfwÄ…?m ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“ÁI– k x jÀ ¤ÄC%:Ä’FM ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Áo– k x jÀ ¤ÄqfwÄ”éC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Äe¢YÄ”éC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä©Ä”éC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä= Ä”éC ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄBú½Äx9> ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄBú½ÄnA? ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄBú½Äç ” ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄBú½ÄqáS ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄJ4Ä0) ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Äpƒ[Ä0) ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Äºo²Ä0) ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤ÄgxÄ0) ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä6:QÄ X ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä6:QÄ%± ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä6:QÄK ) ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jÀ ¤Ä6:QÄB ¢ ¥ ¨ÅXeroxÅ PressfontsÅ Gates-mrr£¡ “ •  —¡¡¨  Š¡²“Án– k x jª ¤Ä÷‰Äˆ ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á77– k x jª ¤Ä)öoÄì’Å ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á266– k x jª ¤ÄWýÄY< ¢ ¥ ¨ÅXeroxÅ PressFontsÅ Helvetica-MRR£¡ “ •  —¡¡¨  Š¡²“Á256– k k k g– Interpress–:0.0 mm xmin 0.0 mm ymin 181.7156 mm xmax 219.5997 mm ymax –Ò222.422 mm topLeading 222.422 mm topIndent 1.411111 mm bottomLeading 0.5 0.3 0.95 backgroundColor the topLeading 6 pt .sub backgroundAscent 3 pt backgroundDescent 4 pt outlineBoxThickness 1 pt outlineBoxBearoff–òGargoyle file for scene: stuffed from ///7.0/commands/pga300.gargoyle at February 12, 1988 10:08:51 am PST Produced by version 8710.19 Scripts: ///7.0/commands/bland880211-16-58-41.script, ///7.0/commands/bland880211-17-05-40.script, ///7.0/commands/bland880212-10-01-53.script, ///7.0/commands/bland880212-10-06-01.script Slope: [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] [F 120.0] [F 135.0] [F 150.0] Angle: [F -90.0] [F -60.0] [F -45.0] [F -30.0] [F 0.0] [F 30.0] [F 45.0] [F 60.0] [F 90.0] Radius: [F 4.0 4] [F 2.0 2] [F 1.0 1] [F 0.75 3/4] [F 0.6666667 2/3] [F 0.5 1/2] [F 0.3333333 1/3] [F 0.25 1/4] [F 0.125 1/8] [F 0.1111111 1/9] [F 5.555556e-2 1/18] LineDistance: [F 1.0 1] [F 0.5 1/2] [F 0.1111111 1/9] [F 5.555556e-2 1/18] [F 0.0 0] Midpoints: F Heuristics: F ShowAlignments: T ShowColors: F ScaleUnit: 72.0 DisplayStyle: print Gravity: T GravityExtent: 0.3472222 GravityType: pointsPreferred DefaultFont: xerox/pressfonts/helvetica-mrr [r1: 0.0 s: [10.0 10.0] r2: 0.0] 1.0 1.0 Defaults: [1 0.5] [1 1.0] 2.0 round round Dashed: F Shadows: []F Anchor: F Entities: [847]: Text T "Legend:" Xerox/PressFonts/Helvetica [10.0 0.0 92.74961 0.0 10.0 151.2][1 1.0] F 1.0 props: ( F ) Text T "Vcc" Xerox/PressFonts/Helvetica [10.0 0.0 159.2788 0.0 10.0 137.0835][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 215.7166 0.0 32.0 127.474][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 215.7166 0.0 32.0 115.3701][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 217.7292 0.0 32.0 111.3449][1 1.0] F 1.0 props: ( F ) Text T "View from top of Package" Xerox/PressFonts/Helvetica [10.0 0.0 254.0126 0.0 10.0 183.4583][1 1.0] F 1.0 props: ( F ) Text T "Ground" Xerox/PressFonts/Helvetica [10.0 0.0 159.2788 0.0 10.0 151.2][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 671.7827][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 647.6032][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 599.2157][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 623.3953][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 526.6205][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 502.441][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 550.8284][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 575.008][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 478.2331][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 454.0536][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 405.6662][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 429.874][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 333.0992][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 308.8914][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 357.2788][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 381.4866][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 284.7118][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 260.504][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 212.1449][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 512.0788 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 536.2583 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 487.8709 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 463.6914 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 366.9165 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 391.1244 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 439.4835 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 415.304 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 318.5292 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 342.737 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 294.3496 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 270.1418 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 173.3953 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 197.5748 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 245.9622 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 221.7827 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 125.0079 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 149.1874 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 100.8 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Text T "i" Xerox/Pressfonts/Gates [32.0 0.0 76.62047 0.0 32.0 236.3244][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,589.6913] (Line ) [431.433,589.6913] (Line ) [431.433,590.7119] (Line ) [189.5244,590.7119] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [431.433,348.7748] (Line ) [432.4536,348.7748] (Line ) [432.4536,590.6835] (Line ) [431.433,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,347.7544] (Line ) [432.4536,347.7544] (Line ) [432.4536,348.7748] (Line ) [189.5244,348.7748] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,347.7544] (Line ) [190.5449,347.7544] (Line ) [190.5449,590.6835] (Line ) [189.5244,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.6536,573.5622] (Line ) [415.304,573.5622] (Line ) [415.304,574.5827] (Line ) [205.6536,574.5827] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,364.904] (Line ) [416.3244,364.904] (Line ) [416.3244,574.5544] (Line ) [415.304,574.5544] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.6536,363.8835] (Line ) [416.3244,363.8835] (Line ) [416.3244,364.904] (Line ) [205.6536,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.6536,363.8835] (Line ) [206.674,363.8835] (Line ) [206.674,574.5544] (Line ) [205.6536,574.5544] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,574.5544] (Line ) [215.7166,574.5544] (Line ) [215.7166,590.6835] (Line ) [213.704,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [217.7292,574.5544] (Line ) [219.7417,574.5544] (Line ) [219.7417,590.6835] (Line ) [217.7292,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [221.7827,574.5544] (Line ) [223.7953,574.5544] (Line ) [223.7953,590.6835] (Line ) [221.7827,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [225.8079,574.5544] (Line ) [227.8205,574.5544] (Line ) [227.8205,590.6835] (Line ) [225.8079,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [229.8331,574.5544] (Line ) [231.8457,574.5544] (Line ) [231.8457,590.6835] (Line ) [229.8331,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [233.8583,574.5544] (Line ) [235.8709,574.5544] (Line ) [235.8709,590.6835] (Line ) [233.8583,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [237.8835,574.5544] (Line ) [239.8961,574.5544] (Line ) [239.8961,590.6835] (Line ) [237.8835,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [241.937,574.5544] (Line ) [243.9496,574.5544] (Line ) [243.9496,590.6835] (Line ) [241.937,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.1953,574.5544] (Line ) [276.2079,574.5544] (Line ) [276.2079,590.6835] (Line ) [274.1953,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [270.1418,574.5544] (Line ) [272.1544,574.5544] (Line ) [272.1544,590.6835] (Line ) [270.1418,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [266.1165,574.5544] (Line ) [268.1292,574.5544] (Line ) [268.1292,590.6835] (Line ) [266.1165,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [262.0913,574.5544] (Line ) [264.104,574.5544] (Line ) [264.104,590.6835] (Line ) [262.0913,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [258.0662,574.5544] (Line ) [260.0788,574.5544] (Line ) [260.0788,590.6835] (Line ) [258.0662,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [254.0126,574.5544] (Line ) [256.0252,574.5544] (Line ) [256.0252,590.6835] (Line ) [254.0126,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [249.9874,574.5544] (Line ) [252.0,574.5544] (Line ) [252.0,590.6835] (Line ) [249.9874,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [245.9622,574.5544] (Line ) [247.9748,574.5544] (Line ) [247.9748,590.6835] (Line ) [245.9622,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [278.2205,574.5544] (Line ) [280.2331,574.5544] (Line ) [280.2331,590.6835] (Line ) [278.2205,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2457,574.5544] (Line ) [284.2583,574.5544] (Line ) [284.2583,590.6835] (Line ) [282.2457,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [286.2709,574.5544] (Line ) [288.2835,574.5544] (Line ) [288.2835,590.6835] (Line ) [286.2709,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [290.3244,574.5544] (Line ) [292.337,574.5544] (Line ) [292.337,590.6835] (Line ) [290.3244,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [294.3496,574.5544] (Line ) [296.3622,574.5544] (Line ) [296.3622,590.6835] (Line ) [294.3496,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [298.3748,574.5544] (Line ) [300.3874,574.5544] (Line ) [300.3874,590.6835] (Line ) [298.3748,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [302.4,574.5544] (Line ) [304.4126,574.5544] (Line ) [304.4126,590.6835] (Line ) [302.4,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [306.4536,574.5544] (Line ) [308.4661,574.5544] (Line ) [308.4661,590.6835] (Line ) [306.4536,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [338.6835,574.5544] (Line ) [340.6961,574.5544] (Line ) [340.6961,590.6835] (Line ) [338.6835,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [334.6583,574.5544] (Line ) [336.6709,574.5544] (Line ) [336.6709,590.6835] (Line ) [334.6583,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [330.6331,574.5544] (Line ) [332.6457,574.5544] (Line ) [332.6457,590.6835] (Line ) [330.6331,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [326.6079,574.5544] (Line ) [328.6205,574.5544] (Line ) [328.6205,590.6835] (Line ) [326.6079,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [322.5827,574.5544] (Line ) [324.5953,574.5544] (Line ) [324.5953,590.6835] (Line ) [322.5827,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.5292,574.5544] (Line ) [320.5418,574.5544] (Line ) [320.5418,590.6835] (Line ) [318.5292,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [314.5039,574.5544] (Line ) [316.5165,574.5544] (Line ) [316.5165,590.6835] (Line ) [314.5039,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [310.4788,574.5544] (Line ) [312.4913,574.5544] (Line ) [312.4913,590.6835] (Line ) [310.4788,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [342.737,574.5544] (Line ) [344.7496,574.5544] (Line ) [344.7496,590.6835] (Line ) [342.737,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [346.7622,574.5544] (Line ) [348.7748,574.5544] (Line ) [348.7748,590.6835] (Line ) [346.7622,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [350.7874,574.5544] (Line ) [352.8,574.5544] (Line ) [352.8,590.6835] (Line ) [350.7874,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [354.8126,574.5544] (Line ) [356.8252,574.5544] (Line ) [356.8252,590.6835] (Line ) [354.8126,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [358.8661,574.5544] (Line ) [360.8788,574.5544] (Line ) [360.8788,590.6835] (Line ) [358.8661,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [362.8914,574.5544] (Line ) [364.904,574.5544] (Line ) [364.904,590.6835] (Line ) [362.8914,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [366.9165,574.5544] (Line ) [368.9292,574.5544] (Line ) [368.9292,590.6835] (Line ) [366.9165,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [370.9417,574.5544] (Line ) [372.9543,574.5544] (Line ) [372.9543,590.6835] (Line ) [370.9417,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [403.2,574.5544] (Line ) [405.2126,574.5544] (Line ) [405.2126,590.6835] (Line ) [403.2,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [399.1748,574.5544] (Line ) [401.1874,574.5544] (Line ) [401.1874,590.6835] (Line ) [399.1748,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.1496,574.5544] (Line ) [397.1622,574.5544] (Line ) [397.1622,590.6835] (Line ) [395.1496,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [391.1244,574.5544] (Line ) [393.137,574.5544] (Line ) [393.137,590.6835] (Line ) [391.1244,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.0709,574.5544] (Line ) [389.0835,574.5544] (Line ) [389.0835,590.6835] (Line ) [387.0709,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [383.0457,574.5544] (Line ) [385.0583,574.5544] (Line ) [385.0583,590.6835] (Line ) [383.0457,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [379.0205,574.5544] (Line ) [381.0331,574.5544] (Line ) [381.0331,590.6835] (Line ) [379.0205,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [374.9953,574.5544] (Line ) [377.0079,574.5544] (Line ) [377.0079,590.6835] (Line ) [374.9953,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [407.2536,574.5544] (Line ) [409.2661,574.5544] (Line ) [409.2661,590.6835] (Line ) [407.2536,590.6835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [407.2536,348.7748] (Line ) [409.2661,348.7748] (Line ) [409.2661,364.904] (Line ) [407.2536,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [374.9953,348.7748] (Line ) [377.0079,348.7748] (Line ) [377.0079,364.904] (Line ) [374.9953,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [379.0205,348.7748] (Line ) [381.0331,348.7748] (Line ) [381.0331,364.904] (Line ) [379.0205,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [383.0457,348.7748] (Line ) [385.0583,348.7748] (Line ) [385.0583,364.904] (Line ) [383.0457,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [387.0709,348.7748] (Line ) [389.0835,348.7748] (Line ) [389.0835,364.904] (Line ) [387.0709,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [391.1244,348.7748] (Line ) [393.137,348.7748] (Line ) [393.137,364.904] (Line ) [391.1244,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.1496,348.7748] (Line ) [397.1622,348.7748] (Line ) [397.1622,364.904] (Line ) [395.1496,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [399.1748,348.7748] (Line ) [401.1874,348.7748] (Line ) [401.1874,364.904] (Line ) [399.1748,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [403.2,348.7748] (Line ) [405.2126,348.7748] (Line ) [405.2126,364.904] (Line ) [403.2,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [370.9417,348.7748] (Line ) [372.9543,348.7748] (Line ) [372.9543,364.904] (Line ) [370.9417,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [366.9165,348.7748] (Line ) [368.9292,348.7748] (Line ) [368.9292,364.904] (Line ) [366.9165,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [362.8914,348.7748] (Line ) [364.904,348.7748] (Line ) [364.904,364.904] (Line ) [362.8914,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [358.8661,348.7748] (Line ) [360.8788,348.7748] (Line ) [360.8788,364.904] (Line ) [358.8661,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [354.8126,348.7748] (Line ) [356.8252,348.7748] (Line ) [356.8252,364.904] (Line ) [354.8126,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [350.7874,348.7748] (Line ) [352.8,348.7748] (Line ) [352.8,364.904] (Line ) [350.7874,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [346.7622,348.7748] (Line ) [348.7748,348.7748] (Line ) [348.7748,364.904] (Line ) [346.7622,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [342.737,348.7748] (Line ) [344.7496,348.7748] (Line ) [344.7496,364.904] (Line ) [342.737,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [310.4788,348.7748] (Line ) [312.4913,348.7748] (Line ) [312.4913,364.904] (Line ) [310.4788,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [314.5039,348.7748] (Line ) [316.5165,348.7748] (Line ) [316.5165,364.904] (Line ) [314.5039,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [318.5292,348.7748] (Line ) [320.5418,348.7748] (Line ) [320.5418,364.904] (Line ) [318.5292,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [322.5827,348.7748] (Line ) [324.5953,348.7748] (Line ) [324.5953,364.904] (Line ) [322.5827,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [326.6079,348.7748] (Line ) [328.6205,348.7748] (Line ) [328.6205,364.904] (Line ) [326.6079,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [330.6331,348.7748] (Line ) [332.6457,348.7748] (Line ) [332.6457,364.904] (Line ) [330.6331,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [334.6583,348.7748] (Line ) [336.6709,348.7748] (Line ) [336.6709,364.904] (Line ) [334.6583,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [338.6835,348.7748] (Line ) [340.6961,348.7748] (Line ) [340.6961,364.904] (Line ) [338.6835,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [306.4536,348.7748] (Line ) [308.4661,348.7748] (Line ) [308.4661,364.904] (Line ) [306.4536,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [302.4,348.7748] (Line ) [304.4126,348.7748] (Line ) [304.4126,364.904] (Line ) [302.4,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [298.3748,348.7748] (Line ) [300.3874,348.7748] (Line ) [300.3874,364.904] (Line ) [298.3748,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [294.3496,348.7748] (Line ) [296.3622,348.7748] (Line ) [296.3622,364.904] (Line ) [294.3496,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [290.3244,348.7748] (Line ) [292.337,348.7748] (Line ) [292.337,364.904] (Line ) [290.3244,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [286.2709,348.7748] (Line ) [288.2835,348.7748] (Line ) [288.2835,364.904] (Line ) [286.2709,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [282.2457,348.7748] (Line ) [284.2583,348.7748] (Line ) [284.2583,364.904] (Line ) [282.2457,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [278.2205,348.7748] (Line ) [280.2331,348.7748] (Line ) [280.2331,364.904] (Line ) [278.2205,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [245.9622,348.7748] (Line ) [247.9748,348.7748] (Line ) [247.9748,364.904] (Line ) [245.9622,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [249.9874,348.7748] (Line ) [252.0,348.7748] (Line ) [252.0,364.904] (Line ) [249.9874,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [254.0126,348.7748] (Line ) [256.0252,348.7748] (Line ) [256.0252,364.904] (Line ) [254.0126,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [258.0662,348.7748] (Line ) [260.0788,348.7748] (Line ) [260.0788,364.904] (Line ) [258.0662,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [262.0913,348.7748] (Line ) [264.104,348.7748] (Line ) [264.104,364.904] (Line ) [262.0913,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [266.1165,348.7748] (Line ) [268.1292,348.7748] (Line ) [268.1292,364.904] (Line ) [266.1165,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [270.1418,348.7748] (Line ) [272.1544,348.7748] (Line ) [272.1544,364.904] (Line ) [270.1418,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [274.1953,348.7748] (Line ) [276.2079,348.7748] (Line ) [276.2079,364.904] (Line ) [274.1953,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [241.937,348.7748] (Line ) [243.9496,348.7748] (Line ) [243.9496,364.904] (Line ) [241.937,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [237.8835,348.7748] (Line ) [239.8961,348.7748] (Line ) [239.8961,364.904] (Line ) [237.8835,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [233.8583,348.7748] (Line ) [235.8709,348.7748] (Line ) [235.8709,364.904] (Line ) [233.8583,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [229.8331,348.7748] (Line ) [231.8457,348.7748] (Line ) [231.8457,364.904] (Line ) [229.8331,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [225.8079,348.7748] (Line ) [227.8205,348.7748] (Line ) [227.8205,364.904] (Line ) [225.8079,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [221.7827,348.7748] (Line ) [223.7953,348.7748] (Line ) [223.7953,364.904] (Line ) [221.7827,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [217.7292,348.7748] (Line ) [219.7417,348.7748] (Line ) [219.7417,364.904] (Line ) [217.7292,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,348.7748] (Line ) [215.7166,348.7748] (Line ) [215.7166,364.904] (Line ) [213.704,364.904] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,564.4914] (Line ) [431.433,564.4914] (Line ) [431.433,566.504] (Line ) [415.304,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,560.4378] (Line ) [431.433,560.4378] (Line ) [431.433,562.4504] (Line ) [415.304,562.4504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,556.4127] (Line ) [431.433,556.4127] (Line ) [431.433,558.4252] (Line ) [415.304,558.4252] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,552.3875] (Line ) [431.433,552.3875] (Line ) [431.433,554.4] (Line ) [415.304,554.4] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,548.3622] (Line ) [431.433,548.3622] (Line ) [431.433,550.3748] (Line ) [415.304,550.3748] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,528.1796] (Line ) [431.433,528.1796] (Line ) [431.433,530.1921] (Line ) [415.304,530.1921] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,532.2331] (Line ) [431.433,532.2331] (Line ) [431.433,534.2457] (Line ) [415.304,534.2457] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,536.2583] (Line ) [431.433,536.2583] (Line ) [431.433,538.2708] (Line ) [415.304,538.2708] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,540.2835] (Line ) [431.433,540.2835] (Line ) [431.433,542.2961] (Line ) [415.304,542.2961] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,544.3087] (Line ) [431.433,544.3087] (Line ) [431.433,546.3213] (Line ) [415.304,546.3213] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,524.1544] (Line ) [431.433,524.1544] (Line ) [431.433,526.167] (Line ) [415.304,526.167] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,520.1292] (Line ) [431.433,520.1292] (Line ) [431.433,522.1418] (Line ) [415.304,522.1418] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,516.104] (Line ) [431.433,516.104] (Line ) [431.433,518.1166] (Line ) [415.304,518.1166] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,512.0504] (Line ) [431.433,512.0504] (Line ) [431.433,514.063] (Line ) [415.304,514.063] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,508.0252] (Line ) [431.433,508.0252] (Line ) [431.433,510.0379] (Line ) [415.304,510.0379] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,487.8709] (Line ) [431.433,487.8709] (Line ) [431.433,489.8835] (Line ) [415.304,489.8835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,491.8961] (Line ) [431.433,491.8961] (Line ) [431.433,493.9087] (Line ) [415.304,493.9087] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,495.9496] (Line ) [431.433,495.9496] (Line ) [431.433,497.9622] (Line ) [415.304,497.9622] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,499.9748] (Line ) [431.433,499.9748] (Line ) [431.433,501.9874] (Line ) [415.304,501.9874] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,504.0] (Line ) [431.433,504.0] (Line ) [431.433,506.0126] (Line ) [415.304,506.0126] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,483.8457] (Line ) [431.433,483.8457] (Line ) [431.433,485.8583] (Line ) [415.304,485.8583] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,479.8205] (Line ) [431.433,479.8205] (Line ) [431.433,481.8331] (Line ) [415.304,481.8331] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,475.767] (Line ) [431.433,475.767] (Line ) [431.433,477.7796] (Line ) [415.304,477.7796] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,471.7418] (Line ) [431.433,471.7418] (Line ) [431.433,473.7544] (Line ) [415.304,473.7544] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,467.7165] (Line ) [431.433,467.7165] (Line ) [431.433,469.7292] (Line ) [415.304,469.7292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,447.5622] (Line ) [431.433,447.5622] (Line ) [431.433,449.5748] (Line ) [415.304,449.5748] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,451.5874] (Line ) [431.433,451.5874] (Line ) [431.433,453.6] (Line ) [415.304,453.6] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,455.6126] (Line ) [431.433,455.6126] (Line ) [431.433,457.6252] (Line ) [415.304,457.6252] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,459.6378] (Line ) [431.433,459.6378] (Line ) [431.433,461.6504] (Line ) [415.304,461.6504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,463.6914] (Line ) [431.433,463.6914] (Line ) [431.433,465.704] (Line ) [415.304,465.704] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,443.5087] (Line ) [431.433,443.5087] (Line ) [431.433,445.5213] (Line ) [415.304,445.5213] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,439.4835] (Line ) [431.433,439.4835] (Line ) [431.433,441.4961] (Line ) [415.304,441.4961] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,435.4583] (Line ) [431.433,435.4583] (Line ) [431.433,437.4709] (Line ) [415.304,437.4709] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,431.4331] (Line ) [431.433,431.4331] (Line ) [431.433,433.4457] (Line ) [415.304,433.4457] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,427.3796] (Line ) [431.433,427.3796] (Line ) [431.433,429.3922] (Line ) [415.304,429.3922] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,407.2252] (Line ) [431.433,407.2252] (Line ) [431.433,409.2378] (Line ) [415.304,409.2378] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,411.2504] (Line ) [431.433,411.2504] (Line ) [431.433,413.263] (Line ) [415.304,413.263] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,415.304] (Line ) [431.433,415.304] (Line ) [431.433,417.3165] (Line ) [415.304,417.3165] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,419.3292] (Line ) [431.433,419.3292] (Line ) [431.433,421.3418] (Line ) [415.304,421.3418] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,423.3544] (Line ) [431.433,423.3544] (Line ) [431.433,425.367] (Line ) [415.304,425.367] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,403.2] (Line ) [431.433,403.2] (Line ) [431.433,405.2126] (Line ) [415.304,405.2126] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,399.1748] (Line ) [431.433,399.1748] (Line ) [431.433,401.1874] (Line ) [415.304,401.1874] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,395.1496] (Line ) [431.433,395.1496] (Line ) [431.433,397.1622] (Line ) [415.304,397.1622] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,391.0961] (Line ) [431.433,391.0961] (Line ) [431.433,393.1087] (Line ) [415.304,393.1087] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,387.0709] (Line ) [431.433,387.0709] (Line ) [431.433,389.0835] (Line ) [415.304,389.0835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,370.9417] (Line ) [431.433,370.9417] (Line ) [431.433,372.9543] (Line ) [415.304,372.9543] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,374.967] (Line ) [431.433,374.967] (Line ) [431.433,376.9796] (Line ) [415.304,376.9796] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,379.0205] (Line ) [431.433,379.0205] (Line ) [431.433,381.0331] (Line ) [415.304,381.0331] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [415.304,383.0457] (Line ) [431.433,383.0457] (Line ) [431.433,385.0583] (Line ) [415.304,385.0583] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,383.0457] (Line ) [205.6536,383.0457] (Line ) [205.6536,385.0583] (Line ) [189.5244,385.0583] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,379.0205] (Line ) [205.6536,379.0205] (Line ) [205.6536,381.0331] (Line ) [189.5244,381.0331] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,374.967] (Line ) [205.6536,374.967] (Line ) [205.6536,376.9796] (Line ) [189.5244,376.9796] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,370.9417] (Line ) [205.6536,370.9417] (Line ) [205.6536,372.9543] (Line ) [189.5244,372.9543] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,387.0709] (Line ) [205.6536,387.0709] (Line ) [205.6536,389.0835] (Line ) [189.5244,389.0835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,391.0961] (Line ) [205.6536,391.0961] (Line ) [205.6536,393.1087] (Line ) [189.5244,393.1087] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,395.1496] (Line ) [205.6536,395.1496] (Line ) [205.6536,397.1622] (Line ) [189.5244,397.1622] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,399.1748] (Line ) [205.6536,399.1748] (Line ) [205.6536,401.1874] (Line ) [189.5244,401.1874] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,403.2] (Line ) [205.6536,403.2] (Line ) [205.6536,405.2126] (Line ) [189.5244,405.2126] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,423.3544] (Line ) [205.6536,423.3544] (Line ) [205.6536,425.367] (Line ) [189.5244,425.367] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,419.3292] (Line ) [205.6536,419.3292] (Line ) [205.6536,421.3418] (Line ) [189.5244,421.3418] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,415.304] (Line ) [205.6536,415.304] (Line ) [205.6536,417.3165] (Line ) [189.5244,417.3165] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,411.2504] (Line ) [205.6536,411.2504] (Line ) [205.6536,413.263] (Line ) [189.5244,413.263] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,407.2252] (Line ) [205.6536,407.2252] (Line ) [205.6536,409.2378] (Line ) [189.5244,409.2378] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,427.3796] (Line ) [205.6536,427.3796] (Line ) [205.6536,429.3922] (Line ) [189.5244,429.3922] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,431.4331] (Line ) [205.6536,431.4331] (Line ) [205.6536,433.4457] (Line ) [189.5244,433.4457] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,435.4583] (Line ) [205.6536,435.4583] (Line ) [205.6536,437.4709] (Line ) [189.5244,437.4709] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,439.4835] (Line ) [205.6536,439.4835] (Line ) [205.6536,441.4961] (Line ) [189.5244,441.4961] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,443.5087] (Line ) [205.6536,443.5087] (Line ) [205.6536,445.5213] (Line ) [189.5244,445.5213] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,463.6914] (Line ) [205.6536,463.6914] (Line ) [205.6536,465.704] (Line ) [189.5244,465.704] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,459.6378] (Line ) [205.6536,459.6378] (Line ) [205.6536,461.6504] (Line ) [189.5244,461.6504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,455.6126] (Line ) [205.6536,455.6126] (Line ) [205.6536,457.6252] (Line ) [189.5244,457.6252] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,451.5874] (Line ) [205.6536,451.5874] (Line ) [205.6536,453.6] (Line ) [189.5244,453.6] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,447.5622] (Line ) [205.6536,447.5622] (Line ) [205.6536,449.5748] (Line ) [189.5244,449.5748] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,467.7165] (Line ) [205.6536,467.7165] (Line ) [205.6536,469.7292] (Line ) [189.5244,469.7292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,471.7418] (Line ) [205.6536,471.7418] (Line ) [205.6536,473.7544] (Line ) [189.5244,473.7544] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,475.767] (Line ) [205.6536,475.767] (Line ) [205.6536,477.7796] (Line ) [189.5244,477.7796] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,479.8205] (Line ) [205.6536,479.8205] (Line ) [205.6536,481.8331] (Line ) [189.5244,481.8331] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,483.8457] (Line ) [205.6536,483.8457] (Line ) [205.6536,485.8583] (Line ) [189.5244,485.8583] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,504.0] (Line ) [205.6536,504.0] (Line ) [205.6536,506.0126] (Line ) [189.5244,506.0126] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,499.9748] (Line ) [205.6536,499.9748] (Line ) [205.6536,501.9874] (Line ) [189.5244,501.9874] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,495.9496] (Line ) [205.6536,495.9496] (Line ) [205.6536,497.9622] (Line ) [189.5244,497.9622] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,491.8961] (Line ) [205.6536,491.8961] (Line ) [205.6536,493.9087] (Line ) [189.5244,493.9087] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,487.8709] (Line ) [205.6536,487.8709] (Line ) [205.6536,489.8835] (Line ) [189.5244,489.8835] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,508.0252] (Line ) [205.6536,508.0252] (Line ) [205.6536,510.0379] (Line ) [189.5244,510.0379] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,512.0504] (Line ) [205.6536,512.0504] (Line ) [205.6536,514.063] (Line ) [189.5244,514.063] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,516.104] (Line ) [205.6536,516.104] (Line ) [205.6536,518.1166] (Line ) [189.5244,518.1166] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,520.1292] (Line ) [205.6536,520.1292] (Line ) [205.6536,522.1418] (Line ) [189.5244,522.1418] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,524.1544] (Line ) [205.6536,524.1544] (Line ) [205.6536,526.167] (Line ) [189.5244,526.167] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,544.3087] (Line ) [205.6536,544.3087] (Line ) [205.6536,546.3213] (Line ) [189.5244,546.3213] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,540.2835] (Line ) [205.6536,540.2835] (Line ) [205.6536,542.2961] (Line ) [189.5244,542.2961] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,536.2583] (Line ) [205.6536,536.2583] (Line ) [205.6536,538.2708] (Line ) [189.5244,538.2708] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,532.2331] (Line ) [205.6536,532.2331] (Line ) [205.6536,534.2457] (Line ) [189.5244,534.2457] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,528.1796] (Line ) [205.6536,528.1796] (Line ) [205.6536,530.1921] (Line ) [189.5244,530.1921] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,548.3622] (Line ) [205.6536,548.3622] (Line ) [205.6536,550.3748] (Line ) [189.5244,550.3748] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,552.3875] (Line ) [205.6536,552.3875] (Line ) [205.6536,554.4] (Line ) [189.5244,554.4] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,556.4127] (Line ) [205.6536,556.4127] (Line ) [205.6536,558.4252] (Line ) [189.5244,558.4252] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,560.4378] (Line ) [205.6536,560.4378] (Line ) [205.6536,562.4504] (Line ) [189.5244,562.4504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [189.5244,564.4914] (Line ) [205.6536,564.4914] (Line ) [205.6536,566.504] (Line ) [189.5244,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,568.5165] (Line ) [214.7244,568.5165] (Line ) [214.7244,574.5544] (Line ) [213.704,574.5544] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [409.2661,567.4961] (Line ) [410.2866,567.4961] (Line ) [410.2866,572.5418] (Line ) [409.2661,572.5418] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [409.2661,571.5496] (Line ) [410.2866,571.5496] (Line ) [410.2866,574.5827] (Line ) [409.2661,574.5827] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.6536,565.4835] (Line ) [209.6788,565.4835] (Line ) [209.6788,566.504] (Line ) [205.6536,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [209.6788,548.3622] (Line ) [210.6992,548.3622] (Line ) [210.6992,566.504] (Line ) [209.6788,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [209.6788,547.3418] (Line ) [225.8079,547.3418] (Line ) [225.8079,548.3622] (Line ) [209.6788,548.3622] (Line ) Text T "268" xerox/pressfonts/helvetica [10.0 0.0 231.8457 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,567.4961] (Line ) [223.7953,567.4961] (Line ) [223.7953,568.5165] (Line ) [213.704,568.5165] (Line ) Text T "1" xerox/pressfonts/helvetica [10.0 0.0 227.8205 0.0 10.0 563.4709][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [397.1622,567.4961] (Line ) [410.2583,567.4961] (Line ) [410.2583,568.5165] (Line ) [397.1622,568.5165] (Line ) Text T "67" xerox/pressfonts/helvetica [10.0 0.0 383.0457 0.0 10.0 563.4709][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.2788,565.4835] (Line ) [416.3244,565.4835] (Line ) [416.3244,566.504] (Line ) [411.2788,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.2788,548.3622] (Line ) [412.2992,548.3622] (Line ) [412.2992,566.504] (Line ) [411.2788,566.504] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.1496,547.3418] (Line ) [412.2992,547.3418] (Line ) [412.2992,548.3622] (Line ) [395.1496,548.3622] (Line ) Text T "68" xerox/pressfonts/helvetica [10.0 0.0 383.0457 0.0 10.0 545.3292][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.2788,371.9622] (Line ) [416.3244,371.9622] (Line ) [416.3244,372.9827] (Line ) [411.2788,372.9827] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [411.2788,371.9622] (Line ) [412.2992,371.9622] (Line ) [412.2992,391.1244] (Line ) [411.2788,391.1244] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.1496,390.104] (Line ) [412.2992,390.104] (Line ) [412.2992,391.1244] (Line ) [395.1496,391.1244] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [407.2536,363.8835] (Line ) [408.274,363.8835] (Line ) [408.274,368.9292] (Line ) [407.2536,368.9292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [395.1496,367.9087] (Line ) [408.2457,367.9087] (Line ) [408.2457,368.9292] (Line ) [395.1496,368.9292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,363.8835] (Line ) [214.7244,363.8835] (Line ) [214.7244,368.9292] (Line ) [213.704,368.9292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [213.704,367.9087] (Line ) [229.8331,367.9087] (Line ) [229.8331,368.9292] (Line ) [213.704,368.9292] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [205.6536,371.9622] (Line ) [209.6788,371.9622] (Line ) [209.6788,372.9827] (Line ) [205.6536,372.9827] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [209.6788,371.9622] (Line ) [210.6992,371.9622] (Line ) [210.6992,391.1244] (Line ) [209.6788,391.1244] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [209.6788,390.104] (Line ) [225.8079,390.104] (Line ) [225.8079,391.1244] (Line ) [209.6788,391.1244] (Line ) Text T "202" xerox/pressfonts/helvetica [10.0 0.0 229.8331 0.0 10.0 386.0504][1 1.0] F 1.0 props: ( F ) Text T "201" xerox/pressfonts/helvetica [10.0 0.0 231.8457 0.0 10.0 367.9087][1 1.0] F 1.0 props: ( F ) Text T "134" xerox/pressfonts/helvetica [10.0 0.0 379.0205 0.0 10.0 388.0914][1 1.0] F 1.0 props: ( F ) Text T "135" xerox/pressfonts/helvetica [10.0 0.0 379.0205 0.0 10.0 367.9087][1 1.0] F 1.0 props: ( F ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [52.4126,726.7748] (Line ) [564.463,726.7748] (Line ) [564.463,727.7953] (Line ) [52.4126,727.7953] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [564.4914,213.704] (Line ) [565.5119,213.704] (Line ) [565.5119,727.7953] (Line ) [564.4914,727.7953] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [52.4126,212.6835] (Line ) [565.4835,212.6835] (Line ) [565.4835,213.704] (Line ) [52.4126,213.704] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [52.4126,212.6835] (Line ) [53.43308,212.6835] (Line ) [53.43308,727.767] (Line ) [52.4126,727.767] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [52.4126,710.6457] (Line ) [68.54173,710.6457] (Line ) [68.54173,711.6662] (Line ) [52.4126,711.6662] (Line ) Outline fillColor: [1 1.0] Trajectories: [1] Traj (fence) [3] arrows: 0 j: round e: T round w: 0.0 c: T [] d: T F [68.54173,710.6457] (Line ) [69.56221,710.6457] (Line ) [69.56221,727.7953] (Line ) [68.54173,727.7953] (Line ) Text T "263" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "261" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "257" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "252" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "249" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "247" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "243" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "239" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "238" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "231" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "230" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "226" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "223" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "220" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "217" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "213" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "212" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "208" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "196" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "260" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "255" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "251" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "248" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "244" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "240" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "235" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "234" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "229" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "225" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "221" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "218" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "214" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "209" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "203" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "206" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "194" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "7" xerox/pressfonts/helvetica [10.0 0.0 100.8 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "5" xerox/pressfonts/helvetica [10.0 0.0 100.8 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "2" xerox/pressfonts/helvetica [10.0 0.0 125.0079 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "265" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "259" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "254" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "250" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "245" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "241" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "236" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "233" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "228" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "224" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "219" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "215" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "210" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "204" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "200" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "199" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "267" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "190" xerox/pressfonts/helvetica [10.0 0.0 120.9827 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "8" xerox/pressfonts/helvetica [10.0 0.0 149.1874 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "3" xerox/pressfonts/helvetica [10.0 0.0 149.1874 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "1" xerox/pressfonts/helvetica [10.0 0.0 149.1874 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "264" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "258" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "253" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "246" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "242" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "237" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "232" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "227" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "222" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "216" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "211" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "205" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "202" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "198" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "193" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "189" xerox/pressfonts/helvetica [10.0 0.0 145.1622 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "9" xerox/pressfonts/helvetica [10.0 0.0 173.3953 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "4" xerox/pressfonts/helvetica [10.0 0.0 173.3953 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "268" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "262" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "207" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "201" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "197" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "192" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "188" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "185" xerox/pressfonts/helvetica [10.0 0.0 169.3417 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "195" xerox/pressfonts/helvetica [10.0 0.0 193.5496 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "191" xerox/pressfonts/helvetica [10.0 0.0 193.5496 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "187" xerox/pressfonts/helvetica [10.0 0.0 193.5496 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "184" xerox/pressfonts/helvetica [10.0 0.0 193.5496 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "182" xerox/pressfonts/helvetica [10.0 0.0 193.5496 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "186" xerox/pressfonts/helvetica [10.0 0.0 217.7292 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "183" xerox/pressfonts/helvetica [10.0 0.0 217.7292 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "181" xerox/pressfonts/helvetica [10.0 0.0 217.7292 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "179" xerox/pressfonts/helvetica [10.0 0.0 217.7292 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "180" xerox/pressfonts/helvetica [10.0 0.0 241.937 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "178" xerox/pressfonts/helvetica [10.0 0.0 241.937 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "177" xerox/pressfonts/helvetica [10.0 0.0 241.937 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "176" xerox/pressfonts/helvetica [10.0 0.0 241.937 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "175" xerox/pressfonts/helvetica [10.0 0.0 266.1165 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "174" xerox/pressfonts/helvetica [10.0 0.0 266.1165 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "173" xerox/pressfonts/helvetica [10.0 0.0 266.1165 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "172" xerox/pressfonts/helvetica [10.0 0.0 266.1165 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "171" xerox/pressfonts/helvetica [10.0 0.0 290.3244 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "170" xerox/pressfonts/helvetica [10.0 0.0 290.3244 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "168" xerox/pressfonts/helvetica [10.0 0.0 290.3244 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "169" xerox/pressfonts/helvetica [10.0 0.0 290.3244 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "165" xerox/pressfonts/helvetica [10.0 0.0 314.5039 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "166" xerox/pressfonts/helvetica [10.0 0.0 314.5039 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "167" xerox/pressfonts/helvetica [10.0 0.0 314.5039 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "164" xerox/pressfonts/helvetica [10.0 0.0 314.5039 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "160" xerox/pressfonts/helvetica [10.0 0.0 338.6835 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "161" xerox/pressfonts/helvetica [10.0 0.0 338.6835 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "162" xerox/pressfonts/helvetica [10.0 0.0 338.6835 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "163" xerox/pressfonts/helvetica [10.0 0.0 338.6835 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "155" xerox/pressfonts/helvetica [10.0 0.0 362.8914 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "157" xerox/pressfonts/helvetica [10.0 0.0 362.8914 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "158" xerox/pressfonts/helvetica [10.0 0.0 362.8914 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "159" xerox/pressfonts/helvetica [10.0 0.0 362.8914 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "149" xerox/pressfonts/helvetica [10.0 0.0 387.0709 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "152" xerox/pressfonts/helvetica [10.0 0.0 387.0709 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "154" xerox/pressfonts/helvetica [10.0 0.0 387.0709 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "156" xerox/pressfonts/helvetica [10.0 0.0 387.0709 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "140" xerox/pressfonts/helvetica [10.0 0.0 411.2788 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "144" xerox/pressfonts/helvetica [10.0 0.0 411.2788 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "148" xerox/pressfonts/helvetica [10.0 0.0 411.2788 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "151" xerox/pressfonts/helvetica [10.0 0.0 411.2788 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "153" xerox/pressfonts/helvetica [10.0 0.0 411.2788 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "128" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "134" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "138" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "143" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "147" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "150" xerox/pressfonts/helvetica [10.0 0.0 435.4583 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "103" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "108" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "113" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "119" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "124" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "130" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "135" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "137" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "142" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "146" xerox/pressfonts/helvetica [10.0 0.0 459.6662 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "102" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "107" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "111" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "116" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "120" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "125" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "131" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "133" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "136" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "145" xerox/pressfonts/helvetica [10.0 0.0 483.8457 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "101" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "106" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "110" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "114" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "117" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "121" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "126" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "132" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "139" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "141" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "104" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 446.5418][1 1.0] F 1.0 props: ( F ) Text T "105" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 422.3622][1 1.0] F 1.0 props: ( F ) Text T "109" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 398.1544][1 1.0] F 1.0 props: ( F ) Text T "112" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 373.9748][1 1.0] F 1.0 props: ( F ) Text T "115" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 349.7669][1 1.0] F 1.0 props: ( F ) Text T "118" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 325.5874][1 1.0] F 1.0 props: ( F ) Text T "122" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 301.3796][1 1.0] F 1.0 props: ( F ) Text T "123" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 277.2][1 1.0] F 1.0 props: ( F ) Text T "127" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 253.0205][1 1.0] F 1.0 props: ( F ) Text T "129" xerox/pressfonts/helvetica [10.0 0.0 532.2331 0.0 10.0 228.8126][1 1.0] F 1.0 props: ( F ) Text T "11" xerox/pressfonts/helvetica [10.0 0.0 122.9953 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "12" xerox/pressfonts/helvetica [10.0 0.0 147.1748 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "16" xerox/pressfonts/helvetica [10.0 0.0 171.3827 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "13" xerox/pressfonts/helvetica [10.0 0.0 171.3827 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "19" xerox/pressfonts/helvetica [10.0 0.0 195.5622 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "17" xerox/pressfonts/helvetica [10.0 0.0 195.5622 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "14" xerox/pressfonts/helvetica [10.0 0.0 195.5622 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "10" xerox/pressfonts/helvetica [10.0 0.0 195.5622 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "6" xerox/pressfonts/helvetica [10.0 0.0 197.5748 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "22" xerox/pressfonts/helvetica [10.0 0.0 219.7417 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "20" xerox/pressfonts/helvetica [10.0 0.0 219.7417 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "18" xerox/pressfonts/helvetica [10.0 0.0 219.7417 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "15" xerox/pressfonts/helvetica [10.0 0.0 219.7417 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "25" xerox/pressfonts/helvetica [10.0 0.0 243.9496 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "24" xerox/pressfonts/helvetica [10.0 0.0 243.9496 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "23" xerox/pressfonts/helvetica [10.0 0.0 243.9496 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "21" xerox/pressfonts/helvetica [10.0 0.0 243.9496 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "29" xerox/pressfonts/helvetica [10.0 0.0 268.1292 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "28" xerox/pressfonts/helvetica [10.0 0.0 268.1292 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "27" xerox/pressfonts/helvetica [10.0 0.0 268.1292 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "26" xerox/pressfonts/helvetica [10.0 0.0 268.1292 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "30" xerox/pressfonts/helvetica [10.0 0.0 292.337 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "33" xerox/pressfonts/helvetica [10.0 0.0 292.337 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "32" xerox/pressfonts/helvetica [10.0 0.0 292.337 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "31" xerox/pressfonts/helvetica [10.0 0.0 292.337 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "37" xerox/pressfonts/helvetica [10.0 0.0 316.5165 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "34" xerox/pressfonts/helvetica [10.0 0.0 316.5165 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "35" xerox/pressfonts/helvetica [10.0 0.0 316.5165 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "36" xerox/pressfonts/helvetica [10.0 0.0 316.5165 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "38" xerox/pressfonts/helvetica [10.0 0.0 340.7244 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "39" xerox/pressfonts/helvetica [10.0 0.0 340.7244 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "40" xerox/pressfonts/helvetica [10.0 0.0 340.7244 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "41" xerox/pressfonts/helvetica [10.0 0.0 340.7244 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "42" xerox/pressfonts/helvetica [10.0 0.0 364.904 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "43" xerox/pressfonts/helvetica [10.0 0.0 364.904 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "44" xerox/pressfonts/helvetica [10.0 0.0 364.904 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "46" xerox/pressfonts/helvetica [10.0 0.0 364.904 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "45" xerox/pressfonts/helvetica [10.0 0.0 389.0835 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "47" xerox/pressfonts/helvetica [10.0 0.0 389.0835 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "49" xerox/pressfonts/helvetica [10.0 0.0 389.0835 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "52" xerox/pressfonts/helvetica [10.0 0.0 389.0835 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "48" xerox/pressfonts/helvetica [10.0 0.0 413.2914 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "50" xerox/pressfonts/helvetica [10.0 0.0 413.2914 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "53" xerox/pressfonts/helvetica [10.0 0.0 413.2914 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "57" xerox/pressfonts/helvetica [10.0 0.0 413.2914 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "61" xerox/pressfonts/helvetica [10.0 0.0 413.2914 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "51" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "54" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "58" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "63" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "67" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "73" xerox/pressfonts/helvetica [10.0 0.0 437.4709 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "55" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "59" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "64" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "68" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "71" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "82" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "88" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "93" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "98" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "56" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "65" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "66" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "70" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "76" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "81" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "85" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "90" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "94" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "99" xerox/pressfonts/helvetica [10.0 0.0 485.8583 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "60" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "72" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "69" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "75" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "80" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "84" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "87" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "91" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "95" xerox/pressfonts/helvetica [10.0 0.0 510.0662 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "100" xerox/pressfonts/helvetica [10.0 0.0 508.0536 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "62" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 688.4504][1 1.0] F 1.0 props: ( F ) Text T "74" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 664.271][1 1.0] F 1.0 props: ( F ) Text T "78" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "79" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) Text T "83" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 591.704][1 1.0] F 1.0 props: ( F ) Text T "86" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "89" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 543.3166][1 1.0] F 1.0 props: ( F ) Text T "92" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 519.1087][1 1.0] F 1.0 props: ( F ) Text T "96" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 494.9292][1 1.0] F 1.0 props: ( F ) Text T "97" xerox/pressfonts/helvetica [10.0 0.0 534.2458 0.0 10.0 470.7496][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 268.1292 0.0 32.0 579.0331][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 219.7417 0.0 32.0 579.0331][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 316.5165 0.0 32.0 579.0331][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 364.904 0.0 32.0 579.0331][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 530.674][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 482.2867][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 433.8992][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 385.5118][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 361.304][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 409.6914][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 458.0788][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 506.4662][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 389.0835 0.0 32.0 312.9449][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 340.7244 0.0 32.0 312.9449][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 292.337 0.0 32.0 312.9449][1 1.0] F 1.0 props: ( F ) Text T "I" Xerox/Pressfonts/Gates [32.0 0.0 243.9496 0.0 32.0 312.9449][1 1.0] F 1.0 props: ( F ) Text T "o" Xerox/Pressfonts/Gates [32.0 0.0 296.3622 0.0 32.0 486.3118][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 243.9496 0.0 32.0 568.9701][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 292.337 0.0 32.0 568.9701][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 340.7244 0.0 32.0 568.9701][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 389.0835 0.0 32.0 568.9701][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 496.4032][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 448.0158][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 399.6284][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 437.4709 0.0 32.0 351.241][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 364.904 0.0 32.0 302.8536][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 316.5165 0.0 32.0 302.8536][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 268.1292 0.0 32.0 302.8536][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 219.7417 0.0 32.0 302.8536][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 375.4205][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 423.8079][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 472.1953][1 1.0] F 1.0 props: ( F ) Text T "n" Xerox/Pressfonts/Gates [32.0 0.0 171.3827 0.0 32.0 520.5827][1 1.0] F 1.0 props: ( F ) Text T "77" xerox/pressfonts/helvetica [10.0 0.0 461.6788 0.0 10.0 567.4961][1 1.0] F 1.0 props: ( F ) Text T "266" xerox/pressfonts/helvetica [10.0 0.0 96.7748 0.0 10.0 640.0914][1 1.0] F 1.0 props: ( F ) Text T "256" xerox/pressfonts/helvetica [10.0 0.0 72.59528 0.0 10.0 615.8835][1 1.0] F 1.0 props: ( F ) š£3™3——…—¢Ð¯”