From bc36e9dde54dd5fbbc1c56880eef142969a14f00 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 19 Apr 2012 19:18:15 -0700 Subject: [PATCH] Adds serial port support to the multiplexer library. It also modifies the HP 2100 and PDP11 multiplexers to add serial support as demonstrations of the capability that, one day, might be extended to all simulators. I have tested the HP support, but I relied on Holger Veit to test the DEC stuff, so I can't guarantee that it works. I also relied on Holger to test under Linux, so the same caveat applies. The changes needed in the device simulators are relatively small. For example, if you look at the patches for "hp2100_baci.c", you'll note that most of them are documentation changes. The only things of note are: - an expansion of the TMXR initializer - additional code in the "attach" routine to try attaching a serial port if attaching a socket fails - additional code in the "detach" routine for the same reasons The HP MPX device (hp2100_mpx.c) needs a tiny bit of additional support from the ATTACH and DETACH commands. Specifically, SCP was modified to set a flag ("sim_unit_ref") to indicate whether ATTACH MPX or ATTACH MPX0 was done, i.e., to differentiate between a device and a unit attach (recall that SCP treats these as both referring to unit 0). This is needed because the socket attaches (logically) to the device, whereas a serial port attaches to a line. Without this flag, the attach routine cannot differentiate between ATTACH MPX and ATTACH MPX0, as the distinction is lost by the time the VM's attach routine is called. This support isn't needed for the HP MUX device because the socket attaches to a different device than the lines do. MPX also requires a bit more work due to the capability to mix serial and Telnet lines on the same multiplexer (BACI is a single-line terminal device). The attached PDF contains revisions to the "Writing a Simulator for the SIMH System" publication that documents the additions and changes to the multiplexer library for serial port support. User documentation for serial port support currently exists only in the initial comments in "sim_tmxr.c"; I will add the appropriate text to the "SIMH User's Guide" if we decide to add this to the release version. --- HP2100/hp2100_baci.c | 98 +- HP2100/hp2100_defs.h | 10 +- HP2100/hp2100_mpx.c | 195 +- HP2100/hp2100_mux.c | 95 +- PDP11/pdp11_dc.c | 67 +- PDP11/pdp11_dz.c | 7 +- PDP11/pdp11_vh.c | 3 +- descrip.mms | 3 +- doc/simh_381_serial.pdf | 11515 ++++++++++++++++++++++++++++++++++++++ makefile | 2 +- scp.c | 10 + scp.h | 7 +- sim_serial.c | 814 +++ sim_serial.h | 99 + sim_tmxr.c | 1194 +++- sim_tmxr.h | 14 + 16 files changed, 13799 insertions(+), 334 deletions(-) create mode 100644 doc/simh_381_serial.pdf create mode 100644 sim_serial.c create mode 100644 sim_serial.h diff --git a/HP2100/hp2100_baci.c b/HP2100/hp2100_baci.c index 063705a6..cbadb7cf 100644 --- a/HP2100/hp2100_baci.c +++ b/HP2100/hp2100_baci.c @@ -29,6 +29,8 @@ 28-Mar-11 JDB Tidied up signal handling 26-Oct-10 JDB Changed I/O signal handler for revised signal model 25-Nov-08 JDB Revised for new multiplexer library SHOW routines + 19-Nov-08 JDB [serial] Removed DEV_NET to allow restoration of listening port + 17-Oct-08 JDB [serial] Added serial port support 11-Sep-08 JDB Fixed STC,C losing interrupt request on BREAK 07-Sep-08 JDB Fixed IN_LOOPBACK conflict with netinet/in.h Changed Telnet poll to connect immediately after reset or attach @@ -78,13 +80,13 @@ an "external rate" that is equivalent to 9600 baud, as most terminals were set to their maximum speeds. - We support the 12966A connected to an HP terminal emulator via Telnet. - Internally, we model the BACI as a terminal multiplexer with one line. The - simulation is complicated by the half-duplex nature of the card (there is - only one FIFO, used selectively either for transmission or reception) and the - double-buffered UART (a Western Digital TR1863A), which has holding registers - as well as a shift registers for transmission and reception. We model both - sets of device registers. + We support the 12966A connected to an HP terminal emulator via Telnet or a + serial port. Internally, we model the BACI as a terminal multiplexer with + one line. The simulation is complicated by the half-duplex nature of the + card (there is only one FIFO, used selectively either for transmission or + reception) and the double-buffered UART (a Western Digital TR1863A), which + has holding registers as well as a shift registers for transmission and + reception. We model both sets of device registers. During an output operation, the first character output to the card passes through the FIFO and into the transmitter holding register. Subsequent @@ -113,12 +115,12 @@ as an "optimized (fast) timing" option. Optimization makes three improvements: - 1. On output, characters in the FIFO are emptied into the Telnet buffer as a + 1. On output, characters in the FIFO are emptied into the line buffer as a block, rather than one character per service call, and on input, all of - the characters available in the Telnet buffer are loaded into the FIFO as - a block. + the characters available in the line buffer are loaded into the FIFO as a + block. - 2. The ENQ/ACK handshake is done locally, without involving the Telnet + 2. The ENQ/ACK handshake is done locally, without involving the terminal client. 3. Input occurring during an output operation is delayed until the second or @@ -318,7 +320,7 @@ /* Unit references */ #define baci_term baci_unit[0] /* terminal I/O unit */ -#define baci_poll baci_unit[1] /* Telnet polling unit */ +#define baci_poll baci_unit[1] /* line polling unit */ /* BACI state variables */ @@ -391,11 +393,11 @@ t_stat baci_detach (UNIT *uptr); baci_deb BACI debug list baci_dev BACI device descriptor - Two units are used: one to handle character I/O via the Telnet library, and - another to poll for connections and input. The character I/O service routine - runs only when there are characters to read or write. It operates at the - approximate baud rate of the terminal (in CPU instructions per second) in - order to be compatible with the OS drivers. The Telnet poll must run + Two units are used: one to handle character I/O via the multiplexer library, + and another to poll for connections and input. The character I/O service + routine runs only when there are characters to read or write. It operates at + the approximate baud rate of the terminal (in CPU instructions per second) in + order to be compatible with the OS drivers. The line poll must run continuously, but it can operate much more slowly, as the only requirement is that it must not present a perceptible lag to human input. To be compatible with CPU idling, it is co-scheduled with the master poll timer, which uses a @@ -404,14 +406,14 @@ t_stat baci_detach (UNIT *uptr); DEVICE baci_dev; -TMLN baci_ldsc = { 0 }; /* line descriptor */ -TMXR baci_desc = { 1, 0, 0, &baci_ldsc }; /* device descriptor */ +TMLN baci_ldsc = { 0 }; /* line descriptor */ +TMXR baci_desc = { 1, 0, 0, &baci_ldsc, NULL, &baci_dev }; /* device descriptor */ DIB baci_dib = { &baci_io, BACI, 0 }; UNIT baci_unit[] = { { UDATA (&baci_term_svc, UNIT_ATTABLE | UNIT_FASTTIME, 0) }, /* terminal I/O unit */ - { UDATA (&baci_poll_svc, UNIT_DIS, POLL_FIRST) } /* Telnet poll unit */ + { UDATA (&baci_poll_svc, UNIT_DIS, POLL_FIRST) } /* line poll unit */ }; REG baci_reg[] = { @@ -769,7 +771,7 @@ return stat_data; The terminal service routine is used to transmit and receive characters. In terminal mode, it is started when a character is ready for output or when - the Telnet poll routine determines that there are characters ready for input + the line poll routine determines that there are characters ready for input and stopped when there are no more characters to output or input. When the terminal is quiescent, this routine does not run. @@ -809,11 +811,11 @@ return stat_data; first character after an ENQ is not an ACK. Finally, fast timing enables buffer combining. For output, all characters - present in the FIFO are unloaded into the Telnet buffer before initiating a - packet send. For input, all characters present in the Telnet buffer are - loaded into the FIFO. This reduces network traffic and decreases simulator - overhead (there is only one service routine entry per block, rather than one - per character). + present in the FIFO are unloaded into the line buffer before initiating a + packet send. For input, all characters present in the line buffer are loaded + into the FIFO. This reduces network traffic and decreases simulator overhead + (there is only one service routine entry per block, rather than one per + character). In fast output mode, it is imperative that not less than 1500 instructions elapse between the first character load to the FIFO and the initiation of @@ -976,12 +978,11 @@ return status; } -/* BACI Telnet poll service. +/* BACI line poll service. - This service routine is used to poll for Telnet connections and incoming - characters. If characters are available, the terminal I/O service routine is - scheduled. It starts when the socket is attached and stops when the socket - is detached. + This service routine is used to poll for connections and incoming characters. + If characters are available, the terminal I/O service routine is scheduled. + It starts when the line is attached and stops when the line is detached. As there is only one line, we only poll for a new connection when the line is disconnected. @@ -1028,42 +1029,57 @@ baci_term.wait = service_time (baci_icw); /* set terminal I/O time if (baci_term.flags & UNIT_ATT) { /* device attached? */ baci_poll.wait = POLL_FIRST; /* set up poll */ - sim_activate (&baci_poll, baci_poll.wait); /* start Telnet poll immediately */ + sim_activate (&baci_poll, baci_poll.wait); /* start line poll immediately */ } else - sim_cancel (&baci_poll); /* else stop Telnet poll */ + sim_cancel (&baci_poll); /* else stop line poll */ return SCPE_OK; } -/* Attach controller */ +/* Attach line */ t_stat baci_attach (UNIT *uptr, char *cptr) { t_stat status = SCPE_OK; -status = tmxr_attach (&baci_desc, uptr, cptr); /* attach to socket */ +if (uptr->flags & UNIT_DIS) /* unit disabled? */ + return SCPE_UDIS; /* report it */ -if (status == SCPE_OK) { - baci_poll.wait = POLL_FIRST; /* set up poll */ - sim_activate (&baci_poll, baci_poll.wait); /* start Telnet poll immediately */ +status = tmxr_attach (&baci_desc, uptr, cptr); /* try to attach to socket */ + +if (status == SCPE_ARG) /* invalid numeric port supplied? */ + status = tmxr_attach_line (uptr, 0, cptr, &baci_desc); /* try to attach to serial port */ + +if (status == SCPE_OK) { /* attach successful? */ + baci_poll.wait = POLL_FIRST; /* set up poll */ + sim_activate (&baci_poll, baci_poll.wait); /* start line poll immediately */ } return status; } -/* Detach controller */ + +/* Detach line */ t_stat baci_detach (UNIT *uptr) { t_stat status; -status = tmxr_detach (&baci_desc, uptr); /* detach socket */ +if (uptr->flags & UNIT_DIS) /* unit disabled? */ + return SCPE_UDIS; /* report it */ + +status = tmxr_detach_line (uptr, 0, NULL, &baci_desc); /* attempt to detach serial line */ + +if (status == SCPE_UNATT) /* not attached to serial? */ + status = tmxr_detach (&baci_desc, uptr); /* attempt to detach listening socket */ + baci_ldsc.rcve = 0; /* disable line reception */ -sim_cancel (&baci_poll); /* stop Telnet poll */ +sim_cancel (&baci_poll); /* stop line poll */ return status; } + /* Local routines */ diff --git a/HP2100/hp2100_defs.h b/HP2100/hp2100_defs.h index 3118e2d1..8bed6467 100644 --- a/HP2100/hp2100_defs.h +++ b/HP2100/hp2100_defs.h @@ -29,6 +29,7 @@ 27-Oct-10 JDB Revised I/O signal enum values for concurrent signals Revised I/O macros for new signal handling 09-Oct-10 JDB Added DA and DC device select code assignments + 21-Oct-08 JDB [serial] Added "sim_unit_ref" external 07-Sep-08 JDB Added POLL_FIRST to indicate immediate connection attempt 15-Jul-08 JDB Rearranged declarations with hp2100_cpu.h 26-Jun-08 JDB Rewrote device I/O to model backplane signals @@ -443,10 +444,11 @@ extern uint32 dev_prl [2], dev_irq [2], dev_srq [2]; /* I/O signal vectors */ /* Simulator state */ -extern FILE *sim_deb; -extern FILE *sim_log; -extern int32 sim_step; -extern int32 sim_switches; +extern FILE *sim_deb; +extern FILE *sim_log; +extern int32 sim_step; +extern int32 sim_switches; +extern UNITREF sim_unit_ref; /* CPU functions */ diff --git a/HP2100/hp2100_mpx.c b/HP2100/hp2100_mpx.c index a4d91dd9..7e4065a4 100644 --- a/HP2100/hp2100_mpx.c +++ b/HP2100/hp2100_mpx.c @@ -29,7 +29,9 @@ 28-Mar-11 JDB Tidied up signal handling 26-Oct-10 JDB Changed I/O signal handler for revised signal model 25-Nov-08 JDB Revised for new multiplexer library SHOW routines + 19-Nov-08 JDB [serial] Removed DEV_NET to allow restoration of listening port 14-Nov-08 JDB Cleaned up VC++ size mismatch warnings for zero assignments + 20-Oct-08 JDB [serial] Added serial port support 03-Oct-08 JDB Fixed logic for ENQ/XOFF transmit wait 07-Sep-08 JDB Changed Telnet poll to connect immediately after reset or attach 10-Aug-08 JDB Added REG_FIT to register variables < 32-bit size @@ -57,8 +59,8 @@ character editing, echoing, ENQ/ACK handshaking, and read terminator detection, substantially reducing the load on the CPU over the earlier 12920 multiplexer. It was supported by HP under RTE-MIII, RTE-IVB, and RTE-6/VM. - Under simulation, it connects with HP terminal emulators via Telnet to a - user-specified port. + Under simulation, it connects with HP terminal emulators via Telnet or serial + ports. The single interface card contained a Z80 CPU, DMA controller, CTC, four two-channel SIO UARTs, 16K of RAM, 8K of ROM, and I/O backplane latches and @@ -199,7 +201,7 @@ #define MPX_CNTLS 2 /* number of control units */ #define mpx_cntl (mpx_unit [MPX_PORTS + 0]) /* controller unit */ -#define mpx_poll (mpx_unit [MPX_PORTS + 1]) /* Telnet polling unit */ +#define mpx_poll (mpx_unit [MPX_PORTS + 1]) /* polling unit */ /* Character constants */ @@ -611,16 +613,16 @@ t_stat mpx_show_frev (FILE *st, UNIT *uptr, int32 val, void *desc); mpx_dev MPX device descriptor The first eight units correspond to the eight multiplexer line ports. These - handle character I/O via the Telnet library. A ninth unit acts as the card - controller, executing commands and transferring data to and from the I/O - buffers. A tenth unit is responsible for polling for connections and socket - I/O. It also holds the master socket. + handle character I/O via the multiplexer library. A ninth unit acts as the + card controller, executing commands and transferring data to and from the I/O + buffers. A tenth unit is responsible for polling for connections and line + I/O. It also holds the master socket for Telnet connections. The character I/O service routines run only when there are characters to read or write. They operate at the approximate baud rates of the terminals (in CPU instructions per second) in order to be compatible with the OS drivers. The controller service routine runs only when a command is executing or a - data transfer to or from the CPU is in progress. The Telnet poll must run + data transfer to or from the CPU is in progress. The poll service must run continuously, but it may operate much more slowly, as the only requirement is that it must not present a perceptible lag to human input. To be compatible with CPU idling, it is co-scheduled with the master poll timer, which uses a @@ -632,9 +634,9 @@ t_stat mpx_show_frev (FILE *st, UNIT *uptr, int32 val, void *desc); DEVICE mpx_dev; -int32 mpx_order [MPX_PORTS] = { -1 }; /* connection order */ -TMLN mpx_ldsc [MPX_PORTS] = { { 0 } }; /* line descriptors */ -TMXR mpx_desc = { MPX_PORTS, 0, 0, mpx_ldsc, mpx_order }; /* device descriptor */ +int32 mpx_order [MPX_PORTS] = { -1 }; /* connection order */ +TMLN mpx_ldsc [MPX_PORTS] = { { 0 } }; /* line descriptors */ +TMXR mpx_desc = { MPX_PORTS, 0, 0, mpx_ldsc, mpx_order, &mpx_dev }; /* device descriptor */ DIB mpx_dib = { &mpx_io, MPX }; @@ -648,7 +650,7 @@ UNIT mpx_unit [] = { { UDATA (&mpx_line_svc, UNIT_FASTTIME, 0) }, /* terminal I/O line 6 */ { UDATA (&mpx_line_svc, UNIT_FASTTIME, 0) }, /* terminal I/O line 7 */ { UDATA (&mpx_cntl_svc, UNIT_DIS, 0) }, /* controller unit */ - { UDATA (&mpx_poll_svc, UNIT_ATTABLE | UNIT_DIS, POLL_FIRST) } /* Telnet poll unit */ + { UDATA (&mpx_poll_svc, UNIT_ATTABLE | UNIT_DIS, POLL_FIRST) } /* line poll unit */ }; REG mpx_reg [] = { @@ -1602,21 +1604,20 @@ return SCPE_OK; /* Multiplexer line service. The line service routine is used to transmit and receive characters. It is - started when a buffer is ready for output or when the Telnet poll routine + started when a buffer is ready for output or when the poll service routine determines that there are characters ready for input, and it is stopped when there are no more characters to output or input. When a line is quiescent, this routine does not run. Service times are selected to approximate the baud rate setting of the multiplexer port. "Fast timing" mode enables three optimizations. First, buffered characters - are transferred via Telnet in blocks, rather than a character at a time; this - reduces network traffic and decreases simulator overhead (there is only one - service routine entry per block, rather than one per character). Second, - ENQ/ACK handshaking is done locally, without involving the Telnet client. - Third, when editing and echo is enabled, entering BS echoes a backspace, a - space, and a backspace, and entering DEL echoes a backslash, a carriage - return, and a line feed, providing better compatibility with prior RTE - terminal drivers. + are transferred in blocks, rather than a character at a time; this reduces + line traffic and decreases simulator overhead (there is only one service + routine entry per block, rather than one per character). Second, ENQ/ACK + handshaking is done locally, without involving the client. Third, when + editing and echo is enabled, entering BS echoes a backspace, a space, and a + backspace, and entering DEL echoes a backslash, a carriage return, and a line + feed, providing better compatibility with prior RTE terminal drivers. Each read and write buffer begins with a reserved header byte that stores per-buffer information, such as whether handshaking should be suppressed @@ -1630,7 +1631,7 @@ return SCPE_OK; write buffer is freed, and a UI check is made if the controller is idle, in case a write buffer request is pending. - For input, the character is retrieved from the Telnet buffer. If a BREAK was + For input, the character is retrieved from the line buffer. If a BREAK was received, break status is set, and the character is discarded (the current multiplexer library implementation always returns a NUL with a BREAK indication). If the character is an XOFF, and XON/XOFF pacing is enabled, a @@ -1939,11 +1940,11 @@ return SCPE_OK; } -/* Telnet poll service. +/* Poll service. - This service routine is used to poll for Telnet connections and incoming - characters. It starts when the socket is attached and stops when the socket - is detached. + This service routine is used to poll for connections and incoming characters. + It is started when the listening socket or a serial line is attached and is + stopped when the socket and all lines are detached. Each line is then checked for a pending ENQ/ACK handshake. If one is pending, the ACK counter is incremented, and if it times out, another ENQ is @@ -2007,10 +2008,10 @@ return SCPE_OK; 1. Under simulation, we also clear the input buffer register, even though the hardware doesn't. - 2. We set up the first poll for Telnet connections to occur "immediately" - upon execution, so that clients will be connected before execution - begins. Otherwise, a fast program may access the multiplexer before the - poll service routine activates. + 2. We set up the first poll for connections to occur "immediately" upon + execution, so that clients will be connected before execution begins. + Otherwise, a fast program may access the multiplexer before the poll + service routine activates. 3. We must set the "emptying_flags" and "filling_flags" values here, because they cannot be initialized statically, even though the values are @@ -2030,83 +2031,129 @@ IOPRESET (&mpx_dib); /* PRESET device (does n mpx_ibuf = 0; /* clear input buffer */ -if (mpx_poll.flags & UNIT_ATT) { /* network attached? */ +if (tmxr_mux_free (&mpx_desc)) /* any lines attached? */ + sim_cancel (&mpx_poll); /* no, so stop poll */ +else { /* attached or listening */ mpx_poll.wait = POLL_FIRST; /* set up poll */ - sim_activate (&mpx_poll, mpx_poll.wait); /* start Telnet poll immediately */ + sim_activate (&mpx_poll, mpx_poll.wait); /* start poll immediately */ } -else - sim_cancel (&mpx_poll); /* else stop Telnet poll */ return SCPE_OK; } -/* Attach the multiplexer to a Telnet port. +/* Attach the multiplexer or a line. We are called by the ATTACH MPX command to attach the multiplexer to - the listening port indicated by . Logically, it is the multiplexer - device that is attached; however, SIMH only allows units to be attached. - This makes sense for devices such as tape drives, where the attached media is - a property of a specific drive. In our case, though, the listening port is a - property of the multiplexer card, not of any given serial line. As ATTACH - MPX is equivalent to ATTACH MPX0, the port would, by default, be attached to - the first serial line and be reported there in a SHOW MPX command. + the listening port indicated by and by ATTACH MPX to attach + line to serial port . Logically, it is the multiplexer device that + is attached; however, SIMH only allows units to be attached. This makes + sense for devices such as tape drives, where the attached media is a property + of a specific drive. In our case, though, the listening port is a property + of the multiplexer card, not of any given serial line. - To preserve the logical picture, we attach the port to the Telnet poll unit, - which is normally disabled to inhibit its display. Attaching to a disabled - unit is not allowed, so we first enable the unit, then attach it, then - disable it again. Attachment is reported by the "mpx_status" routine below. + To preserve the logical picture, we attach the listening port to the poll + unit (unit 9), which is normally disabled to inhibit its display. Serial + ports are attached to line units 0-7 normally. Attachment is reported by the + "mpx_status" routine below. - The Telnet poll service routine is synchronized with the other input polling - devices in the simulator to facilitate idling. + The connection poll service routine is synchronized with the other input + polling devices in the simulator to facilitate idling. + + Implementation notes: + + 1. ATTACH MPX will pass a pointer unit 0. This is because the common + simulator code treats ATTACH MPX as equivalent to ATTACH MPX0. We + differentiate these cases by examining the "sim_unit_ref" global to see + if a device was referenced. + + 2. Directly attempting to attach to units 8 (controller) or 9 (poll) will be + rejected. + + 3. If we are being called as part of RESTORE processing, we may see a + request to attach the poll unit (unit 9). This will occur if unit 9 was + attached when the SAVE was done. In this case, the SIM_SW_REST flag will + be set in "sim_switches", and we will allow the call to succeed. + + 4. If the poll unit is attached, it will be enabled as part of RESTORE + processing. We always unilaterally disable this unit to ensure that it + remains hidden. */ t_stat mpx_attach (UNIT *uptr, char *cptr) { t_stat status = SCPE_OK; -if (uptr != mpx_unit) /* not unit 0? */ - return SCPE_NOATT; /* can't attach */ +if ((uptr == &mpx_cntl) || /* attaching controller? */ + (uptr == &mpx_poll) && !(sim_switches & SIM_SW_REST)) /* or poll unit directly? */ + return SCPE_NOATT; /* disallow */ -mpx_poll.flags = mpx_poll.flags & ~UNIT_DIS; /* enable unit */ -status = tmxr_attach (&mpx_desc, &mpx_poll, cptr); /* attach to socket */ -mpx_poll.flags = mpx_poll.flags | UNIT_DIS; /* disable unit */ +if (sim_unit_ref == ref_dev || (uptr == &mpx_poll)) { /* device attach or poll restore request? */ + status = tmxr_attach (&mpx_desc, &mpx_poll, cptr); /* attach to socket */ + mpx_poll.flags = mpx_poll.flags | UNIT_DIS; /* disable unit */ + } + +else /* line attach request */ + status = tmxr_attach_line (uptr, 0, cptr, &mpx_desc); /* attach line */ if (status == SCPE_OK) { - mpx_poll.wait = POLL_FIRST; /* set up poll */ - sim_activate (&mpx_poll, mpx_poll.wait); /* start poll immediately */ + mpx_poll.wait = POLL_FIRST; /* set up poll */ + sim_activate (&mpx_poll, mpx_poll.wait); /* start poll immediately */ } return status; } -/* Detach the multiplexer. +/* Detach the multiplexer or a line. - Normally, we are called by the DETACH MPX command, which is equivalent to - DETACH MPX0. However, we may be called with other units in two cases. + We are called by the DETACH MPX command to detach the listening port and all + Telnet sessions and by the DETACH MPX to detach a serial port from line + . We will also be called by DETACH ALL, RESTORE, and during simulator + shutdown. For DETACH ALL and RESTORE, we must not fail the call, or + processing of other units will cease. + + Implementation notes: - A DETACH ALL command will call us for unit 9 (the poll unit) if it is - attached. Also, during simulator shutdown, we will be called for units 0-8 - (detach_all in scp.c calls the detach routines of all units that do NOT have - UNIT_ATTABLE), as well as for unit 9 if it is attached. In both cases, it is - imperative that we return SCPE_OK, otherwise any remaining device detaches - will not be performed. + 1. Because DETACH MPX will pass unit 0, we check the "sim_unit_ref" global + to see if MPX or MPX0 was specified in the command. + + 2. Directly attempting to detach unit 8 (controller) will be rejected. We + cannot fail a direct DETACH MPX9 (poll unit), because we cannot tell that + case apart from a DETACH ALL (a RESTORE will have the SIM_SW_REST flag + set in "sim_switches"). + + 3. During simulator shutdown, we will be called for units 0-8 (detach_all in + scp.c calls the detach routines of all units that do NOT have + UNIT_ATTABLE), as well as for unit 9 if it is attached. */ t_stat mpx_detach (UNIT *uptr) { -t_stat status = SCPE_OK; -int32 i; +uint32 ln; +t_stat status; +t_bool mux_free = TRUE; -if ((uptr == mpx_unit) || (uptr == &mpx_poll)) { /* base unit or poll unit? */ - status = tmxr_detach (&mpx_desc, &mpx_poll); /* detach socket */ +if (uptr == &mpx_cntl) /* detaching controller directly? */ + return SCPE_NOATT; /* disallow */ - for (i = 0; i < MPX_PORTS; i++) { - mpx_ldsc [i].rcve = 0; /* disable line reception */ - sim_cancel (&mpx_unit [i]); /* cancel any scheduled I/O */ - } +if (sim_unit_ref == ref_dev || uptr == &mpx_poll) /* device detach or detach all request? */ + status = tmxr_detach (&mpx_desc, &mpx_poll); /* detach socket */ - sim_cancel (&mpx_poll); /* stop Telnet poll */ +else /* line detach request */ + status = tmxr_detach_line (uptr, 0, NULL, &mpx_desc); /* detach line */ + +if (status == SCPE_OK) { + for (ln = 0; ln < MPX_PORTS; ln++) /* loop through lines */ + if (tmxr_line_free (&mpx_ldsc[ln])) { /* is line free? */ + mpx_ldsc[ln].rcve = 0; /* disable rcv as line was reset */ + sim_cancel (&mpx_unit [ln]); /* cancel any scheduled I/O */ + } + + else + mux_free = FALSE; /* mux isn't free if line is in use */ + + if (mux_free && !(mpx_poll.flags & UNIT_ATT)) /* all lines free and not listening? */ + sim_cancel (&mpx_poll); /* stop poll */ } return status; @@ -2167,7 +2214,7 @@ return SCPE_OK; /* Local routines */ -/* Poll for new Telnet connections */ +/* Poll for new connections */ static void poll_connection (void) { diff --git a/HP2100/hp2100_mux.c b/HP2100/hp2100_mux.c index f341a51d..354ce3d9 100644 --- a/HP2100/hp2100_mux.c +++ b/HP2100/hp2100_mux.c @@ -29,6 +29,8 @@ 28-Mar-11 JDB Tidied up signal handling 26-Oct-10 JDB Changed I/O signal handler for revised signal model 25-Nov-08 JDB Revised for new multiplexer library SHOW routines + 19-Nov-08 JDB [serial] Removed DEV_NET to allow restoration of listening port + 20-Oct-08 JDB [serial] Added serial port support 09-Oct-08 JDB "muxl_unit" defined one too many units (17 instead of 16) 10-Sep-08 JDB SHOW MUX CONN/STAT with SET MUX DIAG is no longer disallowed 07-Sep-08 JDB Changed Telnet poll to connect immediately after reset or attach @@ -327,6 +329,7 @@ t_stat muxo_svc (UNIT *uptr); t_stat muxc_reset (DEVICE *dptr); t_stat mux_attach (UNIT *uptr, char *cptr); t_stat mux_detach (UNIT *uptr); +t_stat muxl_detach (UNIT *uptr); t_stat mux_setdiag (UNIT *uptr, int32 val, char *cptr, void *desc); @@ -430,8 +433,8 @@ DEVICE muxl_dev = { NULL, /* deposit routine */ &muxc_reset, /* reset routine */ NULL, /* boot routine */ - NULL, /* attach routine */ - NULL, /* detach routine */ + &mux_attach, /* attach routine */ + &muxl_detach, /* detach routine */ &muxl_dib, /* device information block */ DEV_DISABLE, /* device flags */ 0, /* debug control flags */ @@ -456,9 +459,9 @@ DEVICE muxl_dev = { DEVICE muxu_dev; -int32 mux_order [MUX_LINES] = { -1 }; /* connection order */ -TMLN mux_ldsc [MUX_LINES] = { { 0 } }; /* line descriptors */ -TMXR mux_desc = { MUX_LINES, 0, 0, mux_ldsc, mux_order }; /* device descriptor */ +int32 mux_order [MUX_LINES] = { -1 }; /* connection order */ +TMLN mux_ldsc [MUX_LINES] = { { 0 } }; /* line descriptors */ +TMXR mux_desc = { MUX_LINES, 0, 0, mux_ldsc, mux_order, &muxu_dev }; /* device descriptor */ UNIT muxu_unit = { UDATA (&muxi_svc, UNIT_ATTABLE, 0), POLL_FIRST }; @@ -920,7 +923,7 @@ while (working_set) { (old & DTR) && /* DTR drop? */ !(muxc_ota[ln] & DTR)) { tmxr_linemsg (&mux_ldsc[ln], "\r\nLine hangup\r\n"); - tmxr_reset_ln (&mux_ldsc[ln]); /* reset line */ + tmxr_clear_ln (&mux_desc, &mux_ldsc[ln]); /* disconnect line */ muxc_lia[ln] = 0; /* dataset off */ } } /* end update */ @@ -1305,12 +1308,12 @@ IOPRESET (dibptr); /* PRESET device (does n muxc_chan = muxc_scan = 0; /* init modem scan */ -if (muxu_unit.flags & UNIT_ATT) { /* master att? */ +if (tmxr_mux_free (&mux_desc)) /* any lines attached? */ + sim_cancel (&muxu_unit); /* no, so stop poll */ +else { /* attached or listening */ muxu_unit.wait = POLL_FIRST; /* set up poll */ - sim_activate (&muxu_unit, muxu_unit.wait); /* start Telnet poll immediately */ + sim_activate (&muxu_unit, muxu_unit.wait); /* start poll immediately */ } -else - sim_cancel (&muxu_unit); /* else stop */ for (i = 0; i < MUX_LINES; i++) mux_reset_ln (i); /* reset lines 0-15 */ @@ -1322,20 +1325,23 @@ return SCPE_OK; } -/* Attach master unit */ +/* Attach master unit or line */ t_stat mux_attach (UNIT *uptr, char *cptr) { t_stat status = SCPE_OK; -if (muxu_unit.flags & UNIT_DIAG) /* diag mode? */ - return SCPE_NOFNC; /* command not allowed */ +if (muxu_unit.flags & UNIT_DIAG) /* diag mode? */ + return SCPE_NOFNC; /* command not allowed */ -status = tmxr_attach (&mux_desc, uptr, cptr); /* attach */ +if (uptr == &muxu_unit) /* master unit? */ + status = tmxr_attach (&mux_desc, uptr, cptr); /* attach socket */ +else + status = tmxr_attach_line (uptr, 0, cptr, &mux_desc); /* attach line */ -if (status == SCPE_OK) { - muxu_unit.wait = POLL_FIRST; /* set up poll */ - sim_activate (&muxu_unit, muxu_unit.wait); /* start Telnet poll immediately */ +if (status == SCPE_OK) { /* attach successful? */ + muxu_unit.wait = POLL_FIRST; /* set up poll */ + sim_activate (&muxu_unit, muxu_unit.wait); /* start poll immediately */ } return status; @@ -1346,13 +1352,45 @@ return status; t_stat mux_detach (UNIT *uptr) { -int32 i; -t_stat r; +uint32 ln; +t_stat status; +t_bool free = TRUE; -r = tmxr_detach (&mux_desc, uptr); /* detach */ -for (i = 0; i < MUX_LINES; i++) mux_ldsc[i].rcve = 0; /* disable rcv */ -sim_cancel (uptr); /* stop poll */ -return r; +status = tmxr_detach (&mux_desc, uptr); /* detach unit */ + +if (status == SCPE_OK) { + for (ln = 0; ln < MUX_LINES; ln++) /* loop through lines */ + if (tmxr_line_free (&mux_ldsc[ln])) /* is line free? */ + mux_ldsc[ln].rcve = 0; /* yes, so disable rcv as line was reset */ + else + free = FALSE; /* mux isn't free if line is in use */ + + if (free) /* all lines free? */ + sim_cancel (uptr); /* stop poll */ + } + +return status; +} + + +/* Detach line */ + +t_stat muxl_detach (UNIT *uptr) +{ +uint32 ln; +t_stat status; + +status = tmxr_detach_line (uptr, 0, NULL, &mux_desc); /* detach line */ + +if (status == SCPE_OK) { + ln = uptr - muxl_unit; /* determine line number */ + mux_ldsc[ln].rcve = 0; /* disable line reception */ + + if (tmxr_mux_free (&mux_desc)) /* all lines free and not listening? */ + sim_cancel (&muxu_unit); /* stop poll */ + } + +return status; } @@ -1367,7 +1405,7 @@ return r; for normal character transfers, which is undesirable. Therefore, to enable diagnostic mode, we must force a disconnect of the - master socket and any connected Telnet lines, which clears the connection + master socket and all Telnet and serial lines, which clears the connection flags on all lines. Then we set the "transmission enabled" flags on all lines to enable output character processing for the diagnostic. (Normally, all of the flags are set when the multiplexer is first attached. Until then, @@ -1380,9 +1418,12 @@ t_stat mux_setdiag (UNIT *uptr, int32 val, char *cptr, void *desc) int32 ln; if (val) { /* set diag? */ - mux_detach (uptr); /* detach lines */ - for (ln = 0; ln < MUX_LINES; ln++) /* enable transmission */ - mux_ldsc[ln].xmte = 1; /* on all lines */ + mux_detach (uptr); /* detach Telnet lines */ + + for (ln = 0; ln < MUX_LINES; ln++) { + muxl_detach (&muxl_unit[ln]); /* detach all serial lines */ + mux_ldsc[ln].xmte = 1; /* enable transmission on all lines */ + } } else { /* set term */ for (ln = 0; ln < MUX_LINES; ln++) /* clear connections */ diff --git a/PDP11/pdp11_dc.c b/PDP11/pdp11_dc.c index b1def4a7..7c57773c 100644 --- a/PDP11/pdp11_dc.c +++ b/PDP11/pdp11_dc.c @@ -26,6 +26,7 @@ dci,dco DC11 terminal input/output 17-Aug-2011 RMS Added AUTOCONFIGURE modifier + 26-Nov-2008 JDB [serial] Added serial port support 19-Nov-2008 RMS Revised for common TMXR show routines Revised to autoconfigure vectors @@ -130,6 +131,7 @@ t_stat dci_svc (UNIT *uptr); t_stat dco_svc (UNIT *uptr); t_stat dcx_attach (UNIT *uptr, char *cptr); t_stat dcx_detach (UNIT *uptr); +t_stat dcl_detach (UNIT *uptr); t_stat dcx_set_lines (UNIT *uptr, int32 val, char *cptr, void *desc); void dcx_enbdis (int32 dis); void dci_clr_int (int32 ln); @@ -251,7 +253,7 @@ DEVICE dco_dev = { "DCO", dco_unit, dco_reg, dco_mod, DCX_LINES, 10, 31, 1, 8, 8, NULL, NULL, &dcx_reset, - NULL, NULL, NULL, + NULL, &dcx_attach, &dcl_detach, NULL, DEV_UBUS | DEV_DISABLE | DEV_DIS }; @@ -365,8 +367,6 @@ t_stat dci_svc (UNIT *uptr) { int32 ln, c, temp; -if ((uptr->flags & UNIT_ATT) == 0) /* attached? */ - return SCPE_OK; sim_activate (uptr, tmxr_poll); /* continue poll */ ln = tmxr_poll_conn (&dcx_desc); /* look for connect */ if (ln >= 0) { /* got one? */ @@ -509,9 +509,12 @@ t_stat dcx_reset (DEVICE *dptr) int32 ln; dcx_enbdis (dptr->flags & DEV_DIS); /* sync enables */ -sim_cancel (&dci_unit); /* assume stop */ -if (dci_unit.flags & UNIT_ATT) /* if attached, */ - sim_activate (&dci_unit, tmxr_poll); /* activate */ +// +if (tmxr_mux_free (&dcx_desc)) /* any lines attached? */ + sim_cancel (&dci_unit); /* no, so stop poll */ +else /* attached or listening */ + sim_activate (&dci_unit, tmxr_poll); /* start poll immediately */ +// for (ln = 0; ln < DCX_LINES; ln++) /* for all lines */ dcx_reset_ln (ln); return auto_config (dci_dev.name, dcx_desc.lines); /* auto config */ @@ -531,16 +534,22 @@ dco_clr_int (ln); return; } -/* Attach master unit */ +/* Attach master unit or line */ t_stat dcx_attach (UNIT *uptr, char *cptr) { t_stat r; -r = tmxr_attach (&dcx_desc, uptr, cptr); /* attach */ +// +if (uptr == &dci_unit) /* master unit? */ + r = tmxr_attach (&dcx_desc, uptr, cptr); /* attach socket */ +else + r = tmxr_attach_line (uptr, 0, cptr, &dcx_desc); /* attach line */ +// + if (r != SCPE_OK) /* error? */ return r; -sim_activate (uptr, tmxr_poll); /* start poll */ +sim_activate (&dci_unit, tmxr_poll); /* start poll */ return SCPE_OK; } @@ -550,14 +559,48 @@ t_stat dcx_detach (UNIT *uptr) { int32 i; t_stat r; +t_bool free = TRUE; r = tmxr_detach (&dcx_desc, uptr); /* detach */ -for (i = 0; i < DCX_LINES; i++) /* all lines, */ - dcx_ldsc[i].rcve = 0; /* disable rcv */ -sim_cancel (uptr); /* stop poll */ + +// +if (r == SCPE_OK) { + for (i = 0; i < DCX_LINES; i++) /* loop through lines */ + if (tmxr_line_free (&dcx_ldsc[i])) /* is line free? */ + dcx_ldsc[i].rcve = 0; /* yes, so disable rcv as line was reset */ + else + free = FALSE; /* mux isn't free if line is in use */ + + if (free) /* all lines free? */ + sim_cancel (uptr); /* stop poll */ + } +// + return r; } +/* Detach line */ + +// +t_stat dcl_detach (UNIT *uptr) +{ +uint32 ln; +t_stat status; + +status = tmxr_detach_line (uptr, 0, NULL, &dcx_desc); /* detach line */ + +if (status == SCPE_OK) { + ln = uptr - dco_unit; /* determine line number */ + dcx_ldsc[ln].rcve = 0; /* disable line reception */ + + if (tmxr_mux_free (&dcx_desc)) /* all lines free and not listening? */ + sim_cancel (&dci_unit); /* stop poll */ + } + +return status; +} +// + /* Enable/disable device */ void dcx_enbdis (int32 dis) diff --git a/PDP11/pdp11_dz.c b/PDP11/pdp11_dz.c index 8f237cbc..8af832cd 100644 --- a/PDP11/pdp11_dz.c +++ b/PDP11/pdp11_dz.c @@ -26,6 +26,7 @@ dz DZ11 terminal multiplexor 29-Dec-08 RMS Added MTAB_NC to SET LOG command (Walter Mueller) + 24-Nov-08 JDB [serial] Added serial port support 19-Nov-08 RMS Revised for common TMXR show routines 18-Jun-07 RMS Added UNIT_IDLE flag 29-Oct-06 RMS Synced poll and clock @@ -231,8 +232,12 @@ MTAB dz_mod[] = { { TT_MODE, TT_MODE_7B, "7b", "7B", NULL }, { TT_MODE, TT_MODE_8B, "8b", "8B", NULL }, { TT_MODE, TT_MODE_7P, "7p", "7P", NULL }, +// + { MTAB_XTD | MTAB_VDV | MTAB_NC, ':', NULL, "CONNECT", + &tmxr_attach_line, NULL, &dz_desc }, { MTAB_XTD | MTAB_VDV, 1, NULL, "DISCONNECT", - &tmxr_dscln, NULL, &dz_desc }, + &tmxr_detach_line, NULL, &dz_desc }, +// { UNIT_ATT, UNIT_ATT, "summary", NULL, NULL, &tmxr_show_summ, (void *) &dz_desc }, { MTAB_XTD | MTAB_VDV | MTAB_NMO, 1, "CONNECTIONS", NULL, diff --git a/PDP11/pdp11_vh.c b/PDP11/pdp11_vh.c index fde07975..903f2725 100644 --- a/PDP11/pdp11_vh.c +++ b/PDP11/pdp11_vh.c @@ -34,6 +34,7 @@ of lines available to be 8, 16, 24, or 32. Fixed performance issue avoiding redundant polling 03-Jan-10 JAD Eliminate gcc warnings + 24-Nov-08 JDB Removed tmxr_send_buffered_data declaration (now in sim_tmxr.h) 19-Nov-08 RMS Revised for common TMXR show routines 18-Jun-07 RMS Added UNIT_IDLE flag 29-Oct-06 RMS Synced poll and clock @@ -324,8 +325,6 @@ static t_stat vh_set_log (UNIT *uptr, int32 val, char *cptr, void *desc); static t_stat vh_set_nolog (UNIT *uptr, int32 val, char *cptr, void *desc); static t_stat vh_show_log (FILE *st, UNIT *uptr, int32 val, void *desc); -int32 tmxr_send_buffered_data (TMLN *lp); - /* SIMH I/O Structures */ static DIB vh_dib = { diff --git a/descrip.mms b/descrip.mms index e02bd0e3..569f86d0 100644 --- a/descrip.mms +++ b/descrip.mms @@ -189,7 +189,8 @@ SIMH_LIB = $(LIB_DIR)SIMH-$(ARCH).OLB SIMH_SOURCE = $(SIMH_DIR)SIM_CONSOLE.C,$(SIMH_DIR)SIM_SOCK.C,\ $(SIMH_DIR)SIM_TMXR.C,$(SIMH_DIR)SIM_ETHER.C,\ $(SIMH_DIR)SIM_TAPE.C,$(SIMH_DIR)SIM_FIO.C,\ - $(SIMH_DIR)SIM_TIMER.C,$(SIMH_DIR)SIM_DISK.C + $(SIMH_DIR)SIM_TIMER.C,$(SIMH_DIR)SIM_DISK.C,\ + $(SIMH_DIR)SIM_SERIAL.C SIMH_MAIN = SCP.C .IFDEF ALPHA_OR_IA64 SIMH_LIB64 = $(LIB_DIR)SIMH64-$(ARCH).OLB diff --git a/doc/simh_381_serial.pdf b/doc/simh_381_serial.pdf new file mode 100644 index 00000000..b1ce3d4c --- /dev/null +++ b/doc/simh_381_serial.pdf @@ -0,0 +1,11515 @@ +%PDF-1.2 +% +73 0 obj +<< +/Dest [1 0 R /FitH 697] +/Type /Annot +/Subtype /Link +/Rect [84 689 523 703] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +75 0 obj +<< +/Dest [1 0 R /FitH 389] +/Type /Annot +/Subtype /Link +/Rect [90 668 523 682] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +76 0 obj +<< +/Dest [4 0 R /FitH 650] +/Type /Annot +/Subtype /Link +/Rect [90 649 523 663] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +77 0 obj +<< +/Dest [6 0 R /FitH 416] +/Type /Annot +/Subtype /Link +/Rect [100 629 523 643] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +78 0 obj +<< +/Dest [6 0 R /FitH 246] +/Type /Annot +/Subtype /Link +/Rect [110 617 523 631] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +79 0 obj +<< +/Dest [6 0 R /FitH 124] +/Type /Annot +/Subtype /Link +/Rect [110 605 523 619] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +80 0 obj +<< +/Dest [10 0 R /FitH 604] +/Type /Annot +/Subtype /Link +/Rect [110 593 523 607] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +81 0 obj +<< +/Dest [10 0 R /FitH 368] +/Type /Annot +/Subtype /Link +/Rect [110 582 523 596] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +82 0 obj +<< +/Dest [13 0 R /FitH 386] +/Type /Annot +/Subtype /Link +/Rect [110 570 523 584] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +83 0 obj +<< +/Dest [13 0 R /FitH 124] +/Type /Annot +/Subtype /Link +/Rect [110 559 523 573] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +84 0 obj +<< +/Dest [16 0 R /FitH 243] +/Type /Annot +/Subtype /Link +/Rect [100 542 523 556] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +85 0 obj +<< +/Dest [18 0 R /FitH 418] +/Type /Annot +/Subtype /Link +/Rect [110 529 523 543] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +86 0 obj +<< +/Dest [20 0 R /FitH 312] +/Type /Annot +/Subtype /Link +/Rect [110 517 523 531] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +87 0 obj +<< +/Dest [22 0 R /FitH 616] +/Type /Annot +/Subtype /Link +/Rect [110 506 523 520] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +88 0 obj +<< +/Dest [22 0 R /FitH 320] +/Type /Annot +/Subtype /Link +/Rect [110 494 523 508] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +89 0 obj +<< +/Dest [25 0 R /FitH 638] +/Type /Annot +/Subtype /Link +/Rect [90 476 523 490] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +90 0 obj +<< +/Dest [25 0 R /FitH 538] +/Type /Annot +/Subtype /Link +/Rect [100 457 523 471] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +91 0 obj +<< +/Dest [28 0 R /FitH 547] +/Type /Annot +/Subtype /Link +/Rect [110 444 523 458] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +92 0 obj +<< +/Dest [28 0 R /FitH 298] +/Type /Annot +/Subtype /Link +/Rect [110 433 523 447] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +93 0 obj +<< +/Dest [31 0 R /FitH 720] +/Type /Annot +/Subtype /Link +/Rect [110 421 523 435] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +94 0 obj +<< +/Dest [31 0 R /FitH 645] +/Type /Annot +/Subtype /Link +/Rect [110 410 523 424] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +95 0 obj +<< +/Dest [31 0 R /FitH 455] +/Type /Annot +/Subtype /Link +/Rect [110 398 523 412] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +96 0 obj +<< +/Dest [31 0 R /FitH 334] +/Type /Annot +/Subtype /Link +/Rect [110 386 523 400] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +97 0 obj +<< +/Dest [31 0 R /FitH 202] +/Type /Annot +/Subtype /Link +/Rect [110 375 523 389] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +98 0 obj +<< +/Dest [37 0 R /FitH 400] +/Type /Annot +/Subtype /Link +/Rect [110 364 523 378] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +99 0 obj +<< +/Dest [37 0 R /FitH 244] +/Type /Annot +/Subtype /Link +/Rect [110 353 523 367] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +100 0 obj +<< +/Dest [40 0 R /FitH 593] +/Type /Annot +/Subtype /Link +/Rect [100 335 523 349] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +101 0 obj +<< +/Dest [42 0 R /FitH 582] +/Type /Annot +/Subtype /Link +/Rect [110 322 523 336] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +102 0 obj +<< +/Dest [42 0 R /FitH 289] +/Type /Annot +/Subtype /Link +/Rect [110 311 523 325] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +103 0 obj +<< +/Dest [42 0 R /FitH 190] +/Type /Annot +/Subtype /Link +/Rect [100 293 523 307] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +104 0 obj +<< +/Dest [46 0 R /FitH 639] +/Type /Annot +/Subtype /Link +/Rect [110 281 523 295] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +105 0 obj +<< +/Dest [46 0 R /FitH 427] +/Type /Annot +/Subtype /Link +/Rect [100 263 523 277] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +106 0 obj +<< +/Dest [49 0 R /FitH 571] +/Type /Annot +/Subtype /Link +/Rect [110 251 523 265] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +107 0 obj +<< +/Dest [49 0 R /FitH 439] +/Type /Annot +/Subtype /Link +/Rect [110 239 523 253] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +108 0 obj +<< +/Dest [49 0 R /FitH 238] +/Type /Annot +/Subtype /Link +/Rect [100 221 523 235] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +109 0 obj +<< +/Dest [53 0 R /FitH 662] +/Type /Annot +/Subtype /Link +/Rect [90 203 523 217] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +110 0 obj +<< +/Dest [53 0 R /FitH 631] +/Type /Annot +/Subtype /Link +/Rect [100 183 523 197] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +111 0 obj +<< +/Dest [53 0 R /FitH 556] +/Type /Annot +/Subtype /Link +/Rect [100 164 523 178] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +112 0 obj +<< +/Dest [53 0 R /FitH 412] +/Type /Annot +/Subtype /Link +/Rect [100 146 523 160] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +113 0 obj +<< +/Dest [58 0 R /FitH 440] +/Type /Annot +/Subtype /Link +/Rect [100 127 523 141] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +114 0 obj +<< +/Dest [58 0 R /FitH 354] +/Type /Annot +/Subtype /Link +/Rect [110 114 523 128] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +115 0 obj +<< +/Dest [58 0 R /FitH 199] +/Type /Annot +/Subtype /Link +/Rect [110 103 523 117] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +116 0 obj +<< +/Dest [62 0 R /FitH 616] +/Type /Annot +/Subtype /Link +/Rect [110 92 523 106] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +117 0 obj +<< +/Dest [62 0 R /FitH 380] +/Type /Annot +/Subtype /Link +/Rect [110 80 523 94] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +118 0 obj +<< +/Dest [65 0 R /FitH 720] +/Type /Annot +/Subtype /Link +/Rect [90 706 523 720] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +120 0 obj +<< +/Dest [65 0 R /FitH 689] +/Type /Annot +/Subtype /Link +/Rect [100 686 523 700] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +121 0 obj +<< +/Dest [65 0 R /FitH 385] +/Type /Annot +/Subtype /Link +/Rect [100 668 523 682] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +122 0 obj +<< +/Dest [69 0 R /FitH 307] +/Type /Annot +/Subtype /Link +/Rect [100 649 523 663] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +123 0 obj +<< +/Dest [71 0 R /FitH 410] +/Type /Annot +/Subtype /Link +/Rect [100 630 523 644] +/C [0 0 1] +/Border [0 0 0] +/H /N +/InvisibleRect /N +>> +endobj +124 0 obj +<< +/Producer (\376\377\000A\000c\000r\000o\000b\000a\000t\000 \000D\000i\000s\000t\000i\000l\000l\000e\000r\000 \0003\000.\0000\0002) +/Creator (Microsoft Word 8.0) +/ModDate (D:20120324142551) +/Author (Bob Supnik) +/Title (Writing a Simulator for the SIMH System) +/CreationDate (D:20120324142551) +>> +endobj +126 0 obj +<< +/Length 2154 +/Filter /FlateDecode +>> +stream +HW7 ?LLlo)i:AַlOE@/顿_"%J3^o$Ov;\~nNa0/ pk1ǟLƘxͧS??? 3?kZyq;l\i]Z}o=7a):Ҋ9hLf2.-9o> _.?QG0d|.4Ǻ|,6cf|rr ɽ|-hɂ##1 +8cn&C8=}v1xq0́rc5yiQaNT^4i->8D4P/i MLϾ G1=MO=ɩ2d}p3缙Q ;NmĜ?M4brfAԧ1 Xrh9) +GϦk\vL;s=I/'3 +*@hW i)Hģ鹣@>l 0a +'&(۬?ŴzW5?Mluש(-% uOښiV<6ɁN/ *% rqz&p8bZ"áNY=cd`d1[ *4B+`'6Ļ\㰬@9!mؕ|#,K@EV(#-]Ye-SC0nl"2Sp=iPVS9[ 9#YFĘ.H3;`̄X5-VA +-RPB?-Ç~hÏ +]= 1 +\UϠJ֚i`Y*NE鉭D/֔vORtJ9ZJrܫ<9mcXҾ@Wi⑅͚8n鲦⥲X*KBuQH"☻_Z=R4$"Xqy#o# h໲6mB:;,& (i;לnݭR8k+_Fe;0j r4_`VcιW\/$|ӊX= F$EעsRYJոoJ:VӒJKBpY Ggjݥ0zR.l l5_H51}i)vЕF +GCݫvTf.tgx=b*nk:ˠfGD덤SB{U4cS7\)YT3xrY@m6 SLBHCUo*Wlxa`RAws9vO/rSڐ~[9Nx5:]WKZc5KGmZT'{MZz4bCg!在 5p>%7Lgrn0N: ~Jewh< +endstream +endobj +127 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F3 128 0 R +/F5 129 0 R +/F7 130 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +133 0 obj +<< +/Length 2314 +/Filter /FlateDecode +>> +stream +HWn# ?8E*a}u3əنWl@6¿z٢hG$mjv]uNsys}e|}3?Lw__>_ڿ_zc6?]_kî?G+0O9 /6|f뫳?;5q"7n@ᆠ9 <ʛA׺] `㫍qÙ3.Mg/Iס7^MJskrrs6n^g]T#z " F+(Xj= A8]gh-dX% oCD e߈=#0?Ha +WF F"(im}\>?)#!NX2y-V_t:!uEU9I)E4h'(!+Z֤Dcѕܑ!Ԍ4.xs5T)Y +ũ]A,MݣA:)˄*ݤnnoư\fd q\n3bHm[G|>pHKӑJā{Q +6H`(#68ؕmx[ט!4" 2Y/6Ge- +i$uhut)ygP(՚M0}z?UwY$Qw) eF{3~?Kxnh)zتrҽ>^=Ydщ7(Qs(g6ɇcCٕ@7Fƚph>Jc)^_ (E݋DQhN>,w˜"[PQS|-ͱ 6EY$AV\EFǎ ǽ Jڨw_λkW"1 S.Eo&%K;y3eJ>עms˒5/֥D܍mp]߅| +lxe[:>UÚxWާVus,Ǚ!@F}iӘW-\}| tܓ{!fDv;Ј74vj%c(0NZ٘>|MI]6SUd^fMQGx :#U<3ɳVZ1ڨA irE)b\DwԶېE-م8C u΋@w}dZL|Neu)mxS`4ȦmU] ]--7Ս65]li U#.&qGX[ֺVctt^rS?'9ЂK8p~p;;%u! y0ϝfD)) +xvt|މx> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +138 0 obj +<< +/Length 581 +/Filter /FlateDecode +>> +stream +HMo0\JKwfɵCJn,'H\ʁ;vUT;87s\ao_چ~&2F7E3o[8}L̟CwA#uh qxF@xA29g>B:Jkti` L.MNߚ˥8?;rkTq"I+vՃ`WT\+XP`X!(f ζ aBB^}c_,K ɩ{YAeyY([lPprr[uOgj?AJvheX_Ǘ\ju"ALKAK@.kMI|qhi=$R](NWxXI,uh޴> &Ɗo'r֚m^:i@p4w~& F^Jd^qthRm]G]4 oMJh"+KdUZY_|d}Ƈ)JEJ}j9O/G%z\ +endstream +endobj +139 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F13 140 0 R +/F14 141 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +142 0 obj +<< +/Length 3539 +/Filter /FlateDecode +>> +stream +HWM#A^;""l58mKr?͖41 y5&Yzիw>C:w'.׾aw_ _[ϟpz'_œ|'Ҿ+Ӓ8ǂqӚaKbNS5r'S>s=rlQ@krzVVѕ/ҢwN޺|/o^.xj3W.Ȋv]KSU2Z^Pyٗ[1i$8<%+\/i{jU^f;dlm+ &1^Gx *tT:cԝɱCW0A\. (U*@'Dh7mq٨UOTp{t {9UYIp.($ڋ~wUX]"BJ^ AۼoC *LI0u@ s=h7Q[!q(J!%1XOoY2!PȮHSbrju^~ҁJiT;'y33 vVlAIMDwP0,:E4 nz!eru ^y9ZI8@ӹy w7(BmZu0i_YͲxbG~<#L4ʉJ:(tluhS}+X}˥GjyT@HL(j?ʶiۺJ" WyS˄RFy]V͍ ҷbbt4+heз0^OP.y]󂍯wMG﫦ūhZe(SHfwrt0%dJ Y$m +a:z_UJ+ z`)0GW%Gzyar85G +$ }zt.Fb*EKr5ŁS3}xbVwvÒwR)r6 Oz38y$ΰ˷zCgwrL`+ {ǶsZ⠃x_V(`tyO|무 \x5/HU + p@A:F%AߪHi66K1V+M`9C%~y)*Β$Dvmz\V׷Iaʪ8)!,:x9*=b>Z`2r"ލ.N0)Y@}a1X/5GOё*Y0 +h +9Kݔٸ-Ƿ+-ĞiYFƐuy CihyQCA'Donlz+)ޱ5tN5y]Զ39CP9A}Қ#QeJ=[7"_2Os~VֶF[69 ӆ^x53]0+RuGehP$J(.J ok\sgJېaf8hlO»B2>+քM>4Vզ'3Jpt^yOEMt>i&ShW/hb(NKS[l igg=ṂNo gkoܒWShU; sM;Sx +q'jK` #}I6c&5y^`Y1N*wa3v}ԙlޠ+xҥD]6c y=2TB;F[Բ.a[rC #U 㕁-|R5Tu3.%C_% y$X4~ +(-Vk=C,@y$.Ymr\Aq d2<{(' hܘEoSG'-j͍F&# }JduR-0}EnI""4"`ޗ(Л!ƀųnlj-ƚSaIS߶ +yUV5 r(dkChFyӯӚjLd@э24 ++Ǧ+c 0}u_="Yk-mq +.͈ )2pAc[l,𔃹 С*F8f6Zukt*iC-kh/AvECBr)Ošaa@( Q˻۸ +'8ur2&׬HaJ4\>=-ۃ]r%"Pmfm1Yam mqoSgی寮Q3\Ut¹0;Y3#M.B7&h%bm:˲Vm%l:MTy=`t۪ w_ +f(rc 0 l(`y& E4}+xiWCqT@{aHq>!eE?X#}|o)_4 +dϚO"ӅZZ~4#eG,)\;o +DE]OLZ'ړ*b$A.I>Ns& $#Y-N5^B&š2xܻ8X68 cgMNlDSyf-Dk=?'Uc IJ,bSC$%93 m;y@<"=lzx W{{mT-U*pYَRGi^dxGgբ_}+{?*H<_>U #eO'6W3Ty[ ö +endstream +endobj +143 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F16 144 0 R +/F17 145 0 R +/F19 146 0 R +/F20 147 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +148 0 obj +<< +/Length 2901 +/Filter /FlateDecode +>> +stream +HWM0Adj؍ D7+vrI!X_lHcg0%5W^|c;;| ˴s<0fiw_K^/;9t87^O|8 +OCS^Pv* >~oBw巼[ pH~ՇpG7卲mZ6 3X>3p#| .s?CBXx X4[,[W;%OI.Ni.1;_uc`tb< -k)w.H!0QR?ޒLd,R[Nr-`K822q.| +%|Zn0N *6p‡F թTjUʲ5l!ҀY=p |=<$n&qrJ_ODO8L/CNSvkF]9u!jJ$ZEoAUźIZ3FϲvznSxyUpn{H*K} yWyIk=2" y6f4U׹ߘ~NwsQĶҴ>|]ӑbEf"!dD$MdC+[gdEL]${mZCEAT + +5KLxTķn[q,gz='WN#W6pw~w.'bUS-Ip葸" u;o{X/784q>A`L|§S [Go1[W[zKeC*ѵ>sdЀG/zM6)'% 8xSh:=+yfHxDU+E;BHhFF;yHkbnzM#GWp!>U tKOü鿞sMlU.qCGauy1j3a ~"|Byg쩖nI UVaen}e-)zxιO<>cLhۯƭcwIӲTe4Jۑ)nr5l5{IU,ʡ +l{OUBhZЙpz:TOW)oJUeQVAu(j +/GF% &}pF`䒸NoywDWW8Xƞʱ&?yﹸķݪBv֐5 o8"FNN$m"BXxs{}X8V{ ll%@@4VT,THöjds[1G,EZmLoSOIU?)OjJkŴCƄoxQU"SA\4j`0{wZqZXevAGۇ!"ҩVJTqPBmLپ/$9Sn < + +3B$I`/GSpm% +Orl4eY@yvJJ6fI+!?ј+Q(V;Y7Š^{妏fm,7=6 -S_&o~sh?á'&dP$'9g`џ:'bygƕ}qyx@wDtk0\5 >ged +endstream +endobj +149 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F21 150 0 R +/F22 151 0 R +/F23 152 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +153 0 obj +<< +/Length 2752 +/Filter /FlateDecode +>> +stream +HWMoXK=NL2foܜ@_~gzKɀmfg^zx}n: 1<ff9o?W]_lO?;Ms\O kv vc^3ֵl+|rvgP~cʛqttM%h\!{ڛ̈I4ra6> -Օi[%յT>QnJ.]A^0hBU> .R+ѯjn/QVa9GZq>[0``O.Dn&]+V夰35hD|9`/emT+b|t<w@P|K(0!x]9pTۻsV/c=[3&>L!6B-L3,TlL"ᦽ+TIp.6T;Zu߲D^Cunn{j}ɋۊ :zJw M:f>= ,20+ 풊DȹUsF&ꃔm9o6Pou¾)*HY4T͡W[Wxq|"'xǽN\J=6gY+FO'-U8r1qM(J~qwhbS BVA:mSzB·AH?N1LQTg O'*7W3` -QcI"(MGT-$t0sYRR0N7JzmcSRxf%b*؉ R5P"G,{5hH%`S +5-ܺ\V(6Hi<fwv}Jk۱%Y;bk @QgFR \z / +XS9ZVًSؐC8q*8-a@MͻROC9w[N> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +161 0 obj +<< +/Length 3500 +/Filter /FlateDecode +>> +stream +HWn\|XJ%ùn(8q73Ol _~җYr))0]3]]U勛1/qݹ_rtͻi[w|5ןG_Oy戀xbLKz?}Ho/ҧOz=ȾyQ.- >-zg.˧tw"/Qhf|d>*== p 7uY%ݕ}1lH(`rb\u_/m0X(X3 u}ߵW{fVֺ$K(\Wΰ 5.kz)h +p4XiPvm!y&=!ǻ,χ='Ѭ['ZZt젍AUj|  ۼbq5a)5t%ٕcE<?}Ik&k9oc+ۤJF"1l[":^w4,z!>9:ipBfg2&7yY;a]ivǕW:O+e/7vKF,w +@jz +|m&6A˩dxI`^{@ߥYGF3eMBgX5k}qcx׏[b$mJhۦ^_*RRiXSs %/F%k ֨J$L>|oPg"e FQEq֚KI[%ĺtU1IQKtkMpA +-kvU%)Tg<4lp>o6~.+aZ`PDMpyYS#T8},ݵU{ԣ";@KTOŝ05{;d([l"O9 3: 9>짡{3BiKj1AsTϙy7(}i9PNL9s1 9#nJ.U8dPCɴUJ2Nsm\hrzvdZ*G :Q!$5U?#*Ħc#Q sj?^|_b5s Ci}E쯠{\jV?1.~q \Sl*oh@C,ske e7hTʹa(%ԉQ,gKQmi]b:lR'BdW5!V8g-8xҜjVhdk6C]ܫd%_?N0sbmJ;9 F4n K;'ڢ<3Bי>DGl6XW +ˉ#z[YNF2}?IE{[fvy|FrCtfv(EVh"!ab5H0/7}'_ nʰoH'Oee>M*OH[uŠA% }qq Ǝ>cs/#ȴiqp ^[Ab=+%8qj큡Xj˵.ہ+ǖW h;`NDmmZvgZvƨ*>6w_ԄXvuFQ_`Pb7K?5Z@ lkj[jf.)4iN LFihb5Yw٭2 ¸0meJ̲gߖ3 +3?q Xҫ a# ) ˒m:3%=aCE}ޜ/#߿Vhr7xjɫ"XƯ|ͻ w%nl5^ Ioo`.&g#KDՈo{ +ETV9vz:B[!eG;7i} 9آiL W3rPj ;٪y!λt_^H4vqvA!TAZ5)tSiE!v)\Ռ q:%%G4 ,!p|J =:xkK͔٫0ئ>IPf:Cw=~b V-blYǴ*3Aӆ +Ӝ!ϭkuQip*8T\-Z0#k(c=UR])8br@[pk5)-ۓ Uv-A`"CTh <t#Q(f_%>B*a֛s%1b/;)S{f^{z󕡣6Xb B'ܦfo\&S@cI wN<_2k-b4#8a<\*^<Ɏi_ +xP xOK#6:933b-OHN6@H1a$l ӶGs7ie[[P"x#]#ƧfxP1-e #i NȁBVc驷` s/PvZ!42XsoGƤS KP[ :cݘC{IA`"XF`E @mw-A ^}KfƺQIӛ^f$ȾEjV"KGOp3wj "\Wv$5U#-{!:/ !o9CĄ=gL eES.FE=D,p9 Qrc"c + vWj3HH*I1k`@/R߇gDa۝LX04F`aO a/Fz!'Wk省aWe0V;XnP`~E)B+Ya6Oq)Fi-4r2: 9b +5n#S@;>{6?|[0(IKi#Dj0}`XىR#lzCSD -svUj(;l|HT("mœ|i\d7_:'2gs>n $HXV5'X3Fk"mZXm +\DIZ [&D!kR rkȕ!6ˆPFi ay WXp 0}U +endstream +endobj +162 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F27 157 0 R +/F32 163 0 R +/F33 164 0 R +/F34 165 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +166 0 obj +<< +/Length 3230 +/Filter /FlateDecode +>> +stream +HWɎ\0дiB󦖷t $ V:}@x}גYYKBİR_vvw|}u΄un='7N_L~Otwg>9|vsnMkß7?/[|2u{.npy7ZNޤ']`֤/Ä߹5Gn_Qdyݝ#x̍9X­ST~u~N˹QOݽAOY.')%< +̈́ݜ 5.$^>O0S)֐xm᲼ۺp 秣Û7 &?n܃s[/aJfߺ{Yo<;//;Hrz7R.H+s&R}{COV/jYbEGN0 +n_ڇno:aL;C*P*v "` Zhh֏M,)^ hI{⟭z 3NMY.qp$ 鱭]yt>wǑte q㹞7z`i+d]Tax4y?B(K2_ȁ5r|G?Y5Fђ#zͺ5+E}e0 +^͛ui٘P%)'n53d-56'.r\q__Y3_8ߖUxN͑+;& +ޏP +3w;oK@ tk +)}A͇i>|s˓uR#^|0uk4n#G)kf>8l.ò$~0))ӿT64/!dy$',k_&%-Jm hS}Чe9!hD +4г^!T,}VxhJtOYzLvuޜCc^ ҚB +x71BXޘuxXioѵ<8{ЧtXw0sGnuoX {0FQ5~t]Fg & +9p}WRSs'7d99[i8lrا?5#uű@T![īFlSdN;m Z7o0N7'{TlBtRj*칙1J?u JJ/P(${v\ ^f-Ã9W<yҧ{wŨ<<8l@lNkUN߉_LFNv&%2p?ay5]߈{|diwq٥_fs׃ai7NʊPFSI'{D*r(J*XԔ`<` ػWV{b|B =p?$b[ b4f!pcqftuC=UVvCf@QKk +8K'q׃aj%׫-Wl9@QJC! +YֱjU)Ĵ yZe +M82QZ"PVӗRGْk\lDc91Cz3{"fp 7 +rz~=H]i7ELMiXk€GJYr~+1t= qK^VzqUWߒ7*M*zfո1yEb <8;Y]4*`BoT[m]S~_SЈi|`dd7;6V\(|lxpWL>N_"b @"Wڒ~Yu81Hzs {k +7} x.6*PoeX{ +W}2Ar +%҂h/ό> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +171 0 obj +<< +/Length 3343 +/Filter /FlateDecode +>> +stream +HWMo ciFZ,?fq9@tN d{I&aHnYzޫ?<82\C%|x&9Op7Oa!O7LJ5q=^Sּ1~~{5Ĕ3 n7S|?_/1Aa> }w 0-S\ż^?C~ soRʣ핑K^\ad L)w,o #AGYd j[bn-P|۶׶ld(,^ +^ݢ$DΔP{]?xj`WC)wB娒HL瀯F~%nOqHl<ű&+ +bRZ mYKh\>>`vk5f\ѽBZMa$.f1'<)?QCH$"n\$I)j>Fp*z! lW<3 +nb0<ā ; ܩׇS]2Z(g5Qo:}@KJY3Q6:\ƴ9[CY=t@qW͝#ֿ?5䶥08SR 'b˪$eponF3)rIY WILZw2TxN]L$X^ EK61oM%l4ǁԋ]8Q:9a?U<]ժ4yѵ"X@0$)}\FГgAf^Im0gΊ>^CGE]O5N0%Ԣ| !PzYߢ +0ޯ!yOϑH5=T@v c-+$KU9lwήbKe #[!POdK +5Yxq*^)OC$mx= 0}XblFYC]AP(sWV͙8!qt-[IL֨{ \Edy#&IV&hmk%vSV1mgcQE6a;xf&SDS"3IGV{9k;߂AP'cBzG# _E1*ћ!5y=3[$|;2SRgV+1+L0O!#öiԠНmwζ#igں>3Ba^e@>k}~ -ߩ/W@U ;4ojdr8O5*TYI;T9[|@ݴ#گd6' 1 )(v nޟ\J4uўpeE{dFtg0 rU:R/(7,̻2U-j5dM4BWȫ9ʺffjbu/}Y[LG{1gO, mc;ގ8"&eLJs"#_tYQqwmak,<ŔSz"`'SGmk5V K;@ f:%b ]/H &/UhqۚԂꉞ8InOt@gwjG 0`Vgs9et +Tp~})0S5r-FXDˎ0~I_DHbRiwQ6FQ}wDR1J^_T[rB"^gK &+`' +N YU+I tzNqFH$4M9Yd9jm: 1TưS=eW@,a Alk1xTŝVu Fe=X wjI 恱HzMJg_S8,Wq:]b-QJ[-MQa=qɮPu(Tj]Of݊jZ4歯+dzgJr,<z!b"If}{Ss.}@LuUqV.:ؼMG8! Eq=`Q6[p-:<]6YZ߃%GϽܔ!gT{SR^˝2(QIZ2pw i/\A3ݼ*r~ëh^}`)[38Ԃ@ HT B ?$R:;f-6ݎ^w:`Sj{B=K%#DžƉRoOTVfWe[+nOwUQS!&5Qēڤe{M 8ylO2y?k ^z*)4+cL޵:3*AyjsiYep Vx> ǶD$jrb4 D]4kAΝ=(5)׏ ӫAVW5=FGzJs"*8(ގ<]Iӥ:qQ*r}49R>xpT{3L)`g*mqQ?oT +endstream +endobj +172 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F27 157 0 R +/F38 173 0 R +/F39 174 0 R +/F40 175 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +176 0 obj +<< +/Length 3699 +/Filter /FlateDecode +>> +stream +HWˎ$/v/4|UU7 /I+znj X],2$gƒ uU]rpu\y?7疛 .7|1n.H?M'7ooR~O(l9&'WڮGlWo7wAS,\Η@E'W_K!i]~a+p}կO*Эqs3)x;Ij[^L$3Y'KtCr1jKȋ~)U(լeZ2SZJJ.Md,jmKW +/wkavKgHqI4%TɰOaVѰ.\f@53ҼU ^3Nc(0RZa V|:4Kz߿+=9=+1)W7.UxC^cVBcYlµJޅZ ^LvʽV^JHhiET{,< Jژr4S T[N/G +uOmd% W0R01o{3:|TX Eϒp͌xQIyWe`/n^b<_j[9,X)Wfc׵Kdf_)y4j l1z~H͈ۑ jr}{|~3p $Df_F5hF䲗Gm(tIUqX0ER 2?+PY(|ё.7 :ޮٸkєa# OE.x^U HIvhCGXMvuȹ|xC娠h`/2JeDFbZz)D}r8FfJ, pj`^']jeXS=X҂5ա5c0.ҷa鿉C(E7 kY h<3\ɨ|EZjwκr-hVbNZ v + 2}1I s,@}Ѻh@>C1E,yJO nɌ[GF<55ui)ƕפoN$eV!ɭӜ}/Ȱ(vVG*PB#xpBX]R")Xŗ@\n(X~c +^?N|#>Ǩȥi˒xh`-1⪨uK w,,q»hփUN4;ؔ$+5ga#/duυcrm;%I 6˾Rs7 +3w50PV'Y{J\jUMXYoFK#f-su-9gXOP(Q/GqpyYGtU0B3ZX`f0fsEܚ!1݌)bL#i'z, Sφt ̿+ |h.mLǯ5hRQ7=ʞՔ&nrh2q۰W8 Ŋ5ߩNTS)čK0wҖbQ,> .k9b lBܮ6hwj\{mucqYryӌ$~L~1{}H Q1hHʔLX5q}/EX3:da&Ta4w<]ucNj egNC?x)iZ4E WɎxXJSRYuv8 o l1{~Z gJW]В2ƍ25@wϽv_ha&>Hۢ5-–ZNnfQkSx{`Bz2Rgc\&K!Çtzz<7Z_w8>Rӟ`?+'#,k-Q|Rt +\355eKmj(u~}e.xSߧa/{ф1ձ[e:_ +5Β\m$:3ؽe] !8W`aP .dvr̞d['?ܤ]]&rNA=cZ(3.Q쵏Wmƀ]*xUARxk/0(~s9&zS> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +182 0 obj +<< +/Length 3685 +/Filter /FlateDecode +>> +stream +HWɎ ?ju%չU% ` y,>oO<s53Fd1+32{/zaӿ^8ucҿh6њ9^0^v/_|ڝ'XKOܙio|.}u_ӛ&x_r'eu8'`ZhҶtq'Q 6qڱ\'_S2=BᏼRV0ZVL|qM}^$SW,>nr ~+B~SƘJy5`lxt 5Ox.k ^(tazǾ& Fb ̹XQkrԥmc)]N`!IVnJiV^&u%{LFzT$8#.NX -0H2SႪCqCW)RRg`<$SxtAdSL}}@jQE`òxL᯼abC)YElc沬e0$U⤎!4=L2Omq-OMbS6*\ W?x{THqyWaAhW_H͈ (D?r^52޾6Z©:F|h~ŝhLwoo$WPWf{&ɐ[bK@}}ת3(zt3vtSG̏3\.t=8@!qT ;HW1VqpͩAZLK +%Ȁߝ{#A Ew"YRrY(N98pU +o[\3fg9ڠpF.H_`d)oQd5er \-} '5nږs<.[lkrĽl s:7z2}m#*f%D+0a@DXoA u;5ܠ'2n_JL&t$Wv@xّG0*WL[.-}]OSϼ%s8i,`=߷ܡ xe8cj2[iww吝Bو`>lzMyU}ÙS\&p/e9wbnw#sx+ κ[29zfCk! søa*.X:A,^( f34ؤAMC +>PUgPX!qถPʇɱJ4C2^f S1D#wl l@ӻm#XHp5LHT'՗c* ocfl|iL [6\8Z= FW)mɰ7KGݵֶb2$bwa55Z"!p6yĵ\ފ.F],Ljt7Nz"!_V +lHfv4=wM 'S^.[tj~} V>iNQdJ~[xo +A  ߅~D\gK#&FTDeD݉%E2)0"bgꃏ3 w4]44$U:bT ω7NS#ħԩBwrUX))q2P@"^ތ@@~'&>>ԸwP(Ȼ6pJEP'5s)z rk\R;LKO84ˡ^z_S)-bp#`X"IJړ}:iTvF.{r2{6?\d$-gJZD&LgIp玨p~8MuAAtpv[aT$ zܑ^3nViU6)qlU}7h;1uY8wW{EYnq{T2Aݘq\GU.>̩g.=lDצF(7OhF-(anׅa `^֣p K.%Pt"cڽ vc ת~[.x#HAcVG/ku2`"c~9(MEWy CѽpJi`ĕ?qCL:%|&fPeP2e\"*LH4xZ ETmvD X.)8*g#&Xs *l,$NjG֑ Z'Uf&u zUr;v[%a"t9cw'|5miXsm#^P YLQNk|sfE%KQ߹TP!=tg!ODPCKa÷v1U*xg[C>mQAt3k'@n: }58Dh~Yz +endstream +endobj +183 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F27 157 0 R +/F45 184 0 R +/F46 185 0 R +/F47 186 0 R +/F48 187 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +190 0 obj +<< +/Length 3245 +/Filter /FlateDecode +>> +stream +HWn}Ȥ!6k.FєZpC3,Q s`tV_2ʛNR;۪ycafrd=tE*E$J"3jA#3)J9 H(+s!!kxXF;o F Fꚧ"zIQJ}JK3{{`I{.Ԑ#QM$Q H@9JXdusQ֤TC*_1sE{i-kjN{]FpZW))ͫ^;f>eH*)d+^N)'77c_b ^tkP74: ٷ(X6c.dYeO+f\_v=<P"C{cS뷘nύ?y~iTOyd֠Wep5K+ֈ^w] /n׾]#XF0 ߮D<\Ď |dP(wLYRNC/~Jk./{|~"uB+fltjmpqz2;v +v^uJmso_`PZsnvkes졾b( 2 X\:vtCG=!sv9 @ cBǂd~NFcăcc /{ H@ c9x5\ WO~ TyT+ !Iۨi[MTru I? jhuھ9D?q ++y /HfEwyc&l;0HN +IX*=Nq`C"H'U5>pM@K,rbIXl)9NV_X| +YɗVofyug$V'Q @0;d(Kc.ڌ'r4J]katAxr9"'hv +[Z'#،zyߕaf`k~P& +7M?b8je9 BC |)?VZw;Ԗe[>  KNGR*{c$# EmBE˕PZleqm,u[*~u,iA/fJg!ob(? NG]S7ۛj;O39-*RXjv̀BY(H&S;q_?@pB4Utue=P VJ(MkzPCJiͪ%T h#mN>B!w3qeX+{Pt`x-UơK}q7yTPwBh {+nw$p 0=lZw%,ܽ~Yrz Amo$^(ea4j—<ɫafC=y b +؉KS ,&t +P ^i*eJա1kZ=655dH ΠsFP!d +endstream +endobj +191 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F27 157 0 R +/F48 187 0 R +/F49 192 0 R +/F50 193 0 R +/F51 194 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +196 0 obj +<< +/Length 4057 +/Filter /FlateDecode +>> +stream +HWKoX3vWggwX6$ ӏzv!Y r9;]]G;{2]֝Kλÿ\??_WGlp4ytէ|.t>.}3=Zҁ]px~|X|b=U8]٠s.}m{gk'䋻0~^ +I؟r.(*3tpl  m{]4+QO!(~FmRV@C&30CqaS dʛvb Ч?f /lZWY,z%#4^Sq(Oo 7p]A b mfo@R[ii{-Qʈu.i,<ҮQ +ڌ-g3+AQ>2# P$ޗ!&w]{avpX8}]-:!W('|{ +|f\5m6TfTd۟h_DW+ul[Kpo OVÊtVZJB#^Y8:%ij3fIͮ&tw{^%Ɛ]tR'cY,b9;%ۦL+ @j,mh̷6hIf٣|v[KmC~˴b/+LG0NDX$M @;ݜ>$F&:咝o#,.(iTK!:6SKVE-B ^. Y:5V>\%c{n!S/:8ts R-T.$v,]wf%!aB[}4 my,|>+evk!K /EӳLU ΪCooN4>~\>]ZE~ +~SZRUg{ap? b/Ƅ9wDbdz-,f4.w߅b%cf=rheJ[QV8 +D*jгC]/B[^&_  A\f +@W)V즎l)D}0[ejr3#)tLA2u-)R9YfdL~z qA#0Pm26A5?YF9RߨkrumZ^ׂht&H;¹S m@S hԤ핁\?W12\>5VÑjt7|P9s2BV 5S6f`:݊Hxn:&) D+)H|F0lEAj0 4M~aߪIu +-|_ -!vB`B#}9^HP̨їw@_i psB4(ƙcv:鵙qFF;NSeM5:N/{E̥?T Yfw%ODb"w^\f Jߌ+GRAأNϋ~ѨW/<(;WL&Vc 7:M% ]6kHDL-⧦D/ĎJC^ +#oі2R,|(O3 `˄NSP!~8 Irw*&t#:.$AZdtGж6J=DY4V |d1L>"N]Nj&h}f|*CEDTFZ.B!Rui>[yMJf|ji=)IdȞ;?MgtÌPr ԫ}n,H +n 7+5gۙG3w㈪Rn*)/iQuG /EM ؚ ֩/FPo?_':" 0% + +6Zb tcp.N-j"rע-Mj!aZ/g?^5]r]Yg>,RqZjg\;J^ڭuj_ϦVgM!d+.Rnhu܌2Ry3mۥJEzN73˚꼧y%R4˨KoG| Qt_yPpYfQ~- 3C*.e`fU&u)CF@BckHz3MaxDnzN?S'qWhkn? iVB)ʺ'> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +200 0 obj +<< +/Length 2959 +/Filter /FlateDecode +>> +stream +HWKo$ h;N]ET`͝S,@.a~ %RUe!vwWǏ\_=ن^y}??~G/2w'8l _~IN4<]_h⚼5-w`GXs4# _'/Nt6cM=b|Ca)٠;ot>7a4 7<ЉgbgpW/cKLJ8&ߓ]!-wߖ]emL]9¶d8q>]k&zPd>lW B[lfr7GA +%=ec'aO~HSBlP|pd{SӡiYdb @ F(s`h+ L)I>ELh+Տ$>Tձ# X/w@+ dE%mAm 2\#3 ёۨX)Zz#J Z˫iv4rԽӅ>!`kVt>>>TD=|ZiDUlDyy"|Rt}#_sO(@ 6jp4zPim+ Gj"mʜVO9r!zd^MY!ЊyXڟK, HAg\0)nzDH | Ŷ/6W +9YpVW T 7ƆmH5C:54.ey1T6, jop5y +13kbYmqE)MΥFTz a֊tv^T0dj"̋©AbK cbd\Q!E]k\H[-a; }lZҩȅsEXkH+mMJqCNԪZZסϊlWWkFdNEL#U@ADLk*WœqZbLsONZT;vMUru%.""Tp %0DU"a TTOa}qWq @/aGm,]S&5ǫL-ǭW6c k;\NWb˷ *Qǚse8ȤlQ6 6bUeJ溇gc3.Yx@ _\ƁDYVV_ ),Lgek&"Dڲ7T&XW괵UXeYY$5Q WֹzԴrsq_dUTgkwd`xZ;לv¼в]e_ ;p& Ţ xb4: +Ro3sz|^P&֐ݜ|SO.\زwvdStb.f|,˂8{MB@®6.k_BϖT*35X4#B;\;G!K@eJAZBKA.ZZaI O7 ^('vgxqMPޛ B+2Tio7oBR?[s@i]됼TV| ![@"2{̄WƮ5\ طV%ƶhTfz.me TH̥*hJ.39J{U]2-.6L4mSdMMVuz]5{oymF(쳜?vz{ֲb76łP#ةrD>b,Hن؏A.["l8D1+9mSHL_9c3wWſ8b5&WdY]KlB^rBBy'"[;7mC|(kE +~meƳk'\m?MG }i!w1RD + 6Fׁ냆Q1ӕjSxqɮ9>G(jRle#WK螇}0\!I4KGu$ђ)T%-_XdnWY{w9B:{zv +;(,tRucVлIJ +S2kPz1 2hx rV",LΠLw0*ZHM=V+ ;Y*r/ݏ K74w%5/!bE 6Itɬ=:lZVm lea-$[!kmUr6PG'JFTl&Qm肓F9TP doAV }։S)yGT`?.j͠JIGUAV$,+0ܭs邇VP)X OyjVW+HغS&\,1'H R K7{7uR - +$,嶹ۖzVwj&ٺ.y)TKSPMr}, +endstream +endobj +201 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F27 157 0 R +/F54 202 0 R +/F55 203 0 R +/F56 204 0 R +/F57 205 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +206 0 obj +<< +/Length 3187 +/Filter /FlateDecode +>> +stream +HWMo i%[c{tƹF{r +,VUdHV hW!m&ڦ±9 *<95OA<9c-^hfRKY`w۲] Nz6aI/ Q) (A+%^Fahj˝l>#<| G14,r_nӇT>}ks$65~ukK,}{)7SQn/N0L_W`XM )ZGdI}c-yY5EpxĐ!O/X~W#8X&WFu1](ji,LEY0tq_d +bz|*{z"/v(Jpn649ӆII2?>t膙j12K `SftwK| Aq]0(%U&Z8M-R+ΪL0kF*(]O ,TÂXwK@{fG~SKlb#*]b'#\ai,ʺ,mr4Ң :NF3Ɋrj0|Ŕ+B0+_Ѹ2oKnjX`*D!DzKH  5],[FSOi.eM: +lɁ{*?/qq 7(h#5Zuaq=#i8O]Aɽ>+dEYޖ4|2?OkLkWZI$Tb~弖VY(c ѱ E̴խHӴWрFSKk + ]Y6wZbR~wňiA6M+;kUd_jzv.ښfqj3ʥ2+kޅq:Ȗ$Msxˌ\&IǓ!_IC:XB~;{GE͑gcbWs,&IG' SÎU פLsѰq5 uUa@rZ>Te (XX݃Nuo6ؖI1{lC_N2Nno(NF5q[}%pjVmAvvFtGs{.? ZP,{j@*Nr(P\kILVF:O^46TE3(y#V 9A*1ZՔVEa;AM˪MxҟW7h\0eg%ā)˧ڜ#arl>ԩqlmV-Iǝ.g1&qgu_y}2 D^c(.S{>kG >Uhܺ] 15lf187i22Xۣ,RWv[z( 6Wy=W4iq +*Kn{\SF[|)[uTqN\JᠯYjQ4"' +>L녿:^M8R/9+mx:Z쌷 rMP>wY[A#ꃚ!j S/): [V뱟NX-QbBK+9qq ʦ |!E*6~d=\8 #-4ulY0=zL71@>Gsc\NC&邯6 Ck>Fב@m387+ U9MGU\\u"݀MsjPayVg}6 h)fkQ@kde ++RFb+-NEW]+Ek i> +c+|T蚄wdBHC0hZSn[ B/z_DR@~kS'ȤՎOV ,i!V,rzRۤW6iwhT61MC}xrbd +/&=mVuiD>WnC=梿w_В|镶MFTaertT՝A2Wƀ ֋43Olu> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +211 0 obj +<< +/Length 3184 +/Filter /FlateDecode +>> +stream +HWMo$ ]CьW7!Phr +|I!U*=Ү?XhI^o/7{Xw0_!uږ/7~~zb8=Lxw1.]Mrd'o||I/B!)3s16?礿9=Z;i +gq\y?mʁ6Reu7<7}z)q5 쐯 َ_ے('|4r,.d'>ʏ~0=TԺ]KlȀ)ty6zԐ&fea7O ;&͇Nw!i +PRĀ{]YW +԰z]DZDi J[8IqPk2\6ya9`#\j1bBӆ# .rJ7 :,RP 'h1I2-\EPu"%o1'nB\śHX9u("tN~y!ɏwҳLՔh{JF^v|\ͅ"KKFՒ*"vaOxg#E5nup7FC`z\Kn/4Y=rdT^8'+b|xtO{ROؔIsZ_ ZASDz3J7֊bN6)81 +yEcնSi˩j\מ8 Ų?n3 :]2=S+շYT^%9|$\HE =KaQ2H,3s^B)o]d/e,0F?7bS07NDv&Wx ΝESk0YgjBL8nTEeNчm,m1'fs!4Ѻ|7mSI[1=^΋gеl;q cEVz*@mx\銫 +U`V `F "7-`8:ukz Jt`lG#K82|zCŎ ɠX74U*@D5r.s)u佰4ry:Bxm4M7,n_֗i]"@Iӎ: e%_Uv:35F1gz`j2_J*4xHVZB6͛ L%P)1e(<2CJ^W$Ayd?_-ߤpwCàBP +83]LWKrj%UI7!VΉîp6tn|EFN; +`T sH9u_yB&!\>vyle Om8lrg^.PFTL L|6*HpUC 2B6 ړ$kd +ݱJ:K"qzZ/Rp(@w-J' \%gALdՒ;4[V򳚵b\m= \r5>3jDVh}F֏PPZeaf*<^Zo}`i `kcco)k#[.VHESF,3QC,a +^UY|ѷ3_5sҐ-1e˩jIrXxQp"M\ESȗp9DzIb<ԧQANlʈ8I+c=phIzg~a?I!,dі#uƼ$GZr| !NntD}\N[ݲ^ɮ˴K]f6b bcZ5KnQAOㄷόLXjky-p=M=H2&=g4vb2a"veN4f`) PYח:b}bMծLEU+oz`Gi`Я* fh:4Bq.xr:ȡ3Í5l#,t$$$Cն"(o@ + xp x`ݺ+n̞W JS*ZCR1?KD@M//\_[qep|H#MصFsX BH\=&SH`1H=Orwdt[XD{K^٠s~W4)|wo4q}%U鎍 ];_ǓȈN!Anʼ_veh u> +endstream +endobj +212 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F61 213 0 R +/F62 214 0 R +/F63 215 0 R +/F64 216 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +217 0 obj +<< +/Length 3602 +/Filter /FlateDecode +>> +stream +HWM/aJ3EȲVx/NNb.?bU9NNWç0`ۛuZΤaL˲{z{cʓϰ߷7G3cҷٟ5lAkײK]]Z?UOkw8,t0鏉_8pyY~ӭ:kLK"m,ǿfpWywZfb]@. kO|PnݧGqy_SOiupH}K 22:c:N\]poHG%H(*aJ(N*H%3-a-sJRu`eWr~%$/kfȻX^m[LZ^up5'YLF̿@״ nV̸D,4&"ҙ),ʴ"9swW_w eA<Sk}g+Ŕ}mg)cSsv,ba0 cuHƥ(@gyOW +% u/w"| 4ԃ RU×>o/ۺ{uǷD~WU@c/z?UX2_a/A;kF8Y'"k˺˱ऽU<KzM3>#۔2<(&h7&yˮb*] r(("N3`jg9 kDN@2ʥGCI$[f9};5_}I޵ca9lV φv ;W02/M}m UUGVG!:MGKxSmSJu[$}v6> QLCzFע3*w2G1MހtQZ#{vkRm;D"Xɽǵ3,3@fy#-?APAS5(oTi[FA ra|.j +JVY]Zx@SBcG 6K;:?3|^Po—Z`c륢l +- +g"K/uuߝD3W?c[i= Cч4?:⣬u||=W2 +endstream +endobj +218 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F65 219 0 R +/F66 220 0 R +/F67 221 0 R +/F69 222 0 R +/F70 223 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +224 0 obj +<< +/Length 2263 +/Filter /FlateDecode +>> +stream +HWM 0ήd[S* = LNb @.!?EYE, u#uZ;CfZw>ON{ތ oƸ7lct)M.Џ񍮾1==Y;4Gz8K\>Z:Сocf83$Ht-gx"%@P1a3I}9ʡDy[a3>=cirnɱ[KljƖAwF+Je۽eqPP xU`}C O ;1IkLX"CX=}$[. PG8Jj}upݖXK~q+Ix"9O;-eWܶ`J!LRX bjI4Zۇs) ѣ%Z]l%TH3DY =i,c$_Ue.GWurǰb`mx*P 4Sp88͈u `:m[T ĆСui0(z%u璉Y 7]a#E>7{GQxP #6J<;0%.)TO͛:r:? +rG&7GeS==k؉Ϲ8 ~|(vRLbJo)4Юnz_X7q1 +_ȍ-GBZr,(QEs=Wm\vI [m +媫|Nhn])UAy>I].9MXH@:@SsLq&weDFx|xW'R>z0"wf%ѯi0*wQfҽ4yqF COWuVG[+ UnpYUƔ!7s|xa8kHiSKDy9\"~q4ZjmԈˍ[[Hx֦̥Uf9*[0p:K+̘• 6"0ȸh"(V&}4#bYȴQ29/tk{}}je<ӹn#h=_}z 0!={g%9MrBFwSVGwL1g|U@_F>=;ɹe{ne_o*V }oxDRDvr9|w Celjhn??R?FunT}֥lѷOHȗCtGX7K6C-hAUi~_*~vq0u֕^8oҥat4(ZܹWL{j&<+UΙ2޸UG!*J)9F"_߼Gz+v~/@e&+^iɩjlܨOeJͭ]vJUQUԏŶE-cl慍L7ߑmk_TQ^Kǵ^b|F9 +M"wQּ!>򉷃E :5d 2 &oTA± }z 6\!vkc(]( JNjV,l(@dr>yᯪ/k22iNIP=jxr>,xիDV(g|0 WSv¼KZ D):`Dt'7 =EEDiFh3> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +229 0 obj +<< +/Length 2634 +/Filter /FlateDecode +>> +stream +HWMo7 Xx(ŏ5Cb'|ٝzO $@\v,VnH9,afUU{|}uSts8r}%t/>eQ߯4i0_u}5oVm\!iuP:h9:j6T?-eLş? +@Lh:MeV&϶r46=Re9Z0LHsqz}^&yoGV!t~J993=(Oh&#`ϟ!onhxq,/eDS:L:) 14Z9',|>Iq r:5 C`\}FG^v*OlrsEr^p](n9+uŢ L +y %IYSrzUHsxeaH_L |0֤ - =L\–*gگtFp" PX)faS#ceJbJ;jur(LH˖Nd)2T;\p UڰFOo_!Ho hK/i5=+S`I,j\P7@ HCZ>5}vUA%DE J8둜$B˅l0ɰl18<'9V'a)݅H kQgvTG!%;LNV +´["g H2 +L׵"Y jlEain໚/Iܦ5˂&"lFYPhInyKRR}7QwMJ7N,ԛ鼳t2<΁}]Ymd("q\G]* +ռ[]FeBb NI4|l-'c{ۂa]d[\RU6imKU#6iꇝO6QHh8`CU,Ӌ= -=cY .ЍGVخ ΍*ۙű2B&<> &e$E@ yFK(HcY-9uֳm$PHz\ã)5=m*# vjRY-v@7uR=/,_36"RhT^(uÙ N@({9J~Mʀ(R=Rxتhr8i}A+eHo`23å|.PBOge)qeb' rҸ;х'go+z[ʼn1!5Om4ː!\: $f{hD6`'}\[O;]i|#n8hvl`+{xs +)dDGPm}):m T ʅeAWFI [5Z[7lU+܌lilDFwxdL oKIGot+w Wf&:X\gNI+t&|9JlyOnf͝0ʖ%x +̶ 7VK磽 Pieˎ}=0D!a/QK7 HL\T,ܠc:HavK@e([|@:a<(H'nYK[%HE~JAI^''Œ UC4ɦ?as'd`OVx;e} l?n.9-{|leSĠD -On> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +238 0 obj +<< +/Length 2697 +/Filter /FlateDecode +>> +stream +HWMo k$'|Z49rI!Ud"vahM7b{^OGӻޜSةt0_7 +OznojUJO7YxVZ&=AUXuB_MyLZY)OsjϮ~U^{o{kWCkSD|sM>U[4f=blecyfAӴװv5q[O.nn 2\*jM mTJB?yfU%kو9 +8~^Ӈk#|dwpy#Js̛xWk"?)ǨPKo{.Yy[\9vZm-Kv҈{rGv9[ը- T7ȏRx7S߁H7tu _IE:Yzym GěUFgt-N L*ӝ4\ `Y֟$){ab(m%j,4,٫~J5T1D!ܵ]ke R(N@eUkB>XR) S&PY9-{AJ0pKh- 5AvwΗd{ q%Nd9ްhrin%C 3,7AҶ.5muē{yAVLO$A֖O5MkQ#ޢ rJGk3 ds?6M5ߎڧfVHn#EVt-Y 屹`F8/9|uОwxmq*I6Ȗ_1,]>obP<| niN;UA{d67:͝v_d_]u |͵bL/ݗ*U s4A^, +eqkF +EϐG`S{I= C#k<@6BT%bK|/We[kA糎: ƾ]85`fQf =l^JRgq[@>dLe2C+Y[k񇱠3Yc̓WRs)r +,vb B*_W$TYtuD8[Z2YAcm[_t+1TTՃ쫌q9 +2Ь0玀l3 F66H +endstream +endobj +239 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F80 240 0 R +/F81 241 0 R +/F82 242 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +243 0 obj +<< +/Length 3077 +/Filter /FlateDecode +>> +stream +HWM 0XPpݤבCvt)@ %9炙>Hhe$0ƚͪW^O3o7/qIW/;dy><kyO?ïz/P>P>|r{(WS[C7B}:Kw:w}=7>M Z >z<cɍ<ٗ} gE<Ojv58'S枃Ya:+2) 8w^Sq]vUje\ZejT_0 +*C +Z՛.$@X!'sGLHw߀N4p(8ϔ;lpL#L-8X~Z-wC6 ̉{i6BX\F9sgŒW*zm.@] 9g2ǘT;&&B=KY~ho_G:՛(g`:.9' ObkX~wSߘ\rB؋X +СJ~O3*DYj^s%]ʿ݀ƪ&$S}4,RԠzJYL3=)oZՇ-V]hUҫog!ô34 8&4g),gzʌNձ1#7CF=VU>5:NȩXr: +i"$qpwg$X-c@D}*˷UB傟_/5JQtV /+M* [OU)̣_%)8;W:ε*׉15i g%WJQl`ʂ13aO.?sPزe 7Vd/y^u*M;=2GԪҷwЄRܖPI/CmQzEP5JZUMdgLLq2mL5PIƈ,fs8!KBx)RY*IҜI*dVe"0_#;_u%lUͪ@hė.E3ѧ)2o" !m43Q?+*ZB6'B!/}z:+Z y`W +EO_"SX bP߼]?s埲F?WO\1'HBDx[a5D!6 "K`K y\$jb6o4ҫ*Bp@`6f_AMTbG/PaH&B20Mz'teTPMz%& ͳJVuGk*'npv;VG&Lg+ٔzBoij*+]smGc-(d>ݟ ݗiyU XqU2 YCw\h;bh qlh>2SlzYK1)g>Tɵ+'?Nom2%E|գK}9Fu0{Wvd\ާ~%7JfM tT4pu@ɝJa^ %rֳiteǪzz P7~s0pK<> Zo>'rv껏7 s^n߸>/Xc|kNA^+.P-BɏA +jafWV^}H!gmpAf|ִ8'7#bM)D-+2DZxNd5eT, +qluv)XWʌ6sSw +MrUVN&W GB?i!|9N+*cttz) \zST>C\XJO>{nL¼11j=WggLq't[@r + "v0SЫL{;hG>`ӧ^UðEKF +~9!}k +ZZm;j"sN?itt\1MֵY`>5k*.,x[6 +0nC= *>+! =CaEfWg\,F@L=j_"GmM)ŭ}H{e\Zv{p~_WYxw.l-W(kUP۳mh,f+ĭ?.kCb&.R!wKeެ+ROOq@(v%je%_Ek +=c!S2xv>cپՑ\,%9eыmR+:8=4i&\{ I${n^{ +endstream +endobj +244 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F83 245 0 R +/F84 246 0 R +/F85 247 0 R +/F86 248 0 R +/F87 249 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +252 0 obj +<< +/Length 3083 +/Filter /FlateDecode +>> +stream +HWM/aDr򣛜Ƃ)0fs +rIGdώ֒@Xt,VNYw:`O~+hv?7}uyzy??Ggg[I/=|4Fi7ߵ 巃ZWOi|~O?tks[9hc){*v +ٟ%s%Sq]~`F }e8L_kcG]>{|=NzcpxS̐k2Э1<\XNMSt1_2:مe<=cD̒7`W5mK!D {XxebgBeA0Xx?BybP|S\*1NL]* Ձ̯P$"rց@QSam7 <ݚ.1( HE쿈/%X[7KёTpxp^k!.Nbu$O{]9uF9(C`e]RJ 3#s fk2<씣Je І14јP[ +KN_@󟮍@ZռXp3Nat%WN: VX'LFJŐ M6@QwoJ"5,kbԖM^1!y-j,ׯVUjt~*ԧx4ݴ>m@upc)?QDPƘ\$܆j*`Vl+|.%lE޵ksMEohc`TILp&rj +Qm س:K^/(:յ@q6֭5iDK45gk)Rca\1U:0R!X燑ʠ+q]T>XSUu"Hu.U{Y<\}? ',B +l b9/#w"YyQ zV7X_/V[זX"tHsȄfjZ!i4M̘~SE6U5Zh*2 JVS$@!9&@BS>»qXQKS_dO&vJ/{IuMpE/ڎ {/!̃Au0jOu7x UI!4Ef*̡U)bWfg3J0>+%.\# L\?S2vKx9i5WC.C}!MLrQKS_X;di~UД]ҖӶ|&, + +R5{읁)DhE}O[kko̍ܿSJo[FnrM/7ŸCZ̔R,M<y[g:1 Ey;DL8خ8d?dIR L6r_O%Ul0I!jF!X{|y4:]޲q+xkVzƤ  +ǽ|6N~K%,cb)saOȊD;:k;H?ܠlxX0 zK$T<>} 4vny 9pS4Kq&E#LoL7Έkt֐)t8F:kR,19kMF}4Ƙ` +:Ν t|pXG6RTm'b3m jJfCgjaMU$T#7 ;@ uwc d- 엌v‰<= +w\8\xd`PT/2,aZ1> .lu |sԽ+hw'}sF<A\A&vZCE8v vqCl3l-QF; e#k0e)+eI$-Lhن{ }ceJ*'Pxl|&:jap_M{zB"ȐU7w$I?0? =T3T;6PׂF-սFB{\p)/{XshN^-N Q. BUe!2 oѼ[X{)ner؉`SlscLX ZPH^nvai?>n☶9c2wȉY٤es2J(huinn#$>xS6a?*Avo0h&fU؍T@(U.nF]ӟ6?4B%(_S*ӳ)iA\אVr 1tBEdM]K$rłjdFMk?7tnQ*6S!h˙&FԒX ܷ. <⡉aw >9YjcqZ7(=> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +256 0 obj +<< +/Length 3576 +/Filter /FlateDecode +>> +stream +HW ?$KYx{Yf )#;P!lN9$~bYEv6 yf{d{{p/i[.G_nZ//_8?8/_Wot3m w^OoֻO8`9]NxE3} s^H/@K /I8wu +`]>iwU}2Fwݿf +|gKiwΰe:H6yi֢P} +btdd'f[v 5֋[,5&`L؛G2BKm?&ޱ'wK^H Juhe DTh9zalMM~R! pv"v 42>B”㺕{DNr#' ;x'N\Q20$ÈaZ/\N˳TA;5VJ_!0s ML1lI7jԄ(_¿6|'9Gڈ/Ұ_j^l8_)o8"OT?N}& #؛mӼ¶c͎C#o0*5~QѲ +z` 輦 3ݷiiOnF)bv Oǚ"[齍FmKSe`|K+Șd-Cڕ_˔Ww+mAo準7{%)*c5TD S_IfF3u@[[-󍷨m2hʨƦPR:vn-xݕD ikc.`zT@_Kn ծR*:kl+u/8=d}!v 1X.Ȼxw T5SjNx;W + -( ֡;IGγC\ځ#TLQٳrJA<%jC"Xe//v):0VYXQn>Bk2EPY 4M܁\r %cJ~6􁚉3ZCB~ta +qr7 II9ﴃ# 32-C {ς_v/y"ⴺsiOsXj$}aѕyBPyZCXC"w~@D{\%~\9˟Kց4N7LhÙZ9jTŐ|@ya˜ X0>WP ^wdžy;oEv;lc̞I/FB&2v<3 :hFl5*Ğ>AպmXo T(Qf-}p4hnqi\j7PVxRv=# ˴|EU# :d5 Q̪ȉa;z؄H+nڹ=UVT솕mU[/*i =_0CF::J;x. o1ԗ7Rh UpY+A{ֺ[A^% hYαՑJsj"CWA㭻P!{o`_x!==70 f\ib*Re{;|ıHJΣxCrIт4PZZޡI={rv)/U#8G" t& K ɜ+B4o5ˆӊP8 9mβў!<>2l!G:ݙ?FN{X#=0܌ T +endstream +endobj +257 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F90 258 0 R +/F91 259 0 R +/F92 260 0 R +/F93 261 0 R +/F94 262 0 R +/F95 263 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +264 0 obj +<< +/Length 3750 +/Filter /FlateDecode +>> +stream +HWn\?vdw+#K'd2P(++ @6¿dnif0}QU9ׯ+wׯvS>>*;kN~eTw^Z[ÓuZd+s2Mrq+[߲v=ԴșS]`{ؒI `t MM7G1/Rڪ3T%PR.G&8](/issKo"Ek r>=B^-zOyA7A +Q +[H C8kMևZ{wEc#,~*n,onz r ?aNTY7oC-&PX]=^-] O"RR9~{I[cj[=:|p}'Ɠm{0 %GLV |QO ~iF@,D H 怿Jp1 0,( yk K|8EQ}}PІKJ VsG&#C.{pDQX8<Ix4'AymmˎR#-Qa^|a*#Zd?|:\-[ ЄUGN<]ԺX^ۜyMݛEX0l,}uhIc 2&Bf9{6Y!ȓ +rm,)Cii,Q‘yKz>kd4AAߐǧNZHГjiq]vIXu)1,2^)ԝNOpDu8zѭ`Td= =2"[oVY6T;b'8s`Cײ_ڛvY3Zg Α삷4HOm w3 3.u'"7vc޺"!\0 ߶. %)9d4ΜQ@ (^ k]"FO-džOTOF[bfJ\u3u,@zP\@YD܅0.a̓Gijf=)/D[6P?p,o ̀\Ǒ[M:^O}9roȉ~425L{#VoO|E籾@MqraKꑄfq'{O+zqVdކE=TY;َtIJ%usFf9,.1&*Cij46_x ^4g ,sd5}Od83 gpq5^œ"FB]u'/[e4Z?Glf!YɮdXݢ/r0Bi_XHrڔIDyW9FzUSye#H>z9вöj8+je2=O g̩Z ZhKtFvf!UscOŲ֫AUR'h&g{GLbmZbLM4`]) ڳ8YWy1Qِ6I,1Eh0asR4wr˧L6jÓ03'_hW&P pe";DSK0T(՛@| ~DىSIU֧!ඔ~Z +Ӝĩu->vusϢzm("GV +oS;/gÜ߁ \4>AfPQY7 xt |aA5#<7"ɉ:-X +B˦kxr)k NwG]-3W/є0(;SuGzQ>ׂ&Du>xDؐ\s.ܷ |%"M(RjI*ζԆ:CyUö)Riu Ħk]4 ԇ];'}3S~k[s?mf9RnAQo~37;bxGZYZ<**u{b +dFxe]8E BB.ϴ7Y.b[կ-vC|_j-\2auiHK̝~9҃o_D.7# r"\M}{.T;eaN>yoOxkO*_$zjX8 2闼knàV̳ U,ӕ%x7Id"),c\OxiWhHjA>&ԬD/K^n|15rRsQ1/ ?X`SgRe$Z2c&k]hfUݕ2WZH*R[MX+ӎifZqH~͔s *%_4 b!9\Jh|ofp#f8e%FpK v*c4=걖hFBH΍A\DOz|?.h +endstream +endobj +265 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F96 266 0 R +/F97 267 0 R +/F98 268 0 R +/F99 269 0 R +/F100 270 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +271 0 obj +<< +/Length 3645 +/Filter /FlateDecode +>> +stream +HWMo$ #iFH"ay':en;ň9UnvK$Xh5vz^|}5vgwN)LW>pw矯LY֧ݏ_.Ѻ/skqyb>ڴ_]_=pphO;;[h31o& `fOo:_S:F{V:!9BX'3MMij8-py *Z! 4VVy﷡=B1&Uἔ\E] aٿ˿;BB[Z*H]K&U]jmŠvXj+U~Vi B.T7A@&Tuy *aTUmP\RV)N_0[[ۀG;o+K>[۞_j+//r2RN*L?Zc]Uw2&$66L1z QB.k0kb>EC 0 6a(9?o}>?eSM~Q.ǝ>;h e痱щ~LutMU-b4Q0lɷ.IHw:`vxFv(-qAD»` Q:'hTjunBպ/!۴UEIsw 6O{[G{h2e| '! )onKhu5;z4^igG`#5A(aVZB۞*/A=jY2? +ydqT>UiU 2#r *iPhF-{:^+0tb2sKq{M͔gB/ݹIҍL57އnsy.6ni;]3"Dw=q;Ѳt4安Xc@{Xo+FS]]gV n}< ^3%Q pnU r̨&3F\՜CItq!0 ӎUZ!| N!ɞٓ(*a'(QQ n#BQIK*># Nl%D TT\Ĥwoľ//4T6eja)׎iaZ7V*Z) \3ȑuiiqUt[&AaƜė ;`qCQ=_WS4zjv"Af-\b$S6*.3ܖĻ|3x^k(Z,r"T8ֵDKuڽ !X?4pQsl~-.aFcug7T2% D-HP^UcC1)f(To Ԕ!췶{˞YųR9?T'p1ngౄ=_6 #JPZE TWfdflUK\mzo“P z^2NruFij3O,LuDY i%IiB^)(GGPv#TX_z= 3GEGf+Yzfdcv; ~ڝFk *+P@3͏a`1#RS(9Ѡd ,Fu"k#Wľe|T7 +:&*"B:0UӎQQG ^%l`r䑤8?b$_ʁDNvȀ V(&@\°w);Ef.co;`9![Q9g^1?WdgVY8s)J[u2+"@y| ~iӟC3H(HrVZʤ'*0LLC i<3ҋbrљ8Jfa|/A?V4ê\TQF1KMAy$Y+ubW%fVFE(ϴ&VܨaDVo0 g/5r9ǧ`ź¾ea-oEw,:d.8zXv$l9 Pg.khUDs6/gQSSd6;k%f#kY^~&oy]i\ݚ`LP_s/'bMu2 >䳑>TOx%TqMI=J Sdƛ*{.wѸ2If5:D<+!>|P> PdgLb@eO9r }(g U+_Ǖ`)\|pKKp'l{;><%š*u?ClϺ0ږz4%o6E2gH -uvUL<^6^/YU[0Y-begMW<7.f6D/ޤfIx*oG NB*Zav-1nuFgj*TbS^A,KMECSwʰ +qvq1+i M`uZpt,n +P#KuT,=ZBѓiWFnQ/=wF7#meHLk%OB'[%#Hk6(rˉ(zbdɪl"N:Ϫ,+>)f|V + 'uvYyI0FT +^֢c Ee26a*j8MDr~jm{h(K:wI?@%2ex]0vXv;@w6#Fx$4J7|)HCɉpO{CVT-`+ɓʫxҜ-т>rbPI-= +4 92X)* +N%8Hٹ.B2 LB(H{u.$OKpgQ.߿H:Pkluд[&=4v;cU獍\uT҇iR6ۏ ]]x,IB`* m- uُ B[YI xud]g!3L '\X*EZkNjCf +. C(J}p:V&Y~cV+«L +endstream +endobj +272 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F101 273 0 R +/F102 274 0 R +/F103 275 0 R +/F104 276 0 R +/F105 277 0 R +/F106 278 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +279 0 obj +<< +/Length 3217 +/Filter /FlateDecode +>> +stream +HW[d~_3a<F#a/݄ x޶!?T$q6a1öMRW凗w2:76N>mS.^~yˍO󥗿߼\uO*GV6p6KE,=.|ۧM׬t; oX _ͯX9΋BY?_^Rys'q[y^>ܼ;iNw~Тx`<|?|)]/]iepH/ */ɟ|p\ +[7t|Tx>)=KR`kű)wpzDYَjN*6dYC(aҵyb'}(k; 0Fi?"Fe%G2=Pl[bHKSmi +FM=RT'̳(HWnFbblIc$"*KoQcJ+]!ʮXi-;QnA`gLB~mtr(:M!}57/.粤Z_Wgbfل:~L13bgqFgzG;c/ޥdf]{8̬QMW_A=>lLr0c V4n9c22 >}o㚾δsG|IOycߩO2<9C{b^hy=`%an[,SgJ.{5wtXo ]n[r]U6J{ݸ·D&Sd7L-zɞVq5Lvreľ`(:ܱ?(~/TIÇwrϯP\qͶв c\¢*ǚ5M\ums`{*iXک@[ha8[Pɰ9:!F3O>Vƚ:ʿ 4h!>O@#œl+ap3c$ r͖fXu(CG\Α%OD)3I2Vy+SnJ35np5*|VW1àT!|IC`e4C<;X+BOH9+[8I`;urTN RYF }Ɔex_))'OSCVUz#W,:\TdV!i#]MxrƬh&Z[sGѣҷ +o3 TaSw9թ-˩`ZTg RKP1JS:.755};wțy"V"$K8UhA.,nϺG|ڛlrTa'{fs" F#wXXRJ{l "L8L; ^}>=vc+-SM\ؔ_ 5楨oZП3rVZɭ}eW}ьfl۲c! xPvZ~h_Ǥ>N?>VӎgAG!6[{9x +ҥdSMK>NDHN~L}=ur\[J6M_&E6H2ֶTF*{KA7(L0e bؕ ,,777]tnNm+<-vFqV I! +sP3'H(ը@-;1פ($nu$.XpA#8Ø[Bypff.#"'Wj^01Tc4 :Uچ X‡i>EY0!1ݟj\[&Br~= w-Hc,Ye6F.pMV N;먥6&ziERqw~W0B&&?^G¬SZSo4;q"SkXGi,eJ3a.csSc*lNjsǐ*rBNgeo+0lX{xart>XBi"My2YU츽!Tf>R"0Wv]f<ʠXXn +endstream +endobj +280 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F107 281 0 R +/F108 282 0 R +/F109 283 0 R +/F110 284 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +285 0 obj +<< +/Length 3602 +/Filter /FlateDecode +>> +stream +HWK/afl4&؀ ف>doXH_~"ݕ-n>}_}x{sv{n]!==r{?v}{sJk7qĿto=gw?ⳏC>+ZUǟ9_Ǖ.r>C؏tR\0)dA3/mx?% ɪ)z,6L9Ei+ɺd +${D?,q@vi%x(U:B+{nYlQϾCM3DL1 4%`9;YowI apSl)sN#RTO +0{tƱUXuCkv)P>edDuYΝA?krݨk+zMɇŲTޝAcߖ\認;CM(+-?O$UT%neHK:3N? 2{"} &Qeg }wɵIޡwW]8 + g݈k굦\!>=ni7CR)ZtK 23jfSH%t +2YsYr9X率y&b$31= +ԝ̐_ !eB18џ=0E +SS6c˼!s Rs"`!r +i .}|cz +EY(g/i?݁?n 9gɳhoԻqZ$,]Tl-f@ADiA;NꞯES0`)a%H8)dYafӓ)VO˦ئrT_;UaI!"q؜H.WEs:0?A RIU^mq54>Y¶Qs\A/s;W7Χi\f^L?D<7J] +U? (j W 1H`b3Ǝ۶a]ɕ}f'(㘋uvcP&',7&'GT- A_~pP?!+MyjXo*$}γxWvyDSn^^Ń#2 *fT5BJ~\T|%K6M +%6Cc |%}ip({|-@{nиUU'Z11B4ՄV.Qu k}!v#]8Z%ЏSK-Yi7d|Ns +DtQ$CXtuګ6uP'bƕ%8𸝗#'v.BpLeiQtܣg%sԞL9ph<5}rlN$V@˴2e(Zsڧ3KiT^Mм:u %g5Z` Zd^-)lH q*wwU|S#B-q  ʴ8X!Y` L"y-8p4Dae of/ t8_+)8?:]nx?5 0Y Or$\8Ar>7o FYg!k"ǽibEYFmF 3e_å*2~ +@{z~GǮKOLq?ڗ$(e$A>5TSd^Yp9k7b +)6{4:ciXi`۳BM~+JXbųj16*C^ݕgW:zõ^)`N&V̦Xz[!x/})Lp2zJ}hTvI)؜G^iSŧ4<21+ [~HM@+QUb[ aִ +ajyënVYmұ8cJ|s7l-xk km#1[I6]nܪ|&ILd[6<&܅\?d)d>W{dG7 +Gi\)LoJ2ZE#5=E )o$uu%*j6H4Vth5eIf$U +](gsP!'sn-Zv}vsw{c'|T.^YHZy7տ{Y ϛWSph/A +_eTiDMWzsm ?lH}~6Kx|ة\?Vs/s3bKg}D|1GءctW&-0״:,cq-2.X."P"\N&R|yDА(<.Y[e$%?p;ٍʦЅ%~2FZG=wr7V9c×eޕ 2[Lڦo-u1w֪X7Ml5H`׫BL&@! +RS@ ,Gz3z Z\ +endstream +endobj +286 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F111 287 0 R +/F112 288 0 R +/F113 289 0 R +/F114 290 0 R +/F115 291 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +293 0 obj +<< +/Length 2572 +/Filter /FlateDecode +>> +stream +HWMo gדmMXf vd=qNAfLCX-[m;FÒHp}GAj'tL|+_hş˿7ҿ]_}= G3HnlowvO4 @M'C2 !=v|}emP1 oS:gn2w) +5}Yc#7rDFNUN>.K.`ǩov\vVZ-改c1W)ڜÄVBM`GzeWofc8t,mSNU.ll*?ݿ6C0CATF-i݊DnJG*,!Pqz6sh/.ιm}+X9=zi\AF~.ee?S}lj1 3VZX"3d>r0&_ܪRxkp)%ҝthux +@U5k7&b;twA(h +Մh{eYCYL?uGFPXȅoi 'By+dDOۻ$?-fHPo;gH}t!@M;X;SSriE`QLt!6CHGБ>'8'Dbo΋}ZܴՃOgQjύPB(4a'Joc)XE'fcЏ96e+V$Œϖ?; 2,;DV_E.N7G OU &C*@΢gM8!8b"YSU2$̔y:/B7Ԇ&:JvȔoBij˸fx&e-1NjP1I6#Zێvc2jE}>)&cw7V+1:2B !]ډ)xU0&].ASwR +T98UJtBs58Rc3ܜG(P-Bܴ7:SIO#) qը:UZf.nԮ\UНι +\x{orQY^|&g]L2F ϗS0⏪^E)t5#!Ϋc qwE4,pBD)i`H. ۗ^rC6N#P""Wi;u**7"{TO_g¼Ԑ?<*nCF%rz6(bduT\M xy/3P܂|V+^BgrtB J]Ŵgݔo_}bKt94`Ty )'U$r{t+utQ=a#aatOZK4L=հg$eBkHcKM[ō8?KJiCG]k,u?*\*fIv5L&!"?UbSsᐫ>iUO=&F?GdfQBMIXMP}!tܒgj>-Z"VUA*./*:3;]?:|74,I +endstream +endobj +294 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F116 295 0 R +/F117 296 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +298 0 obj +<< +/Length 4331 +/Filter /FlateDecode +>> +stream +HWMo 9+{&YdlvÀ {X@M)H 搿~fu 4f^zۛ?7ږ˦h|_?b']zEk??6~\,0E9=P& @^nGcQiڦz?}]רXnKq91>֕1fpYwN:csV A+3UvwaXrĨVOdďC+D IXAVe5LQKˋl|75Nr`Mt)ZF,,cqqZE+[Yn|J ,Х) ÄPnNk/>q<$S 'A*kح\.Z8m$ԎyԹ. %VIKVo҈]%f+gSq젬DmǠQ]f6}p֩4H=zPKy } %ƪ5lg Yҝc6Yzf`#IQ0̲Xg(jNve*: daM-SpBq uM|G/>vcZ S٪a=U+NYYEpyS n{y|9  [3bO`v]_x3)˫>)rn [5MTEJc +)YW/\J$)ED6q d⩃zZ:_b"_\ޮ/s|YOZ$jqU04*.;DKrsU8ccDKʆd:M]~6f\ +m:JO=8KdhT/gDzKv=DHUuRAq +U_* A-o Yh7u>%YFZSE*b0 e\IG^!8̋-:1CɓE4zکJ=un\EɇF9Yū=ҷ>W@a.D(bջJ ^5|E4vym|Ӹ)8v}Bmpw(FULK`T4v^!ܰ;ԲQ.});C_a8@H ~lvlIc|n^B^(tT:ge⚜OSv1VozNĈQĕ28wq|#&-/ݲSBM\ o9₫VLM %qԳFFRSE0_-}+PEw{΃尋ZVXfHr,M Vbf%e~m6H+DJ|]r*A0t'=K8k>*sSZ"MV +3Z' OgDs%Ȳ%Fv˝;%gP(L)VN5e,^aSrpJmұN$`[)<g3+NM"Z<#[.|fQWtYN VsY |~1ZVdUl;:ۀCIŽIr @泮7։LI;Kr)h*7j&`qhwVq݈=t&ߌ ӧEhQ^0H\rHmn+6;ۭoHK9k2+J o(\ڮ L|wltLpؽ&mL;ÅB²"Ols3e(Y$<d]2lFgtGT,ډ9#E3-y^8E P@{j0cžQɵj~{o4-wO q9r#/0j3N^c4&ٱȾ6PmdU +MAY`0!`WYnZpUF\Y_Sza2Q$V鈫I^fԍJ}#l;jffr0¸j;y1_q@ M`.#8HHk83$ŕ&aثwKHE"Ab&ʋuG)X S$K,f)M@| (̚tK7P~9/zE&KRʨ[/zuؔTدon"6bt{{%-[7PL{c|p'¦"jft4=S˪Aw+~MAiFZΌJu+APAd-!.'5*hhEz}i*P\ .h(a:µbkA$l3H:`Sl\P%XGĬ`'!V2i1ajꎲHVg!c+tpTC#il=iÿ ̽5[3AbY}PLVoWzyüq*kORfrkj?oiY7B* +ޟ~AON(+_e/b.xxEOZ|^_|1wvHGtn<0}lt9|kG  }vt)\| jԈ_IH=5gt062e*XRfd~n $4x`]ߣŗ53Be/O65dxb*ؽT7VSn?iI!s?ЊԹ5` k%V"Mp[Z1ӔCAEz2@V;r1,q=X1v~a)½5!94bW=gT٩?/Jed쒊*.8 iAabA/ՊLj<α/LO_ox-ygfJ`]c: ] QBkBsNuȗ2 " . |gn +72hO[پXLv-ΖuZ}R ꄉU&OT䛆x!sd> l!4Xul"&U8_1!AFs f#ݞ +endstream +endobj +299 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F118 300 0 R +/F119 301 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +303 0 obj +<< +/Length 4302 +/Filter /FlateDecode +>> +stream +HܗM w%eۂtP$2 ir +l!|Q)EYKaUoۛILn/ 퍌w|Ư0|Q +)%~_x[HPj8v{?KQgK?;KiWJ c ޅ +w{w)^4ßtX\Zs(^&Z>wC^T. H_6$}%gUO }>%uda]x / eub<\ c(wĜ+#5yoJ 4Zjܻ2#%S(OYAJ.Y! [s#YF 2ctps3ob%\: (9=U y:GR'pꤓ5TipFnU2Voݴj"&UՖS/&ЪJc *Oh'FpTBhоOrUf!6`_ ,<դ#|-fH2t- QS*~׻l蹲rL\R~֍dt趰Z%=%> +Ttvo]Sb,1z Ի"NݔNmMLfXEed͸4hfxMXf5̯];I]b,:ϸufAR+βmwsB!n ;mABT4@F>E?|.~9xĆ<gsl@d#̰׹"~Q>KlM(e]O/kFv$Q HRaD2+X5KDGkD#=z +hHo _m;=pV2Ц-/ȊiphqmzC]Ӵ}81~Qyiκ4֩);VPĮS8 B*Nbb,[t8A1@畚f*U1!u(y6m+1WE]'ϬUȘ;^H+$n޾4M!TCvӤå˹ i+0.˗/'b{5qV0o֕SLe;s+5\kl9٥i6Gp{xEU!% RW^uݕgINyJtyU3 ի.}-6[ԖnRbBBy=I{!<$xxo$ޅ>"Z1y;J1hfjzE07ȥ!-kJqfKqMݽ\iFX+.ޡ⦑Pz% +K1ߜ-(QUU{ +3_(/?Y{VG4ƎW8bB_·/]"$F.^Mx{שIlKo1$U3\3E E>1(iRAj1RO!BnP3aϷ7A9E.IE©Ͻu&1x#'p 6"dR`T/lNOB,!8i,7)яwHŻ e#0aKTj6n J #I3 d΄zetZ v`/ec%k//W}R_8\rKuAM$҇"**%=r$a z"Qk !Ӓ^dIcE6ck~'ğޏV612p:]\؆>NMgBebg˫c(J3- ܘ5=aPWMIP䓶 +PqA=܆sc9'UFpFu">p̞(sRǣռ?r2${0# +w!7q7̣-,$pa97c d d|.@8ʆ O0FV +&Fs<$X8<3iyt]st[Ѽ^ (6A mrH^ `gp y@¿p lkK,>zi[/(b@7HYCÎY!J-MǣwHF3|I i|NU„uaUtLre? O9px]42dE@&Mr)zRZPk~:a|6c#)\7D?oߐGV,FQFE(+ oDC5ȋOmN*icߑ ߴY W;4ŀ86B b,m͜04Un(]ӄkG6Ô#atM\'dLuC87,aŃ8žX0Mԭ-h %9L-t`Dh51GY\lYH8\&̟n蝤rrv-0~@LCT塉A*N6.le= i4{VсJ%e۫dz>Ÿ.Ĩ.-3!(`O2Om +[Ol!aU 9xt5aRhW-%+KKfvdA)I%$:|GjF4/(i ڭt;r,s rZɹI,EJwQ4 +c^k*EY(^tT)}SgQ\Qiih) n(-#I$2#sJ;n1C1S`+bYԙظuA'ȥonZH%iN4r}όټdCcjIoc:AY +endstream +endobj +304 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F120 305 0 R +/F121 306 0 R +/F122 307 0 R +/F123 308 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +310 0 obj +<< +/Length 4178 +/Filter /FlateDecode +>> +stream +HWn\?4);F&IYDYYYAd3YWUJl$!ԺUuΩS?<\={WN? U^ίW'8W'ݿ^:>j?_&I{GƵm +,iyuz=jw'0 +wZIWmCOw|?ʰZR u;~|;G А>Ԙ P2]˗ϗMhI:(%)7r^($? +-Po%єb퉒|-U:Ny +sF_ұ22* +V @PQ+%wtrmeA +I," 7ܥ9NZmK KE[l4w!غ(ZG0:2kB(#v\_~_7.J2B?nʍ^C8 += gayhlV7B&8Ti_@gгkm=LuS-(S{dfϧdbƥtNX[^[>coB(-AsmHC~ +hX0T3QT XjtC; 4#j|V}<>E΁8Q\Ikcr3ȴnΖ@Crd?9׍<])i(]&ɧ՞RD {Jm87+[!7Vw $ T[[$}=c^l f:V$GҒqATS;F ] 8نeR&΄%\V\U%qN0g?$S0 yCw;O= +CpLSa͜V&p tPhi;]Igפ3/襗[#;.f ״Tz{ؑ궃"jɹoA"iBci{`UmK"L{PK"YW?`nq*JKIjoL+bY)fp kLT%0sf-j¦Ȑ2%+e1XpK}?܆u JsŨ[lFBI;P6{ v+s,a(pP9V]X|/ȥ2Jdsn`>1##ef!BʰDNLHҠ'RL`y>pB^kX[&o;P=;HଵTg&D{Qί*!xKgRy(a;b{}3&^U.Ο1㾻}ܝ +dGf `'X] )B4ť֨y\,I,ĕQh&11E6yCJ!q@R<R^΋Xa[L10FVy^֚ E_imr6鏎g4npQQS^ +dSwrlvd#(s]ٞݐi&p^ZR\K ~a+k]F7D 5B 1f\~ +#a8dk# Mf `6p(DmbHÓxM:S +ɖ|@stdX[}iXcWRc}Lf`K?#56DXrGx~m +FJO\d)SUi3=dXTE4Bx¬QaJ [򡺰䬀EܘAaLQ)ݍ誧?1cW O7g+"Iǰr6}T-a`?qjdm>rmXJ`e7cF K(yԔ}|Q)3Bx2Kdm!3h]M`fdPB+ 5FΡ{psi} 5Cj;YGv!JwAd4F0&@F2-Jh* +Z*[ +9X~[N @ӵgAYk_1  Y/ '|T4Bf"Ih/P|73y:9.dw%aoXmkOK +^:l%:[6 ecL.ʼnխ3F\icL"IogGHJ^T9@ѫQJ5Dqv]^8|Ep}6;{/FgUjh_L׵W4ŦO1&& +dv8w" }gPnЯx8N l;lM!ReC9٥!K/d膪́nC \pB MjE(| ЂO,| pJRqI}ݰ=1cw ɱu1!_*?PL蚦X;ܒx^O x0C7{XTwXo Z.y.#GKBA(MZwBfh^=w?xAb9Edqw|[*l;;َĨ{·?xق1C꘳Yuqgk ]k,6MWN` v}FU"'ҲfSV/s2Qo+Lde3r.^!$[ۖNu1GN0 @!1)F˗)dTNU 2Sy +2>U>2([ IBPxek4BwI6%|uQB(hOdzꖬ_Y3YIyQ_fKVR-/͒qWu]ڊL(29_* Kz;t>dUWTeޮRw%NB96^F{ڱ#5.\(M-GC"F2۸*R3}ͤu3.mK:Z,k5rWݠm-ata#y2?Ca36hs'l ۰sWm768mw¯ FzNWB١*32 f gH'L|d0eL<";ŀص<sJYG, K;D^[?z98cv.ػx%no%ܽ.~3!ďTJII6.yPĎ>;a\su`$~$aAM|bQe=nq{`E$ +endstream +endobj +311 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F124 312 0 R +/F125 313 0 R +/F126 314 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +316 0 obj +<< +/Length 4560 +/Filter /FlateDecode +>> +stream +HWMo7  V0DY6: b{_ŪjG# 23&U^'`O\_j + C4Zpx)O~5]_?1iGqګT + +Dݷ5漧SeXMTZ?~aCW]pHp_Wd v5[~}яO3uU6z``1UK*A#P@5AGU$!fv.ߏ1-]B6[ySN rMJ_ʳ( +gkYӰFOw@rLrQ5fMNOT4tiϧ)T.gݜZb6.6 cMWl0ǏWhC=6Vdz7 c[TuPAkeb(:՚EAY`+;_ʣ-jqYB4i|-9} sÒ5 +Å#v4KH\ +(S.?a|$V  <8†*d碄ZHybn0plZ`k,M1&J3r y@Lݑ 齜d:\9FCt 'w٬bA }ИW`{RqhR17V۲ +Sk! Օu$٬B5z2`xr^rު`p;+3z' +\H)g˂Xo ([ֈH,JIa s:yְY^5 RFɂTQ6)MVud_+a͠GMF}%V6\L[$ saqw&pw)e:aJ3ɟ,|b$iBjoHtĸ T `I7Քs& v .D H8dJ`HQby-buy}܀vB3ӳ*1B R7^%4/X^85ʐٯDsN IZozfNjI>I7AA6 (_j؂'Y*e|WHqݼQtӯP]oۣEu=6VY5m޶dnQc5wM!/@VH.V+Ęac;{Kˉ*莍xwH4%Ba:3yGƾ37Xւ"Dl|({~@j/-_/ koNz[ڑu]߿N5)nH]4ҩ>mif8a +k*=UzVڻN6`D.*&i"z`:?p?0[˛=J#Xj` " +ߙC6i Ar'PY4(=[pGxn]CjlBV*T#+ͩ>?]ZJv3R\gSA;5u ?s.#?lJWC Pt-E܊}{t{a{ϩYM9ܟ?SCM\*cN*$2vRZi:Xw.JfQ:t +vTIάIu껸&( -lwjXn.u⬓}3V#߳uth5i*%oʚ,mʀi!d4I>;UUNJ ٢bU)M#^-E0·VW BdT.I(a~!3—#5\1.Yb +n-Qg[=dHl'1uFYQCL&algh>83K7;U<]`J7U`K0M|k[!exU4QNf!J0snlpS Fˆ30fCC6A( bn!%߰5VcQ

65FiwS\i)>:u3%͟m!/]^5~7rDXA0xW)( q2 VL=%Ӷ bSPeޕJouݼϾG c0V+kHrz1+'LQyO0ǜG ܍T~(cwnn7n\{ۍm}QHjҞ?dk ;5i8R9|׳s50Zj͂zmѻ$#æI88g^jyTd H"[ҞS( IݝAV;KJbı9띱 e(UK+LȫrdDpjϭ}~FN<S׬[::~żh_ û%"`>0vv. ,(JW͕^anY-ߣiDZHqI` @ʭ5‡vEݘbJ $^S !hMwnp[_-R"óW!!.?pK2J#ś$:DsQ{[#GG"#}y/]MCe,3mMg3XxVXn|2;D~S>fGB=e|(m@vU} t57jih [\m v~S7>Xwtl'./os2X,n;6}O<h3B'"ftkFBܦ[DDI6*R8EXՑgPJј(K)}*>Zk9fD ('$ŵ$ Ű67KWK5?U\h=룎aռ`'~V޺9w9є4bsm]etOOq(C++Nfw-UOc@bMz`<0f {ԫ2#+00A\iPI6?vR5­] $I"/M$b,!@ubboYޑ^KtK$΀d"P]PJwůe161!Dq7zǤ3 Բǎug3`vJ*]mȦݑ`dP 3+!Ӡ;wOo6ձ1~8g ю +ERl.eVt{ԹoלBu?oqUel2P@P-n>u:$ͷ>o=#q?;&-?N c^Bz7= +wKru1ư/vClB$5tuaYhunoH>+>ʬݠzD*$#CcxT~W %9h=SB>~ؖiG׀fRX}r'ݲߒ'!cj!E'%%:wi",w$2,)]^tRrKݿ==3KKYϲ9 +@ODUuyWC?re+爼r6=M)OB֊} +endstream +endobj +317 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F127 318 0 R +/F128 319 0 R +/F129 320 0 R +/F130 321 0 R +/F132 322 0 R +/F134 323 0 R +/F135 324 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +326 0 obj +<< +/Length 3093 +/Filter /FlateDecode +>> +stream +HWMo#<Ѯ,"`b(Y @.a~HV͖gl j6Yzիooo`ۛX `q<'%׿Mgf2Cm@.X;MoHݘߞ>@|f;H|zxKF:D2iC>jJ d`! q&i:G~yzD[CM: !f ).0v Ow Ao;ůaYt/EHwIaPlC#W"2 +|,a{:ʆJdЍa6Gst|ZK T# CA;["\TWeu.1XF?&߉*@\ #J9bˀ +y {'Hjzǜ.9^Co>OlfT/rlbJ @wS,.Ps A'!%`2dθ~J۪<<ȞxƁxRMH@Ed=^lsq%Q>&8#,;͡8؆p O +wn +)mZp}jPGb| @Z6d{u M-#L dB;@4Vb6wAݣ\۾ ہr( EUWi#1g W6<ӛaMR7x/o=Kp)lYz?q- I +;c- +Ɗeb.ص=ӫ _ ,i _DgҢ<dQJ+H˿;#y[?*` 3Dѥ2@P 菮'[A?&#:C9^ۃ *nQZ7.bv,yz`./|*Y +eA]R)Y9&'xxq^tatpF[{2 jyv-JE鴏nzpvgk.{5.afVFBG=HYB-iڢO8" oi X[bJ ӂ=& EwFX <6s=7xhh&+{K]ߕTZb1GDUL +=hkdbU2YVe!oЪ\&Y`P{/OD2t} gf;BmcXj\JM%5jg] +O+6SmK42/ld.ߊb +;e +|,yXq.kw3R +͠^OYrN57 ^Epe0) #yeڛrVWj%>(4ϧEgb։ˆ~JX (ՐoXV(;tqѸշ8pWk3%EL?riu68P~W!ˮ++`"D+r{I(еG^S_ș(ws0 +`3f\ ih}"˚AZkowP vЋ( xSz|+ TDl W*_A{*n +j"F&y \ӫ\Mg~KaR^d2Uo& bC7Ti@)MVǨ}Ajaٻ. ;3NZ+55M-7?9䨧\KخX+P{de]۝&^0j^ WҚ!-x1kQqif k%qэ 5܀q1|GնK?RBet^yv:gG۾&I]EJ4Hѧ s\cZ J[ =k<6mWy\ozK?Yԍy3g͓|X; أسem|6fz3y{n&YYc5R+ؗJ&eU!':!.ufMcM0|EeMg0 }Ɵ=hP)`piF/V?Eh_&,M6}wV.o2$m )'-weNMoLp~w2\ +wCo +N_B9Tn6}8AK׮Ig惇)=bd#ӈaEn4iNhyE^&%{54{ǰP8AH ^IJ~!l!V[WnwӅҚH#Y7 J[:J_g2Ww8%I=Į FJHKTzQ5ky5?v:'^5̌W2<2)M䦱BQ?aFYSUjWlH˦: _d"ESgFIR&]F&_% ۖMpToNC7SKť*DbrۿḿUSD]:WKwJ@taBєCܬfb1"sMPll IX[e5D\,y ii +!9/L/ fK`PʋYpC؝kw]1LCKy#+ZЅ ݗX)KnBj>9neإ-.{*\p,(kOv+Bkl C +4ȵy`]?eb.dgnQr"^ +^eV> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +331 0 obj +<< +/Length 3160 +/Filter /FlateDecode +>> +stream +HWM 0atye*I]08$CS,``/a~$ɪ)WWo?0㿯qN7ÇݤyC9~}~+;O㿮>ޝL/ݞ\p7 {#ʣ[ O.\8>^_`6i8~1 h [S. lPHuÔEY)/?i݃<nMkW}Z1rC3v@xbdqX92u䢸r^e}O]Kt9z(G]ȿ; Oz(TrŻ0S,@nG@?Ϟ}A> _#-u_@fKl +Ɇkp^ό0'r<=(ע:7|ɮJi6 >tGG4/=y9bZ'.kv5Zyd;fL|<'x=!mzwa! +Ŝm$=جm8x|8m׀a1ҰeFt cS|!\z%7[ƨ\Lq1w}s\=)]V6DWzkTWRHia,r -ElPdM[;B%g=57Dt*Y[G^\z_8us96 l;06w#b3( IoF ̽i^q"RnU \#MknRBQh2s~dOЂz|m"\fݻ!G|FU  ,OI6h(6pC]xs/[,eh(,2'I + ֎ީV(y|{Kk}ċAp@U^U} Mr!h )eUQ<X%83 + SI6e5 tUi w$=2l krs0ǷӔ=$,jtk_ׄ$F3wRj[d6E +QuEEH?4m_r1o{u7}f=u9ҮD"(eboc Qr7Yӯ|EA9 qo70q,HY45]}J?Zf"x\4ާ0 -Ŗ 4\ ;<:@iVg-IvŒ`<Ӣy{=J[{kY +ncg,IQ goIq0L]Z!j4H1/1[@ ;u8:yid UL]k:upPi[W/u` oVtŷ Vu/oe(g~FL-˅KWl'?g5ev$I%٩S?po *¾v!tV=mB2V~ۘ) +cA 3p8'H~w6Ǥk>0^g'W6N%ŔM^@I ̜jJגB ^%Z!`h쯥'ad6¤i64ZOj<فྠ,rCi\!a^j:Te) *H[4i%34يՂeyS:B?Y0:NA?+bPRJ+(X 6f +x#eѭ* 7$OA X^ջδDLDcٛޠTeYs͝@! o^plenYن~ִx7J.ۖf2/~ƠC@lL5L,>g>/"0(LLvr(_$@[1$ 3`€'F*QbǍ[ Szjj4j,!d1 C;4SYA%=0?[F&t{뺐7 LAS~ŒRMuPʾ9`e ,_IF(͙p5jy'5:@ $d[4hմ7$x} +endstream +endobj +332 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F139 333 0 R +/F140 334 0 R +/F141 335 0 R +/F142 336 0 R +/F143 337 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +339 0 obj +<< +/Length 923 +/Filter /FlateDecode +>> +stream +HWKo1Ghl=כ$' -E}3czN_C 4÷dnR^h~L'$?75\{x=wΧwu;>?]`o쮮Hq?2Xb«*Ͽ҇%>.IhĮYA1Hp˾atϧlSLJ~ B ~iV qɦ#~h(uiB5gM +"jJ$% 1Up*hP!%<^Ζ*WzF4lWė`u+5{4 C~_=%&)?'v.3?yze&_0hLpJv\ _E`GnrP> O]aAy]OJ%yfuX2-XBKKCGfq@LEi'̅r8P+{rĝ0\n+WJŵdSwh὚ +9]fDj˓ +U5R*$Ts3-dV֌qmޑ# +"OɓSg-u\kWlw)QzFXvh[CLR<#$z4$ɶ}UFҹ}|*uƵ㬞0TP#_o1P1JcT*[x#JsV6 0!yIDhhBj.|LD~ z +KZ~WoHթmo{uߏ/.a TDtE͝E[׍&ZXQd9)o`eQǤ#eţ:]fk1y=vsF6#L +endstream +endobj +340 0 obj +<< +/ProcSet [/PDF /Text ] +/Font << +/F144 341 0 R +/F145 342 0 R +/F146 343 0 R +/F147 344 0 R +>> +/ExtGState << +/GS1 131 0 R +>> +>> +endobj +345 0 obj +<< +/Type /Halftone +/HalftoneType 1 +/HalftoneName (Default) +/Frequency 60 +/Angle 45 +/SpotFunction /Round +>> +endobj +131 0 obj +<< +/Type /ExtGState +/SA false +/OP false +/HT /Default +>> +endobj +346 0 obj +<< +/Type /FontDescriptor +/Ascent 714 +/CapHeight 0 +/Descent -210 +/Flags 4 +/FontBBox [-4 -210 940 729] +/FontName /CMANNC+TT8A4o00 +/ItalicAngle 0 +/StemV 0 +/CharSet (/three/i/t/S/a/four/u/I/v/V/l/d/m/W/hyphen/n/M/y/period/o/eight/c/p/zero/H/e/D/one/space/r/f/two/h/s/R/g) +/FontFile3 347 0 R +>> +endobj +347 0 obj +<< +/Filter /FlateDecode +/Length 3694 +/Subtype /Type1C +>> +stream +HDUkTY@i:FeԙQEEF"O!ΫUGT0 BI@AW#,;VFf?[uq 0c*7$>׉LOļ!%|׼w/̀\tFlsF0ί̉0Lq1K [ar5f6q0b{X bA`<) sP`]ɭ>:<?G'DBkDM-0^@.7^l,7$TlztD`,#o4}Hiey]XHՓx[UB߄$>㜄ʗȃOW[͹GM&}=D`W䭂רJm]Mǥo.2BΩS/81t䱤C"!Z711+ +(CF+R +YMN3Nk T| }d'_ З +u Z9(Ax:ļ[Bt932բTM"u + 0Y2Dt+[B \%A!3j-2hn,-=&KGG~ 9~b7Ƚ4""*Wh +yEj B>xL`Ge6Jes1s~^ӍH9ŭmhYUGez' "P +r֋U)0O`hY|&{TUE~L)K\k:;~*XR6=#ۈ_ԯB8z=՛Jt`7`,#h +S0 +U}EOejhc:fi,c^VW\W)ftɰkbPZn9u) +*"IIe񙒯PKEя5]k}U + iB'T[lH'ъmD[-+ AkQk"~(9F6Zٍ|uzsh?3Kyprv x yVu5\]2y0 *rOct7ݕq uOROa +XFA31\;{"|F8c=R-$G\;;n#1q4[}pXI5P w;eޅzW"=ʴѵ+ՄBunNRSIQL0O$dy[4TMHsZs-4_#dތibB|O:$Y@$dePkļf3Un[.CG4:a#}v;]wlsH: g%p?N8 WUVW^i+K 鷩Dm&: ag7 -b$籘B E|= 'g2y:ٜRsse18{朜Pki<8(Ҹh)wD".Z 2=V'tnp؁,`;LT$ĝ?z=jes1o!$,K&OלW\R5M,Lq8l_d֫ /C-$^3SPI{=^_&UiԡRs[Kjd[zQC9Bi֌_!4_ڿoC)$B,!Yw:BQLfҔ,v&*Rڸ8eG]s'_fCڥ:9QN>bh%H(B^Ⱥ+Vyak9ئc ha>͝rFpt;dD"K}T M*r!Z$žw."FlB#V^&f?ҿ$ zZ0v5;[JH>-B V{VFC~BwBPQ?| +Q&uc7*[õ0-$c+mx*8X-t.-Z+X6$c!KXB@@R$RXD(LqKնb]un{ss~{_ /k}dFoRZ:Y-dX4xv@=<2;QPIaI+"hc!DqP0F0E/MisDK?A9`}CK֧9xhGuSއK +>Y4p+i pk:ض8~9Ol`ԏ;4۽^PU:}F$r %s%:P+W0eۈ`n+ re44֓^Ş:805HW hA8QoY$Nu™7~#G< +'ɣ8Opqv#ݬvPRuh7./S>@هVV ~>c"5.qI'o@ۺ{Awg8AQ$EJ䛊ba6 +>*xpt#۶æ2+LrP%;IL?LJA/f9(UIaءQiTU[L8#@3Ъqԃ>## b<~[ڭƦt'ϴ2WY?󉉕8Eb<,p*ڄ8UFR^W ' #F;idZᝌVej ϨX3LA޾exMmkȬڎLF2OGqXe,Bt\c!.r989Gz4o7ejXbbUAӯ]wHQh׃ |s٧ , &ѤH A ݋EѮ鷀_en,X[c7q(sb;`ŭs7t0]ͬsib~ zT@?",䵝v5g7"͈h&ZM[(: M[DMRqw<&ּ;N9ό=6w/p9vB@PtSG})똵CR,E;#0=>F:wv[5.fPCh.+ӘSըJR +P.a +YnI(:a t_mG 6*dYͮ#i5̋$@oOO\|cf0(i[Do[GR(F#>{vh@ʍ'1!n>RÆ#fJw~ՄoXSL(*Eʣbᛊn퓑?0 PǮbEpӱc÷ۓ +PחPϦRJWA?(3\H-(򋨪]d5eoѵh˹Wj0K[Y%`FrC܇ªZMSP==AJX1V&==$+LȴYaڬ|V]߶UKii"= 6:O|&:l:OB=S#:!ؖ +endstream +endobj +348 0 obj +<< +/Type /FontDescriptor +/Ascent 722 +/CapHeight 722 +/Descent -216 +/Flags 4 +/FontBBox [-12 -217 832 735] +/FontName /CMANNE+TT8A5o00 +/ItalicAngle 0 +/StemV 0 +/XHeight 530 +/CharSet (/F/three/bracketright/i/G/t/asterisk/S/a/four/I/U/u/five/k/v/V/underscore/comma/d/l/m/w/six/L/n/M/T/y/X/b/A/N/Y/B/o/slash/z/c/C/O/p/x/zero/H/e/D/P/bracketleft/q/one/space/E/r/f/semicolon/h/s/R/g) +/FontFile3 349 0 R +>> +endobj +349 0 obj +<< +/Filter /FlateDecode +/Length 5357 +/Subtype /Type1C +>> +stream +H<{Tw'LF T-JZ[AQ4C0( CBQ1  ++PZ]=i =];{~sCpb]hDʏ|-q;j%rMp[X(X)uZ/ q ]WoW% g\uswwӹDDZd&*E6=gO׵T`[^=Wx&\H?[WXXFUã[/-?Hegg駳y6`ҤP_744P~N]Z"nY\Ws̉JXV}nꌪ}}miT!L, ,DWF}\n57vַc0$`?8r.UG {+ ۲<:X\a;|,3fGK9[SRSR2٣Ƥk04]^ +ُI;Ix}<("q\2r]<p7 ϧХPOLA[p'z#&{'  MfHq\%%*9{RE( V悴v[! ן4gPKi:T}?ߔS[y*CNvGur K]ݳk_>5RPD +[|YeZB5ц4!KuS~j5=XrggeLMPeӏ$r&us լWЦ=:fOCz*MdwmGc|ţfƥM=QDl8ZO{72~|k-uKڰlD.c,iI"2}aB˔;/AΟpσSo!+0,#גakmU:LӾ]ܑUp[/Uk2Qiav#f׬S-buL&dh!BR ſ~~XdD +gOa~ x{'ڵ~tĖd3gm6feԘ/WK=M7I?S?.jgonc?Ire(-54Ԛ!n 8Œ^Xb4kΏ5?>E>׬3Z~,8oh 02闷jbT䲢4jGZaLmCSRwƉsz=լSr 2*[Eai}ɵzǛU]еPMzuMji[)hY|6EW^KGEe# yb 0s-}40$ C(A65v@= +F_hZUD{_`*|+h0A034 +jX>{nOs-pm^[#PYUH5]_R-c=YL:rVeS\*__U|'NOvhZ/66ti'GЋ>fovWZk!Au:gEgV )< >lGB*~6q+cݖe +֩)vUY'ܭu~(X\PBO\~)/$^B* +0kYYdןuu0G +N-A$8 = +F^0DOlY.&,B |q?/D"V\CQh Ye:h)򊰦"` (JUĖ]"/>{& ug;w;|Ϲ r4hPׂk׾n7o +={#5o*?`X7?'g1u|dE?~;$`3za# n :g Ʋ_tAč*e].QWZz ^;hXI+g$:FQ;RC>݂!!`.Uu`usxC鹟 kHXiaJrg 93h +-1%<~V) Dsv|DtJj!铽jg(㓄heLRLFڬ?|Erp=r:9?X&'zgK UuDi]c y1EUOUʣk{V@+!%xߜ=}.)8TD!Sq9ܲgx !5BAx7GaFrMrhGᦣ f?uT iBp]my-lh![Sh]a Si9!N~VR]:."q1ǴN7gw{UI˔TԡEhB_E?ǽߑ}ͽTSo֙u>vP?Zz9~V2o@)?# ;3I.MmDUB5(*K _'ۥِ͍7CGT.jH\Q2y{zF qպbp@{8Vk~)0B$jQUb6'zSISЙ $z]&BAKj*K#!$VANho% &%Eu{eb66˕˲ק!0}w "{EZ΅[#Lz.*@<rVk+;{shD85ZD\_C>߹ ;|{Tl cl?hЗ\ ?y9VMˑ4DQg[\cbPSy75DJ/C[_xH ֞KL O?W/MjcLX&FK7`﯏̉pGwK?O0InO'[lx=4`K<2x &t+iK.Q1ߐ .5MIBK"fW#; +Fd7L]Y"LvSiެ^& "lA‚%AF15;H>V[]SYX܎ C8fz¤hb"4PH3$$K⫌~~@8|D0\)ܦo*Pprf;ޟId*cɵ4(6 (4X5Ge:ՉMvԗ,'t#nBKB;DOv$&a]3x% +F +@ +7J MPlVڹpW~+8VWj$1r\fH5m\ГQItT $8:(vПPz:!O[&Ɇ >sʵX4; +0Țm*2??Ei 2MJ`d"WWIQfIk\#2ۓMy+| +q[g'/Yqn;ݶBًl2r@.%+[wm#.pfz鮬 [Uge ]S&}=]թ4JO屺٤-hH?Mobtb2EIUdK9$WM zuր-ϪJ/I/DF[3%51KFHJf\j5X\߈[O8)O)K)`=En'=M$\|[ŪŢ^f:M{n^a^Wu2pˑ?7g;ď[sǴQqzE:8@]&%(b@)t0RXa&]ZR@, aX@Kp JrO<{ݿLOlܿ>eӈ (D܄) r@p +#^rFƒo< EĔj޸))=)Y*^56,&ɩuZ=AfdDOpm3ccf=mr/\;}yWLEn +]9}M6貍/ ep4IG_!Fn -}CM9|)V-8Y%#$ +Vˎ;-&ir$dX=Yl\1L_ZId駮5W5S jCx;{wuEP6@mwi߼a=x+ܖt;LWS揯іZQ^.T3ܖI'IXQrC-V7Cp pnn|h36MApIXaFeR2+֚3O<Sl)Ah0DG fA(_ >!)"O:.Le"yɉyl_7 tG.i* +5=YtƯ ӠugAF>{")V@ž%Vxm:7qƶf{sJcg5.f{q66#qP H x \+jA\vGNe +˴ +:_O8)d2?meDHë>/\rvDk]+ `ܳFL|ؐs!"e{ K$i~1Bv! wo +endstream +endobj +350 0 obj +<< +/Type /FontDescriptor +/Ascent 722 +/CapHeight 722 +/Descent -216 +/Flags 4 +/FontBBox [-46 -217 988 735] +/FontName /CMANNG+TT8A6o00 +/ItalicAngle 0 +/StemV 0 +/XHeight 530 +/CharSet (/braceleft/Z/K/k/comma/bracketleft/colon/bar/space/m/hyphen/L/semicolon/braceright/a/quotedblright/n/M/period/x/less/exclam/bracketright/quotedbl/o/N/slash/equal/asciitilde/d/p/O/asciicircum/zero/great\ +er/ellipsis/numbersign/A/P/q/underscore/one/question/r/Q/two/quoteleft/endash/s/R/H/three/ampersand/b/B/t/S/four/c/C/u/U/quoteright/five/e/D/v/V/T/parenleft/six/g/f/E/w/W/parenright/seven/F/h/y/X/aster\ +isk/eight/i/G/Y/z/plus/j/I/l/quotedblleft/nine) +/FontFile3 351 0 R +>> +endobj +351 0 obj +<< +/Filter /FlateDecode +/Length 8255 +/Subtype /Type1C +>> +stream +HLT TSg~&4ya ȒMX e7J VP+u1@fK] +eX(j 4ǭmOc;3swyw{.B( +3(R%vMHmXڹYbx< GBR]>|blm𜭗/F/$<:qL$ + !2G]R dn|Q)}hjLuzQ$hδhzL-b5:ºZiݱ$dIҰ/;2# 1˜qbҙE˵([ KҲL?Uv }('ⲸDc/}4qe +'Dqou81ڱq< lؑ "Jq.h isǟNh+*ugkgs׹:@imƔէ2v="tXR ,&NX`M'<(,"oOÎ=1ӡRBI:LEh@VM7EiJYeRxq!qnGGљ7w\iPlP5xWWz\1ixD=MA6*8HҷAmjI"c(cO@ +q0G=$ D@m!ĈnX"$E@/GF Isa6X6C뚗US9CpX[zr60ƅLM_?"$A&s»BG6='`q2gԎ5Ov~\.&*"GVlk?`-opʴ%Vc37;,=jDp|Vy]%;7tT h<6 +/F'H F9O7u8vC9L2/0P'#۱ M ǀ *D8ܭx mZ0q86G@*І$E$)R~10N`C|\h qN?AA& +=p)ЏC?tvֳ̅5 P?[,=0ݍը"ϞcmT=ЉsC+;nF7@[gH36Iӡ[U/pjMA5ķ7BZHZ i  #_+ؕ,&O3pΟmh9ю8z}HVo0ŐaAE_i&_m֢޼/ ;a!gX_ʵ#XclQǪ#[6` !]pX!Add,Q!؛t T6y=ЊFwL+(F0X+p7ux*}bYX<& sI4X.)@ucQNa zPa bCG/ܬ<~7 [5C\_cf9OAc/BrJnN*+ 7[>kDbߦfL!9qNXU-)ͯm͒>%Br)>D)VĕoOߞ/9 <M~$lB'em"XY +UT/z> L݋֩_|c4˷@D7h`|IMfnxL{jJ|5۝>\2|0?/)D6ͩ&*yoV~V,0Vkif19{ó'J.Q{q ҡ#CkZ2Zd+n/pS5Be"nO|~T/ "tktan0~ʘf=퀻RA֨,%\.W.E@$ME"5Cd` KrV]M&̔P D^AQ0(>tfk1Nξ笽}':$L Y -Ae1|"pfys09ZQ7/iDlj#u:4.Tnٰ]+LFjKE㴴%+*Ykqg s|5'V!WK Z͠Y;!aܿQ5po'g`?43`B_)`I!zS9f+aiRӠq6ZBWK:v*UՊ†6}7\9*7P;EBn pB/[tL\L&]Ҹ)Ɓ|q\hl"n>2[f^ɒ\*ȬώGD}u2\Æ ]İfޕU&vfg9|*T#$6 c( yy'K +KUed5 T7u5RQTQ.^6l8E_fFH2w4W;ueQe"ؑ0# %@iĮyͷ`JPMZpȺU*4WK%|)&3>dvK_YҲ/a`H.Gս{;_ì);E?gKam+=Ȋ)DdYK`@O *faРo} M^ghKA뙚b%S5@n6$>EZՉǐ%Fap׷ pj[~p\m`\HO?7Tooh\ʓ`u2sB c-d낦wF  VR )pSMMwݓ@tqQ'{↘ʕ9(BL0KQAJ_E0Y|$E$L$Ӹ=(P̯/5>wGRGR=D嘤? D >Ըj*mi^hL 4FYQPLm Ha|kFv$ES?.jI[ LMZB2ιIo݉TAܜ'F-P&a_FfK}o|yQ̒Y#}0Mlci@}(Yv[,?"lCV%yR+9 +:,E1d2G624}l$~u`i+B˘'l#8r7ru +vI%#1ꗪ)و=DdS\|p;5LS)M=]2 ZF? DF1yl0`+*o TwR:vSHߖsf +h7#Q ./кdv FZ5VX\s,Xg`$tzcٻ`6a(n}fk[1ZG]?\WkTSWBn.HgI.M +F +<MM y( A|2S"Z-`Dh$<% uIeqpnXs{9go.'>Bպ,`#=R+Lo0Et|t/. +qr>rIhu+u5Tj>yVLLb 7f~%UmXKz-hlVtEv @ Ɇ9 &DY[ڥ̳Y?f=.;fE;VXbƓ*]eӅ\yB#d23`Ua8U.v1}h|ڞN_#Z5.y ʔ3^PCB~i*Iۭt#kk0PH=Y (f˞H-:RpXSi.Ż2 'N·%dF⪤fyu=s7K?Nфj& b_)wE>? 4x1bƲvFi\֠y[{ξD A32eO2/23B%ƣ Cy.mօߗN҉"SrЩbyM8YILcW:xgl@FikPO%@*F-^]kNHݘ!:{ym2):#s;n/h:-eYrM7an}UA6؁?O\ی=%EQ Dn:ѼcD__rSjl S|;,^K'ԅzys3,;~8KW8WdƘ +1C}ڄ͜}c@I6X^2,5 XDjuVmh7s,*!g`̺C!ch_N1'嚧A,pL4BcHvI_0.u +Y,fĐż4'Rx0h/Zݓȴk 8$/'~0Ւu75׺:҂]Gߋ'a' !}L;[}m)ۛ% 50" ~F\> AO&f +=b㗄һLx (հ钠\P( Ʒu.Ă>=BcmB;g~:[5>4OWo1zIdSHy ;Iĕm #.\\{ސ?+.5k״k*~Oz'w&\iY8O_նxubS8.}7lwU'Ȧ]!ݨr̨-lHũ&48L@]aAv'dJ))1)"/ֻd1PS4(-:Q v|bZ(Nk\ WA/y  .ߐ^h9_(dr)>Id-T䒖nĚ|#nf@NR?^m?3 +'_S-AFK( [YWG1M'*JmCm}#eeCo_{Ċ9}9@ +Q>ju3|XII1?8JkU5hPl_r3t6]`:wɀVo^Xk;&2`x-YE@8'dBLDD"7$"ϼ9C^O+?F.R|3?wݡG&U5=ӀMǬ-2xkpZT(.\ {%/2e# +SAO>M•.E5̉-K# (.+όߛ+o;?pA?8A\Ռ"B/_ey-2c_k9 *^S3Rl +LH|; L\c}&g'N·1)1 =oDHuC\Ġ>m?;>Xckj^=XulTq;cOIR6`cYVxtKě9TuL=;s:֥T&OJEt=,?yq7LrOgS2rnzy|CV%Ϙ'u"mZ&~3yc@u4k!ݞfFp4c]w<蜭?GޞEOm kK^H4vٛ x8qw(SbU5vR]w+u\c@#<_Ɓ/BqsKs, b[48> +endobj +353 0 obj +<< +/Filter /FlateDecode +/Length 5059 +/Subtype /Type1C +>> +stream +HLT PTW|A?Q@A4 +(.l-,46(&jo%o +(ۀH-*TcFmߔR^}u9\bgצ~~˝l4f&\Dz"NbOO3ߌNƺ?1sa7 3`fc `$@⪷=["%X0#7AߪNL!;,DFd ! + +,Q+q1xgWN}1_s{3 mՃ>),^g9էʊE tb^xVҟ >eLRR\z8y\#H9"6NSȃbyZL$%;P2!Yј*T嗗W旟;Yc.ԄRHMgoNB GG^ȇ`BH!Pd@?anN2S:A_S=Tk>=RF@+|謲A39~.:-ȋkeb)4,ݚK!N=ϼ*3dac|`m_.T6d)k[_xdϡ->[x:{h$qzk:͈덦+ @ ehWu[P&0`3 V-kH=qkڰ t|QUѡ}qm1Kv~b1i](VRGڟlؚ﹉߻4pAJJzB5˹-9jȢ3*PE ˔XAc+z#qCt0KM5%%udIYUu%U^EGVzwPcĊ1!΢4el#G{d..A<-6CnhUX[ `75h&ЯF.:!xE7l3M{}=H_qJtp&^d0a2(r{6E?U3wKZW븿Pkv8{ځ)e*iuXiPy7ВX2ь5\ݶ؅){4GX6=bT[N{vKq}gYRޗ\m-bu'PD4? 6|؀gvbOIJ1|?oZ?…jtϧN2(`zPh&PnO!|dD+|o&lx}(]RcD٦epM,>"^J6}%U`__t}5^ +B%l``p)@h+]@vfHxߋxAF'oAn_C;qDLZ6* __֮Ak#ؕcR^ȭWt(P͒#hey%0{O}?NubmYp!vGs&5 lbyY_jL~l@*r~V}Ujl(یgՄ@_Bbc7%[k%L5w:,% &NT}zv\sXpQW{èXwh|5o_̀U*G@`_KTOql2g$\Az{fBצIɀUNwlv -.pr]šޭ;d8yBx_/zw0B ά^tfCTQ(x~3L +yY%[I˼HE&N3򟄾zYw[<<؂F\0X8O&c{4sh` d*tw[ԥS'O՟l6^` 1+,Ij ӳ"s'")4A(0t5̱`5N\c:OPoVs)Yᎋݒl4;b;]O;i10 ,:.Swڊ>Yo]~!ziz@:*R"UbEDdž!TAYI:Kb AlMϴ$|X LN{5 $XA6zu3ߒj.gjd4W݊JkNǛtVe5VbjVD1<;Q=k* ,aW > >_vl&3을b}K_џ5w'=ъkګNݥw1\UDRFmZdevC#_a;IR0Xplj`51b(kIK U> op I '=AtSh9`aboaW~s vyKkO # N_KG D [\1ޜҩi47mq 6! +`U\~Puth4cĿO"F"W.-/.*/)K=}h;xM:-Tqu^}H1h+~蜢˾F"WpӪA5ngT}iL(,W;\NdfxFOB/!m!=`C!)۹ Y'%J' +$ix9ZeF E X#+S`~dS)&Ay@g`=N^M>΅2 )i2}Xsw[YZU0G/ܮғω P,4`G%6A\0P;Y 9@3*Sx"'-wP{͋aŦH,_Qvi`1ZKg4>a/@CL,0r/t 0ÂAF)P'dCZLj*͜О뺁 Dd3q/+lÎJC6Bln屘QYf:y\]- +ߞ W}fʱ4"hXEs*b"H4]+$KbvRc~̀k51ǫ3DA1w{cGE%pwKJÛ箝8l-k,J!D$sĥ&r[327G-7쥃 +k8X$p%23^h .v<t\<{{ +Pdѓ(> /Szb}DTWMFМCa)6V2}:q0 ! @"+FC] +a=4E ]0A Wp:DP,\XdazJT_TqcX6+p#4Ԛ,\C)g576i:ÈIEYQf!#T}S.{Ͻ{>{DNLdE@'qa( ~Gk{~Z./{ m\e%9)f +ȇGVM, L3$a`a5(,c(ڰ6aA +|X CgE|n,]!\˕j^,)Sx* +%DVpeDOQ<h,ElF\! k>XgFȿum9 +endstream +endobj +354 0 obj +<< +/Type /FontDescriptor +/Ascent 717 +/CapHeight 717 +/Descent -206 +/Flags 4 +/FontBBox [-11 -207 826 728] +/FontName /CMANNK+TT8AAo00 +/ItalicAngle 0 +/StemV 0 +/XHeight 521 +/CharSet (/three/i/t/S/a/four/u/U/I/five/k/v/underscore/l/six/m/d/L/seven/n/y/T/period/M/b/o/z/eight/B/slash/c/C/O/p/nine/x/zero/e/D/P/one/space/r/E/f/two/h/s/F/g) +/FontFile3 355 0 R +>> +endobj +355 0 obj +<< +/Filter /FlateDecode +/Length 5026 +/Subtype /Type1C +>> +stream +H< PWǿ<.y`>v.Q":y# o_>jb踈VGXF@AXPQT +XV[`ٝ{g̙P<.pC#Cd.|flϯwT3Zj_Ni#|e8;uwzxoS=(ΚQ+(ʇCr(.BTɣjVŧƩ{`dbqW2r GFr@^Xrjoֱ +66/]tVmn6W8H.,޺X(p tttw{` 3E~}ne`wFy}2O8h̖dbwMb}^کҤkTT.z ZX>> p}.ۙlHjXFޣuF1~Z3"=p) +Y$6z!c&>H*F/]Y]_v n:DsHLuxLW+h9^W5j 9 4AS|'ߘ]:Xk;k\ƹ2M0 ֍L=l~K$k?%,oXWL`וm5JS33'tť +|bCഃf<|F25JQL4qBdfv_i^n~NQ<2cؾY)c{E6mkX[fVuk;Dzp_bg`2 5qeJxz82yߥVZ}*2+e:leqɝh2Tjk7ͽ##M/MhM TҤ?yҶΏFMfўHr3>$FYǬ)ȸ99K~- 38%Ù Ubd4f +qt~/F\lXNոplDe֚˨;E?/_cXm&Xeod(nu~4ΟH4HS7䥟 zh_}Y+r;&xkP%ຠvbn%Ϯfק_HDSrI.rKq+ORMN +X 7 nYDJj{!=0gY< dE< YY6|=xk`xdrar谢2)#D7o 4"?Y= ~K'Ov(c9uu=J)pOӯv45]b5b۪I^WKZIv>Dbѧ hn P5{XͪW~r|;X_P'Gٱ94^[ +1Z\?PאgŇ\=SLo/LJ>bM7(eX +a'SC)|b*V;{\rfoK\ J#mvB y `AN b$!<%[BdØH)cf0ZO ;FȄ~'y8M˕P +f]4Ǖ9|N+d"/1XgXڭ.U 6QB_^(Wȍ ʲ;$>P%nQK3†Q](W4 g؎Z穯cd=a6>lP+t(rh&r͌ SviTqQCUgȩrAYHIܙ 0`}px>&(ľxO=chyg[M>FPny^_szہ0 J "I8ђ_nhB~§x钾)܃D˒C`0~d2ُ`3(`h+d̮ =6.73`a7_]hmQH٨jRL|E'z3L:yR$By\=ID@azOk:fw9380JNU2M閱QxYOU2ǞT#-߆&V]6xl]nGl뀚֘>q-H`Qцz.ն/WRjQ ̇N :C-J1A霥MMaTFU>2I/G:0/]ABA]mmm]H6mdgxJ~YZsD)r~q,Eou Ơv3Ѭ㷎Ry*DũE2$ZωKFYy۝I9P(o&j VhCaEa0:53VA&3tt+ Ƃ7r/Cs Uas@FvA'Rr{"οJat<ԙ)lI˶ @}|w#)~xbǧNjDqYDVx=;K/9uTnMVyFafA)'{YQDvQNi61ѿ~irE@)ɎMeG#A_X|Wʹ=|\(eQ,*۝Lh[Yk. ^͌pYJU8u&%,l)[;0'ge-NΪmiLf`vJjmq_u{/EFan/W!L&vP5kHSaǃ8gÝFDZf"5/,f[n*k"l^fN59oY%, L/AgG=R{g@G}etKa>q$BQ4"m fm٢[;}`6UX`@Th|0fa`fYcQH@E9w&j;'b>5Q6ٍ"{1: +D}2Цբ wD1{e.%%Z5oX{DIvްj-B- cpHI?"޿.F[߈ߊ'b{Y.6Y[&rjeDyEMTʭ^͊yϳ癎dh#''0]9(QtrA~V{PNQܤ6W*-unC~u /+WE %VHz[(kklj[T*I_||B g/y slօDaRBE >yN$yT3YO|+|WWJ ;(YP7pS>F1k^ xp ?-#&govަ@ +=Θ^ pG+ݎ88A*3MOP +?a;΅7l|vT˘-ͧ`II!_]R(JjZs3CbkXݰX`hQc4s̅6҈OO|]nc`v gʐe>&|:6Rp.JJȠas +endstream +endobj +356 0 obj +<< +/Type /FontDescriptor +/Ascent 717 +/CapHeight 717 +/Descent -205 +/Flags 4 +/FontBBox [0 -205 795 727] +/FontName /CMANNM+TT8ABo00 +/ItalicAngle 0 +/StemV 0 +/CharSet (/F/three/i/t/S/a/four/u/five/v/V/d/six/l/w/n/y/T/period/M/o/z/c/p/O/C/e/D/P/one/space/r/two/h/s/R/g) +/FontFile3 357 0 R +>> +endobj +357 0 obj +<< +/Filter /FlateDecode +/Length 3830 +/Subtype /Type1C +>> +stream +HG l.Ӏ."* ڲ 8FTF66K,LD\J(NHDX N>$mwֻP#8bOg//?sޔ`e5wf2283΄`ҥĶ~;sb[mXsD{@w` .M\œC K6jZpU#C%9,K$J)TۥNjk<]mrj!Mgr{.ڢ%Y~ѥE X)7A>L' Q"xP`"dfO|O|sdy0Yx([ےLTN4r伿_!2ycW+M=R=;UOJJ@X>q*y7.*TE/ILK<G4P"gd9xXr)NNOSQ㫓얼6–eeU7g{v`VvXj 06`23A_˥9H86|\-3e'VdaoJRJbdRL _p.UiTޚ֙-]VB*ZϨ&Z-H# ̪LÁm7Hy]TS<>TyR,L*ΌOO9ayf ({rRy%.uǏ uxN. D jK$ 51X&4I8֚͟1©/%XT + U.fs05!H v75{ *mi&[Ǩi+q9H7ݷ놰f;lo{eF%}4jCZ7!R)^y5zh"cGx̙넓銄JK2oRoo9OX% EMkzj10^)ФJM#GŸ xp}gsܖz/_QR} tdoV_G"Ȉ#>Fg&Tݬ@l̜( +m!Ꙣx8B~]hC0a2&>7P_J֝-ekeȗZ8.ѨzGcѻHƤ+z;{[^U&ҟsdNzػcI2HWjgQHnosM"f}Սg_%/b8#8PpD^-S:H=(x$ש}޸;.}o}H4 >jFABɬ\Pa{:ȇs_L6W~|VM4Nro'PMLʫ/yrk[cOÚɺ%)8)8o!D=1@!hq;c<:?`7E}0t2 +LE +Gl?N,|h~5F7>l@ QqԬ 24֑"EyU7oU<' Dw@>eEx'u4;_; Fpvlb؅B&Y\of1RNB>ki~>>/k8i8;ɍlZ`OF+*2mar 8x*1{QFNE<ݹuեdYu~] u'u::dyy˂:5JVUѢUuiIG#PqVӇˣK -Eh_67%E/֞ 5 Ѝ}m// ܥ`6)-;df=I +x\I 㒏ą710H{6EB:beg̪gyVAj<<*I[m2p7ǨҢŭ*4H^B@CI #ࣚۛy ) !"AkYiZT\Kwz. ;̜~;``sis"F{@@O[\c.pnrXHg M^ɥT8)Rb C^%#: zf N3 +d>òz. !N |9pJݟY=h^;\|'Ȅh-6B{EAI8XOڎ6˅Pb6χXy`sű_\MۘVX'IrPb=HjR,I&|1qAH>t-\-DaͨZ 7YbzoPb~2b2XȇrkWkmmUoUv'w^Sd>Y)~>JGL/JtF ‰Zs쳺Kqb!J350=@0=XCܑ*֤ؗyp}Hy"NNUk-)ap]X(t"sI)<&յ{PKcrœu +p?(ŠbLb^_&e8+LjϾѠjTU)Xr[JhGy`'_؈3kE)T֫uiyr,O~8cv.rhŊ0mnꂯC5]\9?(ԨUeZR)94'tj;8_Ù\ +rЏaI^}oNuU% +R\x_܆6xB<&y󗺹eb~݂=1sfbȏ}޾>4.rЭ!/g37}77L.Q"np~*Ȋ>Zp٣s[\AXW9{f*;0L 7IܚȊ"y]|Wmig@`Уgʺc7]+O*, ҦpF!aSԂOp+}wzZjmŝ09du,x&^M*?JmVoPbysCp/{+`$!֫]3`03 7bʒz^sXFKKKa ٍ %Mj8ධҳ+4_-׸IgКQUT"ȸ̓!c=kɫ' ?`l$?#yo",=p+5Hhc匑DCT1q<_tXzjsh +<?R+2j M'syů^t:T}(ìB-/`7/5*^!2 +~XqU&ڎ9ocٷ{A˾%Rk54H556K;Ҏ<8-#i t Zpq* +{W8-{Y-W-6Dw{>Ł?f0#3 (y1\(Vmΰ_6 +Qi㺿_LQ.(X +/[ߗ`|X/M֡'!TJVp4B0.RqcpsBpQ$j/c,<7 +G҅7^id +c@Jn" +[$i5EGCR M[Y +endstream +endobj +358 0 obj +<< +/Type /FontDescriptor +/Ascent 722 +/CapHeight 0 +/Descent -205 +/Flags 4 +/FontBBox [-72 -205 813 735] +/FontName /CMANNO+TT8ACo00 +/ItalicAngle 0 +/StemV 0 +/XHeight 530 +/CharSet (/i/t/a/u/k/v/underscore/l/d/m/w/n/y/b/o/z/c/p/x/e/space/r/f/h/s/g) +/FontFile3 359 0 R +>> +endobj +359 0 obj +<< +/Filter /FlateDecode +/Length 2898 +/Subtype /Type1C +>> +stream +HLUkTSW {(Ҏ3q YmH A+ޏ` ЄTztD`@ň2PϪ֩:jWYko߽|NŋNNN y"?^pq]~a!B2vUtϧw9r8#>@#ؙ01Xxxɰ;]4gX| $mtta[1K˘ \Ҁi&{0F +e!5"n5 Zm$; FSIo97\mZtWeo-1Ɵ +$ʼnĬB!չGL+=p +0l A/ +A @RXSVUI8?,4D*ŊrʲdxWiDd&kz.Mg&qcq-y4gB@~j6vΪ.y?s4 hJܫlb쉕dIs UA$CZ!"4⸒i߾))AM|/N7%DjAZkm1Kw'DPj7/G'oA&/ i味6.[ =v}1iM.dr)7kxMR|\>p+@  + ~7>05J_n;L5,l%dFA vrـ >{pL 7X3`?,jq<x@"v-c ?JԤe|c^{u19#%`v?Lu;L$T +Q˒e"e0;}`CY XYI&ml_$1Hc %&806=!,yޣއ(;u]lj:A.}T\.&jա%u:k~mйapkm]XogUŸv)u|zvŅzۆV7܄/lG/jnk5٦z֨:]xJRAejSv}݁UB/0bf B&y,FE^UH.?ln:M{`恻՜|#6f߿cSS橞z:oC A0 ++ E]/ g˄9&^ǯ҉Sڱ<&z>>J# L,!;^!R CqrG̿Zl=&fnqEՅl T^CY/DoPϤPH!Kȅ9ayCǞ`9<@ +'܏eM,Ȣ/mmZGr:0Qfjw_h΅ɠmVԯ^uMv!:2}yyD3B=%T$=I+<~<޳Hue77is9UR*QGcSSFoPAgȴW;>*t_[4HGj( )VGш,av*xڿpcn6D!G#V'،gG5s+ 5]DI,>I29 /Txee=C܀'6;ɿҧ`3~%pbDdEcޟۮ$jDzFL= c n(RWɫ'/\3 MF/;0hՍKdBoPd\i"1?M*= ϵұdP9Bͅ#]uG1Za/ Dիe>lmJ`\t\8#Z)bˢ8p(`t߳VF#4+muSA>M"x,ǿ+HJt}DI 2{2 rIP +y:d?3S:2 Bd`b6-,l)A{nSFF!X!MEQ/=FҖ7V "Ll J eRֳlY召L̟MmkStE4FTQE&7{=s䄔,9xsېmj3 IczMCGDVگ?J?K<}r.ྐྵ%^دg8Dq"ϙKwDZ "}eHkB޲_7(dlib2?KNn|O;O.b՚SfgXg,m/_q lA`tt%38ΠF* +"vNZQ*h&;,(#aat\-V{ ~s8Bרq B*ՉΙ.p5fak&)j>20i6L*@GPP"| |hOtA F<,„$.Crf;FBw]zzU{g;=SV?(? +` `c˳8q4q%U(T[t bأ=HZE`mB@" +XHfwX1&1C`" .5?0I |+ar?첈,.! e)i`.hPƥB4i#G +tYm@JO=&0Yh1[YH< n֝?ľjj[s9$Q}b8P +endstream +endobj +360 0 obj +<< +/Type /FontDescriptor +/Ascent 0 +/CapHeight 0 +/Descent 0 +/Flags 4 +/FontBBox [0 0 410 470] +/FontName /CMANOA+TT8ADo00 +/ItalicAngle 0 +/StemV 0 +/CharSet (/bullet) +/FontFile3 361 0 R +>> +endobj +361 0 obj +<< +/Filter /FlateDecode +/Length 161 +/Subtype /Type1C +>> +stream +Hbd`ad`ddpuw pt70iyW0Cg̈́@j9308100322:vuyQ c'9ggt^NΗ9\.="~ãKW._zcǮi]883Qf0wR9, +endstream +endobj +362 0 obj +<< +/Type /FontDescriptor +/Ascent 720 +/CapHeight 720 +/Descent -209 +/Flags 4 +/FontBBox [-16 -210 770 730] +/FontName /CMANOC+TT8A9o00 +/ItalicAngle 0 +/StemV 0 +/XHeight 520 +/CharSet (/R/three/i/t/S/a/four/u/I/U/five/k/v/V/l/six/m/d/w/hyphen/seven/n/M/T/period/y/b/B/o/z/A/slash/eight/c/p/O/x/C/nine/e/D/P/one/space/r/E/f/two/h/s/F/g) +/FontFile3 363 0 R +>> +endobj +363 0 obj +<< +/Filter /FlateDecode +/Length 5402 +/Subtype /Type1C +>> +stream +HAB_py1^ge`.skt GƏQksłUc +%)l: s0g +21> ;cw*ńAy@-R F:Ӊ9b@8Ҳe`/`-C-+uHbb4aL5^a\ab*ڋK*GFzj.[-Q51uѝr}8 Iy_^-:̌[ΌAjT m䐺sz+bxP"+4I%6lD&+'ؓ&Mf$Β eu:$G5~%"5՞) +w*ȱ(RNȯ.7i|(F( DޠC̢uY=\-3,WlyBE4R$ =?.W#x9VY!ۆ6'ẇFYssfsyG:BoHmji-u֙h?Fvhf?݉ /{{@!ʓKdRidSȷ ?+ZB]=0ڊG.'32F٪IOϛqIdMkUs\L$I rU>k0WO)}O;dlwB%\'bMY.Vk!Rc` ,aJ ?!A*4pŞ~AoTglAipM8Q(u]"E0Q{i\PO_OD:(ܯa@ㄓ`fiِ?1,q@^;GV ;  =FChOgbtOUhS$dNZM nOol%4} 9ID(b7c6u8=^傣<77Đ,e%b>tqM?1BtVwv@yTh eUޑ沞+~My"UXU\H +$bHВgvԱ8|G}҅ !"e-V^dE^&D}kIӣ#@txƶ-A#Ҩ Moee׃ZEug++UOSE' + I9(֜|6=p5מC$ATT/CguD%v%7-N{fhu6_$+}dΘ$Dx(~)<(Ɲԟkˆސ ٯgoQ}/5Y r茩 䩋/QEGi P71jݪhZ6eY 97[s ǹiic@OraDRhx7X ͯnxi,8).1U,9Z/1xn ҆FPpl%2RE)jҧ0848R)~8XR=UUj 6[JZwĞ9_T=}1Қ])cv"w_dhiaLD묐#2=;f0thJp%jed}6H?M +.mUԱ-J2rUz, .,AT(B"H,a$,Q +նӠZe'DP c"QX[諾D93|g{1FaF3!V㞆Ef잼 $ƥtț*1 H;G< }ݾ^ސLq}/joxX(?p(v;PaX!lS(d{OAӋPQ2t) +wt1-&$DaC͟9c||/)qq-(\ٷSo)QeqWܫ8үZA"k1 #kgUGty2X-]Kv(ԹEBԟax:n2Z3 ݩ/z%uˍp=Eyrłh'L32BKp + ;S}:,)Ɔ/(xN+I#bK( Z|(c ľ/3 +hO̾ёEBUmc I21\`Gڦ.-7܍ J˟ɍ`2M}_]觖L7C=a/՝ՑҙRs[Zp}7ϱ Gk7[ֆ"}ҷnl[Kb(|Jlm7C(7V l5@vi]^z:v2-t + M%oo5}O>RTAlkh_RcTu88˸%["@kJ-,RHP2NˣZSzg5#=odp~Cq1 f$}3yPPIu'6&JE\C?MUehue/PZWh@@R(.s|Al+؈5h@,~$:;3l!@eMBcN@O9\wr \p=G!IkbDǨtrvV9vc%M]w]iݩ/8e>':$N׊]!PI 0Ew& :mPﳊ䵺[R!a} dSܙx~*:;- :GX"5g1tfۨs4ccƈ.SZ)^P}j5}4͸1fUp#{TY=' / 6t5syyswPpao<IҔV,]t-%w@*0VkZate:="=K˖A]# 2f@л7ğ1AM`N[D Qȅqcc!,N9<􈈧F)?!G1Z +@pak"]566qĒ`|pɡYRjZ.s,ǰᰮ#p, (8xё#X4!Zlaj(T Q.` Jߤ#.$ E74&RJA*a ctq׬*o)69\g4 \& uQ8S($q'B]bi^3fL=ֻUj䞐>m>jH˷c3]iӍ麧POϠMV*FMQAQАID|L+0qyuI.mRjYoFϵ`dxѐj2Ӣ B $5,>hཬX9A26X:![S1cgp?0Q/hP +.IGu9RZKt^RA{E6[,ۣd`',nO}쌾_S|\+by +K,lU W)nSS݅:.r($JkzɧpߚjmIt!B +xO-_> +endstream +endobj +364 0 obj +<< +/Type /FontDescriptor +/Ascent 614 +/CapHeight 578 +/Descent -192 +/Flags 6 +/FontBBox [0 -277 603 675] +/FontName /CMANOE+TT8AEo00 +/ItalicAngle 0 +/StemV 0 +/XHeight 421 +/CharSet (/K/comma/k/bracketleft/bar/space/m/L/hyphen/semicolon/braceright/a/quotedblright/n/M/period/less/x/exclam/bracketright/o/N/slash/equal/d/p/O/zero/greater/ellipsis/A/P/q/underscore/one/r/Q/two/quoteleft\ +/s/R/three/ampersand/B/b/t/S/four/c/C/U/u/quoteright/five/e/D/v/V/T/g/parenleft/f/E/W/w/parenright/F/h/X/y/asterisk/eight/i/G/Y/plus/I/l/braceleft/quotedblleft) +/FontFile3 365 0 R +>> +endobj +365 0 obj +<< +/Filter /FlateDecode +/Length 9602 +/Subtype /Type1C +>> +stream +Ht{TW'$c$qZ֭#Ȣ(yGH25<AQZ+ˮUݮ=g=nݽ ۝xN_3wwEXl &n^eW/JM~[QNMpLbo$ЂeP?8?Seg=ǨgztÔvcFD,K0Kb1l[a0uVmc1*1 +ö `bO؟Ec4gO} &QIH:e.\O9gNzkq+Wqt3iE _LlM"2q[* ~pPTf/~&/Ju3g?祜߳@p{S)'_z<0+%|Jh|I"[H2 |RgG:G>>M2|l*V(Lki*&)i95KR?G2MP46:A*Px aCUZ */+!˪J[f,UHK*&*D;N. Bͅ;do6@$uk +֟k!|7 rfx FW.\Wn¶5L x<\gaM8gefi +˃\9W-sUi4&>boϺ}NwI_I[A3GSIM q(!V;hJ~Zى?_"}Rl*ߏVA o/;G#G%#UPcRtlVS^]LcgR3dTA8A& &u,I}O-C8f |] Z$H_#kIz0fcSK!m$ +>{>>;KqtzbT>DܢCFEHi%JD'bdU6& >}AO DҤ!Oy.ƛ#=:-1dͶz ꄺHY+]&GAtDh嵥^6`s1QfGoKPa7CqJkҵECD^S\J +63Do +<5U%Q)&7Ƴ%u5uJr&53B"ʓ7rPryY|S:'qW\Sr^;Lay2(ppoFɕDڨ(/j97 6z"/@y:(R @ty.2jXҭ!Pe ;mPΞ.'η{;;G^ۆt,semݖV&k@[i.-z$G3 +C箝iÈp=:xg-~wuT"@2Ma~+V( -E)h:p9֠4l;sۡ;:-:"^(VņF.MѺ8"Unr. +6$2\(53UvX׵;'90E+_;=<OJDK0䀠`ls{)o}mmܺ%45Rˌ0D\I#P {zt\>=zR ˰>oׇ)BX3wZ-h8v+tw 6TD)v  +%S("XK5̓cJuGX8o1Eq1Aa'C\9,gcQQ[6dP#`y̹DJ*ezf$;jCe#GP^R61r%@]@2r4bֺo{)v$K6o6nY~|'B|Zu uQoBD>'T>>2 +^;@Чޏ[)k21*Z rC=b75ezIh[ajF̎(Ux w94]S1mC Oo}_#JPK?k;hۑi)=GѻOO{PM#?*9L<5<C,&,qXlEHV\,,;r͑ @m0p_POngE`1}@qb-Oof>Tw]7nlp=v 3-l2+Yܖ(A* 9Ix\S 6-$atJ抄"Rq)^SX\+-kTժXOwKUVA42 CDhAAqj)6iBfjX'ŸX*&K**n +/ C9SkfKOcb5HmRӸ o%3~ɴnE9큰\4(cʽʄLQ* +d)HZNk׶`nkǤ*Sy%M\uVYk:YV|9!٤E\`lHK {q-Yd$ZUF_OU2׻SYWNVC9Y4aox+ |y#((n2>6>3t5D%{XH}tA "#!Co˹3_Nł۱xJ@D!Ԉ+WXk,&KisS'0vΞC}eZO7%Ô 3c7VҖ FWЖV\y&,&1Tg\~8߶"T/ +=v0S+5*+%Er6nVcW'S¯}>tng)POHq@Ó ''2do&I`J$] +.zE쿚~Ŭw\=So{4r|X%`9\f:T5@>\8p負)=a_q( K [vr6ĹCѦ]#]_9Gu`H󻰜Ѵ=M5'w7UGC@ƦeJ' *zx*"UIJ:st q?#MQPJ4"k H&4>z.fc :$0I*Ka|C bf;C/Oۡʠ{gUI?o{m0[]Q +ϗ\s*7Ttg-bJoȺ,%V[{TA(ZѨTcjUZViUe~ Q2}B˿X^Pu M/u7V+xaȰ -,/d J/^w?oX+/zN ;8 sIcHX"0H :b2B&Ip<%xs 5RZ _ Hڑ.id`)`b#|6fr8r;5JrtN'~^bi eҟ/c%y<:WβV??bF:^8E( x㋁}~sI]&7DXB/}KG:>ڻBF'G{ 3o rM}0e~i   g:/#&ō.CNw+2 ߼ؠ /L,Bm'8LOAJ2ڐ9jt }!M0HfUz99<!~+k*RU'ZK{G5qeqLc NVąUĶB@v Պ"*(+ƲD lGA܊x(BU]a[[ϛg$EY[cν\<'J0h_`v*AlW?oEXz<.䝌b8 N^@|f|~u=q7s~3bkG!ln< j%sރNEз sNW0,^v"ے `_"NH*6el!3d;ץ.WF=2'nl?z|m267{i.\ +?f3~+CI,з_5o\/ibI+^b +,i"= <%No ٗ_(l0AWUjZGiDDXSATw'8 οXLhA4Ts(fAW#qzC8jT}N T@.# +6(*S2A#2{}z}~&22 LlXs"\Vv; !VfMZG&}/kOlM0ǝ]a(#uozbC[+.EqXˋ aWkGۏ4k+D[؋KGB:':o[65lfBCWTEӲ5ƿd:43&٘*H1؟NKy4n{ RuWO싙?یM4_Em^ +g/l~((B4PDR4.PZz ʑ"Us 튆5e' l;.|wIa:Af5Ȏ&UNoƏ[wG;Íz0LU~(rO5)  ] 9@f "B$煄KX~$>mm,M o(fUt8c;:x\4ֶԜ9} o|š_6o34 )%:*@l)K-JL&ƠFtJ-h $(VҤV*i59{e*=(Z>%`HP*ibeH=+O!=Tbp +zP"6Z,=9|kL@pp_q$B86 $bЕ)7Aa;)8B[ + ˖Q`\Oը{b6cl 9>X\A#.p%DZl(~!VՕTjjK3lBA*ȵ/yAOGݳf)ϕ;5\US[4,&`W1 Iw؋U1Q1T!WekT6V(p.lI ? Klw_0.e#/zmyňGwGtyƒF~8E<"`X_ ̕"Ov)| peQ9$䗙|-k/aG g3S#/ep"k0~.zUiDDS]b̞."P6@K&riyϓd0r` wj+ڄ`*p6&l~.޿lF@-p‚Ӽ%p ofc4~o*{ul78 Ǭ=`J_2So&0%T%zT@<>\=Wg0>!sc7Ef=|dw>})^J}l(CO(0?\,Y`901 f р p>{¤cRAy}%\  [I5WZmz.HS˃P'5?Y YF 30yCѷ xhww{5DuZD{lq-د4GX[Y 'q؋B\iM"Ú:0Ŝj'0ZƦW1[XX FB I D 򑊢Q VZg ƺrUh[{$`\<{߿w5&+ޘ^BK9Еdۅ1O;9uTepsuj J]!_,5FE[V2"zIO@C[&YJ D\9ӻ"Hiس<301Їې@*Ҥi4qjjFZHK咑5؊̣LyTm)=(h9Z_ӊԟ"Å@n,·YMт;ې+`Bӣ^fetp{mVweҵa63~]R\!IRSDvq;@.UpMv;J0tG3ئM_EȻDo2ȍ*rƹfrK[hffϖT 1}#Pah*{Uh5[XP!0ăR8HD/v܀<F~$,[%&s ,ńyb=yPQ I1>ȱ!b*1F3)1Y6y^-aÏYّ`=/F<~ws{r=847 >-:7iO<I1gqd.g I}:9܆;kR4:5G)&nMh(ÌeUTsy(ݖ>ݮLߝy*w\M@[m}pbn48{g+̟ˊ'dG<~,|w{jRY6d ^zq z,]L`O\<8y+)0yyw&`i0  +_oA> {t7c2= 29:2 J3w 9p޺r,;9 m͗_fzo$u%5oUϿ(r6ɹ:[.P5A ]̊;` +f .'v v2XEݤе 0y+P"΅nySx/^ۍ]ޯٿλT +zy 4C^A?Vo<ظ&xIh| P W|8izSo`ѝ5?Ca`2f ,s8q_p""OBHEQ\"%MO}OˍpQIq^m;~<}&YHw!TjR) ^k8&Wfge1b:~u#Pܗ쇏D!mq~(h̆G^WSQ"5*#W[߯sfMiiVOLLJɺk>5[Ѩ,mIMo+CBh-W߃/4Ra @HZ:\Sy*CJ6k˪2ChְЬ%J2ʳ;/dQuI9iӦFǒ*+){rky]u.D\ww5C,Q{6=)D/w P])ib?ڮ?VUf-+搦:9|li&.[GH8f4IkZC!4i_SAH0;lQfIm(Jë0W:c Z o]JVKkuj]ΤE) TW]6}.Qp5䮚Ҕ"> +endobj +367 0 obj +<< +/Filter /FlateDecode +/Length 1191 +/Subtype /Type1C +>> +stream +H}LSWO=Sݒ[B\LʜZJ7Ei˺FG;\i  +[b?ɤR(ԁd +T(jGf"ʢ!q-l&dC<ފ}Kq7y=>]8Ϊ4(G*ݖXXK+aa Ë ׽[uU]U pԢ`j8HQ` A  +< yYQy;>r}dHv/<@r,/})BaN/Ϗ `>,DϐNV^+entn=D6::͈."> +9Hv71zU3>@?1+|7˝lKu*Ȥ;^UUeBOiͥ\ a86:4坺puφ-כpJDAfִt&y9Xd $/Ey*hFzxONs{ˈ7K ,ecظo wonpCP&qq%Ku[rbؔfLݭ>ڍf6#B)|me7ǛJEeD-LCe024OWO JZF3U*3,YBΡL$zt +st{qr W|)PVhh~!ъk2;!*)ڹbNLUg][*`1~| a ?|8?w:mӖɪ%C*k~ Xˤ,B,}wb> +endobj +369 0 obj +<< +/Filter /FlateDecode +/Length 96 +/Subtype /Type1C +>> +stream +Hbd`ad`ddpu p470V a4m{? +ru100g`pb`d`fddf1 H +endstream +endobj +128 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F3 +/FirstChar 1 +/LastChar 36 +/Widths [947 391 278 331 609 609 278 557 669 887 609 278 609 331 609 557 +278 834 722 534 557 722 534 609 557 331 609 557 722 557 557 557 +669 557 278 557 ] +/Encoding 370 0 R +/BaseFont /CMANNC+TT8A4o00 +/FontDescriptor 346 0 R +>> +endobj +129 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F5 +/FirstChar 1 +/LastChar 12 +/Widths [723 783 663 675 723 277 783 723 626 277 723 663 ] +/Encoding 371 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +130 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F7 +/FirstChar 1 +/LastChar 63 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 554 554 +337 554 554 554 723 518 723 337 337 663 350 277 229 494 277 663 +614 1000 663 663 723 723 723 650 663 675 554 783 663 506 482 ] +/Encoding 372 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +135 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F9 +/FirstChar 1 +/LastChar 32 +/Widths [560 280 780 560 560 390 280 780 560 560 720 560 330 280 610 560 +610 560 560 670 830 610 610 500 610 560 670 610 560 670 610 720 +] +/Encoding 373 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +136 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F11 +/FirstChar 1 +/LastChar 43 +/Widths [554 283 554 717 663 717 283 783 391 609 554 609 283 500 337 609 +554 554 554 609 609 283 717 543 554 554 554 554 891 554 609 663 +609 554 609 554 283 663 554 717 533 609 337 ] +/Encoding 374 0 R +/BaseFont /CMANNK+TT8AAo00 +/FontDescriptor 354 0 R +>> +endobj +137 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F12 +/FirstChar 1 +/LastChar 67 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 0 554 554 855 0 783 554 554 554 +337 554 554 554 723 518 723 0 0 663 0 277 0 494 277 663 +614 0 663 663 723 723 0 0 0 0 0 0 663 506 482 554 +554 554 554 ] +/Encoding 375 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +140 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F13 +/FirstChar 2 +/LastChar 38 +/Widths [280 780 0 560 390 280 0 0 560 0 560 330 280 0 0 0 +560 0 0 0 0 0 0 0 0 670 0 560 670 0 0 560 +610 720 610 280 560 ] +/Encoding 376 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +141 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F14 +/FirstChar 1 +/LastChar 50 +/Widths [554 283 554 0 0 0 283 783 391 609 554 609 283 0 337 609 +554 554 554 609 0 283 0 0 554 0 554 0 891 0 0 663 +609 0 609 0 283 663 554 717 533 609 0 598 283 609 554 837 +554 554 ] +/Encoding 377 0 R +/BaseFont /CMANNK+TT8AAo00 +/FontDescriptor 354 0 R +>> +endobj +144 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F16 +/FirstChar 1 +/LastChar 17 +/Widths [556 282 282 778 547 556 393 282 803 556 718 556 333 607 521 607 +556 ] +/Encoding 378 0 R +/BaseFont /CMANNM+TT8ABo00 +/FontDescriptor 356 0 R +>> +endobj +145 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F17 +/FirstChar 1 +/LastChar 76 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 0 554 554 554 +337 554 554 554 0 518 723 337 337 663 0 277 229 494 277 663 +614 1000 663 663 723 723 723 0 0 0 554 0 663 506 482 554 +0 554 0 277 554 217 337 337 554 277 578 277 ] +/Encoding 379 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +146 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F19 +/FirstChar 1 +/LastChar 19 +/Widths [506 217 832 554 217 554 277 554 337 277 506 554 554 506 554 554 +506 554 554 ] +/Encoding 380 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +147 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F20 +/FirstChar 1 +/LastChar 15 +/Widths [723 0 0 0 0 277 0 0 626 0 723 663 723 663 723 ] +/Encoding 381 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +150 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F21 +/FirstChar 1 +/LastChar 40 +/Widths [723 0 0 0 723 0 783 0 626 0 0 663 723 0 0 855 +687 723 554 277 892 554 614 554 554 337 337 614 554 554 614 566 +337 614 614 277 386 542 337 386 ] +/Encoding 382 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +151 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F22 +/FirstChar 1 +/LastChar 78 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 277 554 554 855 277 783 0 0 554 +337 554 0 0 723 518 723 337 337 663 0 0 0 494 277 663 +614 0 663 663 723 723 723 0 663 0 554 783 663 506 482 0 +0 0 0 277 0 217 0 0 554 0 0 0 386 1000 ] +/Encoding 383 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +152 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F23 +/FirstChar 2 +/LastChar 24 +/Widths [282 282 778 0 0 393 282 0 0 0 556 333 0 0 0 0 +556 667 846 607 607 504 607 ] +/Encoding 384 0 R +/BaseFont /CMANNM+TT8ABo00 +/FontDescriptor 356 0 R +>> +endobj +155 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F24 +/FirstChar 1 +/LastChar 73 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 554 554 +337 554 554 554 723 518 723 337 337 663 0 277 0 494 277 663 +0 0 663 663 723 723 723 0 0 675 554 783 663 506 482 554 +0 554 554 277 554 217 0 0 554 ] +/Encoding 385 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +156 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F25 +/FirstChar 3 +/LastChar 16 +/Widths [832 0 0 554 0 0 0 0 0 554 0 0 0 554 ] +/Encoding 386 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +157 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F27 +/FirstChar 1 +/LastChar 1 +/Widths [458 ] +/Encoding 387 0 R +/BaseFont /CMANOA+TT8ADo00 +/FontDescriptor 360 0 R +>> +endobj +158 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F28 +/FirstChar 1 +/LastChar 39 +/Widths [560 280 780 0 0 390 280 0 0 0 0 560 330 280 0 0 +0 0 560 0 0 610 610 500 610 0 0 0 0 670 0 0 +0 0 720 0 0 0 720 ] +/Encoding 388 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +159 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F30 +/FirstChar 1 +/LastChar 20 +/Widths [560 280 560 280 620 220 840 560 670 560 500 560 670 280 560 610 +560 560 500 560 ] +/Encoding 389 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +160 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F31 +/FirstChar 19 +/LastChar 37 +/Widths [554 277 892 554 614 554 554 0 0 614 554 0 0 566 337 614 +0 277 386 ] +/Encoding 390 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +163 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F32 +/FirstChar 1 +/LastChar 84 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 554 554 +337 554 554 554 0 518 723 337 337 663 0 277 0 494 277 663 +0 0 663 663 723 0 723 0 0 675 554 0 663 506 482 554 +554 554 554 277 554 217 0 0 554 277 0 277 0 1000 554 554 +663 337 337 578 ] +/Encoding 391 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +164 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F33 +/FirstChar 19 +/LastChar 36 +/Widths [554 277 892 554 614 554 554 0 0 614 554 0 0 0 337 0 +0 277 ] +/Encoding 392 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +165 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F34 +/FirstChar 1 +/LastChar 28 +/Widths [560 280 560 280 0 220 840 560 0 560 0 0 0 280 560 0 +560 560 0 560 830 330 490 780 550 490 560 280 ] +/Encoding 393 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +168 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F35 +/FirstChar 1 +/LastChar 87 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 277 554 554 855 277 783 0 0 0 +337 0 0 0 723 518 723 337 337 663 0 277 0 494 277 663 +614 0 663 663 723 723 723 0 0 0 554 783 663 506 482 0 +0 0 0 277 554 0 0 0 554 0 0 0 0 1000 0 0 +663 337 337 0 578 241 578 ] +/Encoding 394 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +169 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F36 +/FirstChar 1 +/LastChar 35 +/Widths [560 280 560 280 0 220 0 560 0 560 500 0 0 280 560 0 +560 560 500 560 0 330 0 780 550 0 0 280 560 280 720 560 +560 670 490 ] +/Encoding 395 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +170 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F37 +/FirstChar 19 +/LastChar 37 +/Widths [554 277 892 554 614 0 0 0 0 0 0 0 0 0 337 0 +0 0 386 ] +/Encoding 396 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +173 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F38 +/FirstChar 1 +/LastChar 89 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 0 0 0 +337 0 554 0 0 518 723 337 337 663 0 277 0 494 277 663 +614 1000 663 663 723 723 0 0 0 0 0 0 663 506 482 0 +0 0 0 277 554 217 0 0 554 0 0 0 0 1000 0 0 +0 337 337 0 578 0 0 458 578 ] +/Encoding 397 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +174 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F39 +/FirstChar 1 +/LastChar 37 +/Widths [723 0 663 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 554 277 892 554 614 554 554 0 0 614 554 0 0 566 +337 614 0 277 386 ] +/Encoding 398 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +175 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F40 +/FirstChar 2 +/LastChar 37 +/Widths [280 780 560 560 390 280 0 0 560 720 560 330 280 0 0 610 +0 560 0 0 610 610 500 610 0 0 0 560 670 0 0 0 +610 0 0 280 ] +/Encoding 399 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +178 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F41 +/FirstChar 1 +/LastChar 70 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 0 554 +337 554 554 0 723 518 723 337 337 663 0 277 0 494 277 0 +614 1000 663 663 723 723 723 0 663 0 554 0 663 506 0 554 +0 554 554 277 554 217 ] +/Encoding 400 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +179 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F42 +/FirstChar 1 +/LastChar 19 +/Widths [506 217 0 0 0 554 277 0 337 277 0 0 0 0 554 554 +0 0 554 ] +/Encoding 401 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +180 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F43 +/FirstChar 19 +/LastChar 41 +/Widths [554 277 892 554 614 0 554 0 0 0 554 0 614 566 337 0 +614 0 386 0 0 0 614 ] +/Encoding 402 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +181 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F44 +/FirstChar 1 +/LastChar 36 +/Widths [560 280 560 280 620 220 840 560 0 0 0 560 0 0 0 0 +0 560 500 0 0 0 0 0 550 0 0 0 0 0 720 0 +0 0 0 490 ] +/Encoding 403 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +184 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F45 +/FirstChar 1 +/LastChar 90 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 277 554 554 855 277 783 554 0 554 +337 554 554 554 723 518 723 337 337 663 0 277 0 494 277 0 +0 1000 663 663 723 723 723 0 0 0 554 0 663 506 482 0 +0 554 0 277 554 0 337 337 554 0 578 0 386 0 0 0 +663 0 0 0 0 0 0 0 0 301 ] +/Encoding 404 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +185 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F46 +/FirstChar 19 +/LastChar 43 +/Widths [554 277 892 554 614 554 554 0 0 614 554 0 0 566 337 614 +614 277 386 0 0 0 614 614 614 ] +/Encoding 405 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +186 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F47 +/FirstChar 1 +/LastChar 40 +/Widths [560 280 0 280 0 220 0 0 0 560 0 560 0 280 0 0 +0 560 500 560 0 330 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 720 220 500 560 ] +/Encoding 406 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +187 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F48 +/FirstChar 2 +/LastChar 20 +/Widths [217 0 0 217 0 277 554 0 0 506 554 0 506 0 554 0 +0 0 554 ] +/Encoding 407 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +192 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F49 +/FirstChar 1 +/LastChar 81 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 0 554 +337 554 554 554 723 518 723 337 337 663 0 277 0 494 277 663 +614 0 663 663 723 723 723 0 0 0 554 0 663 506 482 0 +554 554 0 277 554 0 0 0 554 0 0 0 386 0 554 0 +663 ] +/Encoding 408 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +193 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F50 +/FirstChar 1 +/LastChar 41 +/Widths [560 280 0 280 0 220 0 0 0 560 0 560 0 280 0 0 +0 560 0 0 0 0 0 780 550 0 560 280 0 280 720 0 +0 0 0 0 0 220 0 0 560 ] +/Encoding 409 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +194 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F51 +/FirstChar 10 +/LastChar 45 +/Widths [277 0 0 0 0 0 0 0 0 554 277 892 554 614 554 554 +0 0 0 554 0 614 566 337 614 0 277 386 0 0 0 0 +0 0 614 795 ] +/Encoding 410 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +198 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F52 +/FirstChar 1 +/LastChar 88 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 0 554 +337 554 554 0 723 518 723 337 337 663 0 277 0 494 277 663 +614 1000 663 663 723 723 723 0 663 0 554 783 663 506 482 554 +0 554 0 277 554 0 0 0 554 0 578 0 386 0 0 0 +0 0 0 578 578 0 0 458 ] +/Encoding 411 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +199 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F53 +/FirstChar 10 +/LastChar 46 +/Widths [277 0 0 0 0 0 0 0 0 554 277 892 554 0 554 554 +0 0 614 554 0 614 0 337 614 0 277 386 0 337 0 614 +0 614 614 795 554 ] +/Encoding 412 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +202 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F54 +/FirstChar 1 +/LastChar 91 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 277 554 554 855 277 783 554 0 554 +337 554 0 0 0 518 723 337 337 663 0 277 0 494 277 663 +0 1000 663 663 723 723 723 0 0 0 554 0 0 506 482 554 +0 554 0 277 0 0 0 0 554 0 0 0 386 0 0 0 +0 337 337 0 0 0 0 0 0 0 554 ] +/Encoding 413 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +203 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F55 +/FirstChar 1 +/LastChar 47 +/Widths [723 0 0 0 0 277 0 0 0 0 0 663 723 663 0 0 +0 0 554 277 892 554 614 554 554 337 337 614 554 554 614 566 +337 614 614 0 386 0 337 386 614 0 614 614 795 0 277 ] +/Encoding 414 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +204 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F56 +/FirstChar 2 +/LastChar 28 +/Widths [282 282 0 0 556 393 0 0 0 718 556 333 0 0 0 556 +0 0 0 0 0 0 0 556 667 607 556 ] +/Encoding 415 0 R +/BaseFont /CMANNM+TT8ABo00 +/FontDescriptor 356 0 R +>> +endobj +205 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F57 +/FirstChar 1 +/LastChar 41 +/Widths [560 280 0 560 560 390 280 0 560 0 0 0 330 280 0 0 +0 560 0 0 0 0 0 0 0 0 670 610 560 0 610 0 +0 0 0 0 0 0 0 890 560 ] +/Encoding 416 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +208 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F58 +/FirstChar 10 +/LastChar 48 +/Widths [277 0 0 0 0 0 0 0 0 554 277 892 0 614 554 554 +0 0 614 554 554 614 0 337 614 614 277 386 0 337 0 0 +0 614 614 795 0 0 506 ] +/Encoding 417 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +209 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F59 +/FirstChar 1 +/LastChar 85 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 0 0 +337 554 0 554 723 518 723 337 337 663 0 277 0 494 277 663 +614 1000 663 663 723 723 723 650 0 675 554 783 663 506 482 554 +0 554 0 277 554 217 337 337 554 0 0 0 0 0 0 0 +0 0 0 0 578 ] +/Encoding 418 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +210 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F60 +/FirstChar 2 +/LastChar 43 +/Widths [280 560 280 0 220 0 560 0 560 500 560 0 280 0 610 0 +560 500 0 0 330 0 0 550 0 560 0 0 0 720 560 0 +0 0 490 0 220 0 0 560 670 710 ] +/Encoding 419 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +213 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F61 +/FirstChar 1 +/LastChar 45 +/Widths [560 280 560 280 0 220 840 560 670 560 500 0 0 280 560 0 +560 560 500 560 0 0 0 0 0 0 560 0 560 0 720 560 +560 670 490 0 720 0 0 0 560 670 0 720 560 ] +/Encoding 420 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +214 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F62 +/FirstChar 1 +/LastChar 89 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 0 0 554 +337 554 0 0 723 518 723 337 337 663 0 0 0 494 277 663 +614 1000 663 663 723 723 723 0 0 0 0 0 663 506 0 0 +0 0 0 277 554 217 0 0 554 0 0 0 386 0 554 0 +0 0 0 578 0 0 0 0 578 ] +/Encoding 421 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +215 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F63 +/FirstChar 10 +/LastChar 32 +/Widths [277 0 0 0 0 0 0 0 0 554 277 892 554 0 554 554 +0 0 0 554 554 614 566 ] +/Encoding 422 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +216 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F64 +/FirstChar 1 +/LastChar 25 +/Widths [506 217 832 554 217 554 277 554 337 277 506 554 554 0 0 554 +506 554 554 554 506 506 723 554 277 ] +/Encoding 423 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +219 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F65 +/FirstChar 1 +/LastChar 89 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 0 0 554 +337 554 0 0 723 518 723 337 337 663 0 277 0 494 277 663 +614 0 663 663 723 723 723 0 0 675 554 783 663 506 482 0 +0 0 0 277 554 217 0 0 554 0 0 0 386 0 554 0 +0 337 337 578 0 0 0 0 578 ] +/Encoding 424 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +220 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F66 +/FirstChar 1 +/LastChar 26 +/Widths [506 217 832 554 217 554 277 554 337 0 506 554 554 0 554 554 +506 554 554 554 0 0 0 0 0 482 ] +/Encoding 425 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +221 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F67 +/FirstChar 9 +/LastChar 44 +/Widths [626 0 0 663 723 0 0 0 687 723 554 277 892 554 614 554 +554 0 0 614 554 0 614 0 337 0 614 277 386 0 337 0 +614 0 614 614 ] +/Encoding 426 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +222 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F69 +/FirstChar 1 +/LastChar 38 +/Widths [603 603 603 603 603 603 603 603 603 603 603 603 603 603 603 603 +603 603 603 603 603 603 603 603 603 603 603 603 603 603 603 603 +603 603 603 603 603 603 ] +/Encoding 427 0 R +/BaseFont /CMANOE+TT8AEo00 +/FontDescriptor 364 0 R +>> +endobj +223 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F70 +/FirstChar 2 +/LastChar 47 +/Widths [280 560 280 0 220 840 560 0 560 500 0 670 280 0 0 560 +560 0 560 830 330 490 0 550 490 560 0 0 0 720 560 0 +0 0 0 720 220 0 560 0 0 0 720 0 560 560 ] +/Encoding 428 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +226 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F71 +/FirstChar 1 +/LastChar 83 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 0 0 554 277 554 554 855 277 783 554 0 554 +337 554 554 0 723 518 0 337 337 0 0 277 0 494 277 663 +614 0 663 663 0 723 723 0 0 0 554 0 0 506 0 554 +0 554 554 277 554 0 0 0 554 0 578 0 386 0 0 0 +0 337 337 ] +/Encoding 429 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +227 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F72 +/FirstChar 6 +/LastChar 54 +/Widths [277 0 0 626 277 723 0 0 0 723 0 0 0 554 277 892 +554 614 554 554 0 0 614 554 554 0 0 337 614 614 277 386 +0 337 0 614 0 614 614 795 554 277 0 337 554 554 554 554 +277 ] +/Encoding 430 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +228 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F73 +/FirstChar 2 +/LastChar 41 +/Widths [280 0 0 560 390 280 0 560 560 0 0 330 280 0 0 0 +560 0 0 0 0 610 0 0 0 670 610 560 0 0 0 0 +0 0 0 0 0 0 890 560 ] +/Encoding 431 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +231 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F74 +/FirstChar 1 +/LastChar 92 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 0 554 +337 554 554 0 723 518 723 337 337 663 0 277 0 494 277 663 +614 1000 663 663 723 723 723 0 663 675 554 0 663 506 0 0 +0 554 554 277 554 0 337 337 554 0 0 0 386 0 0 0 +0 337 0 0 0 0 0 0 0 0 0 783 ] +/Encoding 432 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +232 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F75 +/FirstChar 5 +/LastChar 43 +/Widths [723 0 783 0 626 277 0 663 723 0 723 0 687 0 554 277 +892 554 614 554 554 0 0 614 554 0 0 566 337 614 614 277 +386 0 337 0 614 0 614 ] +/Encoding 433 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +233 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F76 +/FirstChar 1 +/LastChar 47 +/Widths [603 603 603 0 603 603 603 603 0 603 603 603 603 603 0 603 +0 603 603 603 603 603 0 603 603 0 603 0 0 603 0 0 +0 0 603 603 0 0 603 603 603 603 603 603 603 603 603 ] +/Encoding 434 0 R +/BaseFont /CMANOE+TT8AEo00 +/FontDescriptor 364 0 R +>> +endobj +234 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F77 +/FirstChar 2 +/LastChar 48 +/Widths [280 560 280 0 220 0 560 0 560 500 560 670 280 0 610 560 +560 500 560 0 330 0 0 550 0 560 0 0 0 0 0 0 +0 0 490 0 220 0 0 0 0 0 720 0 0 0 720 ] +/Encoding 435 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +235 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F78 +/FirstChar 1 +/LastChar 20 +/Widths [506 217 0 554 0 0 277 554 337 0 506 554 0 0 0 554 +506 0 0 554 ] +/Encoding 436 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +236 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F79 +/FirstChar 2 +/LastChar 41 +/Widths [280 0 0 560 390 280 0 560 0 0 0 330 280 0 0 0 +560 560 0 0 610 0 0 0 0 670 610 560 0 0 0 0 +0 0 0 0 0 0 890 560 ] +/Encoding 437 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +240 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F80 +/FirstChar 1 +/LastChar 92 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 0 277 832 0 554 277 554 554 855 277 0 554 0 554 +337 554 0 0 723 518 723 337 337 663 0 277 229 494 277 0 +614 0 663 0 723 723 0 0 0 0 554 783 663 506 482 554 +0 0 0 277 554 0 337 337 554 0 0 0 386 0 0 0 +0 0 337 0 0 0 0 0 0 0 0 783 ] +/Encoding 438 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +241 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F81 +/FirstChar 2 +/LastChar 56 +/Widths [783 0 0 723 277 783 723 626 0 723 0 723 0 723 0 687 +723 554 277 892 0 614 554 554 0 0 614 554 554 614 0 337 +614 614 277 386 0 337 0 0 614 0 614 795 0 0 0 0 +0 0 0 0 0 614 614 ] +/Encoding 439 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +242 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F82 +/FirstChar 1 +/LastChar 55 +/Widths [603 603 603 0 603 603 603 0 0 603 0 0 0 603 0 603 +603 603 603 603 0 603 0 603 603 0 603 0 603 603 603 0 +603 603 0 603 0 603 603 603 0 0 0 0 0 603 0 603 +603 603 603 603 603 603 603 ] +/Encoding 440 0 R +/BaseFont /CMANOE+TT8AEo00 +/FontDescriptor 364 0 R +>> +endobj +245 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F83 +/FirstChar 1 +/LastChar 93 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 0 554 +337 554 554 0 723 518 723 337 337 663 0 277 229 494 277 663 +614 1000 663 663 723 723 723 0 0 675 554 783 663 506 482 0 +0 554 0 277 554 217 0 0 554 0 0 0 386 0 0 0 +0 337 337 0 0 0 0 0 0 0 0 0 614 ] +/Encoding 441 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +246 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F84 +/FirstChar 6 +/LastChar 49 +/Widths [277 0 0 626 277 723 0 0 0 723 855 687 723 554 277 892 +554 614 554 0 0 0 614 554 0 614 566 337 0 614 277 386 +0 337 0 0 0 614 614 0 554 277 0 337 ] +/Encoding 442 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +247 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F85 +/FirstChar 1 +/LastChar 60 +/Widths [603 603 603 0 603 0 603 0 0 603 603 0 0 603 0 603 +0 603 603 603 0 603 0 0 603 0 603 0 603 0 603 0 +603 603 603 603 603 0 603 603 0 603 0 0 0 0 0 603 +0 0 603 0 0 0 0 603 603 603 603 603 ] +/Encoding 443 0 R +/BaseFont /CMANOE+TT8AEo00 +/FontDescriptor 364 0 R +>> +endobj +248 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F86 +/FirstChar 1 +/LastChar 44 +/Widths [560 280 560 280 0 220 0 560 0 560 500 0 0 280 0 610 +0 0 0 0 0 330 0 0 550 0 560 0 0 0 0 0 +0 0 0 0 0 220 0 0 0 0 0 720 ] +/Encoding 444 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +249 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F87 +/FirstChar 2 +/LastChar 42 +/Widths [280 0 0 560 390 280 0 560 0 0 560 330 280 0 0 0 +560 0 0 0 0 0 0 0 0 670 610 560 0 0 0 0 +0 0 0 0 0 0 890 560 610 ] +/Encoding 445 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +254 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F88 +/FirstChar 1 +/LastChar 89 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 0 554 +337 554 0 0 723 518 723 337 337 663 0 0 0 494 277 663 +614 1000 663 663 723 723 723 0 0 675 554 783 663 506 0 554 +554 554 554 277 554 0 337 337 554 277 0 277 0 0 0 0 +0 337 337 578 578 241 0 0 578 ] +/Encoding 446 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +255 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F89 +/FirstChar 19 +/LastChar 46 +/Widths [554 277 892 0 614 554 554 0 0 614 554 0 614 566 337 0 +614 277 386 0 0 0 0 0 0 614 0 554 ] +/Encoding 447 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +258 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F90 +/FirstChar 1 +/LastChar 39 +/Widths [723 0 663 0 723 0 783 0 0 0 0 663 0 0 0 0 +0 0 554 277 892 554 614 554 554 337 337 614 554 554 614 566 +337 0 614 277 386 0 337 ] +/Encoding 448 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +259 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F91 +/FirstChar 1 +/LastChar 85 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 0 0 554 +337 554 0 0 723 518 723 337 337 663 0 0 0 494 277 663 +614 1000 663 663 723 723 723 0 0 0 554 783 663 506 0 0 +0 0 0 277 554 217 0 0 554 0 0 0 386 0 554 0 +0 0 0 0 578 ] +/Encoding 449 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +260 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F92 +/FirstChar 1 +/LastChar 68 +/Widths [603 603 603 603 603 603 603 603 0 0 603 603 603 603 0 603 +603 603 0 603 603 603 0 603 603 0 603 603 603 603 603 0 +603 603 603 603 603 0 603 603 603 603 0 0 603 603 0 603 +0 0 0 0 603 0 0 603 603 0 0 0 603 603 603 603 +603 603 603 603 ] +/Encoding 450 0 R +/BaseFont /CMANOE+TT8AEo00 +/FontDescriptor 364 0 R +>> +endobj +261 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F93 +/FirstChar 2 +/LastChar 49 +/Widths [280 560 280 0 220 0 560 0 560 500 560 0 280 560 0 560 +560 0 560 0 0 490 0 0 0 560 0 0 0 720 0 0 +0 0 0 0 220 0 0 560 0 0 720 0 0 0 0 670 +] +/Encoding 451 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +262 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F94 +/FirstChar 1 +/LastChar 22 +/Widths [506 217 0 554 217 554 277 554 337 0 506 554 554 0 0 554 +506 0 554 554 0 506 ] +/Encoding 452 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +263 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F95 +/FirstChar 2 +/LastChar 34 +/Widths [280 780 0 560 390 0 0 560 0 720 560 330 280 0 0 0 +560 0 0 0 0 0 0 0 560 670 610 560 0 0 0 0 +610 ] +/Encoding 453 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +266 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F96 +/FirstChar 1 +/LastChar 93 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 0 554 +337 554 554 0 723 0 723 337 337 663 0 0 0 494 277 663 +614 0 663 663 723 723 723 650 663 675 554 783 663 506 482 554 +554 554 554 0 554 217 0 0 554 0 0 0 386 0 554 0 +0 0 0 578 578 0 0 0 0 0 554 0 614 ] +/Encoding 454 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +267 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F97 +/FirstChar 19 +/LastChar 39 +/Widths [554 277 892 554 614 554 554 337 337 614 554 0 614 566 337 614 +614 277 386 542 337 ] +/Encoding 455 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +268 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F98 +/FirstChar 2 +/LastChar 32 +/Widths [282 282 0 547 556 393 282 0 0 0 0 333 0 0 0 556 +0 667 846 0 607 0 607 0 0 607 0 556 667 607 718 ] +/Encoding 456 0 R +/BaseFont /CMANNM+TT8ABo00 +/FontDescriptor 356 0 R +>> +endobj +269 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F99 +/FirstChar 1 +/LastChar 47 +/Widths [560 280 0 0 560 390 280 0 0 560 720 560 330 280 0 560 +610 560 560 0 0 0 610 0 610 560 670 610 560 0 610 0 +0 0 0 0 280 0 0 890 0 610 280 670 560 720 610 ] +/Encoding 457 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +270 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F100 +/FirstChar 1 +/LastChar 25 +/Widths [506 217 832 554 217 554 277 554 337 0 506 554 554 0 554 554 +506 554 554 0 0 0 723 554 277 ] +/Encoding 458 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +273 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F101 +/FirstChar 1 +/LastChar 94 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 277 554 554 855 277 0 554 0 554 +337 554 554 0 0 518 723 337 337 663 0 0 229 494 277 663 +614 0 663 663 723 723 723 0 0 0 554 0 663 506 482 0 +0 0 0 277 554 217 337 337 554 277 578 277 386 0 554 0 +0 0 0 0 578 0 0 0 0 0 0 0 0 217 ] +/Encoding 459 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +274 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F102 +/FirstChar 10 +/LastChar 45 +/Widths [277 0 0 0 0 0 0 0 0 554 277 892 554 614 554 554 +0 0 614 0 0 614 566 337 0 0 277 386 542 337 0 0 +0 0 614 795 ] +/Encoding 460 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +275 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F103 +/FirstChar 2 +/LastChar 48 +/Widths [280 780 0 560 390 280 0 560 0 0 560 330 280 0 0 610 +560 0 0 0 0 610 0 610 560 0 0 560 0 0 0 0 +0 0 0 280 0 0 0 0 0 280 0 0 0 0 330 ] +/Encoding 461 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +276 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F104 +/FirstChar 2 +/LastChar 44 +/Widths [280 560 280 0 220 0 560 0 560 500 560 0 280 560 0 560 +560 500 560 0 330 490 780 0 490 560 280 560 0 720 0 0 +0 0 0 0 220 0 0 560 670 0 720 ] +/Encoding 462 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +277 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F105 +/FirstChar 1 +/LastChar 63 +/Widths [603 603 603 603 603 603 603 603 0 603 0 0 0 0 603 0 +0 0 603 0 603 603 0 603 603 0 0 0 0 0 0 0 +603 603 0 0 603 0 0 0 603 603 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 603 ] +/Encoding 463 0 R +/BaseFont /CMANOE+TT8AEo00 +/FontDescriptor 364 0 R +>> +endobj +278 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F106 +/FirstChar 7 +/LastChar 19 +/Widths [277 554 337 0 506 0 554 0 0 0 0 0 554 ] +/Encoding 464 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +281 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F107 +/FirstChar 1 +/LastChar 83 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 277 554 554 855 277 0 0 0 554 +337 554 0 0 723 518 723 337 337 663 0 277 0 494 277 663 +614 0 663 663 723 723 723 0 0 0 554 783 663 506 482 0 +0 0 0 277 554 0 0 0 554 0 0 0 386 0 554 0 +0 337 337 ] +/Encoding 465 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +282 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F108 +/FirstChar 1 +/LastChar 43 +/Widths [723 0 0 0 0 0 0 0 626 0 0 0 0 0 0 0 +687 723 554 277 892 554 614 554 554 0 0 614 554 0 614 566 +337 614 614 0 386 0 337 0 614 0 614 ] +/Encoding 466 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +283 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F109 +/FirstChar 1 +/LastChar 25 +/Widths [506 0 832 554 0 554 277 554 337 0 506 0 554 0 0 554 +0 0 554 554 506 0 0 554 277 ] +/Encoding 467 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +284 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F110 +/FirstChar 1 +/LastChar 52 +/Widths [560 280 0 280 0 220 840 560 0 560 500 0 670 280 560 0 +560 560 500 560 830 330 0 0 550 0 560 280 560 0 0 0 +0 0 0 0 720 0 0 0 560 0 0 0 0 0 0 0 +670 670 330 290 ] +/Encoding 468 0 R +/BaseFont /CMANOC+TT8A9o00 +/FontDescriptor 362 0 R +>> +endobj +287 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F111 +/FirstChar 2 +/LastChar 37 +/Widths [282 282 778 0 556 393 282 0 0 0 556 333 0 0 0 556 +0 0 0 0 0 0 0 0 667 0 556 0 667 0 0 556 +607 718 607 282 ] +/Encoding 469 0 R +/BaseFont /CMANNM+TT8ABo00 +/FontDescriptor 356 0 R +>> +endobj +288 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F112 +/FirstChar 1 +/LastChar 49 +/Widths [560 280 780 0 560 390 280 0 0 560 0 560 330 280 610 560 +610 0 0 0 830 610 610 0 610 0 0 610 0 0 0 0 +560 0 0 610 280 0 0 890 0 610 280 670 560 0 610 0 +280 ] +/Encoding 470 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +289 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F113 +/FirstChar 1 +/LastChar 79 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 0 554 +337 554 554 554 723 518 723 337 337 663 0 277 0 494 277 663 +614 0 663 663 723 723 723 0 663 0 554 783 663 506 0 0 +554 0 0 277 0 0 0 0 554 0 0 0 386 0 554 ] +/Encoding 471 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +290 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F114 +/FirstChar 19 +/LastChar 45 +/Widths [554 277 892 554 614 554 554 0 0 614 554 0 0 566 337 614 +0 0 386 0 0 0 614 0 0 614 795 ] +/Encoding 472 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +291 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F115 +/FirstChar 1 +/LastChar 19 +/Widths [506 0 832 0 0 0 277 554 337 277 506 0 554 0 0 554 +0 0 554 ] +/Encoding 473 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +295 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F116 +/FirstChar 1 +/LastChar 85 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 0 0 554 +337 554 554 0 723 518 723 337 337 663 0 277 0 494 277 663 +614 1000 663 663 723 723 723 0 663 675 554 0 663 506 0 0 +0 0 0 277 0 0 0 0 554 277 0 277 386 0 0 0 +0 337 337 0 578 ] +/Encoding 474 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +296 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F117 +/FirstChar 9 +/LastChar 56 +/Widths [626 0 723 0 0 0 0 855 0 0 554 277 892 0 614 554 +554 0 0 614 554 554 614 566 337 614 614 277 386 0 0 0 +0 0 614 0 0 0 0 0 0 0 0 0 0 0 0 614 +] +/Encoding 475 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +300 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F118 +/FirstChar 1 +/LastChar 91 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 554 0 554 +337 554 0 0 723 518 723 337 337 663 350 277 0 494 277 663 +0 1000 663 663 723 723 723 0 663 0 554 0 0 506 0 0 +0 0 0 277 554 217 337 0 554 0 0 0 386 0 554 0 +0 337 337 0 0 0 0 0 0 0 554 ] +/Encoding 476 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +301 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F119 +/FirstChar 1 +/LastChar 60 +/Widths [723 783 0 0 723 0 0 0 626 0 0 0 0 0 0 855 +0 0 554 277 892 554 614 554 554 0 0 614 554 554 614 566 +337 614 614 277 386 542 0 0 0 0 0 614 0 0 277 0 +0 0 0 0 0 0 0 0 663 554 663 554 ] +/Encoding 477 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +305 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F120 +/FirstChar 1 +/LastChar 79 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 277 554 554 855 277 783 554 0 554 +337 554 554 0 723 518 723 337 337 663 0 0 0 494 277 663 +0 0 663 0 723 723 723 0 663 675 554 0 663 506 482 0 +0 0 0 277 554 217 0 0 554 0 0 0 386 0 554 ] +/Encoding 478 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +306 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F121 +/FirstChar 19 +/LastChar 44 +/Widths [554 277 892 554 614 554 554 0 0 614 554 554 614 0 337 614 +614 277 386 0 337 0 614 614 614 614 ] +/Encoding 479 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +307 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F122 +/FirstChar 3 +/LastChar 18 +/Widths [832 554 217 554 277 0 337 277 506 0 554 0 0 0 506 554 +] +/Encoding 480 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +308 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F123 +/FirstChar 1 +/LastChar 69 +/Widths [603 603 0 603 603 0 0 603 603 603 0 0 603 603 0 0 +603 0 603 0 0 0 0 0 0 0 0 0 0 0 0 0 +603 0 0 0 0 603 603 603 0 0 0 0 0 603 0 603 +0 0 0 0 603 0 0 0 0 0 0 0 603 0 0 0 +0 0 603 603 603 ] +/Encoding 481 0 R +/BaseFont /CMANOE+TT8AEo00 +/FontDescriptor 364 0 R +>> +endobj +312 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F124 +/FirstChar 1 +/LastChar 85 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 277 554 554 855 0 783 0 0 554 +337 554 554 0 723 518 723 337 337 0 0 0 0 494 277 663 +614 0 663 0 0 723 723 0 663 675 554 0 663 506 482 0 +0 0 0 277 0 0 0 0 554 0 0 0 386 0 554 0 +0 0 0 578 578 ] +/Encoding 482 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +313 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F125 +/FirstChar 10 +/LastChar 45 +/Widths [277 0 0 0 0 0 0 0 0 554 277 892 554 614 554 554 +0 0 614 554 554 614 0 337 614 614 277 386 0 337 0 614 +0 0 614 795 ] +/Encoding 483 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +314 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F126 +/FirstChar 1 +/LastChar 17 +/Widths [506 0 832 554 217 554 277 554 337 0 506 554 554 506 554 0 +506 ] +/Encoding 484 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +318 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F127 +/FirstChar 1 +/LastChar 79 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 723 554 277 554 554 855 277 783 0 0 554 +337 554 0 0 723 518 0 337 337 0 0 277 0 494 277 663 +614 1000 663 663 723 723 723 0 663 675 554 0 663 506 482 0 +0 0 0 277 554 0 337 337 554 0 0 0 386 0 554 ] +/Encoding 485 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +319 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F128 +/FirstChar 6 +/LastChar 45 +/Widths [277 0 0 626 0 723 0 0 0 723 0 0 0 554 0 892 +554 614 0 554 0 0 614 554 554 614 0 337 614 0 277 386 +0 0 0 0 0 0 614 795 ] +/Encoding 486 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +320 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F129 +/FirstChar 1 +/LastChar 19 +/Widths [506 0 832 0 217 554 277 0 337 0 506 0 554 0 0 554 +506 0 554 ] +/Encoding 487 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +321 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F130 +/FirstChar 1 +/LastChar 75 +/Widths [603 0 603 603 603 603 603 603 603 0 0 0 0 0 0 603 +603 0 0 0 0 603 603 0 603 0 0 0 0 0 0 0 +603 603 0 0 603 603 0 603 0 0 0 603 0 603 0 0 +0 603 0 0 0 0 0 0 0 0 0 0 0 603 603 0 +0 0 0 0 0 603 603 603 603 603 603 ] +/Encoding 488 0 R +/BaseFont /CMANOE+TT8AEo00 +/FontDescriptor 364 0 R +>> +endobj +322 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F132 +/FirstChar 1 +/LastChar 9 +/Widths [603 603 603 603 603 603 603 603 603 ] +/Encoding 489 0 R +/BaseFont /CMANOG+TT8B0o00 +/FontDescriptor 366 0 R +>> +endobj +323 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F134 +/FirstChar 1 +/LastChar 1 +/Widths [253 ] +/Encoding 490 0 R +/BaseFont /CMANOI+TT8A7o00 +/FontDescriptor 368 0 R +>> +endobj +324 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F135 +/FirstChar 2 +/LastChar 47 +/Widths [280 0 0 560 390 280 0 0 0 0 560 330 280 610 560 610 +0 560 0 830 610 610 0 610 0 0 610 560 0 0 0 560 +0 0 0 280 0 0 890 0 610 0 670 0 0 610 ] +/Encoding 491 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +328 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F136 +/FirstChar 1 +/LastChar 84 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 277 554 554 855 0 0 0 0 554 +337 554 554 554 723 518 0 337 337 0 0 0 0 494 277 663 +614 1000 663 0 723 723 723 0 0 0 554 0 663 506 482 0 +0 0 0 0 0 0 0 0 554 277 0 277 386 0 554 0 +0 0 0 578 ] +/Encoding 492 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +329 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F137 +/FirstChar 10 +/LastChar 46 +/Widths [277 0 0 0 0 0 0 0 0 554 277 892 554 614 554 554 +0 0 614 554 0 614 0 337 614 614 0 386 0 337 0 0 +0 614 614 795 554 ] +/Encoding 493 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +330 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F138 +/FirstChar 1 +/LastChar 25 +/Widths [506 217 832 554 217 554 277 0 337 277 506 554 554 0 554 554 +0 0 0 0 506 0 0 554 277 ] +/Encoding 494 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +333 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F139 +/FirstChar 10 +/LastChar 59 +/Widths [277 0 0 0 0 0 0 0 0 554 277 892 554 0 554 554 +0 0 614 554 0 614 0 337 614 0 277 386 542 337 0 614 +0 614 614 795 554 0 0 0 0 0 0 0 277 0 0 0 +0 663 ] +/Encoding 495 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +334 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F140 +/FirstChar 1 +/LastChar 93 +/Widths [626 554 554 277 289 554 217 711 217 554 554 506 554 470 337 277 +554 506 663 277 832 0 554 277 554 554 855 277 783 0 0 554 +337 554 554 0 723 518 723 337 337 663 0 277 0 494 277 663 +614 1000 663 663 0 723 723 0 663 0 554 0 663 506 482 554 +0 0 0 277 0 217 0 0 554 0 0 0 0 0 554 0 +0 0 0 0 0 0 0 0 0 0 0 0 614 ] +/Encoding 496 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +335 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F141 +/FirstChar 1 +/LastChar 77 +/Widths [603 603 603 603 603 0 603 603 603 0 603 603 603 603 0 0 +0 603 0 603 603 603 603 603 0 0 0 603 603 0 603 0 +603 603 603 603 603 0 603 603 603 0 0 0 603 603 0 603 +0 0 0 0 603 603 603 603 603 0 0 0 603 0 603 0 +603 603 603 603 0 0 0 0 0 0 0 603 603 ] +/Encoding 497 0 R +/BaseFont /CMANOE+TT8AEo00 +/FontDescriptor 364 0 R +>> +endobj +336 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F142 +/FirstChar 2 +/LastChar 50 +/Widths [280 0 0 560 390 280 0 560 0 0 560 330 280 0 0 610 +0 0 0 0 0 610 0 610 0 670 610 0 0 0 0 560 +0 0 0 0 0 0 0 0 0 0 0 0 720 0 0 0 +560 ] +/Encoding 498 0 R +/BaseFont /CMANNI+TT8A8o00 +/FontDescriptor 352 0 R +>> +endobj +337 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F143 +/FirstChar 6 +/LastChar 22 +/Widths [554 277 0 337 0 0 0 554 0 0 0 0 0 554 0 0 +506 ] +/Encoding 499 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +341 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F144 +/FirstChar 1 +/LastChar 80 +/Widths [603 603 603 603 603 0 0 603 0 603 0 0 0 0 0 603 +603 603 603 603 0 603 603 0 603 0 603 603 603 603 0 603 +603 603 0 603 0 0 0 603 603 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 603 0 603 603 603 603 +0 0 0 0 603 0 0 0 0 0 603 0 0 603 603 603 +] +/Encoding 500 0 R +/BaseFont /CMANOE+TT8AEo00 +/FontDescriptor 364 0 R +>> +endobj +342 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F145 +/FirstChar 1 +/LastChar 89 +/Widths [626 554 554 277 289 554 217 0 217 554 554 506 554 470 337 277 +554 506 663 0 0 0 554 277 554 554 855 277 0 554 0 554 +0 554 554 0 0 518 723 337 337 663 0 0 0 0 277 663 +614 0 0 0 0 723 0 0 0 0 0 0 663 506 0 554 +0 554 0 277 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 578 0 0 0 0 578 ] +/Encoding 501 0 R +/BaseFont /CMANNG+TT8A6o00 +/FontDescriptor 350 0 R +>> +endobj +343 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F146 +/FirstChar 7 +/LastChar 22 +/Widths [277 0 0 0 0 0 554 0 0 0 0 0 0 0 0 506 +] +/Encoding 502 0 R +/BaseFont /CMANNO+TT8ACo00 +/FontDescriptor 358 0 R +>> +endobj +344 0 obj +<< +/Type /Font +/Subtype /Type1 +/Name /F147 +/FirstChar 19 +/LastChar 46 +/Widths [554 277 892 554 0 0 554 0 0 0 0 0 0 0 337 0 +0 0 386 0 0 0 0 0 614 0 0 554 ] +/Encoding 503 0 R +/BaseFont /CMANNE+TT8A5o00 +/FontDescriptor 348 0 R +>> +endobj +504 0 obj +<< +/Type /Encoding +/Differences [ 1/W/r/i/t/n/g/space/a +/S/m/u/l/o/f/h/e +/I/M/H/y/s +] +>> +endobj +370 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/W/r/i/t/n/g/space +/a/S/m/u/l/o/f/h +/e/I/M/H/y/s/R/v +/d/two/hyphen/p/four/D/c/zero +/eight/V/three/period/one/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +371 0 obj +<< +/Type /Encoding +/Differences [ 1/C/O/P/Y/R/I/G/H +/T/space/N/E +] +>> +endobj +505 0 obj +<< +/Type /Encoding +/Differences [ 1/T/h/e/space/f/o/l/w +/i/n/g/c/p/y/r/t +/a/s/S/I/M/H/u/comma +/b/d/m/colon +] +>> +endobj +372 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/nine +/three/hyphen/two/zero/eight/R/k/C +/parenleft/parenright/P/quotedbl/slash/j/v/period +/E/F/W/A/V/D/U/N +/Y/K/X/L/G/B/x/z +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +506 0 obj +<< +/Type /Encoding +/Differences [ 1/one/period +] +>> +endobj +373 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/one/period/O/v/e/r/i +/w/four/two/D/a/t/space/T +/y/p/s/three/V/M/g/n +/z/o/five/S/u/c/P/d +/R/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +507 0 obj +<< +/Type /Encoding +/Differences [ 1/three/period/one +] +>> +endobj +374 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/one/C/P/U/space +/O/r/g/a/n/i/z/t +/o/six/two/e/p/h/l/D +/v/c/nine/four/s/m/underscore/d +/S/u/eight/b/five/I/E/x +/B/y/L/f/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +508 0 obj +<< +/Type /Encoding +/Differences [ 30/one 32/three 47/period +] +>> +endobj +375 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/.notdef/b/d/m/.notdef/O/one/nine +/three/hyphen/two/zero/eight/R/k/C +/.notdef/.notdef/P/.notdef/slash/.notdef/v/period +/E/F/.notdef/A/V/D/U/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/B/x/z +/six/seven/four/five/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +509 0 obj +<< +/Type /Encoding +/Differences [ 2/period 33/six +] +>> +endobj +376 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/O/.notdef/e/r/i +/.notdef/.notdef/two/.notdef/a/t/space/.notdef +/.notdef/.notdef/s/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/S/.notdef/c/P/.notdef +/.notdef/six/h/C/F/l/seven/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +510 0 obj +<< +/Type /Encoding +/Differences [ 2/period/one 17/six +] +>> +endobj +377 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/one/.notdef/.notdef/.notdef/space +/O/r/g/a/n/i/.notdef/t +/o/six/two/e/p/.notdef/l/.notdef +/.notdef/c/.notdef/four/.notdef/m/.notdef/.notdef +/S/u/.notdef/b/.notdef/I/E/x +/B/y/L/.notdef/T/slash/F/seven +/M/zero/k/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +378 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/one/period/space/O/v/e/r +/i/w/two/D/a/t/T/y +/p/s/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +511 0 obj +<< +/Type /Encoding +/Differences [ 2/h/e/space/f/o/l/w/i +/n/g/c/p/y/r/t/a +/s/S/I/M/H/u/comma/b + 27/m 39/C/parenleft/parenright 46/v +] +>> +endobj +379 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/.notdef/one/nine +/three/hyphen/two/zero/eight/.notdef/k/C +/parenleft/parenright/P/.notdef/slash/j/v/period +/E/F/W/A/V/D/U/N +/.notdef/.notdef/.notdef/L/.notdef/B/x/z +/six/.notdef/four/.notdef/semicolon/q/quoteright/quotedblleft +/quotedblright/underscore/bracketleft/plus/bracketright/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +512 0 obj +<< +/Type /Encoding +/Differences [ 1/s/i/m/u/l/a/t/o +/r/space/c/n/p/k/g/e +] +>> +endobj +380 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/i/m/u/l/a/t +/o/r/space/c/n/p/k/g +/e/v/h/d/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +513 0 obj +<< +/Type /Encoding +/Differences [ 1/C 6/I 12/E/D/V +] +>> +endobj +381 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/C/.notdef/.notdef/.notdef/.notdef/I/.notdef +/.notdef/T/.notdef/N/E/D/V/U +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +514 0 obj +<< +/Type /Encoding +/Differences [ 5/R 7/G 12/E +] +>> +endobj +515 0 obj +<< +/Type /Encoding +/Differences [ 3/e/space/f/o 9/i/n/g/c + 15/r/t 18/s 23/u 26/d +] +>> +endobj +382 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/C/.notdef/.notdef/.notdef/R/.notdef/G +/.notdef/T/.notdef/.notdef/E/D/.notdef/.notdef +/M/A/B/s/i/m/underscore/n +/a/e/bracketleft/bracketright/p/c/x/d +/v/t/o/g/l/r/y/f +/asterisk/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +383 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/comma/b/d/m/colon/O/.notdef/.notdef +/three/hyphen/two/.notdef/.notdef/R/k/C +/parenleft/parenright/P/.notdef/.notdef/.notdef/v/period +/E/F/.notdef/A/V/D/U/N +/.notdef/K/.notdef/L/G/B/x/z +/.notdef/.notdef/.notdef/.notdef/semicolon/.notdef/quoteright/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/ellipsis/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +516 0 obj +<< +/Type /Encoding +/Differences [ 2/period 18/three +] +>> +endobj +384 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/space/O/.notdef/.notdef/r +/i/.notdef/.notdef/.notdef/a/t/.notdef/.notdef +/.notdef/.notdef/three/V/M/g/n/z +/o/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +517 0 obj +<< +/Type /Encoding +/Differences [ 1/T/h/e/space/f/o/l/w +/i/n/g/c 15/r/t/a/s + 21/M 23/u 25/b/d 46/v/period 52/V 63/z + 69/q +] +>> +endobj +385 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/nine +/three/hyphen/two/zero/eight/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/.notdef/.notdef/A/V/D/U/N +/.notdef/.notdef/X/L/G/B/x/z +/six/.notdef/four/five/semicolon/q/quoteright/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +386 0 obj +<< +/Type /Encoding +/Differences [ 3/m 6/a 12/n 16/e +] +>> +endobj +387 0 obj +<< +/Type /Encoding +/Differences [ 1/bullet +] +>> +endobj +518 0 obj +<< +/Type /Encoding +/Differences [ 1/one/period 19/three +] +>> +endobj +388 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/one/period/O/.notdef/.notdef/r/i +/.notdef/.notdef/.notdef/.notdef/a/t/space/.notdef +/.notdef/.notdef/.notdef/three/.notdef/.notdef/g/n +/z/o/.notdef/.notdef/.notdef/.notdef/P/.notdef +/.notdef/.notdef/.notdef/C/.notdef/.notdef/.notdef/U +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +389 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/one/space/T/i/m +/e/B/a/s/two/S/t/p +/F/u/n/c/o/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +519 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore/n/a/e 32/v +/t 36/l/r +] +>> +endobj +390 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/.notdef/.notdef +/v/t/o/.notdef/l/r/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +520 0 obj +<< +/Type /Encoding +/Differences [ 1/T/h/e/space/f/o/l/w +/i/n/g/c/p 16/t/a/s +/S 23/u 26/d/m 39/C 42/P 47/period/E +] +>> +endobj +391 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/nine +/three/hyphen/two/zero/eight/.notdef/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/.notdef/.notdef/A/V/D/.notdef/N +/.notdef/.notdef/X/L/.notdef/B/x/z +/six/seven/four/five/semicolon/q/quoteright/.notdef +/.notdef/underscore/bracketleft/.notdef/bracketright/.notdef/ellipsis/endash +/question/ampersand/braceleft/braceright/greater/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +392 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore/n/a/e 28/p +/c 33/t 36/l +] +>> +endobj +393 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/one/space/.notdef/i/m +/e/.notdef/a/.notdef/.notdef/.notdef/t/p +/.notdef/u/n/.notdef/o/M/r/y +/O/g/z/four/I/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +521 0 obj +<< +/Type /Encoding +/Differences [ 3/e/space 16/t 18/s 28/colon +] +>> +endobj +394 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/comma/b/d/m/colon/O/.notdef/.notdef +/.notdef/hyphen/.notdef/.notdef/.notdef/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/.notdef/A/V/D/U/N +/.notdef/.notdef/.notdef/L/G/B/x/z +/.notdef/.notdef/.notdef/.notdef/semicolon/q/.notdef/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/.notdef/ellipsis/.notdef +/.notdef/ampersand/braceleft/braceright/.notdef/equal/bar/asciitilde +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +522 0 obj +<< +/Type /Encoding +/Differences [ 1/three/period/one 29/five +] +>> +endobj +395 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/one/space/.notdef/i/.notdef +/e/.notdef/a/s/.notdef/.notdef/t/p +/.notdef/u/n/c/o/.notdef/r/.notdef +/O/g/.notdef/.notdef/I/five/slash/D +/h/six/E/x/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +396 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore/n 33/t 37/r +] +>> +endobj +523 0 obj +<< +/Type /Encoding +/Differences [ 4/space 39/C/parenleft 42/P +] +>> +endobj +524 0 obj +<< +/Type /Encoding +/Differences [ 1/C 3/P 19/s/i/m/underscore +] +>> +endobj +397 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/.notdef/.notdef +/.notdef/hyphen/.notdef/zero/.notdef/.notdef/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/W/A/V/D/U/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/B/x/z +/.notdef/.notdef/.notdef/.notdef/semicolon/q/quoteright/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/.notdef/ellipsis/.notdef +/.notdef/.notdef/braceleft/braceright/.notdef/equal/.notdef/.notdef +/asciicircum/less/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +398 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/C/.notdef/P/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/.notdef/.notdef +/v/t/o/.notdef/l/r/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +525 0 obj +<< +/Type /Encoding +/Differences [ 2/period 10/two 19/three +] +>> +endobj +399 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/O/v/e/r/i +/.notdef/.notdef/two/D/a/t/space/.notdef +/.notdef/p/.notdef/three/.notdef/.notdef/g/n +/z/o/.notdef/.notdef/.notdef/c/P/.notdef +/.notdef/.notdef/h/.notdef/.notdef/l/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +526 0 obj +<< +/Type /Encoding +/Differences [ 2/h/e/space 6/o 9/i/n 12/c/p + 15/r/t/a/s 23/u 26/d 46/v/period + 53/D 61/B +] +>> +endobj +527 0 obj +<< +/Type /Encoding +/Differences [ 1/s/i 7/t 9/r 15/g/e +] +>> +endobj +400 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/zero/.notdef/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/.notdef/F/W/A/V/D/U/N +/.notdef/K/.notdef/L/.notdef/B/x/.notdef +/six/.notdef/four/five/semicolon/q/quoteright/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +401 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/i/.notdef/.notdef/.notdef/a/t +/.notdef/r/space/.notdef/.notdef/.notdef/.notdef/g +/e/.notdef/.notdef/d/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +528 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore 25/e 29/c 31/d/v +] +>> +endobj +402 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/.notdef/e/.notdef/.notdef/.notdef/c/.notdef/d +/v/t/.notdef/g/.notdef/r/.notdef/.notdef +/.notdef/u/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +529 0 obj +<< +/Type /Encoding +/Differences [ 1/three/period/one 12/two +] +>> +endobj +403 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/one/space/T/i/m +/e/.notdef/.notdef/.notdef/two/.notdef/.notdef/.notdef +/.notdef/.notdef/n/c/.notdef/.notdef/.notdef/.notdef +/.notdef/g/.notdef/.notdef/.notdef/.notdef/.notdef/D +/.notdef/.notdef/.notdef/.notdef/v/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +530 0 obj +<< +/Type /Encoding +/Differences [ 2/h/e/space/f/o/l 9/i/n +/g/c/p/y/r/t/a/s + 23/u/comma 26/d/m 33/hyphen 38/k 40/parenleft/parenright + 46/v/period 59/L 69/q +] +>> +endobj +404 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/zero/eight/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/.notdef/.notdef/W/A/V/D/U/N +/.notdef/.notdef/.notdef/L/.notdef/B/x/z +/.notdef/.notdef/four/.notdef/semicolon/q/.notdef/quotedblleft +/quotedblright/underscore/.notdef/plus/.notdef/asterisk/.notdef/.notdef +/.notdef/ampersand/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/exclam/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +531 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore/n 25/e 28/p/c + 32/v/t/o 37/r +] +>> +endobj +405 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/.notdef/.notdef +/v/t/o/g/l/r/.notdef/.notdef +/.notdef/u/q/b/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +532 0 obj +<< +/Type /Encoding +/Differences [ 1/three/period 12/two +] +>> +endobj +406 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/.notdef/space/.notdef/i/.notdef +/.notdef/.notdef/a/.notdef/two/.notdef/t/.notdef +/.notdef/.notdef/n/c/o/.notdef/r/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/C/l/k +/b/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +533 0 obj +<< +/Type /Encoding +/Differences [ 5/l 11/c 14/k +] +>> +endobj +534 0 obj +<< +/Type /Encoding +/Differences [ 3/e 12/c 16/t 47/period +] +>> +endobj +408 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/zero/eight/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/.notdef/A/V/D/U/N +/.notdef/.notdef/.notdef/L/.notdef/B/x/z +/.notdef/seven/four/.notdef/semicolon/q/.notdef/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/ampersand/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +409 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/.notdef/space/.notdef/i/.notdef +/.notdef/.notdef/a/.notdef/two/.notdef/t/.notdef +/.notdef/.notdef/n/.notdef/.notdef/.notdef/.notdef/.notdef +/O/g/.notdef/four/I/.notdef/slash/D +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/l/.notdef +/.notdef/d/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +535 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore 25/e 31/d 36/l +] +>> +endobj +410 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/space/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/.notdef/c/.notdef/d +/v/t/o/.notdef/l/r/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/h/w/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +407 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/i/.notdef/.notdef/l/.notdef/t +/o/.notdef/.notdef/c/n/.notdef/k/.notdef +/e/.notdef/.notdef/.notdef/underscore/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +536 0 obj +<< +/Type /Encoding +/Differences [ 4/space +] +>> +endobj +411 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/zero/.notdef/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/W/A/V/D/U/N +/.notdef/K/.notdef/L/G/B/x/z +/six/.notdef/four/.notdef/semicolon/q/.notdef/.notdef +/.notdef/underscore/.notdef/plus/.notdef/asterisk/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/greater/equal/.notdef/.notdef +/asciicircum/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +537 0 obj +<< +/Type /Encoding +/Differences [ 20/i 25/e 36/l/r 39/f +] +>> +endobj +412 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/space/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/.notdef +/a/e/.notdef/.notdef/p/c/.notdef/d +/.notdef/t/o/.notdef/l/r/.notdef/f +/.notdef/u/.notdef/b/h/w/k/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +413 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/.notdef/.notdef/.notdef/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/.notdef/W/A/V/D/U/N +/.notdef/.notdef/.notdef/L/.notdef/.notdef/x/z +/six/.notdef/four/.notdef/semicolon/.notdef/.notdef/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/.notdef +/.notdef/.notdef/braceleft/braceright/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/numbersign/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +538 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore 24/a 28/p/c 33/t + 37/r 41/u 44/h +] +>> +endobj +539 0 obj +<< +/Type /Encoding +/Differences [ 2/period 25/four +] +>> +endobj +415 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/space/.notdef/.notdef/e/r +/.notdef/.notdef/.notdef/D/a/t/.notdef/.notdef +/.notdef/s/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/four/S/u/c/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +414 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/C/.notdef/.notdef/.notdef/.notdef/I/.notdef +/.notdef/.notdef/.notdef/.notdef/E/D/V/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/bracketleft/bracketright/p/c/x/d +/v/t/o/g/.notdef/r/.notdef/f +/asterisk/u/.notdef/b/h/w/.notdef/slash +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +540 0 obj +<< +/Type /Encoding +/Differences [ 1/one/period 9/four +] +>> +endobj +416 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/one/period/.notdef/v/e/r/i +/.notdef/four/.notdef/.notdef/.notdef/t/space/.notdef +/.notdef/.notdef/s/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/S/u/c/.notdef/d +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/m/underscore/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +541 0 obj +<< +/Type /Encoding +/Differences [ 20/i 24/a 30/x/d 37/r +] +>> +endobj +542 0 obj +<< +/Type /Encoding +/Differences [ 3/e/space/f/o/l 9/i/n 12/c +/p/y/r/t/a/s 23/u/comma + 26/d 30/one 34/two 46/v/period 62/x 64/six +] +>> +endobj +417 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/space/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/.notdef/n +/a/e/.notdef/.notdef/p/c/x/d +/.notdef/t/o/g/l/r/.notdef/f +/.notdef/.notdef/.notdef/b/h/w/.notdef/.notdef +/z/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +418 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/.notdef +/.notdef/hyphen/two/.notdef/eight/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/W/A/V/D/U/N +/Y/.notdef/X/L/G/B/x/z +/six/.notdef/four/.notdef/semicolon/q/quoteright/quotedblleft +/quotedblright/underscore/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/equal/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +543 0 obj +<< +/Type /Encoding +/Differences [ 2/period/one 27/four +] +>> +endobj +419 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/one/space/.notdef/i/.notdef +/e/.notdef/a/s/two/.notdef/t/.notdef +/F/.notdef/n/c/.notdef/.notdef/r/.notdef +/.notdef/g/.notdef/four/.notdef/.notdef/.notdef/D +/h/.notdef/.notdef/.notdef/v/.notdef/l/.notdef +/.notdef/d/A/w/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +544 0 obj +<< +/Type /Encoding +/Differences [ 1/three/period/one 27/four +] +>> +endobj +420 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/one/space/.notdef/i/m +/e/B/a/s/.notdef/.notdef/t/p +/.notdef/u/n/c/o/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/four/.notdef/five/.notdef/D +/h/six/E/x/.notdef/C/.notdef/.notdef +/.notdef/d/A/.notdef/R/seven/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +545 0 obj +<< +/Type /Encoding +/Differences [ 1/T/h/e/space/f/o/l 9/i +/n 12/c/p 15/r/t/a/s/S +/I/M/H/u/comma/b/d 33/hyphen + 46/v/period 52/V 62/x 69/q +] +>> +endobj +421 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/.notdef/.notdef +/three/hyphen/two/.notdef/.notdef/R/k/C +/parenleft/parenright/P/.notdef/.notdef/.notdef/v/period +/E/F/W/A/V/D/U/N +/.notdef/.notdef/.notdef/.notdef/.notdef/B/x/.notdef +/.notdef/.notdef/.notdef/.notdef/semicolon/q/quoteright/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/.notdef/.notdef/.notdef/greater/.notdef/.notdef/.notdef +/.notdef/less/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +546 0 obj +<< +/Type /Encoding +/Differences [ 10/space 19/s/i/m/underscore 25/e 29/c 31/d +/v +] +>> +endobj +547 0 obj +<< +/Type /Encoding +/Differences [ 2/i/m/u 6/a/t/o/r 12/n + 16/e 20/underscore/x +] +>> +endobj +422 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/space/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/.notdef +/a/e/.notdef/.notdef/.notdef/c/x/d +/v/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +423 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/i/m/u/l/a/t +/o/r/space/c/n/p/.notdef/.notdef +/e/v/h/d/underscore/x/y/w +/b/f/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +548 0 obj +<< +/Type /Encoding +/Differences [ 4/space 16/t/a/s 73/underscore +] +>> +endobj +549 0 obj +<< +/Type /Encoding +/Differences [ 2/i 4/u 6/a/t/o/r 11/c/n + 16/e 18/h/d/underscore +] +>> +endobj +424 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/.notdef/.notdef +/three/hyphen/two/.notdef/.notdef/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/.notdef/A/V/D/U/N +/.notdef/.notdef/X/L/G/B/x/z +/.notdef/.notdef/.notdef/.notdef/semicolon/q/quoteright/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/.notdef/braceleft/braceright/greater/.notdef/.notdef/.notdef +/.notdef/less/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +425 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/i/m/u/l/a/t +/o/r/.notdef/c/n/p/.notdef/g +/e/v/h/d/underscore/.notdef/.notdef/.notdef +/.notdef/.notdef/z/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +550 0 obj +<< +/Type /Encoding +/Differences [ 20/i 22/underscore/n/a 29/c 33/t 41/u 44/h +] +>> +endobj +426 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/T/.notdef/.notdef/E/D/.notdef/.notdef +/.notdef/A/B/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/.notdef/d +/.notdef/t/.notdef/g/l/r/.notdef/f +/.notdef/u/.notdef/b/h/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +551 0 obj +<< +/Type /Encoding +/Differences [ 1/t/underscore/s/a/space/l/p/c +/h/parenleft/U/N/I/T/asterisk/u +/r/comma/parenright/braceleft +] +>> +endobj +427 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/t/underscore/s/a/space/l/p +/c/h/parenleft/U/N/I/T/asterisk +/u/r/comma/parenright/braceleft/semicolon/i/f +/equal/n/exclam/S/C/P/E/O +/K/e/o/zero/braceright/d/one/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +552 0 obj +<< +/Type /Encoding +/Differences [ 2/period/one 27/four 46/eight +] +>> +endobj +428 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/one/space/.notdef/i/m +/e/.notdef/a/s/.notdef/S/t/.notdef +/.notdef/u/n/.notdef/o/M/r/y +/.notdef/g/z/four/.notdef/.notdef/.notdef/D +/h/.notdef/.notdef/.notdef/.notdef/C/l/.notdef +/b/.notdef/.notdef/.notdef/R/.notdef/eight/nine +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +553 0 obj +<< +/Type /Encoding +/Differences [ 2/h 12/c 15/r 17/a +] +>> +endobj +429 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/.notdef/.notdef/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/zero/.notdef/R/k/.notdef +/parenleft/parenright/.notdef/.notdef/slash/.notdef/v/period +/E/F/.notdef/A/V/.notdef/U/N +/.notdef/.notdef/.notdef/L/.notdef/.notdef/x/.notdef +/six/.notdef/four/five/semicolon/q/.notdef/.notdef +/.notdef/underscore/.notdef/plus/.notdef/asterisk/.notdef/.notdef +/.notdef/.notdef/braceleft/braceright/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +554 0 obj +<< +/Type /Encoding +/Differences [ 49/semicolon +] +>> +endobj +430 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/I/.notdef +/.notdef/T/space/N/.notdef/.notdef/.notdef/U +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/x/.notdef +/.notdef/t/o/g/l/r/.notdef/f +/.notdef/u/.notdef/b/h/w/k/slash +/.notdef/semicolon/three/four/five/six/comma/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +555 0 obj +<< +/Type /Encoding +/Differences [ 2/period 9/four/two +] +>> +endobj +431 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/.notdef/.notdef/e/r/i +/.notdef/four/two/.notdef/.notdef/t/space/.notdef +/.notdef/.notdef/s/.notdef/.notdef/.notdef/.notdef/n +/.notdef/.notdef/.notdef/S/u/c/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/m/underscore/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +556 0 obj +<< +/Type /Encoding +/Differences [ 4/space 6/o 12/c 15/r 17/a 21/M +] +>> +endobj +557 0 obj +<< +/Type /Encoding +/Differences [ 9/T 13/D 15/U 17/A +] +>> +endobj +432 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/zero/.notdef/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/W/A/V/D/U/N +/.notdef/K/X/L/.notdef/B/x/.notdef +/.notdef/.notdef/four/five/semicolon/q/.notdef/quotedblleft +/quotedblright/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/.notdef +/.notdef/.notdef/braceleft/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/Q/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +433 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/R/.notdef/G +/.notdef/T/space/.notdef/E/D/.notdef/U +/.notdef/A/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/.notdef/.notdef +/v/t/o/g/l/r/.notdef/f +/.notdef/u/.notdef/b/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +558 0 obj +<< +/Type /Encoding +/Differences [ 1/t/underscore 5/space/l/p 11/U/N/I +/T 16/u 22/i 24/equal/n +] +>> +endobj +434 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/t/underscore/s/.notdef/space/l/p +/c/.notdef/parenleft/U/N/I/T/.notdef +/u/.notdef/comma/parenright/braceleft/semicolon/i/.notdef +/equal/n/.notdef/S/.notdef/.notdef/E/.notdef +/.notdef/.notdef/.notdef/zero/braceright/.notdef/.notdef/D +/A/ampersand/v/Q/plus/B/L/five +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +559 0 obj +<< +/Type /Encoding +/Differences [ 2/period/one 12/two 27/four +] +>> +endobj +435 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/one/space/.notdef/i/.notdef +/e/.notdef/a/s/two/S/t/.notdef +/F/u/n/c/o/.notdef/r/.notdef +/.notdef/g/.notdef/four/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/v/.notdef/l/.notdef +/.notdef/.notdef/.notdef/.notdef/R/.notdef/.notdef/.notdef +/U/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +436 0 obj +<< +/Type /Encoding +/Differences [ 1/s/i 4/u 7/t/o/r 11/c/n + 16/e/v 20/underscore +] +>> +endobj +560 0 obj +<< +/Type /Encoding +/Differences [ 2/period 9/four 19/three +] +>> +endobj +437 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/.notdef/.notdef/e/r/i +/.notdef/four/.notdef/.notdef/.notdef/t/space/.notdef +/.notdef/.notdef/s/three/.notdef/.notdef/g/.notdef +/.notdef/.notdef/.notdef/S/u/c/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/m/underscore/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +561 0 obj +<< +/Type /Encoding +/Differences [ 9/i/n 16/t 23/u 32/three 34/two +] +>> +endobj +438 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/.notdef/I/M/.notdef/u +/comma/b/d/m/colon/.notdef/one/.notdef +/three/hyphen/two/.notdef/.notdef/R/k/C +/parenleft/parenright/P/.notdef/slash/j/v/period +/.notdef/F/.notdef/A/.notdef/D/U/.notdef +/.notdef/.notdef/.notdef/L/G/B/x/z +/six/.notdef/.notdef/.notdef/semicolon/q/.notdef/quotedblleft +/quotedblright/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/.notdef +/.notdef/.notdef/.notdef/braceright/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/Q/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +562 0 obj +<< +/Type /Encoding +/Differences [ 21/m 23/n/a/e +] +>> +endobj +439 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/O/.notdef/.notdef/R/I/G +/H/T/.notdef/N/.notdef/D/.notdef/U +/.notdef/A/B/s/i/m/.notdef/n +/a/e/.notdef/.notdef/p/c/x/d +/.notdef/t/o/g/l/r/.notdef/f +/.notdef/.notdef/q/.notdef/h/w/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/F +/L/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +563 0 obj +<< +/Type /Encoding +/Differences [ 1/t/underscore 5/space/l/p 17/r 20/braceleft 24/equal + 30/E 33/e 48/R/G/g +] +>> +endobj +440 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/t/underscore/s/.notdef/space/l/p +/.notdef/.notdef/parenleft/.notdef/.notdef/.notdef/T/.notdef +/u/r/comma/parenright/braceleft/.notdef/i/.notdef +/equal/n/.notdef/S/.notdef/P/E/O +/.notdef/e/o/.notdef/braceright/.notdef/one/D +/A/.notdef/.notdef/.notdef/.notdef/.notdef/L/.notdef +/R/G/g/period/three/V/F/ellipsis +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +564 0 obj +<< +/Type /Encoding +/Differences [ 1/T/h/e/space/f/o/l 9/i +/n 12/c 16/t/a/s 23/u 25/b/d +] +>> +endobj +565 0 obj +<< +/Type /Encoding +/Differences [ 6/I 9/T/space/N 15/U +] +>> +endobj +441 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/zero/.notdef/R/k/C +/parenleft/parenright/P/.notdef/slash/j/v/period +/E/F/W/A/V/D/U/N +/.notdef/.notdef/X/L/G/B/x/z +/.notdef/.notdef/four/.notdef/semicolon/q/quoteright/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/.notdef +/.notdef/.notdef/braceleft/braceright/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/Z/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +566 0 obj +<< +/Type /Encoding +/Differences [ 5/space 11/U 14/T 20/braceleft 39/D/A 48/R +] +>> +endobj +443 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/t/underscore/s/.notdef/space/.notdef/p +/.notdef/.notdef/parenleft/U/.notdef/.notdef/T/.notdef +/u/.notdef/comma/parenright/braceleft/.notdef/i/.notdef +/.notdef/n/.notdef/S/.notdef/P/.notdef/O +/.notdef/e/o/zero/braceright/d/.notdef/D +/A/.notdef/v/.notdef/.notdef/.notdef/.notdef/.notdef +/R/.notdef/.notdef/period/.notdef/.notdef/.notdef/.notdef +/bracketleft/bracketright/eight/W/four/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +444 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/one/space/.notdef/i/.notdef +/e/.notdef/a/s/.notdef/.notdef/t/.notdef +/F/.notdef/.notdef/.notdef/.notdef/.notdef/r/.notdef +/.notdef/g/.notdef/four/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/l/.notdef +/.notdef/.notdef/.notdef/.notdef/R/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +442 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/I/.notdef +/.notdef/T/space/N/.notdef/.notdef/.notdef/U +/M/A/B/s/i/m/underscore/n +/a/.notdef/.notdef/.notdef/p/c/.notdef/d +/v/t/.notdef/g/l/r/.notdef/f +/.notdef/.notdef/.notdef/b/h/.notdef/k/slash +/.notdef/semicolon/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +567 0 obj +<< +/Type /Encoding +/Differences [ 2/period 9/four +] +>> +endobj +445 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/.notdef/.notdef/e/r/i +/.notdef/four/.notdef/.notdef/a/t/space/.notdef +/.notdef/.notdef/s/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/S/u/c/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/m/underscore/b/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +568 0 obj +<< +/Type /Encoding +/Differences [ 34/two 47/period +] +>> +endobj +446 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/.notdef/.notdef/R/k/C +/parenleft/parenright/P/.notdef/.notdef/.notdef/v/period +/E/F/W/A/V/D/U/N +/.notdef/.notdef/X/L/G/B/x/.notdef +/six/seven/four/five/semicolon/q/.notdef/quotedblleft +/quotedblright/underscore/bracketleft/.notdef/bracketright/.notdef/.notdef/.notdef +/.notdef/.notdef/braceleft/braceright/greater/equal/bar/.notdef +/.notdef/less/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +569 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m 23/n 33/t 35/g 37/r +] +>> +endobj +447 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/.notdef/n +/a/e/.notdef/.notdef/p/c/.notdef/d +/v/t/.notdef/g/l/r/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/h/.notdef/k/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +570 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i 23/n 28/p 33/t 35/g 37/r +] +>> +endobj +571 0 obj +<< +/Type /Encoding +/Differences [ 3/e/space/f/o/l 9/i/n/g + 13/p/y/r/t/a/s 24/comma 26/d +/m 47/period 49/F +] +>> +endobj +449 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/.notdef/.notdef +/three/hyphen/two/.notdef/.notdef/R/k/C +/parenleft/parenright/P/.notdef/.notdef/.notdef/v/period +/E/F/W/A/V/D/U/N +/.notdef/.notdef/.notdef/L/G/B/x/.notdef +/.notdef/.notdef/.notdef/.notdef/semicolon/q/quoteright/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/.notdef/.notdef/.notdef/.notdef/equal/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +572 0 obj +<< +/Type /Encoding +/Differences [ 1/t/underscore 4/a/space 7/p/c 14/T 16/u + 20/braceleft 24/equal 40/A 45/B 56/bracketleft/bracketright 61/M/b +] +>> +endobj +450 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/t/underscore/s/a/space/l/p +/c/.notdef/.notdef/U/N/I/T/.notdef +/u/r/comma/.notdef/braceleft/semicolon/i/.notdef +/equal/n/.notdef/S/C/P/E/O +/.notdef/e/o/zero/braceright/d/.notdef/D +/A/ampersand/v/.notdef/.notdef/B/L/.notdef +/R/.notdef/.notdef/.notdef/.notdef/V/.notdef/.notdef +/bracketleft/bracketright/.notdef/.notdef/.notdef/M/b/m +/k/quotedblleft/quotedblright/X/bar/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +451 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/one/space/.notdef/i/.notdef +/e/.notdef/a/s/two/.notdef/t/p +/.notdef/u/n/.notdef/o/.notdef/.notdef/y +/.notdef/.notdef/.notdef/four/.notdef/.notdef/.notdef/D +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/l/.notdef +/.notdef/d/.notdef/.notdef/R/.notdef/.notdef/.notdef +/.notdef/V/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +573 0 obj +<< +/Type /Encoding +/Differences [ 2/i 4/u/l/a/t/o/r 12/n + 16/e/v 19/d/underscore +] +>> +endobj +452 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/i/.notdef/u/l/a/t +/o/r/.notdef/c/n/p/.notdef/.notdef +/e/v/.notdef/d/underscore/.notdef/y/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +448 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/C/.notdef/P/.notdef/R/.notdef/G +/.notdef/.notdef/.notdef/.notdef/E/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/bracketleft/bracketright/p/c/x/d +/v/t/.notdef/g/l/r/.notdef/f +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +574 0 obj +<< +/Type /Encoding +/Differences [ 2/period 9/four 26/five +] +>> +endobj +453 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/O/.notdef/e/r/.notdef +/.notdef/four/.notdef/D/a/t/space/.notdef +/.notdef/.notdef/s/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/five/S/u/c/.notdef/.notdef +/.notdef/.notdef/h/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +575 0 obj +<< +/Type /Encoding +/Differences [ 2/h 4/space 12/c 15/r 17/a 77/asterisk +] +>> +endobj +576 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore 24/a/e/bracketleft/bracketright +/p 33/t/o/g +] +>> +endobj +454 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/zero/.notdef/R/.notdef/C +/parenleft/parenright/P/.notdef/.notdef/.notdef/v/period +/E/F/.notdef/A/V/D/U/N +/Y/K/X/L/G/B/x/z +/six/seven/four/five/.notdef/q/quoteright/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/.notdef/.notdef/.notdef/greater/equal/.notdef/.notdef +/.notdef/.notdef/.notdef/numbersign/.notdef/Z/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +455 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/bracketleft/bracketright/p/c/.notdef/d +/v/t/o/g/l/r/y/f +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +577 0 obj +<< +/Type /Encoding +/Differences [ 2/period 29/five +] +>> +endobj +456 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/space/.notdef/v/e/r +/i/.notdef/.notdef/.notdef/.notdef/t/.notdef/.notdef +/.notdef/s/.notdef/V/M/.notdef/n/.notdef +/o/.notdef/.notdef/u/.notdef/five/P/d +/R/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +578 0 obj +<< +/Type /Encoding +/Differences [ 1/one/period 26/five +] +>> +endobj +457 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/one/period/.notdef/.notdef/e/r/i +/.notdef/.notdef/two/D/a/t/space/.notdef +/y/p/s/three/.notdef/.notdef/.notdef/n +/.notdef/o/five/S/u/c/.notdef/d +/.notdef/.notdef/.notdef/.notdef/.notdef/l/.notdef/.notdef +/m/.notdef/b/I/E/x/B/L +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +579 0 obj +<< +/Type /Encoding +/Differences [ 5/l/a 15/g 25/f +] +>> +endobj +458 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/i/m/u/l/a/t +/o/r/.notdef/c/n/p/.notdef/g +/e/v/h/d/.notdef/.notdef/.notdef/w +/b/f/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +580 0 obj +<< +/Type /Encoding +/Differences [ 7/l 17/a 35/zero 46/v 74/bracketleft 76/bracketright +] +>> +endobj +459 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/comma/b/d/m/colon/.notdef/one/.notdef +/three/hyphen/two/zero/.notdef/.notdef/k/C +/parenleft/parenright/P/.notdef/.notdef/j/v/period +/E/F/.notdef/A/V/D/U/N +/.notdef/.notdef/.notdef/L/.notdef/B/x/z +/.notdef/.notdef/.notdef/.notdef/semicolon/q/quoteright/quotedblleft +/quotedblright/underscore/bracketleft/plus/bracketright/asterisk/.notdef/endash +/.notdef/.notdef/.notdef/.notdef/.notdef/equal/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/quoteleft/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +581 0 obj +<< +/Type /Encoding +/Differences [ 24/a 32/v 36/l +] +>> +endobj +460 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/space/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/.notdef/.notdef/d +/v/t/.notdef/.notdef/l/r/y/f +/.notdef/.notdef/.notdef/.notdef/h/w/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +461 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/O/.notdef/e/r/i +/.notdef/four/.notdef/.notdef/a/t/space/.notdef +/.notdef/p/s/.notdef/.notdef/.notdef/.notdef/n +/.notdef/o/five/.notdef/.notdef/c/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/l/.notdef/.notdef +/.notdef/.notdef/.notdef/I/.notdef/.notdef/.notdef/.notdef +/f/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +582 0 obj +<< +/Type /Encoding +/Differences [ 2/period/one 27/four 29/five +] +>> +endobj +462 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/one/space/.notdef/i/.notdef +/e/.notdef/a/s/two/.notdef/t/p +/.notdef/u/n/c/o/.notdef/r/y +/O/.notdef/z/four/I/five/.notdef/D +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/l/.notdef +/.notdef/d/A/.notdef/R/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +583 0 obj +<< +/Type /Encoding +/Differences [ 1/t/underscore/s/a/space/l/p/c + 10/parenleft 19/parenright 21/semicolon/i 25/n 33/e/o 37/d + 42/v 63/m +] +>> +endobj +463 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/t/underscore/s/a/space/l/p +/c/.notdef/parenleft/.notdef/.notdef/.notdef/.notdef/asterisk +/.notdef/.notdef/.notdef/parenright/.notdef/semicolon/i/.notdef +/equal/n/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/e/o/.notdef/.notdef/d/.notdef/.notdef +/.notdef/ampersand/v/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/m +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +584 0 obj +<< +/Type /Encoding +/Differences [ 7/t 9/r 11/c 13/p +] +>> +endobj +464 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/t +/o/r/.notdef/c/.notdef/p/.notdef/.notdef +/.notdef/.notdef/.notdef/d/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +585 0 obj +<< +/Type /Encoding +/Differences [ 3/e/space/f/o 9/i/n 13/p 15/r +/t/a/s/S 26/d 39/C/parenleft 42/P + 46/v 77/asterisk +] +>> +endobj +586 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore/n/a 28/p 31/d +/v/t 37/r 39/f +] +>> +endobj +465 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/comma/b/d/m/colon/.notdef/.notdef/.notdef +/three/hyphen/two/.notdef/.notdef/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/.notdef/A/V/D/U/N +/.notdef/.notdef/.notdef/L/G/B/x/z +/.notdef/.notdef/.notdef/.notdef/semicolon/q/.notdef/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/.notdef/braceleft/braceright/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +587 0 obj +<< +/Type /Encoding +/Differences [ 6/a 9/r 19/d +] +>> +endobj +467 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/.notdef/m/u/.notdef/a/t +/o/r/.notdef/c/.notdef/p/.notdef/.notdef +/e/.notdef/.notdef/d/underscore/x/.notdef/.notdef +/b/f/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +588 0 obj +<< +/Type /Encoding +/Differences [ 1/three/period 27/four 29/five +] +>> +endobj +468 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/three/period/.notdef/space/.notdef/i/m +/e/.notdef/a/s/.notdef/S/t/p +/.notdef/u/n/c/o/M/r/.notdef +/.notdef/g/.notdef/four/I/five/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/C/.notdef/.notdef +/.notdef/d/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/V/P/hyphen/f/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +466 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/C/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/T/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/A/B/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/.notdef/d +/v/t/o/g/.notdef/r/.notdef/f +/.notdef/u/.notdef/b/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +469 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/space/O/.notdef/e/r +/i/.notdef/.notdef/.notdef/a/t/.notdef/.notdef +/.notdef/s/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/S/.notdef/c/.notdef/P/.notdef +/.notdef/six/h/C/F/l/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +589 0 obj +<< +/Type /Encoding +/Differences [ 1/one/period 33/six +] +>> +endobj +470 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/one/period/O/.notdef/e/r/i +/.notdef/.notdef/two/.notdef/a/t/space/T +/y/p/.notdef/.notdef/.notdef/M/g/n +/.notdef/o/.notdef/.notdef/u/.notdef/.notdef/.notdef +/.notdef/six/.notdef/.notdef/F/l/.notdef/.notdef +/m/.notdef/b/I/E/x/.notdef/L +/.notdef/slash/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +590 0 obj +<< +/Type /Encoding +/Differences [ 2/h/e/space/f/o 9/i/n 12/c +/p 15/r/t/a/s/S/I/M +/H/u/comma 26/d/m 39/C 46/v 51/A +/V 62/x +] +>> +endobj +471 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/zero/eight/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/.notdef/A/V/D/U/N +/.notdef/K/.notdef/L/G/B/x/.notdef +/.notdef/seven/.notdef/.notdef/semicolon/.notdef/.notdef/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +591 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore/n 28/p/c 32/v +/t +] +>> +endobj +592 0 obj +<< +/Type /Encoding +/Differences [ 11/c +] +>> +endobj +473 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/.notdef/m/.notdef/.notdef/.notdef/t +/o/r/space/c/.notdef/p/.notdef/.notdef +/e/.notdef/.notdef/d/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +472 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/.notdef/.notdef +/v/t/o/.notdef/.notdef/r/.notdef/.notdef +/.notdef/u/.notdef/.notdef/h/w/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +593 0 obj +<< +/Type /Encoding +/Differences [ 3/e/space 6/o 8/w/i/n 15/r 17/a +/s 20/I 23/u 26/d 47/period 50/W 54/U/N + 58/X +] +>> +endobj +474 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/.notdef/.notdef +/three/hyphen/two/zero/.notdef/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/W/A/V/D/U/N +/.notdef/K/X/L/.notdef/B/x/.notdef +/.notdef/.notdef/.notdef/.notdef/semicolon/.notdef/.notdef/.notdef +/.notdef/underscore/bracketleft/.notdef/bracketright/asterisk/.notdef/.notdef +/.notdef/.notdef/braceleft/braceright/.notdef/equal/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +594 0 obj +<< +/Type /Encoding +/Differences [ 21/m 23/n 33/t 36/l +] +>> +endobj +475 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/T/.notdef/N/.notdef/.notdef/.notdef/.notdef +/M/.notdef/.notdef/s/i/m/.notdef/n +/a/e/.notdef/.notdef/p/c/x/d +/v/t/o/g/l/r/.notdef/.notdef +/.notdef/.notdef/.notdef/b/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/L/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +595 0 obj +<< +/Type /Encoding +/Differences [ 1/T/h/e/space/f/o/l 9/i +/n 14/y/r/t/a/s 25/b/d +/m 46/v 62/x +] +>> +endobj +596 0 obj +<< +/Type /Encoding +/Differences [ 21/m 30/x 33/t 37/r +] +>> +endobj +476 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/.notdef/.notdef/R/k/C +/parenleft/parenright/P/quotedbl/slash/.notdef/v/period +/E/.notdef/W/A/V/D/U/N +/.notdef/K/.notdef/L/.notdef/.notdef/x/.notdef +/.notdef/.notdef/.notdef/.notdef/semicolon/q/quoteright/quotedblleft +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/.notdef/braceleft/braceright/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/numbersign/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +477 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/C/O/.notdef/.notdef/R/.notdef/.notdef +/.notdef/T/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/M/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/x/d +/v/t/o/g/l/r/y/.notdef +/.notdef/.notdef/.notdef/.notdef/h/.notdef/.notdef/slash +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/X/one/S/zero/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +597 0 obj +<< +/Type /Encoding +/Differences [ 4/space 9/i/n 16/t 32/three 34/two +] +>> +endobj +598 0 obj +<< +/Type /Encoding +/Differences [ 21/m/underscore/n 28/p/c/x 33/t/o + 36/l/r +] +>> +endobj +478 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/comma/b/d/m/colon/O/one/.notdef +/three/hyphen/two/zero/.notdef/R/k/C +/parenleft/parenright/P/.notdef/.notdef/.notdef/v/period +/E/.notdef/.notdef/A/.notdef/D/U/N +/.notdef/K/X/L/.notdef/B/x/z +/.notdef/.notdef/.notdef/.notdef/semicolon/q/quoteright/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +599 0 obj +<< +/Type /Encoding +/Differences [ 3/m 13/p +] +>> +endobj +479 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/x/d +/.notdef/t/o/g/l/r/.notdef/f +/.notdef/u/q/b/h/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +480 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/m/u/l/a/t +/.notdef/r/space/c/.notdef/p/.notdef/.notdef +/.notdef/v/h/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +481 0 obj +<< +/Type /Encoding +/Differences [ 1/t/underscore 4/a/space 8/c/h/parenleft 13/I +/T 17/r 19/parenright 33/e 38/one/D/A 46/L + 48/R 53/V 61/M 67/X/bar/less +] +>> +endobj +600 0 obj +<< +/Type /Encoding +/Differences [ 19/s 21/m/underscore/n/a/e 28/p 30/x + 33/t/o 37/r +] +>> +endobj +482 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/comma/b/d/m/.notdef/O/.notdef/.notdef +/three/hyphen/two/zero/.notdef/R/k/C +/parenleft/parenright/.notdef/.notdef/.notdef/.notdef/v/period +/E/F/.notdef/A/.notdef/.notdef/U/N +/.notdef/K/X/L/.notdef/B/x/z +/.notdef/.notdef/.notdef/.notdef/semicolon/.notdef/.notdef/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/.notdef/.notdef/.notdef/greater/equal/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +484 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/.notdef/m/u/l/a/t +/o/r/.notdef/c/n/p/k/g +/.notdef/v/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +483 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/space/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/x/d +/.notdef/t/o/g/l/r/.notdef/f +/.notdef/u/.notdef/.notdef/h/w/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +601 0 obj +<< +/Type /Encoding +/Differences [ 2/h/e/space 6/o/l/w/i/n + 12/c 15/r/t/a/s 23/u/comma/b +/d/m 46/v 68/semicolon +] +>> +endobj +485 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/H/u +/comma/b/d/m/colon/O/.notdef/.notdef +/three/hyphen/two/.notdef/.notdef/R/k/.notdef +/parenleft/parenright/.notdef/.notdef/slash/.notdef/v/period +/E/F/W/A/V/D/U/N +/.notdef/K/X/L/.notdef/B/x/z +/.notdef/.notdef/.notdef/.notdef/semicolon/q/.notdef/quotedblleft +/quotedblright/underscore/.notdef/.notdef/.notdef/asterisk/.notdef/endash +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +602 0 obj +<< +/Type /Encoding +/Differences [ 19/s 21/m/underscore/n 29/c/x/d 33/t + 36/l/r +] +>> +endobj +487 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/.notdef/m/.notdef/l/a/t +/.notdef/r/.notdef/c/.notdef/p/.notdef/.notdef +/e/v/.notdef/d/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +486 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/I/.notdef +/.notdef/T/.notdef/N/.notdef/.notdef/.notdef/U +/.notdef/.notdef/.notdef/s/.notdef/m/underscore/n +/.notdef/e/.notdef/.notdef/p/c/x/d +/.notdef/t/o/.notdef/l/r/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/h/w/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +603 0 obj +<< +/Type /Encoding +/Differences [ 6/l 22/i 25/n 33/e 38/one 70/hyphen/two +] +>> +endobj +488 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/t/.notdef/s/a/space/l/p +/c/h/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/u/r/.notdef/.notdef/.notdef/.notdef/i/f +/.notdef/n/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/e/o/.notdef/.notdef/d/one/.notdef +/A/.notdef/.notdef/.notdef/plus/.notdef/L/.notdef +/.notdef/.notdef/g/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/b/m +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/hyphen/two +/q/slash/y/x/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +604 0 obj +<< +/Type /Encoding +/Differences [ 1/l/i/n/e/one +] +>> +endobj +489 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/l/i/n/e/one/two/g +/t/h/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +490 0 obj +<< +/Type /Encoding +/Differences [ 1/space +] +>> +endobj +605 0 obj +<< +/Type /Encoding +/Differences [ 2/period 19/three 33/six +] +>> +endobj +491 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/.notdef/.notdef/e/r/i +/.notdef/.notdef/.notdef/.notdef/a/t/space/T +/y/p/.notdef/three/.notdef/M/g/n +/.notdef/o/.notdef/.notdef/u/c/.notdef/.notdef +/.notdef/six/.notdef/.notdef/.notdef/l/.notdef/.notdef +/m/.notdef/b/.notdef/E/.notdef/.notdef/L +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +606 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore 24/a/e 28/p/c + 33/t 44/h +] +>> +endobj +492 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/comma/b/d/m/.notdef/.notdef/.notdef/.notdef +/three/hyphen/two/zero/eight/R/k/.notdef +/parenleft/parenright/.notdef/.notdef/.notdef/.notdef/v/period +/E/F/W/A/.notdef/D/U/N +/.notdef/.notdef/.notdef/L/.notdef/B/x/z +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/underscore/bracketleft/.notdef/bracketright/asterisk/.notdef/endash +/.notdef/.notdef/.notdef/.notdef/greater/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +607 0 obj +<< +/Type /Encoding +/Differences [ 4/u 7/t 9/r/space 13/p +] +>> +endobj +494 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/s/i/m/u/l/a/t +/.notdef/r/space/c/n/p/.notdef/g +/e/.notdef/.notdef/.notdef/.notdef/x/.notdef/.notdef +/b/f/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +493 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/space/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/n +/a/e/.notdef/.notdef/p/c/.notdef/d +/.notdef/t/o/g/.notdef/r/.notdef/f +/.notdef/.notdef/.notdef/b/h/w/k/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +608 0 obj +<< +/Type /Encoding +/Differences [ 20/i/m/underscore 24/a/e 28/p/c 33/t + 44/h 59/S +] +>> +endobj +609 0 obj +<< +/Type /Encoding +/Differences [ 4/space 24/comma +] +>> +endobj +495 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/space/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/s/i/m/underscore/.notdef +/a/e/.notdef/.notdef/p/c/.notdef/d +/.notdef/t/o/.notdef/l/r/y/f +/.notdef/u/.notdef/b/h/w/k/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/comma/.notdef +/.notdef/.notdef/.notdef/S/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +496 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/w/i/n/g/c/p/y/r +/t/a/s/S/I/M/.notdef/u +/comma/b/d/m/colon/O/.notdef/.notdef +/three/hyphen/two/zero/.notdef/R/k/C +/parenleft/parenright/P/.notdef/slash/.notdef/v/period +/E/F/W/A/V/.notdef/U/N +/.notdef/K/.notdef/L/.notdef/B/x/z +/six/.notdef/.notdef/.notdef/semicolon/.notdef/quoteright/.notdef +/.notdef/underscore/.notdef/.notdef/.notdef/.notdef/.notdef/endash +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/Z/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +610 0 obj +<< +/Type /Encoding +/Differences [ 1/t/underscore 4/a/space 7/p 14/T 20/braceleft 24/equal + 33/e/o 37/d 40/A 45/B 56/bracketleft/bracketright 61/M + 63/m +] +>> +endobj +497 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/t/underscore/s/a/space/.notdef/p +/c/h/.notdef/U/N/I/T/.notdef +/.notdef/.notdef/comma/.notdef/braceleft/semicolon/i/f +/equal/.notdef/.notdef/.notdef/C/P/.notdef/O +/.notdef/e/o/zero/braceright/d/.notdef/D +/A/ampersand/.notdef/.notdef/.notdef/B/L/.notdef +/R/.notdef/.notdef/.notdef/.notdef/V/F/ellipsis +/bracketleft/bracketright/.notdef/.notdef/.notdef/M/.notdef/m +/.notdef/quotedblleft/quotedblright/X/bar/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/w/Y/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +611 0 obj +<< +/Type /Encoding +/Differences [ 2/period 9/four 33/six +] +>> +endobj +498 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/period/.notdef/.notdef/e/r/i +/.notdef/four/.notdef/.notdef/a/t/space/.notdef +/.notdef/p/.notdef/.notdef/.notdef/.notdef/.notdef/n +/.notdef/o/.notdef/S/u/.notdef/.notdef/.notdef +/.notdef/six/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/B/.notdef +/.notdef/.notdef/k/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +502 0 obj +<< +/Type /Encoding +/Differences [ 7/t 13/p 22/y +] +>> +endobj +499 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/a/t +/.notdef/r/.notdef/.notdef/.notdef/p/.notdef/.notdef +/.notdef/.notdef/.notdef/d/.notdef/.notdef/y/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +612 0 obj +<< +/Type /Encoding +/Differences [ 1/t/underscore/s 5/space 10/parenleft 16/u/r/comma +/parenright/braceleft 22/i/f 27/S/C/P/E + 32/K/e 40/A/ampersand 59/W 61/M/b/m +/k 78/quoteleft/quoteright +] +>> +endobj +500 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/t/underscore/s/a/space/.notdef/.notdef +/c/.notdef/parenleft/.notdef/.notdef/.notdef/.notdef/.notdef +/u/r/comma/parenright/braceleft/.notdef/i/f +/.notdef/n/.notdef/S/C/P/E/.notdef +/K/e/o/.notdef/braceright/.notdef/.notdef/.notdef +/A/ampersand/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/W/.notdef/M/b/m +/k/.notdef/.notdef/.notdef/.notdef/less/.notdef/.notdef +/.notdef/.notdef/.notdef/x/.notdef/.notdef/quoteleft/quoteright +/greater/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +613 0 obj +<< +/Type /Encoding +/Differences [ 1/T/h/e/space/f/o/l 9/i +/n 12/c/p 15/r/t/a/s/S + 24/comma/b/d/m 38/k/C 42/P 62/x +] +>> +endobj +501 0 obj +<< +/Type /Encoding +/Differences [0/.notdef/T/h/e/space/f/o/l +/.notdef/i/n/g/c/p/y/r +/t/a/s/S/.notdef/.notdef/.notdef/u +/comma/b/d/m/colon/.notdef/one/.notdef +/three/.notdef/two/zero/.notdef/.notdef/k/C +/parenleft/parenright/P/.notdef/.notdef/.notdef/.notdef/period +/E/F/.notdef/.notdef/.notdef/.notdef/U/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/B/x/.notdef +/six/.notdef/four/.notdef/semicolon/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/greater/.notdef/.notdef/.notdef +/.notdef/less/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef +] +>> +endobj +503 0 obj +<< +/Type /Encoding +/Differences [ 19/s/i/m/underscore 25/e 33/t 37/r 43/b + 46/k +] +>> +endobj +125 0 obj +<< +/Type /Page +/Parent 132 0 R +/Resources 127 0 R +/Contents 126 0 R +>> +endobj +74 0 obj +<< +/Type /Page +/Parent 132 0 R +/Resources 134 0 R +/Contents 133 0 R +/Annots [73 0 R 75 0 R 76 0 R 77 0 R 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R +90 0 R 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R 102 0 R 103 0 R 104 0 R 105 0 R +106 0 R 107 0 R 108 0 R 109 0 R 110 0 R 111 0 R 112 0 R 113 0 R 114 0 R 115 0 R 116 0 R 117 0 R] +>> +endobj +119 0 obj +<< +/Type /Page +/Parent 132 0 R +/Resources 139 0 R +/Contents 138 0 R +/Annots [118 0 R 120 0 R 121 0 R 122 0 R 123 0 R] +>> +endobj +1 0 obj +<< +/Type /Page +/Parent 132 0 R +/Resources 143 0 R +/Contents 142 0 R +>> +endobj +4 0 obj +<< +/Type /Page +/Parent 132 0 R +/Resources 149 0 R +/Contents 148 0 R +>> +endobj +6 0 obj +<< +/Type /Page +/Parent 132 0 R +/Resources 154 0 R +/Contents 153 0 R +>> +endobj +10 0 obj +<< +/Type /Page +/Parent 132 0 R +/Resources 162 0 R +/Contents 161 0 R +>> +endobj +13 0 obj +<< +/Type /Page +/Parent 132 0 R +/Resources 167 0 R +/Contents 166 0 R +>> +endobj +16 0 obj +<< +/Type /Page +/Parent 132 0 R +/Resources 172 0 R +/Contents 171 0 R +>> +endobj +18 0 obj +<< +/Type /Page +/Parent 132 0 R +/Resources 177 0 R +/Contents 176 0 R +>> +endobj +20 0 obj +<< +/Type /Page +/Parent 189 0 R +/Resources 183 0 R +/Contents 182 0 R +>> +endobj +22 0 obj +<< +/Type /Page +/Parent 189 0 R +/Resources 191 0 R +/Contents 190 0 R +>> +endobj +195 0 obj +<< +/Type /Page +/Parent 189 0 R +/Resources 197 0 R +/Contents 196 0 R +>> +endobj +25 0 obj +<< +/Type /Page +/Parent 189 0 R +/Resources 201 0 R +/Contents 200 0 R +>> +endobj +28 0 obj +<< +/Type /Page +/Parent 189 0 R +/Resources 207 0 R +/Contents 206 0 R +>> +endobj +31 0 obj +<< +/Type /Page +/Parent 189 0 R +/Resources 212 0 R +/Contents 211 0 R +>> +endobj +37 0 obj +<< +/Type /Page +/Parent 189 0 R +/Resources 218 0 R +/Contents 217 0 R +>> +endobj +40 0 obj +<< +/Type /Page +/Parent 189 0 R +/Resources 225 0 R +/Contents 224 0 R +>> +endobj +42 0 obj +<< +/Type /Page +/Parent 189 0 R +/Resources 230 0 R +/Contents 229 0 R +>> +endobj +237 0 obj +<< +/Type /Page +/Parent 189 0 R +/Resources 239 0 R +/Contents 238 0 R +>> +endobj +46 0 obj +<< +/Type /Page +/Parent 250 0 R +/Resources 244 0 R +/Contents 243 0 R +>> +endobj +251 0 obj +<< +/Type /Page +/Parent 250 0 R +/Resources 253 0 R +/Contents 252 0 R +>> +endobj +49 0 obj +<< +/Type /Page +/Parent 250 0 R +/Resources 257 0 R +/Contents 256 0 R +>> +endobj +53 0 obj +<< +/Type /Page +/Parent 250 0 R +/Resources 265 0 R +/Contents 264 0 R +>> +endobj +58 0 obj +<< +/Type /Page +/Parent 250 0 R +/Resources 272 0 R +/Contents 271 0 R +>> +endobj +62 0 obj +<< +/Type /Page +/Parent 250 0 R +/Resources 280 0 R +/Contents 279 0 R +>> +endobj +65 0 obj +<< +/Type /Page +/Parent 250 0 R +/Resources 286 0 R +/Contents 285 0 R +>> +endobj +292 0 obj +<< +/Type /Page +/Parent 250 0 R +/Resources 294 0 R +/Contents 293 0 R +>> +endobj +297 0 obj +<< +/Type /Page +/Parent 250 0 R +/Resources 299 0 R +/Contents 298 0 R +>> +endobj +302 0 obj +<< +/Type /Page +/Parent 250 0 R +/Resources 304 0 R +/Contents 303 0 R +>> +endobj +309 0 obj +<< +/Type /Page +/Parent 315 0 R +/Resources 311 0 R +/Contents 310 0 R +>> +endobj +69 0 obj +<< +/Type /Page +/Parent 315 0 R +/Resources 317 0 R +/Contents 316 0 R +>> +endobj +325 0 obj +<< +/Type /Page +/Parent 315 0 R +/Resources 327 0 R +/Contents 326 0 R +>> +endobj +71 0 obj +<< +/Type /Page +/Parent 315 0 R +/Resources 332 0 R +/Contents 331 0 R +>> +endobj +338 0 obj +<< +/Type /Page +/Parent 315 0 R +/Resources 340 0 R +/Contents 339 0 R +>> +endobj +132 0 obj +<< +/Type /Pages +/Kids [125 0 R 74 0 R 119 0 R 1 0 R 4 0 R 6 0 R 10 0 R 13 0 R 16 0 R 18 0 R] +/Count 10 +/Parent 188 0 R +>> +endobj +189 0 obj +<< +/Type /Pages +/Kids [20 0 R 22 0 R 195 0 R 25 0 R 28 0 R 31 0 R 37 0 R 40 0 R 42 0 R 237 0 R] +/Count 10 +/Parent 188 0 R +>> +endobj +250 0 obj +<< +/Type /Pages +/Kids [46 0 R 251 0 R 49 0 R 53 0 R 58 0 R 62 0 R 65 0 R 292 0 R 297 0 R 302 0 R] +/Count 10 +/Parent 188 0 R +>> +endobj +315 0 obj +<< +/Type /Pages +/Kids [309 0 R 69 0 R 325 0 R 71 0 R 338 0 R] +/Count 5 +/Parent 188 0 R +>> +endobj +188 0 obj +<< +/Type /Pages +/Kids [132 0 R 189 0 R 250 0 R 315 0 R ] +/Count 35 +/MediaBox [0 0 612 792] +>> +endobj +614 0 obj +<< +/Count 49 +/First 2 0 R +/Last 66 0 R +>> +endobj +2 0 obj +<< +/Title (Overview) +/Dest [1 0 R /FitH 697] +/Parent 614 0 R +/Next 3 0 R +>> +endobj +3 0 obj +<< +/Title (Data Types) +/Dest [1 0 R /FitH 389] +/Parent 614 0 R +/Prev 2 0 R +/Next 5 0 R +>> +endobj +5 0 obj +<< +/Title (VM Organization) +/Dest [4 0 R /FitH 650] +/Parent 614 0 R +/Prev 3 0 R +/Next 26 0 R +/First 7 0 R +/Last 17 0 R +/Count 12 +>> +endobj +7 0 obj +<< +/Title (CPU Organization) +/Dest [6 0 R /FitH 416] +/Parent 5 0 R +/Next 17 0 R +/First 8 0 R +/Last 15 0 R +/Count 6 +>> +endobj +8 0 obj +<< +/Title (Time Base) +/Dest [6 0 R /FitH 246] +/Parent 7 0 R +/Next 9 0 R +>> +endobj +9 0 obj +<< +/Title (Step Function) +/Dest [6 0 R /FitH 124] +/Parent 7 0 R +/Prev 8 0 R +/Next 11 0 R +>> +endobj +11 0 obj +<< +/Title (Memory Organization) +/Dest [10 0 R /FitH 604] +/Parent 7 0 R +/Prev 9 0 R +/Next 12 0 R +>> +endobj +12 0 obj +<< +/Title (Interrupt Organization) +/Dest [10 0 R /FitH 368] +/Parent 7 0 R +/Prev 11 0 R +/Next 14 0 R +>> +endobj +14 0 obj +<< +/Title (I/O Dispatching) +/Dest [13 0 R /FitH 386] +/Parent 7 0 R +/Prev 12 0 R +/Next 15 0 R +>> +endobj +15 0 obj +<< +/Title (Instruction Execution) +/Dest [13 0 R /FitH 124] +/Parent 7 0 R +/Prev 14 0 R +>> +endobj +17 0 obj +<< +/Title (Peripheral Device Organization) +/Dest [16 0 R /FitH 243] +/Parent 5 0 R +/Prev 7 0 R +/First 19 0 R +/Last 24 0 R +/Count 4 +>> +endobj +19 0 obj +<< +/Title (Device Timing) +/Dest [18 0 R /FitH 418] +/Parent 17 0 R +/Next 21 0 R +>> +endobj +21 0 obj +<< +/Title (Clock Calibration) +/Dest [20 0 R /FitH 312] +/Parent 17 0 R +/Prev 19 0 R +/Next 23 0 R +>> +endobj +23 0 obj +<< +/Title (Idling) +/Dest [22 0 R /FitH 616] +/Parent 17 0 R +/Prev 21 0 R +/Next 24 0 R +>> +endobj +24 0 obj +<< +/Title (Data I/O) +/Dest [22 0 R /FitH 320] +/Parent 17 0 R +/Prev 23 0 R +>> +endobj +26 0 obj +<< +/Title (Data Structures) +/Dest [25 0 R /FitH 638] +/Parent 614 0 R +/Prev 5 0 R +/Next 54 0 R +/First 27 0 R +/Last 52 0 R +/Count 19 +>> +endobj +27 0 obj +<< +/Title (sim_device Structure) +/Dest [25 0 R /FitH 538] +/Parent 26 0 R +/Next 41 0 R +/First 29 0 R +/Last 39 0 R +/Count 9 +>> +endobj +29 0 obj +<< +/Title (Awidth and Aincr) +/Dest [28 0 R /FitH 547] +/Parent 27 0 R +/Next 30 0 R +>> +endobj +30 0 obj +<< +/Title (Device Flags) +/Dest [28 0 R /FitH 298] +/Parent 27 0 R +/Prev 29 0 R +/Next 32 0 R +>> +endobj +32 0 obj +<< +/Title (Context) +/Dest [31 0 R /FitH 720] +/Parent 27 0 R +/Prev 30 0 R +/Next 33 0 R +>> +endobj +33 0 obj +<< +/Title (Examine and Deposit Routines) +/Dest [31 0 R /FitH 645] +/Parent 27 0 R +/Prev 32 0 R +/Next 34 0 R +>> +endobj +34 0 obj +<< +/Title (Reset Routine) +/Dest [31 0 R /FitH 455] +/Parent 27 0 R +/Prev 33 0 R +/Next 35 0 R +>> +endobj +35 0 obj +<< +/Title (Boot Routine) +/Dest [31 0 R /FitH 334] +/Parent 27 0 R +/Prev 34 0 R +/Next 36 0 R +>> +endobj +36 0 obj +<< +/Title (Attach and Detach Routines) +/Dest [31 0 R /FitH 202] +/Parent 27 0 R +/Prev 35 0 R +/Next 38 0 R +>> +endobj +38 0 obj +<< +/Title (Memory Size Change Routine) +/Dest [37 0 R /FitH 400] +/Parent 27 0 R +/Prev 36 0 R +/Next 39 0 R +>> +endobj +39 0 obj +<< +/Title (Debug Controls) +/Dest [37 0 R /FitH 244] +/Parent 27 0 R +/Prev 38 0 R +>> +endobj +41 0 obj +<< +/Title (sim_unit Structure) +/Dest [40 0 R /FitH 593] +/Parent 26 0 R +/Prev 27 0 R +/Next 45 0 R +/First 43 0 R +/Last 44 0 R +/Count 2 +>> +endobj +43 0 obj +<< +/Title (Unit Flags) +/Dest [42 0 R /FitH 582] +/Parent 41 0 R +/Next 44 0 R +>> +endobj +44 0 obj +<< +/Title (Service Routine) +/Dest [42 0 R /FitH 289] +/Parent 41 0 R +/Prev 43 0 R +>> +endobj +45 0 obj +<< +/Title (sim_reg Structure) +/Dest [42 0 R /FitH 190] +/Parent 26 0 R +/Prev 41 0 R +/Next 48 0 R +/First 47 0 R +/Last 47 0 R +/Count 1 +>> +endobj +47 0 obj +<< +/Title (Register Flags) +/Dest [46 0 R /FitH 639] +/Parent 45 0 R +>> +endobj +48 0 obj +<< +/Title (sim_mtab Structure) +/Dest [46 0 R /FitH 427] +/Parent 26 0 R +/Prev 45 0 R +/Next 52 0 R +/First 50 0 R +/Last 51 0 R +/Count 2 +>> +endobj +50 0 obj +<< +/Title (Validation Routine) +/Dest [49 0 R /FitH 571] +/Parent 48 0 R +/Next 51 0 R +>> +endobj +51 0 obj +<< +/Title (Display Routine) +/Dest [49 0 R /FitH 439] +/Parent 48 0 R +/Prev 50 0 R +>> +endobj +52 0 obj +<< +/Title (Other Data Structures) +/Dest [49 0 R /FitH 238] +/Parent 26 0 R +/Prev 48 0 R +>> +endobj +54 0 obj +<< +/Title (VM Provided Routines) +/Dest [53 0 R /FitH 662] +/Parent 614 0 R +/Prev 26 0 R +/Next 66 0 R +/First 55 0 R +/Last 59 0 R +/Count 8 +>> +endobj +55 0 obj +<< +/Title (Instruction Execution) +/Dest [53 0 R /FitH 631] +/Parent 54 0 R +/Next 56 0 R +>> +endobj +56 0 obj +<< +/Title (Binary Load and Dump) +/Dest [53 0 R /FitH 556] +/Parent 54 0 R +/Prev 55 0 R +/Next 57 0 R +>> +endobj +57 0 obj +<< +/Title (Symbolic Examination and Deposit) +/Dest [53 0 R /FitH 412] +/Parent 54 0 R +/Prev 56 0 R +/Next 59 0 R +>> +endobj +59 0 obj +<< +/Title (Optional Interfaces) +/Dest [58 0 R /FitH 440] +/Parent 54 0 R +/Prev 57 0 R +/First 60 0 R +/Last 64 0 R +/Count 4 +>> +endobj +60 0 obj +<< +/Title (Once Only Initialization Routine) +/Dest [58 0 R /FitH 354] +/Parent 59 0 R +/Next 61 0 R +>> +endobj +61 0 obj +<< +/Title (Address Input and Display) +/Dest [58 0 R /FitH 199] +/Parent 59 0 R +/Prev 60 0 R +/Next 63 0 R +>> +endobj +63 0 obj +<< +/Title (Command Input and Post-Processing) +/Dest [62 0 R /FitH 616] +/Parent 59 0 R +/Prev 61 0 R +/Next 64 0 R +>> +endobj +64 0 obj +<< +/Title (VM-Specific Commands) +/Dest [62 0 R /FitH 380] +/Parent 59 0 R +/Prev 63 0 R +>> +endobj +66 0 obj +<< +/Title (Other SCP Facilities) +/Dest [65 0 R /FitH 720] +/Parent 614 0 R +/Prev 54 0 R +/First 67 0 R +/Last 72 0 R +/Count 4 +>> +endobj +67 0 obj +<< +/Title (Terminal Input/Output Formatting Library) +/Dest [65 0 R /FitH 689] +/Parent 66 0 R +/Next 68 0 R +>> +endobj +68 0 obj +<< +/Title (Terminal Multiplexor Emulation Library) +/Dest [65 0 R /FitH 189] +/Parent 66 0 R +/Prev 67 0 R +/Next 70 0 R +>> +endobj +70 0 obj +<< +/Title (Magnetic Tape Emulation Library) +/Dest [69 0 R /FitH 307] +/Parent 66 0 R +/Prev 68 0 R +/Next 72 0 R +>> +endobj +72 0 obj +<< +/Title (Breakpoint Support) +/Dest [71 0 R /FitH 410] +/Parent 66 0 R +/Prev 70 0 R +>> +endobj +615 0 obj +<< +/Type /Catalog +/Pages 188 0 R +/Outlines 614 0 R +/OpenAction [125 0 R /XYZ null 796 1] +/PageMode /UseOutlines +>> +endobj +xref +0 616 +0000000000 65535 f +0000493885 00000 n +0000497680 00000 n +0000497779 00000 n +0000493979 00000 n +0000497893 00000 n +0000494073 00000 n +0000498052 00000 n +0000498196 00000 n +0000498294 00000 n +0000494167 00000 n +0000498410 00000 n +0000498534 00000 n +0000494262 00000 n +0000498662 00000 n +0000498783 00000 n +0000494357 00000 n +0000498896 00000 n +0000494452 00000 n +0000499056 00000 n +0000494547 00000 n +0000499162 00000 n +0000494642 00000 n +0000499286 00000 n +0000499399 00000 n +0000494833 00000 n +0000499500 00000 n +0000499662 00000 n +0000494928 00000 n +0000499814 00000 n +0000499923 00000 n +0000495023 00000 n +0000500042 00000 n +0000500156 00000 n +0000500291 00000 n +0000500411 00000 n +0000500530 00000 n +0000495118 00000 n +0000500663 00000 n +0000500796 00000 n +0000495213 00000 n +0000500903 00000 n +0000495308 00000 n +0000501067 00000 n +0000501170 00000 n +0000501278 00000 n +0000495499 00000 n +0000501441 00000 n +0000501534 00000 n +0000495690 00000 n +0000501698 00000 n +0000501809 00000 n +0000501917 00000 n +0000495785 00000 n +0000502031 00000 n +0000502198 00000 n +0000502312 00000 n +0000502439 00000 n +0000495880 00000 n +0000502578 00000 n +0000502729 00000 n +0000502854 00000 n +0000495975 00000 n +0000502986 00000 n +0000503126 00000 n +0000496070 00000 n +0000503239 00000 n +0000503392 00000 n +0000503525 00000 n +0000496549 00000 n +0000503670 00000 n +0000496740 00000 n +0000503808 00000 n +0000000017 00000 n +0000493304 00000 n +0000000177 00000 n +0000000337 00000 n +0000000497 00000 n +0000000658 00000 n +0000000819 00000 n +0000000980 00000 n +0000001142 00000 n +0000001304 00000 n +0000001466 00000 n +0000001628 00000 n +0000001790 00000 n +0000001952 00000 n +0000002114 00000 n +0000002276 00000 n +0000002438 00000 n +0000002599 00000 n +0000002761 00000 n +0000002923 00000 n +0000003085 00000 n +0000003247 00000 n +0000003409 00000 n +0000003571 00000 n +0000003733 00000 n +0000003895 00000 n +0000004057 00000 n +0000004219 00000 n +0000004382 00000 n +0000004545 00000 n +0000004708 00000 n +0000004871 00000 n +0000005034 00000 n +0000005197 00000 n +0000005360 00000 n +0000005523 00000 n +0000005686 00000 n +0000005848 00000 n +0000006011 00000 n +0000006174 00000 n +0000006337 00000 n +0000006500 00000 n +0000006663 00000 n +0000006826 00000 n +0000006988 00000 n +0000007149 00000 n +0000493738 00000 n +0000007311 00000 n +0000007474 00000 n +0000007637 00000 n +0000007800 00000 n +0000007963 00000 n +0000493208 00000 n +0000008288 00000 n +0000010524 00000 n +0000183686 00000 n +0000184014 00000 n +0000184242 00000 n +0000127373 00000 n +0000496931 00000 n +0000010661 00000 n +0000013057 00000 n +0000184681 00000 n +0000184993 00000 n +0000185350 00000 n +0000013196 00000 n +0000013858 00000 n +0000185779 00000 n +0000186076 00000 n +0000013984 00000 n +0000017605 00000 n +0000186435 00000 n +0000186686 00000 n +0000187162 00000 n +0000187421 00000 n +0000017759 00000 n +0000020742 00000 n +0000187648 00000 n +0000187975 00000 n +0000188435 00000 n +0000020882 00000 n +0000023716 00000 n +0000188692 00000 n +0000189155 00000 n +0000189372 00000 n +0000189556 00000 n +0000189851 00000 n +0000190114 00000 n +0000023898 00000 n +0000027480 00000 n +0000190364 00000 n +0000190866 00000 n +0000191108 00000 n +0000027634 00000 n +0000030946 00000 n +0000191389 00000 n +0000191875 00000 n +0000192180 00000 n +0000031100 00000 n +0000034525 00000 n +0000192416 00000 n +0000192905 00000 n +0000193196 00000 n +0000034679 00000 n +0000038460 00000 n +0000193495 00000 n +0000193945 00000 n +0000194184 00000 n +0000194440 00000 n +0000038628 00000 n +0000042395 00000 n +0000194725 00000 n +0000195223 00000 n +0000195493 00000 n +0000195788 00000 n +0000497495 00000 n +0000497078 00000 n +0000042563 00000 n +0000045890 00000 n +0000196027 00000 n +0000196506 00000 n +0000196805 00000 n +0000494737 00000 n +0000046058 00000 n +0000050197 00000 n +0000197097 00000 n +0000197599 00000 n +0000050337 00000 n +0000053378 00000 n +0000197899 00000 n +0000198389 00000 n +0000198728 00000 n +0000198989 00000 n +0000053546 00000 n +0000056815 00000 n +0000199288 00000 n +0000199594 00000 n +0000200088 00000 n +0000056969 00000 n +0000060235 00000 n +0000200401 00000 n +0000200732 00000 n +0000201218 00000 n +0000201470 00000 n +0000060389 00000 n +0000064073 00000 n +0000201749 00000 n +0000202246 00000 n +0000202519 00000 n +0000202822 00000 n +0000203159 00000 n +0000064241 00000 n +0000066586 00000 n +0000203490 00000 n +0000203961 00000 n +0000204312 00000 n +0000066726 00000 n +0000069442 00000 n +0000204607 00000 n +0000205115 00000 n +0000205430 00000 n +0000205775 00000 n +0000206098 00000 n +0000206343 00000 n +0000495403 00000 n +0000069624 00000 n +0000072403 00000 n +0000206638 00000 n +0000207129 00000 n +0000207490 00000 n +0000072543 00000 n +0000075702 00000 n +0000207857 00000 n +0000208369 00000 n +0000208698 00000 n +0000209069 00000 n +0000209372 00000 n +0000497228 00000 n +0000495594 00000 n +0000075870 00000 n +0000079035 00000 n +0000209669 00000 n +0000210181 00000 n +0000079161 00000 n +0000082819 00000 n +0000210453 00000 n +0000210764 00000 n +0000211244 00000 n +0000211665 00000 n +0000211988 00000 n +0000212247 00000 n +0000083001 00000 n +0000086833 00000 n +0000212528 00000 n +0000213043 00000 n +0000213309 00000 n +0000213588 00000 n +0000213925 00000 n +0000087002 00000 n +0000090729 00000 n +0000214199 00000 n +0000214707 00000 n +0000215002 00000 n +0000215318 00000 n +0000215642 00000 n +0000215998 00000 n +0000090917 00000 n +0000094216 00000 n +0000216218 00000 n +0000216692 00000 n +0000217008 00000 n +0000217272 00000 n +0000094374 00000 n +0000098058 00000 n +0000217618 00000 n +0000217910 00000 n +0000218252 00000 n +0000218722 00000 n +0000218993 00000 n +0000496165 00000 n +0000098231 00000 n +0000100885 00000 n +0000219235 00000 n +0000219724 00000 n +0000496261 00000 n +0000101013 00000 n +0000105426 00000 n +0000220050 00000 n +0000220551 00000 n +0000496357 00000 n +0000105554 00000 n +0000109938 00000 n +0000220917 00000 n +0000221381 00000 n +0000221660 00000 n +0000221898 00000 n +0000496453 00000 n +0000110096 00000 n +0000114356 00000 n +0000222270 00000 n +0000222742 00000 n +0000223043 00000 n +0000497380 00000 n +0000114499 00000 n +0000119141 00000 n +0000223289 00000 n +0000223758 00000 n +0000224062 00000 n +0000224306 00000 n +0000224704 00000 n +0000224921 00000 n +0000225106 00000 n +0000496644 00000 n +0000119344 00000 n +0000122519 00000 n +0000225430 00000 n +0000225899 00000 n +0000226200 00000 n +0000122662 00000 n +0000125904 00000 n +0000226468 00000 n +0000226803 00000 n +0000227300 00000 n +0000227734 00000 n +0000228052 00000 n +0000496835 00000 n +0000126077 00000 n +0000127081 00000 n +0000228282 00000 n +0000228704 00000 n +0000229162 00000 n +0000229384 00000 n +0000127239 00000 n +0000127454 00000 n +0000127776 00000 n +0000131570 00000 n +0000131999 00000 n +0000137456 00000 n +0000138145 00000 n +0000146500 00000 n +0000146877 00000 n +0000152036 00000 n +0000152423 00000 n +0000157549 00000 n +0000157867 00000 n +0000161797 00000 n +0000162095 00000 n +0000165093 00000 n +0000165309 00000 n +0000165569 00000 n +0000165953 00000 n +0000171455 00000 n +0000172051 00000 n +0000181753 00000 n +0000181990 00000 n +0000183281 00000 n +0000183492 00000 n +0000229758 00000 n +0000231748 00000 n +0000231982 00000 n +0000233922 00000 n +0000236009 00000 n +0000238055 00000 n +0000240038 00000 n +0000242198 00000 n +0000244189 00000 n +0000246437 00000 n +0000248451 00000 n +0000250595 00000 n +0000252908 00000 n +0000254933 00000 n +0000256931 00000 n +0000259188 00000 n +0000261073 00000 n +0000261154 00000 n +0000261311 00000 n +0000263404 00000 n +0000265580 00000 n +0000267823 00000 n +0000269741 00000 n +0000269849 00000 n +0000272007 00000 n +0000274018 00000 n +0000276066 00000 n +0000276343 00000 n +0000278276 00000 n +0000280451 00000 n +0000282737 00000 n +0000284630 00000 n +0000286854 00000 n +0000289048 00000 n +0000291343 00000 n +0000293376 00000 n +0000295536 00000 n +0000303980 00000 n +0000297799 00000 n +0000299697 00000 n +0000301895 00000 n +0000306180 00000 n +0000308143 00000 n +0000310210 00000 n +0000314453 00000 n +0000312339 00000 n +0000316571 00000 n +0000318917 00000 n +0000320969 00000 n +0000322940 00000 n +0000325088 00000 n +0000327291 00000 n +0000329429 00000 n +0000331550 00000 n +0000333806 00000 n +0000335709 00000 n +0000337884 00000 n +0000340087 00000 n +0000342206 00000 n +0000344321 00000 n +0000346335 00000 n +0000348435 00000 n +0000350719 00000 n +0000352612 00000 n +0000354767 00000 n +0000356914 00000 n +0000358972 00000 n +0000359171 00000 n +0000361375 00000 n +0000363387 00000 n +0000365507 00000 n +0000367745 00000 n +0000373901 00000 n +0000369730 00000 n +0000371799 00000 n +0000376011 00000 n +0000378196 00000 n +0000380188 00000 n +0000390835 00000 n +0000382498 00000 n +0000384578 00000 n +0000386567 00000 n +0000388748 00000 n +0000392982 00000 n +0000395311 00000 n +0000397182 00000 n +0000399346 00000 n +0000401514 00000 n +0000403613 00000 n +0000405783 00000 n +0000407798 00000 n +0000409877 00000 n +0000412050 00000 n +0000414254 00000 n +0000416440 00000 n +0000418838 00000 n +0000425058 00000 n +0000420835 00000 n +0000423022 00000 n +0000427109 00000 n +0000429275 00000 n +0000431454 00000 n +0000435640 00000 n +0000433522 00000 n +0000437870 00000 n +0000439867 00000 n +0000442123 00000 n +0000444052 00000 n +0000446274 00000 n +0000448260 00000 n +0000450317 00000 n +0000452429 00000 n +0000452727 00000 n +0000456744 00000 n +0000454654 00000 n +0000458947 00000 n +0000463079 00000 n +0000460971 00000 n +0000465251 00000 n +0000467348 00000 n +0000469472 00000 n +0000469631 00000 n +0000471791 00000 n +0000475899 00000 n +0000473823 00000 n +0000478158 00000 n +0000480211 00000 n +0000482299 00000 n +0000484399 00000 n +0000486568 00000 n +0000488927 00000 n +0000491121 00000 n +0000486491 00000 n +0000493098 00000 n +0000229643 00000 n +0000231843 00000 n +0000233846 00000 n +0000235927 00000 n +0000237966 00000 n +0000239959 00000 n +0000242115 00000 n +0000246274 00000 n +0000248348 00000 n +0000250515 00000 n +0000252721 00000 n +0000252797 00000 n +0000256850 00000 n +0000259034 00000 n +0000261226 00000 n +0000265475 00000 n +0000267679 00000 n +0000271915 00000 n +0000273928 00000 n +0000276161 00000 n +0000276252 00000 n +0000280363 00000 n +0000282514 00000 n +0000282653 00000 n +0000286754 00000 n +0000288959 00000 n +0000291155 00000 n +0000293263 00000 n +0000295451 00000 n +0000297635 00000 n +0000297712 00000 n +0000301797 00000 n +0000306109 00000 n +0000308058 00000 n +0000312142 00000 n +0000312259 00000 n +0000316488 00000 n +0000318672 00000 n +0000318757 00000 n +0000322856 00000 n +0000324998 00000 n +0000327121 00000 n +0000329209 00000 n +0000329320 00000 n +0000333599 00000 n +0000333693 00000 n +0000337778 00000 n +0000339929 00000 n +0000342113 00000 n +0000344239 00000 n +0000346259 00000 n +0000348352 00000 n +0000350542 00000 n +0000350637 00000 n +0000354643 00000 n +0000356823 00000 n +0000359083 00000 n +0000361280 00000 n +0000363310 00000 n +0000365369 00000 n +0000367544 00000 n +0000367661 00000 n +0000369624 00000 n +0000375932 00000 n +0000378116 00000 n +0000380096 00000 n +0000382266 00000 n +0000382361 00000 n +0000384405 00000 n +0000388637 00000 n +0000392895 00000 n +0000395081 00000 n +0000395183 00000 n +0000399266 00000 n +0000401430 00000 n +0000403534 00000 n +0000405667 00000 n +0000407720 00000 n +0000411958 00000 n +0000414087 00000 n +0000416359 00000 n +0000418578 00000 n +0000418725 00000 n +0000420759 00000 n +0000422928 00000 n +0000429192 00000 n +0000431300 00000 n +0000433353 00000 n +0000433454 00000 n +0000437727 00000 n +0000439784 00000 n +0000441915 00000 n +0000442040 00000 n +0000446070 00000 n +0000446168 00000 n +0000448188 00000 n +0000452613 00000 n +0000458805 00000 n +0000460862 00000 n +0000465148 00000 n +0000467271 00000 n +0000469543 00000 n +0000471682 00000 n +0000473737 00000 n +0000477966 00000 n +0000478078 00000 n +0000482116 00000 n +0000484313 00000 n +0000488706 00000 n +0000490976 00000 n +0000497614 00000 n +0000503919 00000 n +trailer +<< +/Size 616 +/Root 615 0 R +/Info 124 0 R +/ID [<303dd5fe35887e612b216d96ac4f258d><303dd5fe35887e612b216d96ac4f258d>] +>> +startxref +504060 +%%EOF diff --git a/makefile b/makefile index 639691e2..7feb5cdf 100644 --- a/makefile +++ b/makefile @@ -373,7 +373,7 @@ LDFLAGS = $(OS_LDFLAGS) $(NETWORK_LDFLAGS) $(LDFLAGS_O) # BIN = BIN/ SIM = scp.c sim_console.c sim_fio.c sim_timer.c sim_sock.c \ - sim_tmxr.c sim_ether.c sim_tape.c sim_disk.c + sim_tmxr.c sim_ether.c sim_tape.c sim_disk.c sim_serial.c # diff --git a/scp.c b/scp.c index 5c80a8f6..d4ab078f 100644 --- a/scp.c +++ b/scp.c @@ -57,6 +57,7 @@ 08-Feb-09 RMS Fixed warnings in help printouts 29-Dec-08 RMS Fixed implementation of MTAB_NC 24-Nov-08 RMS Revised RESTORE unit logic for consistency + 21-Oct-08 JDB [serial] Added sim_unit_ref global to indicate type of reference 05-Sep-08 JDB "detach_all" ignores error status returns if shutting down 17-Aug-08 RMS Revert RUN/BOOT to standard, rather than powerup, reset 25-Jul-08 JDB DO cmd missing params now default to null string @@ -414,6 +415,7 @@ t_stat do_cmd_label (int32 flag, char *cptr, char *label); /* Global data */ +UNITREF sim_unit_ref; DEVICE *sim_dflt_dev = NULL; UNIT *sim_clock_queue = NULL; int32 sim_interval = 0; @@ -2817,6 +2819,7 @@ DEVICE *dptr; UNIT *uptr; t_stat r; +sim_unit_ref = ref_unit_all; /* we will reference all units */ if ((start < 0) || (start > 1)) return SCPE_IERR; for (i = start; (dptr = sim_devices[i]) != NULL; i++) { /* loop thru dev */ @@ -3134,6 +3137,8 @@ t_bool force_restore = sim_switches & SWMASK ('F'); #define READ_I(xx) if (sim_fread (&xx, sizeof (xx), 1, rfile) == 0) \ return SCPE_IOERR; +sim_unit_ref = ref_unit_all; /* we will reference all units */ + fstat (fileno (rfile), &rstat); READ_S (buf); /* [V2.5+] read version */ v35 = v32 = FALSE; @@ -4579,6 +4584,9 @@ return NULL; Outputs: result = pointer to device (null if no dev) *iptr = pointer to unit (null if nx unit) + + The "sim_unit_ref" global is set to the type of reference specified by cptr + (device or unit). */ DEVICE *find_unit (char *cptr, UNIT **uptr) @@ -4588,11 +4596,13 @@ char *nptr, *tptr; t_stat r; DEVICE *dptr; +sim_unit_ref = ref_unit; /* assume unit reference */ if (uptr == NULL) /* arg error? */ return NULL; if (dptr = find_dev (cptr)) { /* exact match? */ if (qdisable (dptr)) /* disabled? */ return NULL; + sim_unit_ref = ref_dev; /* flag device reference */ *uptr = dptr->units; /* unit 0 */ return dptr; } diff --git a/scp.h b/scp.h index 3ee43b97..98f6bc8b 100644 --- a/scp.h +++ b/scp.h @@ -1,6 +1,6 @@ /* scp.h: simulator control program headers - Copyright (c) 1993-2008, Robert M Supnik + Copyright (c) 1993-2009, Robert M Supnik Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -24,6 +24,7 @@ in this Software without prior written authorization from Robert M Supnik. 05-Dec-10 MP Added macro invocation of sim_debug + 07-Jan-09 JDB Added UNITREF typedef 09-Aug-06 JDB Added assign_device and deassign_device 14-Jul-06 RMS Added sim_activate_abs 06-Jan-06 RMS Added fprint_stopped_gen @@ -52,6 +53,10 @@ #define CMD_OPT_SCH 004 /* search */ #define CMD_OPT_DFT 010 /* defaults */ +/* unit references */ + +typedef enum { ref_dev, ref_unit, ref_unit_all } UNITREF; + /* Command processors */ t_stat reset_cmd (int32 flag, char *ptr); diff --git a/sim_serial.c b/sim_serial.c new file mode 100644 index 00000000..a75127b8 --- /dev/null +++ b/sim_serial.c @@ -0,0 +1,814 @@ +/* sim_serial.c: OS-dependent serial port routines + + Copyright (c) 2008, J. David Bryan + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of the author shall not be + used in advertising or otherwise to promote the sale, use or other dealings + in this Software without prior written authorization from the author. + + The author gratefully acknowledges the assistance of Holger Veit with the + UNIX-specific code and testing. + + 07-Oct-08 JDB [serial] Created file + + + This module provides OS-dependent routines to access serial ports on the host + machine. The terminal multiplexer library uses these routines to provide + serial connections to simulated terminal interfaces. + + Currently, the module supports Windows and UNIX. Use on other systems + returns error codes indicating that the functions failed, inhibiting serial + port support in SIMH. + + The following routines are provided: + + sim_open_serial open a serial port + sim_config_serial change baud rate and character framing configuration + sim_control_serial connect or disconnect a serial port (controls DTR) + sim_read_serial read from a serial port + sim_write_serial write to a serial port + sim_close_serial close a serial port + + + The calling sequences are as follows: + + + SERHANDLE sim_open_serial (char *name) + -------------------------------------- + + The serial port referenced by the OS-dependent "name" is opened. If the open + is successful, and "name" refers to a serial port on the host system, then a + handle to the port is returned. If not, then the value INVALID_HANDLE is + returned. + + + t_stat sim_config_serial (SERHANDLE port, SERCONFIG config) + ----------------------------------------------------------- + + The baud rate and framing parameters (character size, parity, and number of + stop bits) of the serial port associated with "port" are set. If any + "config" field value is unsupported by the host system, or if the combination + of values (e.g., baud rate and number of stop bits) is unsupported, SCPE_ARG + is returned. If the configuration is successful, SCPE_OK is returned. + + + t_bool sim_control_serial (SERHANDLE port, t_bool connect) + ---------------------------------------------------------- + + If "connect" is TRUE, the DTR (modem control) line of the serial port + associated with "port" is asserted. If "connect" is false, the line is + denied. If the DTR change is successful, the function returns TRUE. FALSE + is returned if an error occurs. + + + int32 sim_read_serial (SERHANDLE port, char *buffer, int32 count, char *brk) + ---------------------------------------------------------------------------- + + A non-blocking read is issued for the serial port indicated by "port" to get + at most "count" bytes into the string "buffer". If a serial line break was + detected during the read, the variable pointed to by "brk" is set to 1. If + the read is successful, the actual number of characters read is returned. If + no characters were available, then the value 0 is returned. If an error + occurs, then the value -1 is returned. + + + int32 sim_write_serial (SERHANDLE port, char *buffer, int32 count) + ------------------------------------------------------------------ + + A write is issued to the serial port indicated by "port" to put "count" + characters from "buffer". If the write is successful, the actual number of + characters written is returned. If an error occurs, then the value -1 is + returned. + + + void sim_close_serial (SERHANDLE port) + -------------------------------------- + + The serial port indicated by "port" is closed. +*/ + + +#include "sim_defs.h" +#include "sim_serial.h" + + + +/* Generic error message handler. + + This routine should be called for unexpected errors. Some error returns may + be expected, e.g., a "file not found" error from an "open" routine. These + should return appropriate status codes to the caller, allowing SCP to print + an error message if desired, rather than printing this generic error message. +*/ + +static void sim_error_serial (char *routine, int error) +{ +fprintf (stderr, "Serial: %s fails with error %d\n", routine, error); +return; +} + + + +/* Windows serial implementation */ + + +#if defined (_WIN32) + + +/* Open a serial port. + + The serial port designated by "name" is opened, and the handle to the port is + returned. If an error occurs, INVALID_HANDLE is returned instead. After + opening, the port is configured with the default communication parameters + established by the system, and the timeouts are set for immediate return on a + read request to enable polling. + + Implementation notes: + + 1. We call "GetDefaultCommConfig" to obtain the default communication + parameters for the specified port. If the name does not refer to a + communications port (serial or parallel), the function fails. + + 2. There is no way to limit "CreateFile" just to serial ports, so we must + check after the port is opened. The "GetCommState" routine will return + an error if the handle does not refer to a serial port. + + 3. Calling "GetDefaultCommConfig" for a serial port returns a structure + containing a DCB. This contains the default parameters. However, some + of the DCB fields are not set correctly, so we cannot use this directly + in a call to "SetCommState". Instead, we must copy the fields of + interest to a DCB retrieved from a call to "GetCommState". +*/ + +SERHANDLE sim_open_serial (char *name) +{ +SERHANDLE port; +DCB dcb; +COMMCONFIG commdefault; +DWORD error; +DWORD commsize = sizeof (commdefault); +COMMTIMEOUTS cto; + +if (!GetDefaultCommConfig (name, &commdefault, &commsize)) { /* get default comm parameters */ + error = GetLastError (); /* function failed; get error */ + + if (error != ERROR_INVALID_PARAMETER) /* not a communications port name? */ + sim_error_serial ("GetDefaultCommConfig", (int) error); /* no, so report unexpected error */ + + return INVALID_HANDLE; /* indicate bad port name */ + } + +port = CreateFile (name, GENERIC_READ | GENERIC_WRITE, /* open the port */ + 0, NULL, OPEN_EXISTING, 0, 0); + +if (port == INVALID_HANDLE_VALUE) { /* open failed? */ + error = GetLastError (); /* get error code */ + + if ((error != ERROR_FILE_NOT_FOUND) && /* bad filename? */ + (error != ERROR_ACCESS_DENIED)) /* already open? */ + sim_error_serial ("CreateFile", (int) error); /* no, so report unexpected error */ + + return INVALID_HANDLE; /* indicate bad port name */ + } + +if (!GetCommState (port, &dcb)) { /* get the current comm parameters */ + error = GetLastError (); /* function failed; get error */ + + if (error != ERROR_INVALID_PARAMETER) /* not a serial port name? */ + sim_error_serial ("GetCommState", (int) error); /* no, so report unexpected error */ + + CloseHandle (port); /* close the port */ + return INVALID_HANDLE; /* and indicate bad port name */ + } + +dcb.BaudRate = commdefault.dcb.BaudRate; /* copy default parameters of interest */ +dcb.Parity = commdefault.dcb.Parity; +dcb.ByteSize = commdefault.dcb.ByteSize; +dcb.StopBits = commdefault.dcb.StopBits; +dcb.fOutX = commdefault.dcb.fOutX; +dcb.fInX = commdefault.dcb.fInX; + +dcb.fDtrControl = DTR_CONTROL_DISABLE; /* disable DTR initially until poll connects */ + +if (!SetCommState (port, &dcb)) { /* configure the port with default parameters */ + sim_error_serial ("SetCommState", /* function failed; report unexpected error */ + (int) GetLastError ()); + CloseHandle (port); /* close port */ + return INVALID_HANDLE; /* and indicate failure to caller */ + } + +cto.ReadIntervalTimeout = MAXDWORD; /* set port to return immediately on read */ +cto.ReadTotalTimeoutMultiplier = 0; /* i.e., to enable polling */ +cto.ReadTotalTimeoutConstant = 0; +cto.WriteTotalTimeoutMultiplier = 0; +cto.WriteTotalTimeoutConstant = 0; + +if (!SetCommTimeouts (port, &cto)) { /* configure port timeouts */ + sim_error_serial ("SetCommTimeouts", /* function failed; report unexpected error */ + (int) GetLastError ()); + CloseHandle (port); /* close port */ + return INVALID_HANDLE; /* and indicate failure to caller */ + } + +return port; /* return port handle on success */ +} + + +/* Configure a serial port. + + Port parameters are configured as specified in the "config" structure. If + "config" contains an invalid configuration value, or if the host system + rejects the configuration (e.g., by requesting an unsupported combination of + character size and stop bits), SCPE_ARG is returned to the caller. If an + unexpected error occurs, SCPE_IOERR is returned. If the configuration + succeeds, SCPE_OK is returned. + + Implementation notes: + + 1. We do not enable input parity checking, as the multiplexer library has no + way of communicating parity errors back to the target simulator. + + 2. A zero value for the "stopbits" field of the "config" structure implies + 1.5 stop bits. +*/ + +t_stat sim_config_serial (SERHANDLE port, SERCONFIG config) +{ +static const struct { + char parity; + BYTE parity_code; + } parity_map [] = + { { 'E', EVENPARITY }, { 'M', MARKPARITY }, { 'N', NOPARITY }, + { 'O', ODDPARITY }, { 'S', SPACEPARITY } }; + +static const int32 parity_count = sizeof (parity_map) / sizeof (parity_map [0]); + +DCB dcb; +DWORD error; +int32 i; + +if (!GetCommState (port, &dcb)) { /* get the current comm parameters */ + sim_error_serial ("GetCommState", /* function failed; report unexpected error */ + (int) GetLastError ()); + return SCPE_IOERR; /* return failure status */ + } + +dcb.BaudRate = config.baudrate; /* assign baud rate */ + +if (config.charsize >= 5 && config.charsize <= 8) /* character size OK? */ + dcb.ByteSize = config.charsize; /* assign character size */ +else + return SCPE_ARG; /* not a valid size */ + +for (i = 0; i < parity_count; i++) /* assign parity */ + if (config.parity == parity_map [i].parity) { /* match mapping value? */ + dcb.Parity = parity_map [i].parity_code; /* assign corresponding code */ + break; + } + +if (i == parity_count) /* parity assigned? */ + return SCPE_ARG; /* not a valid parity specifier */ + +if (config.stopbits == 1) /* assign stop bits */ + dcb.StopBits = ONESTOPBIT; +else if (config.stopbits == 2) + dcb.StopBits = TWOSTOPBITS; +else if (config.stopbits == 0) /* 0 implies 1.5 stop bits */ + dcb.StopBits = ONE5STOPBITS; +else + return SCPE_ARG; /* not a valid number of stop bits */ + +if (!SetCommState (port, &dcb)) { /* set the configuration */ + error = GetLastError (); /* check for error */ + + if (error == ERROR_INVALID_PARAMETER) /* invalid configuration? */ + return SCPE_ARG; /* report as argument error */ + + sim_error_serial ("SetCommState", (int) error); /* function failed; report unexpected error */ + return SCPE_IOERR; /* return failure status */ + } + +return SCPE_OK; /* return success status */ +} + + +/* Control a serial port. + + The DTR line of the serial port is set or cleared. If "connect" is true, + then the line is set to enable the serial device. If "connect" is false, the + line is disabled to disconnect the device. If the line change was + successful, the function returns TRUE. +*/ + +t_bool sim_control_serial (SERHANDLE port, t_bool connect) +{ +if (!EscapeCommFunction (port, connect ? SETDTR : CLRDTR)) { + sim_error_serial ("EscapeCommFunction", (int) GetLastError ()); + return FALSE; + } + +return TRUE; +} + + +/* Read from a serial port. + + The port is checked for available characters. If any are present, they are + copied to the passed buffer, and the count of characters is returned. If no + characters are available, 0 is returned. If an error occurs, -1 is returned. + If a BREAK is detected on the communications line, the corresponding flag in + the "brk" array is set. + + Implementation notes: + + 1. The "ClearCommError" function will set the CE_BREAK flag in the returned + errors value if a BREAK has occurred. However, we do not know where in + the serial stream it happened, as CE_BREAK isn't associated with a + specific character. Because the "brk" array does want a flag associated + with a specific character, we guess at the proper location by setting + the "brk" entry corresponding to the first NUL in the character stream. + If no NUL is present, then the "brk" entry associated with the first + character is set. +*/ + +int32 sim_read_serial (SERHANDLE port, char *buffer, int32 count, char *brk) +{ +DWORD read; +DWORD commerrors; +COMSTAT cs; +char *bptr; + +if (!ClearCommError (port, &commerrors, &cs)) { /* get the comm error flags */ + sim_error_serial ("ClearCommError", /* function failed; report unexpected error */ + (int) GetLastError ()); + return -1; /* return failure to caller */ + } + +if (!ReadFile (port, (LPVOID) buffer, /* read any available characters */ + (DWORD) count, &read, NULL)) { + sim_error_serial ("ReadFile", /* function failed; report unexpected error */ + (int) GetLastError ()); + return -1; /* return failure to caller */ + } + +if (commerrors & CE_BREAK) { /* was a BREAK detected? */ + bptr = (char *) memchr (buffer, 0, read); /* search for the first NUL in the buffer */ + + if (bptr) /* was one found? */ + brk = brk + (bptr - buffer); /* calculate corresponding position */ + + *brk = 1; /* set the BREAK flag */ + } + +return read; /* return the number of characters read */ +} + + +/* Write to a serial port. + + "Count" characters are written from "buffer" to the serial port. The actual + number of characters written to the port is returned. If an error occurred + on writing, -1 is returned. +*/ + +int32 sim_write_serial (SERHANDLE port, char *buffer, int32 count) +{ +DWORD written; + +if (!WriteFile (port, (LPVOID) buffer, /* write the buffer to the serial port */ + (DWORD) count, &written, NULL)) { + sim_error_serial ("WriteFile", /* function failed; report unexpected error */ + (int) GetLastError ()); + return -1; /* return failure to caller */ + } +else + return written; /* return number of characters written */ +} + + +/* Close a serial port. + + The serial port is closed. Errors are ignored. +*/ + +void sim_close_serial (SERHANDLE port) +{ +CloseHandle (port); /* close the port */ +return; +} + + + +/* UNIX implementation */ + + +#elif defined (__unix__) + + +/* Open a serial port. + + The serial port designated by "name" is opened, and the handle to the port is + returned. If an error occurs, INVALID_HANDLE is returned instead. After + opening, the port is configured to "raw" mode. + + Implementation notes: + + 1. We use a non-blocking open to allow for polling during reads. + + 2. There is no way to limit "open" just to serial ports, so we must check + after the port is opened. We do this with a combination of "isatty" and + "tcgetattr". + + 3. We configure with PARMRK set and IGNBRK and BRKINT cleared. This will + mark a communication line BREAK condition in the input stream with the + three-character sequence \377 \000 \000. This is detected during + reading. +*/ + +SERHANDLE sim_open_serial (char *name) +{ +static const tcflag_t i_clear = IGNBRK | /* ignore BREAK */ + BRKINT | /* signal on BREAK */ + INPCK | /* enable parity checking */ + ISTRIP | /* strip character to 7 bits */ + INLCR | /* map NL to CR */ + IGNCR | /* ignore CR */ + ICRNL | /* map CR to NL */ + IXON | /* enable XON/XOFF output control */ + IXOFF; /* enable XON/XOFF input control */ + +static const tcflag_t i_set = PARMRK | /* mark parity errors and line breaks */ + IGNPAR; /* ignore parity errors */ + +static const tcflag_t o_clear = OPOST; /* post-process output */ + +static const tcflag_t o_set = 0; + +static const tcflag_t c_clear = HUPCL; /* hang up line on last close */ + +static const tcflag_t c_set = CREAD | /* enable receiver */ + CLOCAL; /* ignore modem status lines */ + +static const tcflag_t l_clear = ISIG | /* enable signals */ + ICANON | /* canonical input */ + ECHO | /* echo characters */ + ECHOE | /* echo ERASE as an error correcting backspace */ + ECHOK | /* echo KILL */ + ECHONL | /* echo NL */ + NOFLSH | /* disable flush after interrupt */ + TOSTOP | /* send SIGTTOU for background output */ + IEXTEN; /* enable extended functions */ + +static const tcflag_t l_set = 0; + + +SERHANDLE port; +struct termios tio; + +port = open (name, O_RDWR | O_NOCTTY | O_NONBLOCK); /* open the port */ + +if (port == -1) { /* open failed? */ + if (errno != ENOENT && errno != EACCES) /* file not found or can't open? */ + sim_error_serial ("open", errno); /* no, so report unexpected error */ + + return INVALID_HANDLE; /* indicate failure to caller */ + } + +if (!isatty (port)) { /* is device a TTY? */ + close (port); /* no, so close it */ + return INVALID_HANDLE; /* and return failure to caller */ + } + +if (tcgetattr (port, &tio)) { /* get the terminal attributes */ + sim_error_serial ("tcgetattr", errno); /* function failed; report unexpected error */ + close (port); /* close the port */ + return INVALID_HANDLE; /* and return failure to caller */ + } + +// which of these methods is best? + +#if 1 + +tio.c_iflag = tio.c_iflag & ~i_clear | i_set; /* configure the serial line for raw mode */ +tio.c_oflag = tio.c_oflag & ~o_clear | o_set; +tio.c_cflag = tio.c_cflag & ~c_clear | c_set; +tio.c_lflag = tio.c_lflag & ~l_clear | l_set; + +#elif 0 + +tio.c_iflag &= ~(IGNBRK | BRKINT | INPCK | ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXOFF); +tio.c_iflag |= PARMRK | IGNPAR; +tio.c_oflag &= ~(OPOST); +tio.c_cflag &= ~(HUPCL); +tio.c_cflag |= CREAD | CLOCAL; +tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL | NOFLSH | TOSTOP | IEXTEN); + +#elif 0 + +tio.c_iflag = PARMRK | IGNPAR; +tio.c_oflag = 0; +tio.c_cflag = tio.c_cflag | CLOCAL | CREAD; +tio.c_lflag = 0; + +#endif + +if (tcsetattr (port, TCSANOW, &tio)) { /* set the terminal attributes */ + sim_error_serial ("tcsetattr", errno); /* function failed; report unexpected error */ + close (port); /* close the port */ + return INVALID_HANDLE; /* and return failure to caller */ + } + +return port; /* return port fd for success */ +} + + +/* Configure a serial port. + + Port parameters are configured as specified in the "config" structure. If + "config" contains an invalid configuration value, or if the host system + rejects the configuration (e.g., by requesting an unsupported combination of + character size and stop bits), SCPE_ARG is returned to the caller. If an + unexpected error occurs, SCPE_IOERR is returned. If the configuration + succeeds, SCPE_OK is returned. + + Implementation notes: + + 1. 1.5 stop bits is not a supported configuration. + +*/ + +t_stat sim_config_serial (SERHANDLE port, SERCONFIG config) +{ +struct termios tio; +int32 i; + +static const struct { + uint32 rate; + speed_t rate_code; + } baud_map [] = + { { 50, B50 }, { 75, B75 }, { 110, B110 }, { 134, B134 }, + { 150, B150 }, { 200, B200 }, { 300, B300 }, { 600, B600 }, + { 1200, B1200 }, { 1800, B1800 }, { 2400, B2400 }, { 4800, B4800 }, + { 9600, B9600 }, { 19200, B19200 }, { 38400, B38400 }, { 57600, B57600 }, + { 115200, B115200 } }; + +static const int32 baud_count = sizeof (baud_map) / sizeof (baud_map [0]); + +static const tcflag_t charsize_map [4] = { CS5, CS6, CS7, CS8 }; + + +if (tcgetattr (port, &tio)) { /* get the current configuration */ + sim_error_serial ("tcgetattr", errno); /* function failed; report unexpected error */ + return SCPE_IOERR; /* return failure status */ + } + +for (i = 0; i < baud_count; i++) /* assign baud rate */ + if (config.baudrate == baud_map [i].rate) { /* match mapping value? */ + cfsetispeed(&tio, baud_map [i].rate_code); /* set input rate */ + cfsetospeed(&tio, baud_map [i].rate_code); /* set output rate */ + break; + } + +if (i == baud_count) /* baud rate assigned? */ + return SCPE_ARG; /* invalid rate specified */ + +if (config.charsize >= 5 && config.charsize <= 8) /* character size OK? */ + tio.c_cflag = tio.c_cflag & ~CSIZE | /* replace character size code */ + charsize_map [config.charsize - 5]; +else + return SCPE_ARG; /* not a valid size */ + +switch (config.parity) { /* assign parity */ + case 'E': + tio.c_cflag = tio.c_cflag & ~PARODD | PARENB; /* set for even parity */ + break; + + case 'N': + tio.c_cflag = tio.c_cflag & ~PARENB; /* set for no parity */ + break; + + case 'O': + tio.c_cflag = tio.c_cflag | PARODD | PARENB; /* set for odd parity */ + break; + + default: + return SCPE_ARG; /* not a valid parity specifier */ + } + +if (config.stopbits == 1) /* one stop bit? */ + tio.c_cflag = tio.c_cflag & ~CSTOPB; /* clear two-bits flag */ +else if (config.stopbits == 2) /* two stop bits? */ + tio.c_cflag = tio.c_cflag | CSTOPB; /* set two-bits flag */ +else /* some other number? */ + return SCPE_ARG; /* not a valid number of stop bits */ + +if (tcsetattr (port, TCSAFLUSH, &tio)) { /* set the new configuration */ + sim_error_serial ("tcsetattr", errno); /* function failed; report unexpected error */ + return SCPE_IERR; /* return failure status */ + } + +return SCPE_OK; /* configuration set successfully */ +} + + +/* Control a serial port. + + The DTR line of the serial port is set or cleared. If "connect" is true, + then the line is set to enable the serial device. If "connect" is false, the + line is disabled to disconnect the device. If the line change was + successful, the function returns TRUE. +*/ + +t_bool sim_control_serial (SERHANDLE port, t_bool connect) +{ +int request; +static const int dtr = TIOCM_DTR; + +if (connect) /* request for DTR set? */ + request = TIOCMBIS; /* use "set" control request */ +else /* DTR clear */ + request = TIOCMBIC; /* use "clear" control request */ + +if (ioctl (port, request, &dtr)) { /* set or clear the DTR line */ + if (errno != EINVAL) /* DTR control not supported? */ + sim_error_serial ("ioctl", errno); /* no, so report unexpected error */ + + return FALSE; /* return failure status */ + } + +return TRUE; /* control request succeeded */ +} + + +/* Read from a serial port. + + The port is checked for available characters. If any are present, they are + copied to the passed buffer, and the count of characters is returned. If no + characters are available, 0 is returned. If an error occurs, -1 is returned. + If a BREAK is detected on the communications line, the corresponding flag in + the "brk" array is set. + + Implementation notes: + + 1. A character with a framing or parity error is indicated in the input + stream by the three-character sequence \377 \000 \ccc, where "ccc" is the + bad character. A communications line BREAK is indicated by the sequence + \377 \000 \000. A received \377 character is indicated by the + two-character sequence \377 \377. If we find any of these sequences, + they are replaced by the single intended character by sliding the + succeeding characters backward by one or two positions. If a BREAK + sequence was encountered, the corresponding location in the "brk" array + is determined, and the flag is set. Note that there may be multiple + sequences in the buffer. +*/ + +int32 sim_read_serial (SERHANDLE port, char *buffer, int32 count, char *brk) +{ +int read_count; +char *bptr, *cptr; +int32 remaining; + +read_count = read (port, (void *) buffer, (size_t) count); /* read from the serial port */ + +if (read_count == -1) /* read error? */ + if (errno == EAGAIN) /* no characters available? */ + return 0; /* return 0 to indicate */ + else /* some other problem */ + sim_error_serial ("read", errno); /* report unexpected error */ + +else { /* read succeeded */ + cptr = buffer; /* point at start of buffer */ + remaining = read_count - 1; /* stop search one char from end of string */ + + while (remaining > 0 && /* still characters to search? */ + (bptr = memchr (cptr, '\377', remaining))) { /* search for start of PARMRK sequence */ + remaining = remaining - (bptr - cptr) - 1; /* calc characters remaining */ + + if (*(bptr + 1) == '\377') { /* is it a \377 \377 sequence? */ + memmove (bptr + 1, bptr + 2, remaining); /* slide string backward to leave first \377 */ + remaining = remaining - 1; /* drop remaining count */ + read_count = read_count - 1; /* and read count by char eliminated */ + } + + else if (remaining > 0 && *(bptr + 1) == '\0') { /* is it a \377 \000 \ccc sequence? */ + memmove (bptr, bptr + 2, remaining); /* slide string backward to leave \ccc */ + remaining = remaining - 2; /* drop remaining count */ + read_count = read_count - 2; /* and read count by chars eliminated */ + + if (*bptr == '\0') /* is it a BREAK sequence? */ + *(brk + (bptr - buffer)) = 1; /* set corresponding BREAK flag */ + } + + cptr = bptr + 1; /* point at remainder of string */ + } + } + +return (int32) read_count; /* return the number of characters read */ +} + + +/* Write to a serial port. + + "Count" characters are written from "buffer" to the serial port. The actual + number of characters written to the port is returned. If an error occurred + on writing, -1 is returned. +*/ + +int32 sim_write_serial (SERHANDLE port, char *buffer, int32 count) +{ +int written; + +written = write (port, (void *) buffer, (size_t) count); /* write the buffer to the serial port */ + +if (written == -1) /* write error? */ + sim_error_serial ("write", errno); /* report unexpected error */ + +return (int32) written; /* return number of characters written */ +} + + +/* Close a serial port. + + The serial port is closed. Errors are ignored. +*/ + +void sim_close_serial (SERHANDLE port) +{ +close (port); /* close the port */ +return; +} + + + +/* Non-implemented stubs */ + +#else + + +/* Open a serial port */ + +SERHANDLE sim_open_serial (char *name) +{ +return INVALID_HANDLE; +} + + +/* Configure a serial port */ + +t_stat sim_config_serial (SERHANDLE port, SERCONFIG config) +{ +return SCPE_IERR; +} + + +/* Control a serial port */ + +t_bool sim_control_serial (SERHANDLE port, t_bool connect) +{ +return FALSE; +} + + +/* Read from a serial port */ + +int32 sim_read_serial (SERHANDLE port, char *buffer, int32 count, char *brk) +{ +return -1; +} + + +/* Write to a serial port */ + +int32 sim_write_serial (SERHANDLE port, char *buffer, int32 count) +{ +return -1; +} + + +/* Close a serial port */ + +void sim_close_serial (SERHANDLE port) +{ +return; +} + + + +#endif /* end else !implemented */ diff --git a/sim_serial.h b/sim_serial.h new file mode 100644 index 00000000..64ffdeb1 --- /dev/null +++ b/sim_serial.h @@ -0,0 +1,99 @@ +/* sim_serial.h: OS-dependent serial port routines header file + + Copyright (c) 2008, J. David Bryan + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of the author shall not be + used in advertising or otherwise to promote the sale, use or other dealings + in this Software without prior written authorization from the author. + + 07-Oct-08 JDB [serial] Created file +*/ + + +#ifndef _SIM_SERIAL_H_ +#define _SIM_SERIAL_H_ 0 + + +/* Windows definitions */ + +#if defined (_WIN32) + + +/* We need the basic Win32 definitions, but including "windows.h" also includes + "winsock.h" as well. However, "sim_sock.h" explicitly includes "winsock2.h," + and this file cannot coexist with "winsock.h". So we set a guard definition + that prevents "winsock.h" from being included. +*/ + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif + +#include + +typedef HANDLE SERHANDLE; + +#define INVALID_HANDLE INVALID_HANDLE_VALUE + + +/* UNIX definitions */ + +#elif defined (__unix__) + + +#include +#include +#include +#include + +typedef int SERHANDLE; + +#define INVALID_HANDLE -1 + + +/* Non-implemented definitions */ + +#else + +typedef int SERHANDLE; + +#endif + + +/* Common definitions */ + +typedef struct serial_config { /* serial port configuration */ + uint32 baudrate; /* baud rate */ + uint32 charsize; /* character size in bits */ + char parity; /* parity (N/O/E/M/S) */ + uint32 stopbits; /* 0/1/2 stop bits (0 implies 1.5) */ + } SERCONFIG; + + +/* Global routines */ + +extern SERHANDLE sim_open_serial (char *name); +extern t_stat sim_config_serial (SERHANDLE port, SERCONFIG config); +extern t_bool sim_control_serial (SERHANDLE port, t_bool connect); +extern int32 sim_read_serial (SERHANDLE port, char *buffer, int32 count, char *brk); +extern int32 sim_write_serial (SERHANDLE port, char *buffer, int32 count); +extern void sim_close_serial (SERHANDLE port); + +#endif diff --git a/sim_tmxr.c b/sim_tmxr.c index 4cb866de..3d9c0ddf 100644 --- a/sim_tmxr.c +++ b/sim_tmxr.c @@ -31,6 +31,9 @@ 17-Jan-11 MP Added Buffered line capabilities 16-Jan-11 MP Made option negotiation more reliable 20-Nov-08 RMS Added three new standardized SHOW routines + 05-Nov-08 JDB [bugfix] Moved logging call after connection check in tmxr_putc_ln + 03-Nov-08 JDB [bugfix] Added TMXR null check to tmxr_find_ldsc + 07-Oct-08 JDB [serial] Added serial port support 30-Sep-08 JDB Reverted tmxr_find_ldsc to original implementation 27-May-08 JDB Added line connection order to tmxr_poll_conn, added tmxr_set_lnorder and tmxr_show_lnorder @@ -57,36 +60,235 @@ This library includes: - tmxr_poll_conn - poll for connection - tmxr_reset_ln - reset line - tmxr_getc_ln - get character for line - tmxr_poll_rx - poll receive - tmxr_putc_ln - put character for line - tmxr_poll_tx - poll transmit - tmxr_open_master - open master connection - tmxr_close_master - close master connection - tmxr_attach - attach terminal multiplexor - tmxr_detach - detach terminal multiplexor - tmxr_ex - (null) examine - tmxr_dep - (null) deposit - tmxr_msg - send message to socket - tmxr_linemsg - send message to line - tmxr_fconns - output connection status - tmxr_fstats - output connection statistics - tmxr_dscln - disconnect line (SET routine) - tmxr_rqln - number of available characters for line - tmxr_tqln - number of buffered characters for line - tmxr_set_lnorder - set line connection order - tmxr_show_lnorder - show line connection order + tmxr_poll_conn - poll for connection + tmxr_reset_ln - reset line (drops Telnet connections only) + tmxr_clear_ln - clear line (drops Telnet and serial connections) + tmxr_getc_ln - get character for line + tmxr_poll_rx - poll receive + tmxr_putc_ln - put character for line + tmxr_poll_tx - poll transmit + tmxr_send_buffered_data - transmit buffered data + tmxr_open_master - open master connection + tmxr_close_master - close master connection + tmxr_attach - attach terminal multiplexor to listening port + tmxr_attach_line - attach line to serial port + tmxr_detach - detach terminal multiplexor to listening port + tmxr_detach_line - detach line from serial port + tmxr_line_free - return TRUE if line is disconnected + tmxr_mux_free - return TRUE if mux is disconnected + tmxr_ex - (null) examine + tmxr_dep - (null) deposit + tmxr_msg - send message to socket + tmxr_linemsg - send message to line + tmxr_fconns - output connection status + tmxr_fstats - output connection statistics + tmxr_set_log - enable logging for line + tmxr_set_nolog - disable logging for line + tmxr_show_log - show logging status for line + tmxr_dscln - disconnect line (SET routine) + tmxr_rqln - number of available characters for line + tmxr_tqln - number of buffered characters for line + tmxr_set_lnorder - set line connection order + tmxr_show_lnorder - show line connection order + tmxr_show_summ - show connection summary + tmxr_show_cstat - show line connections or status + tmxr_show_lines - show number of lines All routines are OS-independent. + + + This library supports the simulation of multiple-line terminal multiplexers. + It may also be used to create single-line "multiplexers" to provide + additional terminals beyond the simulation console. Multiplexer lines may be + connected to terminal emulators supporting the Telnet protocol via sockets, + or to hardware terminals via host serial ports. Concurrent Telnet and serial + connections may be mixed on a given multiplexer. + + When connecting via sockets, the simulated multiplexer is attached to a + listening port on the host system: + + sim> attach MUX 23 + Listening on port 23 (socket nnn) + + Once attached, the listening port must be polled for incoming connections. + When a connection attempt is received, it will be associated with the next + multiplexer line in the user-specified line order, or with the next line in + sequence if no order has been specified. Individual lines may be forcibly + disconnected either by: + + sim> set MUX2 disconnect + + or: + + sim> set MUX disconnect=2 + + or the listening port and all Telnet sessions may be detached: + + sim> detach MUX + + + When connecting via serial ports, individual multiplexer lines are attached + to specific host ports using port names appropriate for the host system: + + sim> attach MUX2 com1 (or /dev/ttyS0) + + or: + + sim> set MUX connect=2:com1 + + Serial port parameters may be optionally specified: + + sim> attach MUX2 com1;9600-8n1 + + If the port parameters are omitted, then the host system defaults for the + specified port are used. The port is allocated during the attach call, but + the actual connection is deferred until the multiplexer is polled for + connections. + + Individual lines may be disconnected either with: + + sim> detach MUX2 + + or: + + sim> set MUX2 disconnect + + or: + + sim> set MUX disconnect=2 + + + This library supports multiplexer device simulators that are modelled in + three possible ways: + + 1. as single-line devices (e.g., a second TTY) + + 2. as multi-line devices with a unit per line and a separate scanner unit + + 3. as multi-line devices with only a scanner unit + + Single-line devices may be attached either to a Telnet listening port or to a + serial port. The device attach routine may be passed either a port number or + a serial port name. This routine should call "tmxr_attach" first. If the + return value is SCPE_OK, then a port number was passed and was opened. If + the return value is SCPE_ARG, then a port number was not passed, and + "tmxr_attach_line" should be called. If that return value is SCPE_OK, then a + serial port name was passed and was opened. Otherwise, the attachment + failed, and the returned status code value should be reported. + + The device detach routine should call "tmxr_detach_line" first, passing 0 for + the "val" parameter. If the return value is SCPE_OK, then the attached + serial port was closed. If the return value is SCPE_UNATT, then a serial + port was not attached, and "tmxr_detach" should be called to close the Telnet + listening port. To maintain compatibility with earlier versions of this + library, "tmxr_detach" always returns SCPE_OK, regardless of whether a + listening port was attached. + + The system ATTACH and DETACH commands specify the device name, although unit + 0 is actually passed to the device attach and detach routines. The in-use + status of the multiplexer -- and therefore whether the multiplexer must be + polled for input -- may be determined by checking whether the UNIT_ATT flag + is present on unit 0. + + + Multi-line devices with a unit per line and a separate scanner unit attach + serial ports to the former and a Telnet listening port to the latter. Both + types of attachments may be made concurrently. The system ATTACH and DETACH + commands are used. + + The programmer may elect to use separate device attach routines for the lines + and the scanner or a common attach routine for both. In the latter case, if + the scanner unit is passed, "tmxr_attach" should be called. Otherwise, + "tmxr_attach_line" should be called, passing 0 as the "val" parameter. + + Similarly, either separate or common detach routines may be used. When a + line detach is intended, the detach routine should call "tmxr_detach_line" + for the specified unit. Reception on the specified line should then be + inhibited by clearing the "rcve" field. Finally, "tmxr_mux_free" should be + called to determine if the multiplexer is now free (listening port is + detached and no other serial connections exist). If it is, then the input + poll may be stopped. + + To detach the scanner, the detach routine should call "tmxr_detach". Then + "tmxr_line_free" should be called for each line, and reception on the line + should be inhibited if the routine returns TRUE. Finally, the multiplexer + poll should be stopped if the multiplexer is now free. + + The in-use status of the multiplexer cannot be determined solely by examining + the UNIT_ATT flag of the scanner unit, as that reflects only Telnet + connections. Each line must also be checked for serial connections. The + "tmxr_line_free" and "tmxr_mux_free" routines indicate respectively whether a + given line or the entire multiplexer is free. + + + Multi-line devices with only a scanner unit use the system ATTACH and DETACH + commands for the Telnet listening port. For serial ports, SET CONNECT + and SET DISCONNECT commands are used. These latter commands are + specified in the device MTAB structure and call "tmxr_attach_line" and + "tmxr_detach_line", respectively. Because MTAB processing passes the scanner + unit to these routines, the invocations pass a non-zero "val" parameter to + indicate that the unit should not be used, and that the line number should be + parsed from the command string. In this mode, "tmxr_detach_line" also serves + to disconnect Telnet sessions from lines, so no special processing or calls + to "tmxr_dscln" are required. + + In-use status of the multiplexer is determined in the same manner as the + unit-per-line case. + + + Implementation notes: + + 1. The system RESTORE command does not restore devices having the DEV_NET + flag. This flag indicates that the device employs host-specific port + names that are non-transportable across RESTOREs. + + If a multiplexer specifies DEV_NET, the device connection state will not + be altered when a RESTORE is done. That is, all current connections, + including Telnet sessions, will remain untouched, and connections + specified at the time of the SAVE will not be reestablished during the + RESTORE. If DEV_NET is not specified, then the system will attempt to + restore the attachment state present at the time of the SAVE, including + Telnet listening and serial ports. Telnet client sessions on individual + multiplexer lines cannot be reestablished by RESTORE and must be + reestablished manually. + + 2. Single-line multiplexers should have UNIT_ATTABLE on the unit + representing the line, and multi-line unit-per-line multiplexers should + not have UNIT_ATTABLE on the units representing the lines. UNIT_ATTABLE + does not affect the attachability when VM-specific attach routines are + employed. UNIT_ATTABLE does control the reporting of attached units for + the SHOW command. + + A single-line device will be either detached, attached to a listening + socket, or attached to a serial port. With UNIT_ATTABLE, the device will + be reported as "not attached," "attached to 23" (e.g.), or "attached to + COM1" (e.g.), which is desirable. + + A unit-per-line device will report the listening socket as attached to + the device (or to a separate device). The units representing lines + either will be connected to a Telnet session or attached to a serial + port. Telnet sessions are not reported by SHOW , so having + UNIT_ATTABLE present will cause each non-serial line to be reported as + "not attached," even if there may be a current Telnet connection. This + will be confusing to users. Without UNIT_ATTABLE, attachment status will + be reported only if the line is attached to a serial port, which is + preferable. + + 3. For devices without a unit per line, the MTAB entry that calls + "sim_attach_line" (e.g., CONNECT) should use the MTAB_NC flag to avoid + upper-casing the device name. Device names may be case-sensitive, + depending on the host system. */ + +#include + #include "sim_defs.h" +#include "sim_serial.h" #include "sim_sock.h" +#include "sim_timer.h" #include "sim_tmxr.h" #include "scp.h" -#include /* Telnet protocol constants - negatives are for init'ing signed char data */ @@ -129,14 +331,276 @@ #define TNS_DO 006 /* DO request pending rejection */ -void tmxr_rmvrc (TMLN *lp, int32 p); -int32 tmxr_send_buffered_data (TMLN *lp); -TMLN *tmxr_find_ldsc (UNIT *uptr, int32 val, TMXR *mp); + +/* External variables */ extern int32 sim_switches; extern char sim_name[]; extern FILE *sim_log; -extern uint32 sim_os_msec (void); + + + +/* Local routines */ + + +/* Initialize the line state. + + Reset the line state to represent an idle line. Note that we do not clear + all of the line structure members, so a connected line remains connected + after this call. + + Because a line break is represented by a flag in the "receive break status" + array, we must zero that array in order to clear any pending break + indications. +*/ + +static void tmxr_init_line (TMLN *lp) +{ +lp->tsta = 0; /* init telnet state */ +lp->xmte = 1; /* enable transmit */ +lp->dstb = 0; /* default bin mode */ +lp->rxbpr = lp->rxbpi = lp->rxcnt = 0; /* init receive indexes */ +if (!lp->txbfd) /* if not buffered */ + lp->txbpr = lp->txbpi = lp->txcnt = 0; /* init transmit indexes */ +memset (lp->rbr, 0, TMXR_MAXBUF); /* clear break status array */ +lp->txdrp = 0; +if (!lp->mp->buffered) { + lp->txbfd = 0; + lp->txbsz = TMXR_MAXBUF; + lp->txb = (char *)realloc(lp->txb, lp->txbsz); + } +return; +} + + +/* Report a connection to a line. + + A notification of the form: + + Connected to the simulator device, line + + is sent to the newly connected line. If the device has only one line, the + "line " part is omitted. If the device has not been defined, the " + device" part is omitted. +*/ + +static void tmxr_report_connection (TMXR *mp, TMLN *lp, int32 i) +{ +int32 written, psave; +char line [20]; +char cmsg[80]; +char dmsg[80] = ""; +char lmsg[80] = ""; +char msgbuf[256]; + +sprintf (cmsg, "\n\r\nConnected to the %s simulator ", sim_name); + +if (mp->dptr) { /* device defined? */ + sprintf (dmsg, "%s device", /* report device name */ + sim_dname (mp->dptr)); + + if (mp->lines > 1) /* more than one line? */ + sprintf (lmsg, ", line %d", i); /* report the line number */ + } + +sprintf (msgbuf, "%s%s%s\r\n\n", cmsg, dmsg, lmsg); + +if (!mp->buffered) { + lp->txbpi = 0; /* init buf pointers */ + lp->txbpr = (int32)(lp->txbsz - strlen (msgbuf)); + lp->rxcnt = lp->txcnt = lp->txdrp = 0; /* init counters */ + } +else + if (lp->txcnt > lp->txbsz) + lp->txbpr = (lp->txbpi + 1) % lp->txbsz; + else + lp->txbpr = (int32)(lp->txbsz - strlen (msgbuf)); + +psave = lp->txbpi; /* save insertion pointer */ +lp->txbpi = lp->txbpr; /* insert connection message */ +tmxr_linemsg (lp, msgbuf); /* beginning of buffer */ +lp->txbpi = psave; /* restore insertion pointer */ + +written = tmxr_send_buffered_data (lp); /* send the message */ + +if (written == 0) /* buffer now empty? */ + lp->xmte = 1; /* reenable transmission if paused */ + +lp->txcnt -= (int32)strlen (msgbuf); /* adjust statistics */ +return; +} + + +/* Report a disconnection to a line. + + A notification of the form: + + Disconnected from the simulator + + is sent to the line about to be disconnected. We do not flush the buffer + here, because the disconnect routines will do that just after calling us. +*/ + +static void tmxr_report_disconnection (TMLN *lp) +{ +tmxr_linemsg (lp, "\r\nDisconnected from the "); /* report disconnection */ +tmxr_linemsg (lp, sim_name); +tmxr_linemsg (lp, " simulator\r\n\n"); +return; +} + + +/* Read from a line. + + Up to "length" characters are read into the character buffer associated with + line "lp". The actual number of characters read is returned. If no + characters are available, 0 is returned. If an error occurred while reading, + -1 is returned. + + If a line break was detected on serial input, the associated receive break + status flag will be set. Line break indication for Telnet connections is + embedded in the Telnet protocol and must be determined externally. +*/ + +static int32 tmxr_read (TMLN *lp, int32 length) +{ +int32 i = lp->rxbpi; + +if (lp->serport) /* serial port connection? */ + return sim_read_serial (lp->serport, &(lp->rxb[i]), length, &(lp->rbr[i])); +else /* Telnet connection */ + return sim_read_sock (lp->conn, &(lp->rxb[i]), length); +} + + +/* Write to a line. + + Up to "length" characters are written from the character buffer associated + with "lp". The actual number of characters written is returned. If an error + occurred while writing, -1 is returned. +*/ + +static int32 tmxr_write (TMLN *lp, int32 length) +{ +int32 written; +int32 i = lp->txbpr; + +if (lp->serport) /* serial port connection? */ + return sim_write_serial (lp->serport, &(lp->txb[i]), length); + +else { /* Telnet connection */ + written = sim_write_sock (lp->conn, &(lp->txb[i]), length); + + if (written == SOCKET_ERROR) /* did an error occur? */ + return -1; /* return error indication */ + else + return written; + } +} + + +/* Remove a character from the read buffer. + + The character at position "p" in the read buffer associated with line "lp" is + removed by moving all of the following received characters down one position. + The receive break status array is adjusted accordingly. +*/ + +static void tmxr_rmvrc (TMLN *lp, int32 p) +{ +for ( ; p < lp->rxbpi; p++) { /* work from "p" through end of buffer */ + lp->rxb[p] = lp->rxb[p + 1]; /* slide following character down */ + lp->rbr[p] = lp->rbr[p + 1]; /* adjust break status too */ + } + +lp->rbr[p] = 0; /* clear potential break from vacated slot */ +lp->rxbpi = lp->rxbpi - 1; /* drop buffer insert index */ +return; +} + + +/* Find a line descriptor indicated by unit or number. + + If "uptr" is NULL, then the line descriptor is determined by the line number + passed in "val". If "uptr" is not NULL, then it must point to a unit + associated with a line, and the line descriptor is determined by the unit + number, which is derived by the position of the unit in the device's unit + array. + + Note: This routine may be called with a UNIT that does not belong to the + device indicated in the TMXR structure. That is, the multiplexer lines may + belong to a device other than the one attached to the socket (the HP 2100 MUX + device is one example). Therefore, we must look up the device from the unit + at each call, rather than depending on the DEVICE pointer stored in the TMXR. +*/ + +static TMLN *tmxr_find_ldsc (UNIT *uptr, int32 val, TMXR *mp) +{ +if (mp == NULL) /* invalid multiplexer descriptor? */ + return NULL; /* programming error! */ + +if (uptr) { /* called from SET? */ + DEVICE *dptr = find_dev_from_unit (uptr); /* find device */ + if (dptr == NULL) return NULL; /* what?? */ + val = (int32) (uptr - dptr->units); /* implicit line # */ + } +if ((val < 0) || (val >= mp->lines)) return NULL; /* invalid line? */ +return mp->ldsc + val; /* line descriptor */ +} + + +/* Get a line descriptor indicated by a string or unit. + + A pointer to the line descriptor associated with multiplexer "mp" and unit + "uptr" or specified by string "cptr" is returned. If "uptr" is non-null, + then the unit number within its associated device implies the line number. + If "uptr" is null, then the string "cptr" is parsed for a decimal line + number. If the line number is missing, malformed, or outside of the range of + line numbers associated with "mp", then NULL is returned with status set to + SCPE_ARG. + + Implementation note: + + 1. A return status of SCPE_IERR implies a programming error (passing an + invalid pointer or an invalid unit). +*/ + +static TMLN *tmxr_get_ldsc (UNIT *uptr, char *cptr, TMXR *mp, t_stat *status) +{ +t_value ln; +TMLN *lp = NULL; +t_stat code = SCPE_OK; + +if (mp == NULL) /* missing mux descriptor? */ + code = SCPE_IERR; /* programming error! */ + +else if (uptr) { /* implied line form? */ + lp = tmxr_find_ldsc (uptr, mp->lines, mp); /* determine line from unit */ + + if (lp == NULL) /* invalid line number? */ + code = SCPE_IERR; /* programming error! */ + } + +else if (cptr == NULL) /* named line form, parameter supplied? */ + code = SCPE_ARG; /* no, so report missing */ + +else { + ln = get_uint (cptr, 10, mp->lines - 1, &code); /* get line number */ + + if (code == SCPE_OK) /* line number OK? */ + lp = mp->ldsc + (int32) ln; /* use as index to determine line */ + } + +if (status) /* return value pointer supplied? */ + *status = code; /* store return status value */ + +return lp; /* return pointer to line descriptor */ +} + + + +/* Global routines */ + /* Poll for new connection @@ -150,6 +614,19 @@ extern uint32 sim_os_msec (void); If a connection order is defined for the descriptor, and the first value is not -1 (indicating default order), then the order array is used to find an open line. Otherwise, a search is made of all lines in numerical sequence. + + Implementation notes: + + 1. When a serial port is attached to a line, the connection is made pending + until we are called to poll for new connections. This is because + multiplexer service routines recognize new connections only as a result + of calls to this routine. + + 2. A pending serial (re)connection may also be deferred. This is needed + when a line clear drops DTR, as DTR must remain low for a period of time + in order to be recognized by the serial device. If the "cnms" value + specifies a time in the future, the connection is deferred until that + time is reached. This leaves DTR low for the necessary time. */ int32 tmxr_poll_conn (TMXR *mp) @@ -157,12 +634,9 @@ int32 tmxr_poll_conn (TMXR *mp) SOCKET newsock; TMLN *lp; int32 *op; -int32 i, j, psave; -uint32 ipaddr; -char cmsg[80]; -char dmsg[80] = ""; -char lmsg[80] = ""; -char msgbuf[256]; +int32 i, j; +uint32 ipaddr, current_time; +t_bool deferrals; static char mantra[] = { TN_IAC, TN_WILL, TN_LINE, TN_IAC, TN_WILL, TN_SGA, @@ -171,7 +645,38 @@ static char mantra[] = { TN_IAC, TN_DO, TN_BIN }; +/* Check for a pending serial connection */ + +if (mp->pending) { /* is there a pending serial connection? */ + current_time = sim_os_msec (); /* get the current time */ + deferrals = FALSE; /* assume no deferrals */ + + for (i = 0; i < mp->lines; i++) { /* check each line in sequence */ + lp = mp->ldsc + i; /* get pointer to line descriptor */ + + if ((lp->serport != 0) && (lp->conn == 0)) /* have handle but no connection? */ + if (current_time < lp->cnms) /* time to connect hasn't arrived? */ + deferrals = TRUE; /* note the deferral */ + + else { /* line is ready to connect */ + tmxr_init_line (lp); /* init the line state */ + sim_control_serial (lp->serport, TRUE); /* connect line by raising DTR */ + lp->conn = 1; /* mark as connected */ + lp->cnms = current_time; /* record time of connection */ + tmxr_report_connection (mp, lp, i); /* report the connection to the line */ + mp->pending = mp->pending - 1; /* drop the pending count */ + return i; /* return the line number */ + } + } + + if (deferrals == FALSE) /* any deferred connections? */ + mp->pending = 0; /* no, and none pending, so correct count */ + } + +/* Check for a pending Telnet connection */ + newsock = sim_accept_conn (mp->master, &ipaddr); /* poll connect */ + if (newsock != INVALID_SOCKET) { /* got a live one? */ op = mp->lnorder; /* get line connection order list pointer */ i = mp->lines; /* play it safe in case lines == 0 */ @@ -193,71 +698,87 @@ if (newsock != INVALID_SOCKET) { /* got a live one? */ } else { lp = mp->ldsc + i; /* get line desc */ + tmxr_init_line (lp); /* init line */ lp->conn = newsock; /* record connection */ lp->ipad = ipaddr; /* ip address */ - lp->mp = mp; /* save mux */ sim_write_sock (newsock, mantra, sizeof(mantra)); tmxr_debug (TMXR_DBG_XMT, lp, "Sending", mantra, sizeof(mantra)); - sprintf (cmsg, "\n\r\nConnected to the %s simulator ", sim_name); - - if (mp->dptr) { /* device defined? */ - sprintf (dmsg, "%s device", /* report device name */ - sim_dname (mp->dptr)); - - if (mp->lines > 1) /* more than one line? */ - sprintf (lmsg, ", line %d", i); /* report the line number */ - } - - sprintf (msgbuf, "%s%s%s\r\n\n", cmsg, dmsg, lmsg); + tmxr_report_connection (mp, lp, i); lp->cnms = sim_os_msec (); /* time of conn */ - if (!mp->buffered) { - lp->txbpi = 0; /* init buf pointers */ - lp->txbpr = (int32)(lp->txbsz - strlen (msgbuf)); - lp->rxcnt = lp->txcnt = lp->txdrp = 0; /* init counters */ - } - else - if (lp->txcnt > lp->txbsz) - lp->txbpr = (lp->txbpi + 1) % lp->txbsz; - else - lp->txbpr = (int32)(lp->txbsz - strlen (msgbuf)); - lp->tsta = 0; /* init telnet state */ - lp->xmte = 1; /* enable transmit */ - lp->dstb = 0; /* default bin mode */ - psave = lp->txbpi; /* save insertion pointer */ - lp->txbpi = lp->txbpr; /* insert connection message */ - tmxr_linemsg (lp, msgbuf); /* beginning of buffer */ - lp->txbpi = psave; /* restore insertion pointer */ - tmxr_poll_tx (mp); /* flush output */ - lp->txcnt -= (int32)strlen (msgbuf); /* adjust statistics */ return i; } } /* end if newsock */ -return -1; +return -1; /* no new connections made */ } -/* Reset line */ +/* Reset a line. + + A Telnet session associated with line descriptor "lp" is disconnected, and + the socket is deallocated. If the line has a serial connection instead, then + no action is taken. + + This routine is provided for backward compatibility. Use "tmxr_clear_ln" in + new code to disconnect both Telnet and serial connections. +*/ void tmxr_reset_ln (TMLN *lp) { if (lp->txlog) /* dump log */ fflush (lp->txlog); tmxr_send_buffered_data (lp); /* send buffered data */ -sim_close_sock (lp->conn, 0); /* reset conn */ -lp->conn = lp->tsta = 0; /* reset state */ -lp->rxbpr = lp->rxbpi = 0; -if (!lp->txbfd) - lp->txbpr = lp->txbpi = 0; -lp->xmte = 1; -lp->dstb = 0; + +if (!lp->serport) { /* Telnet connection? */ + sim_close_sock (lp->conn, 0); /* close socket */ + tmxr_init_line (lp); /* initialize line state */ + lp->conn = 0; /* remove socket */ + } return; } +/* Clear a line connection. + + The Telnet or serial session associated with multiplexer descriptor "mp" and + line descriptor "lp" is disconnected. An associated Telnet socket is + deallocated; a serial port is not, although DTR is dropped to disconnect the + attached serial device. Serial lines will be scheduled for reconnection + after a short delay for DTR recognition. +*/ + +t_stat tmxr_clear_ln (TMXR *mp, TMLN *lp) +{ +if ((mp == NULL) || (lp == NULL)) /* no multiplexer or line descriptors? */ + return SCPE_IERR; /* programming error! */ + +if (lp->txlog) /* logging? */ + fflush (lp->txlog); /* flush log */ + +tmxr_send_buffered_data (lp); /* send any buffered data */ + +if (lp->serport) { /* serial connection? */ + sim_control_serial (lp->serport, FALSE); /* disconnect line by dropping DTR */ + lp->cnms = sim_os_msec () + 500; /* reconnect 500 msec from now */ + mp->pending = mp->pending + 1; /* mark line reconnection as pending */ + } +else /* Telnet connection */ + sim_close_sock (lp->conn, 0); /* close socket */ + +tmxr_init_line (lp); /* initialize line state */ +lp->conn = 0; /* remove socket or connection flag */ +return SCPE_OK; +} + /* Get character from specific line Inputs: *lp = pointer to terminal line descriptor Output: valid + char, 0 if line + + Implementation note: + + 1. If a line break was detected coincident with the current character, the + receive break status associated with the character is cleared, and + SCPE_BREAK is ORed into the return value. */ int32 tmxr_getc_ln (TMLN *lp) @@ -270,8 +791,10 @@ if (lp->conn && lp->rcve) { /* conn & enb? */ if (j) { /* any? */ tmp = lp->rxb[lp->rxbpr]; /* get char */ val = TMXR_VALID | (tmp & 0377); /* valid + chr */ - if (lp->rbr[lp->rxbpr]) /* break? */ - val = val | SCPE_BREAK; + if (lp->rbr[lp->rxbpr]) { /* break? */ + lp->rbr[lp->rxbpr] = 0; /* clear status */ + val = val | SCPE_BREAK; /* indicate to caller */ + } lp->rxbpr = lp->rxbpr + 1; /* adv pointer */ } } /* end if conn */ @@ -280,6 +803,7 @@ if (lp->rxbpi == lp->rxbpr) /* empty? zero ptrs */ return val; } + /* Poll for input Inputs: @@ -299,24 +823,26 @@ for (i = 0; i < mp->lines; i++) { /* loop thru lines */ nbytes = 0; if (lp->rxbpi == 0) /* need input? */ - nbytes = sim_read_sock (lp->conn, /* yes, read */ - &(lp->rxb[lp->rxbpi]), /* leave spc for */ - TMXR_MAXBUF - TMXR_GUARD); /* Telnet cruft */ + nbytes = tmxr_read (lp, /* yes, read */ + TMXR_MAXBUF - TMXR_GUARD); /* leave spc for Telnet cruft */ else if (lp->tsta) /* in Telnet seq? */ - nbytes = sim_read_sock (lp->conn, /* yes, read to end */ - &(lp->rxb[lp->rxbpi]), + nbytes = tmxr_read (lp, /* yes, read to end */ TMXR_MAXBUF - lp->rxbpi); - if (nbytes < 0) /* closed? reset ln */ - tmxr_reset_ln (lp); + + if (nbytes < 0) /* line error? */ + tmxr_clear_ln (mp, lp); /* disconnect line */ + else if (nbytes > 0) { /* if data rcvd */ tmxr_debug (TMXR_DBG_RCV, lp, "Received", &(lp->rxb[lp->rxbpi]), nbytes); j = lp->rxbpi; /* start of data */ - memset (&lp->rbr[j], 0, nbytes); /* clear status */ lp->rxbpi = lp->rxbpi + nbytes; /* adv pointers */ lp->rxcnt = lp->rxcnt + nbytes; + if (lp->serport) /* is this a serial reception? */ + continue; /* yes, so no further processing needed */ + /* Examine new data, remove TELNET cruft before making input available */ for (; j < lp->rxbpi; ) { /* loop thru char */ @@ -425,6 +951,7 @@ for (i = 0; i < mp->lines; i++) { /* loop thru lines */ return; } + /* Return count of available characters for line */ int32 tmxr_rqln (TMLN *lp) @@ -432,17 +959,6 @@ int32 tmxr_rqln (TMLN *lp) return (lp->rxbpi - lp->rxbpr + ((lp->rxbpi < lp->rxbpr)? TMXR_MAXBUF: 0)); } -/* Remove character p (and matching status) from line l input buffer */ - -void tmxr_rmvrc (TMLN *lp, int32 p) -{ -for ( ; p < lp->rxbpi; p++) { - lp->rxb[p] = lp->rxb[p + 1]; - lp->rbr[p] = lp->rbr[p + 1]; - } -lp->rxbpi = lp->rxbpi - 1; -return; -} /* Store character in line buffer @@ -451,10 +967,17 @@ return; chr = characters Outputs: status = ok, connection lost, or stall + + Implementation note: + + 1. If the line is not connected, SCPE_LOST is returned. For serial + connections, this may also occur when the connection is pending, either + before the first "tmxr_poll_conn" call, or during a DTR drop deferral. */ t_stat tmxr_putc_ln (TMLN *lp, int32 chr) { +// [JDB] isn't this wrong? it's logging the char before it determines if it can output it! if (lp->txlog) /* log if available */ fputc (chr, lp->txlog); if ((lp->conn == 0) && (!lp->txbfd)) /* no conn & not buffered? */ @@ -483,6 +1006,7 @@ if ((lp->txbfd) || (TXBUF_AVAIL(lp) > 1)) { /* room for char (+ IAC) return SCPE_STALL; /* char not sent */ } + /* Poll for output Inputs: @@ -507,6 +1031,7 @@ for (i = 0; i < mp->lines; i++) { /* loop thru lines */ return; } + /* Send buffered data across network Inputs: @@ -522,11 +1047,11 @@ int32 nbytes, sbytes; nbytes = tmxr_tqln(lp); /* avail bytes */ if (nbytes) { /* >0? write */ if (lp->txbpr < lp->txbpi) /* no wrap? */ - sbytes = sim_write_sock (lp->conn, /* write all data */ - &(lp->txb[lp->txbpr]), nbytes); - else sbytes = sim_write_sock (lp->conn, /* write to end buf */ - &(lp->txb[lp->txbpr]), lp->txbsz - lp->txbpr); - if (sbytes != SOCKET_ERROR) { /* ok? */ + sbytes = tmxr_write (lp, nbytes); /* write all data */ + else + sbytes = tmxr_write (lp, TMXR_MAXBUF - lp->txbpr); /* write to end buf */ + + if (sbytes > 0) { /* ok? */ tmxr_debug (TMXR_DBG_XMT, lp, "Sent", &(lp->txb[lp->txbpr]), sbytes); lp->txbpr = (lp->txbpr + sbytes); /* update remove ptr */ if (lp->txbpr >= lp->txbsz) /* wrap? */ @@ -534,9 +1059,10 @@ if (nbytes) { /* >0? write */ lp->txcnt = lp->txcnt + sbytes; /* update counts */ nbytes = nbytes - sbytes; } + if (nbytes && (lp->txbpr == 0)) { /* more data and wrap? */ - sbytes = sim_write_sock (lp->conn, lp->txb, nbytes); - if (sbytes != SOCKET_ERROR) { /* ok */ + sbytes = tmxr_write (lp, nbytes); + if (sbytes > 0) { /* ok */ tmxr_debug (TMXR_DBG_XMT, lp, "Sent", lp->txb, sbytes); lp->txbpr = (lp->txbpr + sbytes); /* update remove ptr */ if (lp->txbpr >= lp->txbsz) /* wrap? */ @@ -549,6 +1075,7 @@ if (nbytes) { /* >0? write */ return nbytes; } + /* Return count of buffered characters for line */ int32 tmxr_tqln (TMLN *lp) @@ -556,7 +1083,14 @@ int32 tmxr_tqln (TMLN *lp) return (lp->txbpi - lp->txbpr + ((lp->txbpi < lp->txbpr)? lp->txbsz: 0)); } -/* Open master socket */ + +/* Open a master listening socket. + + A listening socket for the port number described by "cptr" is opened for the + multiplexer associated with descriptor "mp". If the open is successful, all + lines not currently possessing serial connections are initialized for Telnet + connections. +*/ t_stat tmxr_open_master (TMXR *mp, char *cptr) { @@ -653,17 +1187,12 @@ mp->port = port; /* save port */ mp->master = sock; /* save master socket */ for (i = 0; i < mp->lines; i++) { /* initialize lines */ lp = mp->ldsc + i; - lp->conn = lp->tsta = 0; - lp->rxbpi = lp->rxbpr = 0; - lp->txbpi = lp->txbpr = 0; - if (!mp->buffered) { - lp->txbfd = lp->txbpi = lp->txbpr = 0; - lp->txbsz = TMXR_MAXBUF; - lp->txb = (char *)realloc(lp->txb, lp->txbsz); + + if (lp->serport == 0) { /* no serial port attached? */ + lp->mp = mp; /* set the back pointer */ + tmxr_init_line (lp); /* initialize line state */ + lp->conn = 0; /* clear the socket */ } - lp->rxcnt = lp->txcnt = lp->txdrp = 0; - lp->xmte = 1; - lp->dstb = 0; } return SCPE_OK; } @@ -684,7 +1213,7 @@ if (tptr == NULL) /* no more mem? */ r = tmxr_open_master (mp, cptr); /* open master socket */ if (r != SCPE_OK) { /* error? */ free (tptr); /* release buf */ - return SCPE_OPENERR; + return r; } sprintf (pmsg, "%d", mp->port); /* copy port */ if (mp->buffered) @@ -701,7 +1230,184 @@ if (mp->dptr == NULL) /* has device been set? return SCPE_OK; } -/* Close master socket */ + +/* Attach a line to a serial port. + + Attach a line of the multiplexer associated with descriptor "desc" to a + serial port. Two calling sequences are supported: + + 1. If "val" is zero, then "uptr" is implicitly associated with the line + number corresponding to the position of the unit in the zero-based array + of units belonging to the associated device, and "cptr" points to the + serial port name. For example, if "uptr" points to unit 3 in a given + device, and "cptr" points to the string "COM1", then line 3 will be + attached to serial port "COM1". + + 2. If "val" is non-zero, then "cptr" points to a string that is parsed for + an explicit line number and serial port name, and "uptr" is ignored. The + number and name are delimited by the character represented by "val". For + example, if "val" is 58 (':'), and "cptr" points to the string "3:COM1", + then line 3 will be attached to serial port "COM1". + + An optional configuration string may be present after the port name. If + present, it must be separated from the port name with a semicolon and has + this form: + + - + + where: + + rate = communication rate in bits per second + charsize = character size in bits (5-8, including optional parity) + parity = parity designator (N/E/O/M/S for no/even/odd/mark/space parity) + stopbits = number of stop bits (1, 1.5, or 2) + + As an example: + + 9600-8n1 + + The supported rates, sizes, and parity options are host-specific. If a + configuration string is not supplied, then host system defaults are used. + + If the serial port allocation is successful, then if "val" is zero, then the + port name is stored in the UNIT structure, and the UNIT_ATT flag is set. If + "val" is non-zero, then this is not done, as there is no unit corresponding + to the attached line. + + Implementation notes: + + 1. If the device associated with the unit referenced by "uptr" does not have + the DEV_NET flag set, then the optional configuration string is saved + with the port name in the UNIT structure. This allows a RESTORE to + reconfigure the attached serial port during reattachment. The combined + string will be displayed when the unit is SHOWed. + + If the unit has the DEV_NET flag, the optional configuration string is + removed before the attached port name is saved in the UNIT structure, as + RESTORE will not reattach the port, and so reconfiguration is not needed. + + 2. This function may be called as an MTAB processing routine. +*/ + +t_stat tmxr_attach_line (UNIT *uptr, int32 val, char *cptr, void *desc) +{ +TMXR *mp = (TMXR *) desc; +TMLN *lp; +DEVICE *dptr; +char *pptr, *sptr, *tptr; +SERHANDLE serport; +SERCONFIG config = { 0 }; +t_stat status; +char portname [1024]; +t_bool arg_error = FALSE; + +if (val) { /* explicit line? */ + uptr = NULL; /* indicate to get routine */ + tptr = strchr (cptr, (char) val); /* search for separator */ + + if (tptr == NULL) /* not found? */ + return SCPE_ARG; /* report bad argument */ + else /* found */ + *tptr = '\0'; /* terminate for get_uint */ + } + +lp = tmxr_get_ldsc (uptr, cptr, mp, &status); /* get referenced line */ + +if (lp == NULL) /* bad line number? */ + return status; /* report it */ + +if (lp->conn) /* line connected via Telnet? */ + return SCPE_NOFNC; /* command not allowed */ + +if (val) /* named line form? */ + cptr = tptr + 1; /* point at port name */ + +if (cptr == NULL) /* port name missing? */ + return SCPE_ARG; /* report it */ + +pptr = get_glyph_nc (cptr, portname, ';'); /* separate port name from optional params */ + +if (*pptr) { /* parameter string present? */ + config.baudrate = (uint32) strtotv (pptr, &sptr, 10); /* parse baud rate */ + arg_error = (pptr == sptr); /* check for bad argument */ + + if (*sptr) /* separator present? */ + sptr++; /* skip it */ + + config.charsize = (uint32) strtotv (sptr, &tptr, 10); /* parse character size */ + arg_error = arg_error || (sptr == tptr); /* check for bad argument */ + + if (*tptr) /* parity character present? */ + config.parity = toupper (*tptr++); /* save parity character */ + + config.stopbits = (uint32) strtotv (tptr, &sptr, 10); /* parse number of stop bits */ + arg_error = arg_error || (tptr == sptr); /* check for bad argument */ + + if (arg_error) /* bad conversions? */ + return SCPE_ARG; /* report argument error */ + + else if (strcmp (sptr, ".5") == 0) /* 1.5 stop bits requested? */ + config.stopbits = 0; /* code request */ + } + +serport = sim_open_serial (portname); /* open the serial port */ + +if (serport == INVALID_HANDLE) /* not a valid port name */ + return SCPE_OPENERR; /* cannot attach */ + +else { /* good serial port */ + if (*pptr) { /* parameter string specified? */ + status = sim_config_serial (serport, config); /* set serial configuration */ + + if (status != SCPE_OK) { /* port configuration error? */ + sim_close_serial (serport); /* close the port */ + return status; /* report error */ + } + } + + if (val == 0) { /* unit implies line? */ + dptr = find_dev_from_unit (uptr); /* find associated device */ + + if (dptr && (dptr->flags & DEV_NET)) /* will RESTORE be inhibited? */ + cptr = portname; /* yes, so save just port name */ + + if (mp->dptr == NULL) /* has device been set? */ + mp->dptr = dptr; /* no, so set device now */ + } + + tptr = (char *) malloc (strlen (cptr) + 1); /* get buffer for port name and maybe params */ + + if (tptr == NULL) { /* allocation problem? */ + sim_close_serial (serport); /* close the port */ + return SCPE_MEM; /* report allocation failure */ + } + + strcpy (tptr, cptr); /* copy the port name into the buffer */ + + if (val == 0) { /* unit implies line? */ + uptr->filename = tptr; /* save buffer pointer in UNIT */ + uptr->flags = uptr->flags | UNIT_ATT; /* mark unit as attached */ + } + + lp->mp = mp; /* set the back pointer */ + tmxr_init_line (lp); /* initialize the line state */ + lp->serport = serport; /* set serial port handle */ + lp->sername = tptr; /* set serial port name */ + lp->cnms = 0; /* schedule for immediate connection */ + lp->conn = 0; /* indicate no connection yet */ + mp->pending = mp->pending + 1; /* but connection is pending */ + } + +return SCPE_OK; /* line has been connected */ +} + + +/* Close a master listening socket. + + The listening socket associated with multiplexer descriptor "mp" is closed + and deallocated. In addition, all current Telnet sessions are disconnected. + Serial sessions are not affected. +*/ t_stat tmxr_close_master (TMXR *mp) { @@ -710,19 +1416,26 @@ TMLN *lp; for (i = 0; i < mp->lines; i++) { /* loop thru conn */ lp = mp->ldsc + i; - if (lp->conn) { - tmxr_linemsg (lp, "\r\nDisconnected from the "); - tmxr_linemsg (lp, sim_name); - tmxr_linemsg (lp, " simulator\r\n\n"); - tmxr_reset_ln (lp); - } /* end if conn */ - } /* end for */ + + if (!lp->serport && lp->conn) { /* not serial and is connected? */ + tmxr_report_disconnection (lp); /* report disconnection */ + tmxr_reset_ln (lp); /* disconnect line */ + } + } + sim_close_sock (mp->master, 1); /* close master socket */ mp->master = 0; return SCPE_OK; } -/* Detach unit from master socket */ + +/* Detach unit from master socket. + + Note that we return SCPE_OK, regardless of whether a listening socket was + attached. For single-line multiplexers that may be attached either to a + listening socket or to a serial port, call "tmxr_detach_line" first. If that + routine returns SCPE_UNATT, then call "tmxr_detach". +*/ t_stat tmxr_detach (TMXR *mp, UNIT *uptr) { @@ -735,6 +1448,134 @@ uptr->flags = uptr->flags & ~UNIT_ATT; /* not attached */ return SCPE_OK; } + +/* Detach a line from serial port. + + Disconnect and detach a line of the multiplexer associated with descriptor + "desc" from a serial port. Two calling sequences are supported: + + 1. If "val" is zero, then "uptr" is implicitly associated with the line + number corresponding to the position of the unit in the zero-based array + of units belonging to the associated device, and "cptr" points to the + serial port name. For example, if "uptr" points to unit 3 in a given + device, then line 3 will be detached from the associated serial port. + + 2. If "val" is non-zero, then "cptr" points to a string that is parsed for + an explicit line number, and "uptr" is ignored. For example, if "cptr" + points to the string "3", then line 3 will be detached from the + associated serial port. + + Calling sequence 2 allows serial ports to be used with multiplexers that do + not implement unit-per-line. In this configuration, there is no unit + associated with a given line, so the ATTACH and DETACH commands cannot be + used. Instead, SET commands directed to the device must specify the line + number and port name to open (e.g., "SET CONNECT=:") or close + (e.g., "SET DISCONNECT="). These commands call "tmxr_attach_line" + and "tmxr_detach_line", respectively, with non-zero "val" parameters. + + As an aid for this configuration, we do not verify serial port connections + when "val" is non-zero. That is, we will disconnect the line without regard + to whether a serial or Telnet connection is present. Then, if a serial + connection was present, the serial port is closed. This allows the SET + DISCONNECT command to be used to disconnect (close) both Telnet and serial + sessions. + + Implementation notes: + + 1. If "val" is zero, and the specified line is not connected to a serial + port, then SCPE_UNATT is returned. This allows a common VM-provided + detach routine in a single-line device to attempt to detach a serial port + first, and then, if that fails, to detach a Telnet session via + "tmxr_detach". Note that the latter will always succeed, even if the + unit is not attached, and so cannot be called first. + + 2. If the serial connection was completed, we drop the line to ensure that a + modem will disconnect. This increments the pending connection count in + preparation for reconnecting. If the connection was not completed, it + will still be pending. In either case, we drop the pending connection + count, as we will be closing the serial port. + + 3. This function may be called as an MTAB processing routine. +*/ + +t_stat tmxr_detach_line (UNIT *uptr, int32 val, char *cptr, void *desc) +{ +TMXR *mp = (TMXR *) desc; +TMLN *lp; +t_stat status; + +if (val) /* explicit line? */ + uptr = NULL; /* indicate to get routine */ + +lp = tmxr_get_ldsc (uptr, cptr, mp, &status); /* get referenced line */ + +if (lp == NULL) /* bad line number? */ + return status; /* report it */ + +if (uptr && lp->serport == 0) /* serial port attached to unit? */ + return SCPE_UNATT; /* no, so report status to caller */ + +if (lp->conn) { /* was connection made? */ + tmxr_report_disconnection (lp); /* report disconnection */ + tmxr_clear_ln (mp, lp); /* close line */ + } + +if (lp->serport) { /* serial port attached? */ + mp->pending = mp->pending - 1; /* drop pending connection count */ + + sim_close_serial (lp->serport); /* close serial port */ + lp->serport = 0; /* clear handle */ + free (lp->sername); /* free port name */ + lp->sername = 0; /* clear pointer */ + + if (uptr) { /* unit implies line? */ + uptr->filename = NULL; /* clear attached name pointer */ + uptr->flags = uptr->flags & ~UNIT_ATT; /* no longer attached */ + } + } + +return SCPE_OK; +} + + +/* Check if a line is free. + + A line is free if it is not connected to a Telnet session or a serial port. +*/ + +t_bool tmxr_line_free (TMLN *lp) +{ +return lp && (lp->conn == 0) && (lp->serport == 0); /* free if no connection */ +} + + +/* Check if a multiplexer is free. + + A multiplexer is free if it is not listening for new Telnet connections and + no lines are connected to serial ports. Note that if the listening socket is + detached, then no Telnet sessions can exist, so we only need to check for + serial connections on the lines. +*/ + +t_bool tmxr_mux_free (TMXR *mp) +{ +TMLN* lp; +int32 ln; + +if (mp == NULL || mp->master || mp->pending) /* listening for Telnet or serial connection? */ + return FALSE; /* not free */ + +for (ln = 0; ln < mp->lines; ln++) { /* check each line for serial connection */ + lp = mp->ldsc + ln; /* get pointer to line descriptor */ + + if (lp->serport) /* serial connection? */ + return FALSE; /* not free */ + } + +return TRUE; /* no connections, so mux is free */ +} + + /* Stub examine and deposit */ t_stat tmxr_ex (t_value *vptr, t_addr addr, UNIT *uptr, int32 sw) @@ -747,7 +1588,8 @@ t_stat tmxr_dep (t_value val, t_addr addr, UNIT *uptr, int32 sw) return SCPE_NOFNC; } -/* Output message to socket or line descriptor */ + +/* Write a message directly to a socket */ void tmxr_msg (SOCKET sock, char *msg) { @@ -756,6 +1598,9 @@ if (sock) return; } + +/* Write a message to a line */ + void tmxr_linemsg (TMLN *lp, char *msg) { int32 len; @@ -765,25 +1610,33 @@ for (len = (int32)strlen (msg); len > 0; --len) return; } + /* Print connections - used only in named SHOW command */ void tmxr_fconns (FILE *st, TMLN *lp, int32 ln) { if (ln >= 0) fprintf (st, "line %d: ", ln); + if (lp->conn) { int32 o1, o2, o3, o4, hr, mn, sc; uint32 ctime; - o1 = (lp->ipad >> 24) & 0xFF; - o2 = (lp->ipad >> 16) & 0xFF; - o3 = (lp->ipad >> 8) & 0xFF; - o4 = (lp->ipad) & 0xFF; + if (lp->serport) /* serial connection? */ + fprintf (st, "Serial port %s", lp->sername); /* print port name */ + + else { /* socket connection */ + o1 = (lp->ipad >> 24) & 0xFF; + o2 = (lp->ipad >> 16) & 0xFF; + o3 = (lp->ipad >> 8) & 0xFF; + o4 = (lp->ipad) & 0xFF; + fprintf (st, "IP address %d.%d.%d.%d", o1, o2, o3, o4); + } + ctime = (sim_os_msec () - lp->cnms) / 1000; hr = ctime / 3600; mn = (ctime / 60) % 60; sc = ctime % 60; - fprintf (st, "IP address %d.%d.%d.%d", o1, o2, o3, o4); if (ctime) fprintf (st, ", connected %02d:%02d:%02d\n", hr, mn, sc); } @@ -793,6 +1646,7 @@ if (lp->txlog) return; } + /* Print statistics - used only in named SHOW command */ void tmxr_fstats (FILE *st, TMLN *lp, int32 ln) @@ -822,37 +1676,56 @@ if (lp->txdrp) return; } -/* Disconnect line */ + +/* Disconnect a line. + + Disconnect a line of the multiplexer associated with descriptor "desc" from a + Telnet session or a serial port. Two calling sequences are supported: + + 1. If "val" is zero, then "uptr" is implicitly associated with the line + number corresponding to the position of the unit in the zero-based array + of units belonging to the associated device, and "cptr" is ignored. For + example, if "uptr" points to unit 3 in a given device, then line 3 will + be disconnected. + + 2. If "val" is non-zero, then "cptr" points to a string that is parsed for + an explicit line number, and "uptr" is ignored. For example, if "cptr" + points to the string "3", then line 3 will be disconnected. + + If the line was connected to a Telnet session, the socket associated with the + line will be closed. If the line was connected to a serial port, the port + will NOT be closed, but DTR will be dropped. The line will be reconnected + after a short delay to allow the serial device to recognize the DTR state + change. + + Implementation notes: + + 1. This function may be called as an MTAB processing routine. +*/ t_stat tmxr_dscln (UNIT *uptr, int32 val, char *cptr, void *desc) { TMXR *mp = (TMXR *) desc; TMLN *lp; -int32 ln; -t_stat r; +t_stat status; -if (mp == NULL) - return SCPE_IERR; -if (val) { /* = n form */ - if (cptr == NULL) - return SCPE_ARG; - ln = (int32) get_uint (cptr, 10, mp->lines - 1, &r); - if (r != SCPE_OK) - return SCPE_ARG; - lp = mp->ldsc + ln; - } -else { - lp = tmxr_find_ldsc (uptr, 0, mp); - if (lp == NULL) - return SCPE_IERR; - } -if (lp->conn) { - tmxr_linemsg (lp, "\r\nOperator disconnected line\r\n\n"); - tmxr_reset_ln (lp); +if (val) /* explicit line? */ + uptr = NULL; /* indicate to get routine */ + +lp = tmxr_get_ldsc (uptr, cptr, mp, &status); /* get referenced line */ + +if (lp == NULL) /* bad line number? */ + return status; /* report it */ + +if (lp->conn) { /* connection active? */ + tmxr_linemsg (lp, "\r\nOperator disconnected line\r\n\n"); /* report closure */ + tmxr_clear_ln (mp, lp); /* drop the line */ } + return SCPE_OK; } + /* Enable logging for line */ t_stat tmxr_set_log (UNIT *uptr, int32 val, char *cptr, void *desc) @@ -879,6 +1752,7 @@ if (lp->txlog == NULL) { /* error? */ return SCPE_OK; } + /* Disable logging for line */ t_stat tmxr_set_nolog (UNIT *uptr, int32 val, char *cptr, void *desc) @@ -900,6 +1774,7 @@ if (lp->txlog) { /* logging? */ return SCPE_OK; } + /* Show logging status for line */ t_stat tmxr_show_log (FILE *st, UNIT *uptr, int32 val, void *desc) @@ -916,27 +1791,6 @@ else fprintf (st, "no logging"); return SCPE_OK; } -/* Find line descriptor. - - Note: This routine may be called with a UNIT that does not belong to the - device indicated in the TMXR structure. That is, the multiplexer lines may - belong to a device other than the one attached to the socket (the HP 2100 MUX - device is one example). Therefore, we must look up the device from the unit - at each call, rather than depending on the DPTR stored in the TMXR. -*/ - -TMLN *tmxr_find_ldsc (UNIT *uptr, int32 val, TMXR *mp) -{ -if (uptr) { /* called from SET? */ - DEVICE *dptr = find_dev_from_unit (uptr); /* find device */ - if (dptr == NULL) /* what?? */ - return NULL; - val = (int32) (uptr - dptr->units); /* implicit line # */ - } -if ((val < 0) || (val >= mp->lines)) /* invalid line? */ - return NULL; -return mp->ldsc + val; /* line descriptor */ -} /* Set the line connection order. @@ -1043,6 +1897,7 @@ free (set); /* free set allocation * return result; } + /* Show line connection order. Parameters: @@ -1235,4 +2090,3 @@ if ((lp->mp->dptr) && (dbits & lp->mp->dptr->dctrl)) { sim_debug (dbits, lp->mp->dptr, "%s %d bytes '%s'\n", msg, bufsize, tmxr_debug_buf); } } - diff --git a/sim_tmxr.h b/sim_tmxr.h index 72826a04..94e6dabe 100644 --- a/sim_tmxr.h +++ b/sim_tmxr.h @@ -28,6 +28,9 @@ 17-Jan-11 MP Added buffered line capabilities 20-Nov-08 RMS Added three new standardized SHOW routines + 07-Oct-08 JDB [serial] Added serial port support to TMXR, TMLN, + added tmxr_attach_line, tmxr_detach_line, + tmxr_line_free, tmxr_mux_free 27-May-08 JDB Added lnorder to TMXR structure, added tmxr_set_lnorder and tmxr_set_lnorder 14-May-08 JDB Added dptr to TMXR structure @@ -44,6 +47,8 @@ #ifndef _SIM_TMXR_H_ #define _SIM_TMXR_H_ 0 +#include "sim_serial.h" + #define TMXR_V_VALID 15 #define TMXR_VALID (1 << TMXR_V_VALID) #define TMXR_MAXBUF 256 /* buffer size */ @@ -79,6 +84,8 @@ struct tmln { char rbr[TMXR_MAXBUF]; /* rcv break */ char *txb; /* xmt buffer */ TMXR *mp; /* back pointer to mux */ + SERHANDLE serport; /* serial port handle */ + char *sername; /* serial port name */ }; struct tmxr { @@ -90,18 +97,25 @@ struct tmxr { DEVICE *dptr; /* multiplexer device */ char logfiletmpl[FILENAME_MAX]; /* template logfile name */ int32 buffered; /* Buffered Line Behavior and Buffer Size Flag */ + uint32 pending; /* count of pending serial connections */ }; int32 tmxr_poll_conn (TMXR *mp); void tmxr_reset_ln (TMLN *lp); +t_stat tmxr_clear_ln (TMXR *mp, TMLN *lp); int32 tmxr_getc_ln (TMLN *lp); void tmxr_poll_rx (TMXR *mp); t_stat tmxr_putc_ln (TMLN *lp, int32 chr); void tmxr_poll_tx (TMXR *mp); +int32 tmxr_send_buffered_data (TMLN *lp); t_stat tmxr_open_master (TMXR *mp, char *cptr); t_stat tmxr_close_master (TMXR *mp); t_stat tmxr_attach (TMXR *mp, UNIT *uptr, char *cptr); t_stat tmxr_detach (TMXR *mp, UNIT *uptr); +t_stat tmxr_attach_line (UNIT *uptr, int32 val, char *cptr, void *desc); +t_stat tmxr_detach_line (UNIT *uptr, int32 val, char *cptr, void *desc); +t_bool tmxr_line_free (TMLN *lp); +t_bool tmxr_mux_free (TMXR *mp); t_stat tmxr_ex (t_value *vptr, t_addr addr, UNIT *uptr, int32 sw); t_stat tmxr_dep (t_value val, t_addr addr, UNIT *uptr, int32 sw); void tmxr_msg (SOCKET sock, char *msg);